Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* Simple code to turn various tables in an ELF file into alias definitions. |
| 2 | * This deals with kernel datastructures where they should be |
| 3 | * dealt with: in the kernel source. |
| 4 | * |
| 5 | * Copyright 2002-2003 Rusty Russell, IBM Corporation |
| 6 | * 2003 Kai Germaschewski |
| 7 | * |
| 8 | * |
| 9 | * This software may be used and distributed according to the terms |
| 10 | * of the GNU General Public License, incorporated herein by reference. |
| 11 | */ |
| 12 | |
| 13 | #include "modpost.h" |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 14 | #include "devicetable-offsets.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | /* We use the ELF typedefs for kernel_ulong_t but bite the bullet and |
| 17 | * use either stdint.h or inttypes.h for the rest. */ |
| 18 | #if KERNEL_ELFCLASS == ELFCLASS32 |
| 19 | typedef Elf32_Addr kernel_ulong_t; |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 20 | #define BITS_PER_LONG 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #else |
| 22 | typedef Elf64_Addr kernel_ulong_t; |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 23 | #define BITS_PER_LONG 64 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #endif |
| 25 | #ifdef __sun__ |
| 26 | #include <inttypes.h> |
| 27 | #else |
| 28 | #include <stdint.h> |
| 29 | #endif |
| 30 | |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 31 | #include <ctype.h> |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 32 | #include <stdbool.h> |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | typedef uint32_t __u32; |
| 35 | typedef uint16_t __u16; |
| 36 | typedef unsigned char __u8; |
| 37 | |
| 38 | /* Big exception to the "don't include kernel headers into userspace, which |
Sam Ravnborg | 62070fa | 2006-03-03 16:46:04 +0100 | [diff] [blame] | 39 | * even potentially has different endianness and word sizes, since |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | * we handle those differences explicitly below */ |
| 41 | #include "../../include/linux/mod_devicetable.h" |
| 42 | |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 43 | /* This array collects all instances that use the generic do_table */ |
| 44 | struct devtable { |
| 45 | const char *device_id; /* name of table, __mod_<name>_device_table. */ |
| 46 | unsigned long id_size; |
| 47 | void *function; |
| 48 | }; |
| 49 | |
Andreas Bießmann | dd2a3ac | 2012-02-24 08:23:53 +0100 | [diff] [blame] | 50 | #define ___cat(a,b) a ## b |
| 51 | #define __cat(a,b) ___cat(a,b) |
| 52 | |
| 53 | /* we need some special handling for this host tool running eventually on |
| 54 | * Darwin. The Mach-O section handling is a bit different than ELF section |
| 55 | * handling. The differnces in detail are: |
| 56 | * a) we have segments which have sections |
| 57 | * b) we need a API call to get the respective section symbols */ |
| 58 | #if defined(__MACH__) |
| 59 | #include <mach-o/getsect.h> |
| 60 | |
| 61 | #define INIT_SECTION(name) do { \ |
| 62 | unsigned long name ## _len; \ |
| 63 | char *__cat(pstart_,name) = getsectdata("__TEXT", \ |
| 64 | #name, &__cat(name,_len)); \ |
| 65 | char *__cat(pstop_,name) = __cat(pstart_,name) + \ |
| 66 | __cat(name, _len); \ |
| 67 | __cat(__start_,name) = (void *)__cat(pstart_,name); \ |
| 68 | __cat(__stop_,name) = (void *)__cat(pstop_,name); \ |
| 69 | } while (0) |
| 70 | #define SECTION(name) __attribute__((section("__TEXT, " #name))) |
| 71 | |
| 72 | struct devtable **__start___devtable, **__stop___devtable; |
| 73 | #else |
| 74 | #define INIT_SECTION(name) /* no-op for ELF */ |
| 75 | #define SECTION(name) __attribute__((section(#name))) |
| 76 | |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 77 | /* We construct a table of pointers in an ELF section (pointers generally |
| 78 | * go unpadded by gcc). ld creates boundary syms for us. */ |
| 79 | extern struct devtable *__start___devtable[], *__stop___devtable[]; |
Andreas Bießmann | dd2a3ac | 2012-02-24 08:23:53 +0100 | [diff] [blame] | 80 | #endif /* __MACH__ */ |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 81 | |
Daniel Tang | 04130cc | 2013-06-09 12:33:55 +1000 | [diff] [blame] | 82 | #if !defined(__used) |
| 83 | # if __GNUC__ == 3 && __GNUC_MINOR__ < 3 |
| 84 | # define __used __attribute__((__unused__)) |
| 85 | # else |
| 86 | # define __used __attribute__((__used__)) |
| 87 | # endif |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 88 | #endif |
| 89 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 90 | /* Define a variable f that holds the value of field f of struct devid |
| 91 | * based at address m. |
| 92 | */ |
| 93 | #define DEF_FIELD(m, devid, f) \ |
| 94 | typeof(((struct devid *)0)->f) f = TO_NATIVE(*(typeof(f) *)((m) + OFF_##devid##_##f)) |
| 95 | /* Define a variable f that holds the address of field f of struct devid |
| 96 | * based at address m. Due to the way typeof works, for a field of type |
| 97 | * T[N] the variable has type T(*)[N], _not_ T*. |
| 98 | */ |
| 99 | #define DEF_FIELD_ADDR(m, devid, f) \ |
| 100 | typeof(((struct devid *)0)->f) *f = ((m) + OFF_##devid##_##f) |
| 101 | |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 102 | /* Add a table entry. We test function type matches while we're here. */ |
| 103 | #define ADD_TO_DEVTABLE(device_id, type, function) \ |
| 104 | static struct devtable __cat(devtable,__LINE__) = { \ |
| 105 | device_id + 0*sizeof((function)((const char *)NULL, \ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 106 | (void *)NULL, \ |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 107 | (char *)NULL)), \ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 108 | SIZE_##type, (function) }; \ |
Andreas Bießmann | dd2a3ac | 2012-02-24 08:23:53 +0100 | [diff] [blame] | 109 | static struct devtable *SECTION(__devtable) __used \ |
| 110 | __cat(devtable_ptr,__LINE__) = &__cat(devtable,__LINE__) |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | #define ADD(str, sep, cond, field) \ |
| 113 | do { \ |
| 114 | strcat(str, sep); \ |
| 115 | if (cond) \ |
| 116 | sprintf(str + strlen(str), \ |
| 117 | sizeof(field) == 1 ? "%02X" : \ |
| 118 | sizeof(field) == 2 ? "%04X" : \ |
| 119 | sizeof(field) == 4 ? "%08X" : "", \ |
| 120 | field); \ |
| 121 | else \ |
| 122 | sprintf(str + strlen(str), "*"); \ |
| 123 | } while(0) |
| 124 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 125 | /* Always end in a wildcard, for future extension */ |
| 126 | static inline void add_wildcard(char *str) |
| 127 | { |
| 128 | int len = strlen(str); |
| 129 | |
| 130 | if (str[len - 1] != '*') |
| 131 | strcat(str + len, "*"); |
| 132 | } |
| 133 | |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 134 | /** |
| 135 | * Check that sizeof(device_id type) are consistent with size of section |
| 136 | * in .o file. If in-consistent then userspace and kernel does not agree |
| 137 | * on actual size which is a bug. |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 138 | * Also verify that the final entry in the table is all zeros. |
Sam Ravnborg | 4ce6efe | 2008-03-23 21:38:54 +0100 | [diff] [blame] | 139 | * Ignore both checks if build host differ from target host and size differs. |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 140 | **/ |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 141 | static void device_id_check(const char *modname, const char *device_id, |
| 142 | unsigned long size, unsigned long id_size, |
| 143 | void *symval) |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 144 | { |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 145 | int i; |
| 146 | |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 147 | if (size % id_size || size < id_size) { |
| 148 | fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo " |
| 149 | "of the size of section __mod_%s_device_table=%lu.\n" |
| 150 | "Fix definition of struct %s_device_id " |
| 151 | "in mod_devicetable.h\n", |
| 152 | modname, device_id, id_size, device_id, size, device_id); |
| 153 | } |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 154 | /* Verify last one is a terminator */ |
| 155 | for (i = 0; i < id_size; i++ ) { |
| 156 | if (*(uint8_t*)(symval+size-id_size+i)) { |
| 157 | fprintf(stderr,"%s: struct %s_device_id is %lu bytes. " |
| 158 | "The last of %lu is:\n", |
| 159 | modname, device_id, id_size, size / id_size); |
| 160 | for (i = 0; i < id_size; i++ ) |
| 161 | fprintf(stderr,"0x%02x ", |
| 162 | *(uint8_t*)(symval+size-id_size+i) ); |
| 163 | fprintf(stderr,"\n"); |
| 164 | fatal("%s: struct %s_device_id is not terminated " |
| 165 | "with a NULL entry!\n", modname, device_id); |
| 166 | } |
| 167 | } |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 168 | } |
| 169 | |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 170 | /* USB is special because the bcdDevice can be matched against a numeric range */ |
Bjørn Mork | 81df2d5 | 2012-05-18 21:27:43 +0200 | [diff] [blame] | 171 | /* Looks like "usb:vNpNdNdcNdscNdpNicNiscNipNinN" */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 172 | static void do_usb_entry(void *symval, |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 173 | unsigned int bcdDevice_initial, int bcdDevice_initial_digits, |
| 174 | unsigned char range_lo, unsigned char range_hi, |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 175 | unsigned char max, struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 177 | char alias[500]; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 178 | DEF_FIELD(symval, usb_device_id, match_flags); |
| 179 | DEF_FIELD(symval, usb_device_id, idVendor); |
| 180 | DEF_FIELD(symval, usb_device_id, idProduct); |
| 181 | DEF_FIELD(symval, usb_device_id, bcdDevice_lo); |
| 182 | DEF_FIELD(symval, usb_device_id, bDeviceClass); |
| 183 | DEF_FIELD(symval, usb_device_id, bDeviceSubClass); |
| 184 | DEF_FIELD(symval, usb_device_id, bDeviceProtocol); |
| 185 | DEF_FIELD(symval, usb_device_id, bInterfaceClass); |
| 186 | DEF_FIELD(symval, usb_device_id, bInterfaceSubClass); |
| 187 | DEF_FIELD(symval, usb_device_id, bInterfaceProtocol); |
| 188 | DEF_FIELD(symval, usb_device_id, bInterfaceNumber); |
| 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | strcpy(alias, "usb:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 191 | ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR, |
| 192 | idVendor); |
| 193 | ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT, |
| 194 | idProduct); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 195 | |
| 196 | strcat(alias, "d"); |
| 197 | if (bcdDevice_initial_digits) |
| 198 | sprintf(alias + strlen(alias), "%0*X", |
| 199 | bcdDevice_initial_digits, bcdDevice_initial); |
| 200 | if (range_lo == range_hi) |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 201 | sprintf(alias + strlen(alias), "%X", range_lo); |
| 202 | else if (range_lo > 0 || range_hi < max) { |
| 203 | if (range_lo > 0x9 || range_hi < 0xA) |
| 204 | sprintf(alias + strlen(alias), |
| 205 | "[%X-%X]", |
| 206 | range_lo, |
| 207 | range_hi); |
| 208 | else { |
| 209 | sprintf(alias + strlen(alias), |
| 210 | range_lo < 0x9 ? "[%X-9" : "[%X", |
| 211 | range_lo); |
| 212 | sprintf(alias + strlen(alias), |
Jan Moskyto Matejka | 03b5632 | 2014-02-07 19:15:11 +0100 | [diff] [blame] | 213 | range_hi > 0xA ? "A-%X]" : "%X]", |
| 214 | range_hi); |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 215 | } |
| 216 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 217 | if (bcdDevice_initial_digits < (sizeof(bcdDevice_lo) * 2 - 1)) |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 218 | strcat(alias, "*"); |
| 219 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 220 | ADD(alias, "dc", match_flags&USB_DEVICE_ID_MATCH_DEV_CLASS, |
| 221 | bDeviceClass); |
| 222 | ADD(alias, "dsc", match_flags&USB_DEVICE_ID_MATCH_DEV_SUBCLASS, |
| 223 | bDeviceSubClass); |
| 224 | ADD(alias, "dp", match_flags&USB_DEVICE_ID_MATCH_DEV_PROTOCOL, |
| 225 | bDeviceProtocol); |
| 226 | ADD(alias, "ic", match_flags&USB_DEVICE_ID_MATCH_INT_CLASS, |
| 227 | bInterfaceClass); |
| 228 | ADD(alias, "isc", match_flags&USB_DEVICE_ID_MATCH_INT_SUBCLASS, |
| 229 | bInterfaceSubClass); |
| 230 | ADD(alias, "ip", match_flags&USB_DEVICE_ID_MATCH_INT_PROTOCOL, |
| 231 | bInterfaceProtocol); |
| 232 | ADD(alias, "in", match_flags&USB_DEVICE_ID_MATCH_INT_NUMBER, |
| 233 | bInterfaceNumber); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 234 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 235 | add_wildcard(alias); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 236 | buf_printf(&mod->dev_table_buf, |
| 237 | "MODULE_ALIAS(\"%s\");\n", alias); |
| 238 | } |
| 239 | |
Nathaniel McCallum | 55f49f2 | 2009-11-18 20:15:28 -0500 | [diff] [blame] | 240 | /* Handles increment/decrement of BCD formatted integers */ |
| 241 | /* Returns the previous value, so it works like i++ or i-- */ |
| 242 | static unsigned int incbcd(unsigned int *bcd, |
| 243 | int inc, |
| 244 | unsigned char max, |
| 245 | size_t chars) |
| 246 | { |
| 247 | unsigned int init = *bcd, i, j; |
| 248 | unsigned long long c, dec = 0; |
| 249 | |
| 250 | /* If bcd is not in BCD format, just increment */ |
| 251 | if (max > 0x9) { |
| 252 | *bcd += inc; |
| 253 | return init; |
| 254 | } |
| 255 | |
| 256 | /* Convert BCD to Decimal */ |
| 257 | for (i=0 ; i < chars ; i++) { |
| 258 | c = (*bcd >> (i << 2)) & 0xf; |
| 259 | c = c > 9 ? 9 : c; /* force to bcd just in case */ |
| 260 | for (j=0 ; j < i ; j++) |
| 261 | c = c * 10; |
| 262 | dec += c; |
| 263 | } |
| 264 | |
| 265 | /* Do our increment/decrement */ |
| 266 | dec += inc; |
| 267 | *bcd = 0; |
| 268 | |
| 269 | /* Convert back to BCD */ |
| 270 | for (i=0 ; i < chars ; i++) { |
| 271 | for (c=1,j=0 ; j < i ; j++) |
| 272 | c = c * 10; |
| 273 | c = (dec / c) % 10; |
| 274 | *bcd += c << (i << 2); |
| 275 | } |
| 276 | return init; |
| 277 | } |
| 278 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 279 | static void do_usb_entry_multi(void *symval, struct module *mod) |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 280 | { |
| 281 | unsigned int devlo, devhi; |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 282 | unsigned char chi, clo, max; |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 283 | int ndigits; |
| 284 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 285 | DEF_FIELD(symval, usb_device_id, match_flags); |
| 286 | DEF_FIELD(symval, usb_device_id, idVendor); |
| 287 | DEF_FIELD(symval, usb_device_id, idProduct); |
| 288 | DEF_FIELD(symval, usb_device_id, bcdDevice_lo); |
| 289 | DEF_FIELD(symval, usb_device_id, bcdDevice_hi); |
| 290 | DEF_FIELD(symval, usb_device_id, bDeviceClass); |
| 291 | DEF_FIELD(symval, usb_device_id, bInterfaceClass); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 292 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 293 | devlo = match_flags & USB_DEVICE_ID_MATCH_DEV_LO ? |
| 294 | bcdDevice_lo : 0x0U; |
| 295 | devhi = match_flags & USB_DEVICE_ID_MATCH_DEV_HI ? |
| 296 | bcdDevice_hi : ~0x0U; |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 297 | |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 298 | /* Figure out if this entry is in bcd or hex format */ |
| 299 | max = 0x9; /* Default to decimal format */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 300 | for (ndigits = 0 ; ndigits < sizeof(bcdDevice_lo) * 2 ; ndigits++) { |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 301 | clo = (devlo >> (ndigits << 2)) & 0xf; |
| 302 | chi = ((devhi > 0x9999 ? 0x9999 : devhi) >> (ndigits << 2)) & 0xf; |
| 303 | if (clo > max || chi > max) { |
| 304 | max = 0xf; |
| 305 | break; |
| 306 | } |
| 307 | } |
| 308 | |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 309 | /* |
| 310 | * Some modules (visor) have empty slots as placeholder for |
| 311 | * run-time specification that results in catch-all alias |
| 312 | */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 313 | if (!(idVendor | idProduct | bDeviceClass | bInterfaceClass)) |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 314 | return; |
| 315 | |
| 316 | /* Convert numeric bcdDevice range into fnmatch-able pattern(s) */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 317 | for (ndigits = sizeof(bcdDevice_lo) * 2 - 1; devlo <= devhi; ndigits--) { |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 318 | clo = devlo & 0xf; |
| 319 | chi = devhi & 0xf; |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 320 | if (chi > max) /* If we are in bcd mode, truncate if necessary */ |
| 321 | chi = max; |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 322 | devlo >>= 4; |
| 323 | devhi >>= 4; |
| 324 | |
| 325 | if (devlo == devhi || !ndigits) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 326 | do_usb_entry(symval, devlo, ndigits, clo, chi, max, mod); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 327 | break; |
| 328 | } |
| 329 | |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 330 | if (clo > 0x0) |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 331 | do_usb_entry(symval, |
Nathaniel McCallum | 55f49f2 | 2009-11-18 20:15:28 -0500 | [diff] [blame] | 332 | incbcd(&devlo, 1, max, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 333 | sizeof(bcdDevice_lo) * 2), |
Nathaniel McCallum | 55f49f2 | 2009-11-18 20:15:28 -0500 | [diff] [blame] | 334 | ndigits, clo, max, max, mod); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 335 | |
Nathaniel McCallum | afe2dab | 2009-11-18 20:11:23 -0500 | [diff] [blame] | 336 | if (chi < max) |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 337 | do_usb_entry(symval, |
Nathaniel McCallum | 55f49f2 | 2009-11-18 20:15:28 -0500 | [diff] [blame] | 338 | incbcd(&devhi, -1, max, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 339 | sizeof(bcdDevice_lo) * 2), |
Nathaniel McCallum | 55f49f2 | 2009-11-18 20:15:28 -0500 | [diff] [blame] | 340 | ndigits, 0x0, chi, max, mod); |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 341 | } |
| 342 | } |
| 343 | |
| 344 | static void do_usb_table(void *symval, unsigned long size, |
| 345 | struct module *mod) |
| 346 | { |
| 347 | unsigned int i; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 348 | const unsigned long id_size = SIZE_usb_device_id; |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 349 | |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 350 | device_id_check(mod->name, "usb", size, id_size, symval); |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 351 | |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 352 | /* Leave last one: it's the terminator. */ |
| 353 | size -= id_size; |
| 354 | |
| 355 | for (i = 0; i < size; i += id_size) |
| 356 | do_usb_entry_multi(symval + i, mod); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Jiri Slaby | e8c84f9 | 2008-05-19 15:50:01 +0200 | [diff] [blame] | 359 | /* Looks like: hid:bNvNpN */ |
| 360 | static int do_hid_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 361 | void *symval, char *alias) |
Jiri Slaby | e8c84f9 | 2008-05-19 15:50:01 +0200 | [diff] [blame] | 362 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 363 | DEF_FIELD(symval, hid_device_id, bus); |
| 364 | DEF_FIELD(symval, hid_device_id, group); |
| 365 | DEF_FIELD(symval, hid_device_id, vendor); |
| 366 | DEF_FIELD(symval, hid_device_id, product); |
Jiri Slaby | e8c84f9 | 2008-05-19 15:50:01 +0200 | [diff] [blame] | 367 | |
Henrik Rydberg | 7431fb7 | 2012-04-23 12:07:04 +0200 | [diff] [blame] | 368 | sprintf(alias, "hid:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 369 | ADD(alias, "b", bus != HID_BUS_ANY, bus); |
| 370 | ADD(alias, "g", group != HID_GROUP_ANY, group); |
| 371 | ADD(alias, "v", vendor != HID_ANY_ID, vendor); |
| 372 | ADD(alias, "p", product != HID_ANY_ID, product); |
Jiri Slaby | e8c84f9 | 2008-05-19 15:50:01 +0200 | [diff] [blame] | 373 | |
| 374 | return 1; |
| 375 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 376 | ADD_TO_DEVTABLE("hid", hid_device_id, do_hid_entry); |
Jiri Slaby | e8c84f9 | 2008-05-19 15:50:01 +0200 | [diff] [blame] | 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | /* Looks like: ieee1394:venNmoNspNverN */ |
| 379 | static int do_ieee1394_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 380 | void *symval, char *alias) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 382 | DEF_FIELD(symval, ieee1394_device_id, match_flags); |
| 383 | DEF_FIELD(symval, ieee1394_device_id, vendor_id); |
| 384 | DEF_FIELD(symval, ieee1394_device_id, model_id); |
| 385 | DEF_FIELD(symval, ieee1394_device_id, specifier_id); |
| 386 | DEF_FIELD(symval, ieee1394_device_id, version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
| 388 | strcpy(alias, "ieee1394:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 389 | ADD(alias, "ven", match_flags & IEEE1394_MATCH_VENDOR_ID, |
| 390 | vendor_id); |
| 391 | ADD(alias, "mo", match_flags & IEEE1394_MATCH_MODEL_ID, |
| 392 | model_id); |
| 393 | ADD(alias, "sp", match_flags & IEEE1394_MATCH_SPECIFIER_ID, |
| 394 | specifier_id); |
| 395 | ADD(alias, "ver", match_flags & IEEE1394_MATCH_VERSION, |
| 396 | version); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 398 | add_wildcard(alias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | return 1; |
| 400 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 401 | ADD_TO_DEVTABLE("ieee1394", ieee1394_device_id, do_ieee1394_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
| 403 | /* Looks like: pci:vNdNsvNsdNbcNscNiN. */ |
| 404 | static int do_pci_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 405 | void *symval, char *alias) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | { |
| 407 | /* Class field can be divided into these three. */ |
| 408 | unsigned char baseclass, subclass, interface, |
| 409 | baseclass_mask, subclass_mask, interface_mask; |
| 410 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 411 | DEF_FIELD(symval, pci_device_id, vendor); |
| 412 | DEF_FIELD(symval, pci_device_id, device); |
| 413 | DEF_FIELD(symval, pci_device_id, subvendor); |
| 414 | DEF_FIELD(symval, pci_device_id, subdevice); |
| 415 | DEF_FIELD(symval, pci_device_id, class); |
| 416 | DEF_FIELD(symval, pci_device_id, class_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | strcpy(alias, "pci:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 419 | ADD(alias, "v", vendor != PCI_ANY_ID, vendor); |
| 420 | ADD(alias, "d", device != PCI_ANY_ID, device); |
| 421 | ADD(alias, "sv", subvendor != PCI_ANY_ID, subvendor); |
| 422 | ADD(alias, "sd", subdevice != PCI_ANY_ID, subdevice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 424 | baseclass = (class) >> 16; |
| 425 | baseclass_mask = (class_mask) >> 16; |
| 426 | subclass = (class) >> 8; |
| 427 | subclass_mask = (class_mask) >> 8; |
| 428 | interface = class; |
| 429 | interface_mask = class_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
| 431 | if ((baseclass_mask != 0 && baseclass_mask != 0xFF) |
| 432 | || (subclass_mask != 0 && subclass_mask != 0xFF) |
| 433 | || (interface_mask != 0 && interface_mask != 0xFF)) { |
Sam Ravnborg | cb80514 | 2006-01-28 16:57:26 +0100 | [diff] [blame] | 434 | warn("Can't handle masks in %s:%04X\n", |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 435 | filename, class_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | ADD(alias, "bc", baseclass_mask == 0xFF, baseclass); |
| 440 | ADD(alias, "sc", subclass_mask == 0xFF, subclass); |
| 441 | ADD(alias, "i", interface_mask == 0xFF, interface); |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 442 | add_wildcard(alias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | return 1; |
| 444 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 445 | ADD_TO_DEVTABLE("pci", pci_device_id, do_pci_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Sam Ravnborg | 62070fa | 2006-03-03 16:46:04 +0100 | [diff] [blame] | 447 | /* looks like: "ccw:tNmNdtNdmN" */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | static int do_ccw_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 449 | void *symval, char *alias) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 451 | DEF_FIELD(symval, ccw_device_id, match_flags); |
| 452 | DEF_FIELD(symval, ccw_device_id, cu_type); |
| 453 | DEF_FIELD(symval, ccw_device_id, cu_model); |
| 454 | DEF_FIELD(symval, ccw_device_id, dev_type); |
| 455 | DEF_FIELD(symval, ccw_device_id, dev_model); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | |
| 457 | strcpy(alias, "ccw:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 458 | ADD(alias, "t", match_flags&CCW_DEVICE_ID_MATCH_CU_TYPE, |
| 459 | cu_type); |
| 460 | ADD(alias, "m", match_flags&CCW_DEVICE_ID_MATCH_CU_MODEL, |
| 461 | cu_model); |
| 462 | ADD(alias, "dt", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_TYPE, |
| 463 | dev_type); |
| 464 | ADD(alias, "dm", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_MODEL, |
| 465 | dev_model); |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 466 | add_wildcard(alias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | return 1; |
| 468 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 469 | ADD_TO_DEVTABLE("ccw", ccw_device_id, do_ccw_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Martin Schwidefsky | 1534c38 | 2006-09-20 15:58:25 +0200 | [diff] [blame] | 471 | /* looks like: "ap:tN" */ |
| 472 | static int do_ap_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 473 | void *symval, char *alias) |
Martin Schwidefsky | 1534c38 | 2006-09-20 15:58:25 +0200 | [diff] [blame] | 474 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 475 | DEF_FIELD(symval, ap_device_id, dev_type); |
| 476 | |
| 477 | sprintf(alias, "ap:t%02X*", dev_type); |
Martin Schwidefsky | 1534c38 | 2006-09-20 15:58:25 +0200 | [diff] [blame] | 478 | return 1; |
| 479 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 480 | ADD_TO_DEVTABLE("ap", ap_device_id, do_ap_entry); |
Martin Schwidefsky | 1534c38 | 2006-09-20 15:58:25 +0200 | [diff] [blame] | 481 | |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 482 | /* looks like: "css:tN" */ |
| 483 | static int do_css_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 484 | void *symval, char *alias) |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 485 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 486 | DEF_FIELD(symval, css_device_id, type); |
| 487 | |
| 488 | sprintf(alias, "css:t%01X", type); |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 489 | return 1; |
| 490 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 491 | ADD_TO_DEVTABLE("css", css_device_id, do_css_entry); |
Cornelia Huck | 7e9db9e | 2008-07-14 09:58:44 +0200 | [diff] [blame] | 492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | /* Looks like: "serio:tyNprNidNexN" */ |
| 494 | static int do_serio_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 495 | void *symval, char *alias) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 497 | DEF_FIELD(symval, serio_device_id, type); |
| 498 | DEF_FIELD(symval, serio_device_id, proto); |
| 499 | DEF_FIELD(symval, serio_device_id, id); |
| 500 | DEF_FIELD(symval, serio_device_id, extra); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | strcpy(alias, "serio:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 503 | ADD(alias, "ty", type != SERIO_ANY, type); |
| 504 | ADD(alias, "pr", proto != SERIO_ANY, proto); |
| 505 | ADD(alias, "id", id != SERIO_ANY, id); |
| 506 | ADD(alias, "ex", extra != SERIO_ANY, extra); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 508 | add_wildcard(alias); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | return 1; |
| 510 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 511 | ADD_TO_DEVTABLE("serio", serio_device_id, do_serio_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 513 | /* looks like: "acpi:ACPI0003 or acpi:PNP0C0B" or "acpi:LNXVIDEO" */ |
| 514 | static int do_acpi_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 515 | void *symval, char *alias) |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 516 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 517 | DEF_FIELD_ADDR(symval, acpi_device_id, id); |
| 518 | sprintf(alias, "acpi*:%s:*", *id); |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 519 | return 1; |
| 520 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 521 | ADD_TO_DEVTABLE("acpi", acpi_device_id, do_acpi_entry); |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | /* looks like: "pnp:dD" */ |
Kay Sievers | 22454cb | 2008-05-28 23:06:47 +0200 | [diff] [blame] | 524 | static void do_pnp_device_entry(void *symval, unsigned long size, |
| 525 | struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 527 | const unsigned long id_size = SIZE_pnp_device_id; |
Kay Sievers | 5e4c656 | 2008-08-21 15:28:56 +0200 | [diff] [blame] | 528 | const unsigned int count = (size / id_size)-1; |
Kay Sievers | 5e4c656 | 2008-08-21 15:28:56 +0200 | [diff] [blame] | 529 | unsigned int i; |
Kay Sievers | 22454cb | 2008-05-28 23:06:47 +0200 | [diff] [blame] | 530 | |
| 531 | device_id_check(mod->name, "pnp", size, id_size, symval); |
| 532 | |
Kay Sievers | 5e4c656 | 2008-08-21 15:28:56 +0200 | [diff] [blame] | 533 | for (i = 0; i < count; i++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 534 | DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id); |
| 535 | char acpi_id[sizeof(*id)]; |
Kay Sievers | 72638f5 | 2009-01-08 03:06:42 +0100 | [diff] [blame] | 536 | int j; |
Kay Sievers | 5e4c656 | 2008-08-21 15:28:56 +0200 | [diff] [blame] | 537 | |
| 538 | buf_printf(&mod->dev_table_buf, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 539 | "MODULE_ALIAS(\"pnp:d%s*\");\n", *id); |
Kay Sievers | 72638f5 | 2009-01-08 03:06:42 +0100 | [diff] [blame] | 540 | |
| 541 | /* fix broken pnp bus lowercasing */ |
| 542 | for (j = 0; j < sizeof(acpi_id); j++) |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 543 | acpi_id[j] = toupper((*id)[j]); |
Kay Sievers | 5e4c656 | 2008-08-21 15:28:56 +0200 | [diff] [blame] | 544 | buf_printf(&mod->dev_table_buf, |
Kay Sievers | 72638f5 | 2009-01-08 03:06:42 +0100 | [diff] [blame] | 545 | "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id); |
Kay Sievers | 5e4c656 | 2008-08-21 15:28:56 +0200 | [diff] [blame] | 546 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
| 548 | |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 549 | /* looks like: "pnp:dD" for every device of the card */ |
| 550 | static void do_pnp_card_entries(void *symval, unsigned long size, |
| 551 | struct module *mod) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 553 | const unsigned long id_size = SIZE_pnp_card_device_id; |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 554 | const unsigned int count = (size / id_size)-1; |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 555 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 557 | device_id_check(mod->name, "pnp", size, id_size, symval); |
| 558 | |
| 559 | for (i = 0; i < count; i++) { |
| 560 | unsigned int j; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 561 | DEF_FIELD_ADDR(symval + i*id_size, pnp_card_device_id, devs); |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 562 | |
| 563 | for (j = 0; j < PNP_MAX_DEVICES; j++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 564 | const char *id = (char *)(*devs)[j].id; |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 565 | int i2, j2; |
| 566 | int dup = 0; |
| 567 | |
| 568 | if (!id[0]) |
| 569 | break; |
| 570 | |
| 571 | /* find duplicate, already added value */ |
| 572 | for (i2 = 0; i2 < i && !dup; i2++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 573 | DEF_FIELD_ADDR(symval + i2*id_size, pnp_card_device_id, devs); |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 574 | |
| 575 | for (j2 = 0; j2 < PNP_MAX_DEVICES; j2++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 576 | const char *id2 = (char *)(*devs)[j2].id; |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 577 | |
| 578 | if (!id2[0]) |
| 579 | break; |
| 580 | |
| 581 | if (!strcmp(id, id2)) { |
| 582 | dup = 1; |
| 583 | break; |
| 584 | } |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | /* add an individual alias for every device entry */ |
Kay Sievers | 22454cb | 2008-05-28 23:06:47 +0200 | [diff] [blame] | 589 | if (!dup) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 590 | char acpi_id[PNP_ID_LEN]; |
Kay Sievers | 72638f5 | 2009-01-08 03:06:42 +0100 | [diff] [blame] | 591 | int k; |
| 592 | |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 593 | buf_printf(&mod->dev_table_buf, |
| 594 | "MODULE_ALIAS(\"pnp:d%s*\");\n", id); |
Kay Sievers | 72638f5 | 2009-01-08 03:06:42 +0100 | [diff] [blame] | 595 | |
| 596 | /* fix broken pnp bus lowercasing */ |
| 597 | for (k = 0; k < sizeof(acpi_id); k++) |
| 598 | acpi_id[k] = toupper(id[k]); |
Kay Sievers | 22454cb | 2008-05-28 23:06:47 +0200 | [diff] [blame] | 599 | buf_printf(&mod->dev_table_buf, |
Kay Sievers | 72638f5 | 2009-01-08 03:06:42 +0100 | [diff] [blame] | 600 | "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id); |
Kay Sievers | 22454cb | 2008-05-28 23:06:47 +0200 | [diff] [blame] | 601 | } |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 602 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | } |
| 605 | |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 606 | /* Looks like: pcmcia:mNcNfNfnNpfnNvaNvbNvcNvdN. */ |
| 607 | static int do_pcmcia_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 608 | void *symval, char *alias) |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 609 | { |
| 610 | unsigned int i; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 611 | DEF_FIELD(symval, pcmcia_device_id, match_flags); |
| 612 | DEF_FIELD(symval, pcmcia_device_id, manf_id); |
| 613 | DEF_FIELD(symval, pcmcia_device_id, card_id); |
| 614 | DEF_FIELD(symval, pcmcia_device_id, func_id); |
| 615 | DEF_FIELD(symval, pcmcia_device_id, function); |
| 616 | DEF_FIELD(symval, pcmcia_device_id, device_no); |
| 617 | DEF_FIELD_ADDR(symval, pcmcia_device_id, prod_id_hash); |
Kars de Jong | 4fb7edc | 2005-09-25 14:39:46 +0200 | [diff] [blame] | 618 | |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 619 | for (i=0; i<4; i++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 620 | (*prod_id_hash)[i] = TO_NATIVE((*prod_id_hash)[i]); |
| 621 | } |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 622 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 623 | strcpy(alias, "pcmcia:"); |
| 624 | ADD(alias, "m", match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID, |
| 625 | manf_id); |
| 626 | ADD(alias, "c", match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID, |
| 627 | card_id); |
| 628 | ADD(alias, "f", match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID, |
| 629 | func_id); |
| 630 | ADD(alias, "fn", match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION, |
| 631 | function); |
| 632 | ADD(alias, "pfn", match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO, |
| 633 | device_no); |
| 634 | ADD(alias, "pa", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1, (*prod_id_hash)[0]); |
| 635 | ADD(alias, "pb", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2, (*prod_id_hash)[1]); |
| 636 | ADD(alias, "pc", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3, (*prod_id_hash)[2]); |
| 637 | ADD(alias, "pd", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4, (*prod_id_hash)[3]); |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 638 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 639 | add_wildcard(alias); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 640 | return 1; |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 641 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 642 | ADD_TO_DEVTABLE("pcmcia", pcmcia_device_id, do_pcmcia_entry); |
Dominik Brodowski | 90829cf | 2005-06-27 16:28:12 -0700 | [diff] [blame] | 643 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 644 | static int do_of_entry (const char *filename, void *symval, char *alias) |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 645 | { |
Sylvain Munaut | d1ab423 | 2007-05-08 19:59:29 +1000 | [diff] [blame] | 646 | int len; |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 647 | char *tmp; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 648 | DEF_FIELD_ADDR(symval, of_device_id, name); |
| 649 | DEF_FIELD_ADDR(symval, of_device_id, type); |
| 650 | DEF_FIELD_ADDR(symval, of_device_id, compatible); |
Sylvain Munaut | d1ab423 | 2007-05-08 19:59:29 +1000 | [diff] [blame] | 651 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 652 | len = sprintf (alias, "of:N%sT%s", |
| 653 | (*name)[0] ? *name : "*", |
| 654 | (*type)[0] ? *type : "*"); |
| 655 | |
| 656 | if (compatible[0]) |
Sylvain Munaut | d1ab423 | 2007-05-08 19:59:29 +1000 | [diff] [blame] | 657 | sprintf (&alias[len], "%sC%s", |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 658 | (*type)[0] ? "*" : "", |
| 659 | *compatible); |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 660 | |
| 661 | /* Replace all whitespace with underscores */ |
| 662 | for (tmp = alias; tmp && *tmp; tmp++) |
| 663 | if (isspace (*tmp)) |
| 664 | *tmp = '_'; |
| 665 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 666 | add_wildcard(alias); |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 667 | return 1; |
| 668 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 669 | ADD_TO_DEVTABLE("of", of_device_id, do_of_entry); |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 670 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 671 | static int do_vio_entry(const char *filename, void *symval, |
Stephen Rothwell | fb120da | 2005-08-17 16:42:59 +1000 | [diff] [blame] | 672 | char *alias) |
| 673 | { |
| 674 | char *tmp; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 675 | DEF_FIELD_ADDR(symval, vio_device_id, type); |
| 676 | DEF_FIELD_ADDR(symval, vio_device_id, compat); |
Stephen Rothwell | fb120da | 2005-08-17 16:42:59 +1000 | [diff] [blame] | 677 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 678 | sprintf(alias, "vio:T%sS%s", (*type)[0] ? *type : "*", |
| 679 | (*compat)[0] ? *compat : "*"); |
Stephen Rothwell | fb120da | 2005-08-17 16:42:59 +1000 | [diff] [blame] | 680 | |
| 681 | /* Replace all whitespace with underscores */ |
| 682 | for (tmp = alias; tmp && *tmp; tmp++) |
| 683 | if (isspace (*tmp)) |
| 684 | *tmp = '_'; |
| 685 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 686 | add_wildcard(alias); |
Stephen Rothwell | fb120da | 2005-08-17 16:42:59 +1000 | [diff] [blame] | 687 | return 1; |
| 688 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 689 | ADD_TO_DEVTABLE("vio", vio_device_id, do_vio_entry); |
Stephen Rothwell | fb120da | 2005-08-17 16:42:59 +1000 | [diff] [blame] | 690 | |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 691 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) |
| 692 | |
| 693 | static void do_input(char *alias, |
| 694 | kernel_ulong_t *arr, unsigned int min, unsigned int max) |
| 695 | { |
| 696 | unsigned int i; |
Dmitry Torokhov | ddc5d34 | 2006-04-26 00:14:19 -0400 | [diff] [blame] | 697 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 698 | for (i = min / BITS_PER_LONG; i < max / BITS_PER_LONG + 1; i++) |
| 699 | arr[i] = TO_NATIVE(arr[i]); |
Dmitry Torokhov | ddc5d34 | 2006-04-26 00:14:19 -0400 | [diff] [blame] | 700 | for (i = min; i < max; i++) |
Hans de Goede | e0e9263 | 2006-08-15 12:09:27 +0200 | [diff] [blame] | 701 | if (arr[i / BITS_PER_LONG] & (1L << (i%BITS_PER_LONG))) |
Dmitry Torokhov | ddc5d34 | 2006-04-26 00:14:19 -0400 | [diff] [blame] | 702 | sprintf(alias + strlen(alias), "%X,*", i); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | /* input:b0v0p0e0-eXkXrXaXmXlXsXfXwX where X is comma-separated %02X. */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 706 | static int do_input_entry(const char *filename, void *symval, |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 707 | char *alias) |
| 708 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 709 | DEF_FIELD(symval, input_device_id, flags); |
| 710 | DEF_FIELD(symval, input_device_id, bustype); |
| 711 | DEF_FIELD(symval, input_device_id, vendor); |
| 712 | DEF_FIELD(symval, input_device_id, product); |
| 713 | DEF_FIELD(symval, input_device_id, version); |
| 714 | DEF_FIELD_ADDR(symval, input_device_id, evbit); |
| 715 | DEF_FIELD_ADDR(symval, input_device_id, keybit); |
| 716 | DEF_FIELD_ADDR(symval, input_device_id, relbit); |
| 717 | DEF_FIELD_ADDR(symval, input_device_id, absbit); |
| 718 | DEF_FIELD_ADDR(symval, input_device_id, mscbit); |
| 719 | DEF_FIELD_ADDR(symval, input_device_id, ledbit); |
| 720 | DEF_FIELD_ADDR(symval, input_device_id, sndbit); |
| 721 | DEF_FIELD_ADDR(symval, input_device_id, ffbit); |
| 722 | DEF_FIELD_ADDR(symval, input_device_id, swbit); |
| 723 | |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 724 | sprintf(alias, "input:"); |
| 725 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 726 | ADD(alias, "b", flags & INPUT_DEVICE_ID_MATCH_BUS, bustype); |
| 727 | ADD(alias, "v", flags & INPUT_DEVICE_ID_MATCH_VENDOR, vendor); |
| 728 | ADD(alias, "p", flags & INPUT_DEVICE_ID_MATCH_PRODUCT, product); |
| 729 | ADD(alias, "e", flags & INPUT_DEVICE_ID_MATCH_VERSION, version); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 730 | |
| 731 | sprintf(alias + strlen(alias), "-e*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 732 | if (flags & INPUT_DEVICE_ID_MATCH_EVBIT) |
| 733 | do_input(alias, *evbit, 0, INPUT_DEVICE_ID_EV_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 734 | sprintf(alias + strlen(alias), "k*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 735 | if (flags & INPUT_DEVICE_ID_MATCH_KEYBIT) |
| 736 | do_input(alias, *keybit, |
Sam Ravnborg | dc24f0e | 2007-03-09 19:59:06 +0100 | [diff] [blame] | 737 | INPUT_DEVICE_ID_KEY_MIN_INTERESTING, |
| 738 | INPUT_DEVICE_ID_KEY_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 739 | sprintf(alias + strlen(alias), "r*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 740 | if (flags & INPUT_DEVICE_ID_MATCH_RELBIT) |
| 741 | do_input(alias, *relbit, 0, INPUT_DEVICE_ID_REL_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 742 | sprintf(alias + strlen(alias), "a*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 743 | if (flags & INPUT_DEVICE_ID_MATCH_ABSBIT) |
| 744 | do_input(alias, *absbit, 0, INPUT_DEVICE_ID_ABS_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 745 | sprintf(alias + strlen(alias), "m*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 746 | if (flags & INPUT_DEVICE_ID_MATCH_MSCIT) |
| 747 | do_input(alias, *mscbit, 0, INPUT_DEVICE_ID_MSC_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 748 | sprintf(alias + strlen(alias), "l*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 749 | if (flags & INPUT_DEVICE_ID_MATCH_LEDBIT) |
| 750 | do_input(alias, *ledbit, 0, INPUT_DEVICE_ID_LED_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 751 | sprintf(alias + strlen(alias), "s*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 752 | if (flags & INPUT_DEVICE_ID_MATCH_SNDBIT) |
| 753 | do_input(alias, *sndbit, 0, INPUT_DEVICE_ID_SND_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 754 | sprintf(alias + strlen(alias), "f*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 755 | if (flags & INPUT_DEVICE_ID_MATCH_FFBIT) |
| 756 | do_input(alias, *ffbit, 0, INPUT_DEVICE_ID_FF_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 757 | sprintf(alias + strlen(alias), "w*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 758 | if (flags & INPUT_DEVICE_ID_MATCH_SWBIT) |
| 759 | do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 760 | return 1; |
| 761 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 762 | ADD_TO_DEVTABLE("input", input_device_id, do_input_entry); |
Rusty Russell | 1d8f430 | 2005-12-07 21:40:34 +0100 | [diff] [blame] | 763 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 764 | static int do_eisa_entry(const char *filename, void *symval, |
Michael Tokarev | 07563c7 | 2006-09-27 01:50:56 -0700 | [diff] [blame] | 765 | char *alias) |
| 766 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 767 | DEF_FIELD_ADDR(symval, eisa_device_id, sig); |
| 768 | if (sig[0]) |
| 769 | sprintf(alias, EISA_DEVICE_MODALIAS_FMT "*", *sig); |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 770 | else |
| 771 | strcat(alias, "*"); |
Michael Tokarev | 07563c7 | 2006-09-27 01:50:56 -0700 | [diff] [blame] | 772 | return 1; |
| 773 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 774 | ADD_TO_DEVTABLE("eisa", eisa_device_id, do_eisa_entry); |
Michael Tokarev | 07563c7 | 2006-09-27 01:50:56 -0700 | [diff] [blame] | 775 | |
Kyle McMartin | f3cf267 | 2007-01-13 14:58:21 -0500 | [diff] [blame] | 776 | /* Looks like: parisc:tNhvNrevNsvN */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 777 | static int do_parisc_entry(const char *filename, void *symval, |
Kyle McMartin | f3cf267 | 2007-01-13 14:58:21 -0500 | [diff] [blame] | 778 | char *alias) |
| 779 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 780 | DEF_FIELD(symval, parisc_device_id, hw_type); |
| 781 | DEF_FIELD(symval, parisc_device_id, hversion); |
| 782 | DEF_FIELD(symval, parisc_device_id, hversion_rev); |
| 783 | DEF_FIELD(symval, parisc_device_id, sversion); |
Kyle McMartin | f3cf267 | 2007-01-13 14:58:21 -0500 | [diff] [blame] | 784 | |
| 785 | strcpy(alias, "parisc:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 786 | ADD(alias, "t", hw_type != PA_HWTYPE_ANY_ID, hw_type); |
| 787 | ADD(alias, "hv", hversion != PA_HVERSION_ANY_ID, hversion); |
| 788 | ADD(alias, "rev", hversion_rev != PA_HVERSION_REV_ANY_ID, hversion_rev); |
| 789 | ADD(alias, "sv", sversion != PA_SVERSION_ANY_ID, sversion); |
Kyle McMartin | f3cf267 | 2007-01-13 14:58:21 -0500 | [diff] [blame] | 790 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 791 | add_wildcard(alias); |
Kyle McMartin | f3cf267 | 2007-01-13 14:58:21 -0500 | [diff] [blame] | 792 | return 1; |
| 793 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 794 | ADD_TO_DEVTABLE("parisc", parisc_device_id, do_parisc_entry); |
Kyle McMartin | f3cf267 | 2007-01-13 14:58:21 -0500 | [diff] [blame] | 795 | |
Pierre Ossman | d59b66c | 2007-06-17 11:34:23 +0200 | [diff] [blame] | 796 | /* Looks like: sdio:cNvNdN. */ |
| 797 | static int do_sdio_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 798 | void *symval, char *alias) |
Pierre Ossman | d59b66c | 2007-06-17 11:34:23 +0200 | [diff] [blame] | 799 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 800 | DEF_FIELD(symval, sdio_device_id, class); |
| 801 | DEF_FIELD(symval, sdio_device_id, vendor); |
| 802 | DEF_FIELD(symval, sdio_device_id, device); |
Pierre Ossman | d59b66c | 2007-06-17 11:34:23 +0200 | [diff] [blame] | 803 | |
| 804 | strcpy(alias, "sdio:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 805 | ADD(alias, "c", class != (__u8)SDIO_ANY_ID, class); |
| 806 | ADD(alias, "v", vendor != (__u16)SDIO_ANY_ID, vendor); |
| 807 | ADD(alias, "d", device != (__u16)SDIO_ANY_ID, device); |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 808 | add_wildcard(alias); |
Linus Torvalds | 038a500 | 2007-10-11 19:40:14 -0700 | [diff] [blame] | 809 | return 1; |
| 810 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 811 | ADD_TO_DEVTABLE("sdio", sdio_device_id, do_sdio_entry); |
Pierre Ossman | d59b66c | 2007-06-17 11:34:23 +0200 | [diff] [blame] | 812 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 813 | /* Looks like: ssb:vNidNrevN. */ |
| 814 | static int do_ssb_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 815 | void *symval, char *alias) |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 816 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 817 | DEF_FIELD(symval, ssb_device_id, vendor); |
| 818 | DEF_FIELD(symval, ssb_device_id, coreid); |
| 819 | DEF_FIELD(symval, ssb_device_id, revision); |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 820 | |
| 821 | strcpy(alias, "ssb:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 822 | ADD(alias, "v", vendor != SSB_ANY_VENDOR, vendor); |
| 823 | ADD(alias, "id", coreid != SSB_ANY_ID, coreid); |
| 824 | ADD(alias, "rev", revision != SSB_ANY_REV, revision); |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 825 | add_wildcard(alias); |
Pierre Ossman | d59b66c | 2007-06-17 11:34:23 +0200 | [diff] [blame] | 826 | return 1; |
| 827 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 828 | ADD_TO_DEVTABLE("ssb", ssb_device_id, do_ssb_entry); |
Pierre Ossman | d59b66c | 2007-06-17 11:34:23 +0200 | [diff] [blame] | 829 | |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 830 | /* Looks like: bcma:mNidNrevNclN. */ |
| 831 | static int do_bcma_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 832 | void *symval, char *alias) |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 833 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 834 | DEF_FIELD(symval, bcma_device_id, manuf); |
| 835 | DEF_FIELD(symval, bcma_device_id, id); |
| 836 | DEF_FIELD(symval, bcma_device_id, rev); |
| 837 | DEF_FIELD(symval, bcma_device_id, class); |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 838 | |
| 839 | strcpy(alias, "bcma:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 840 | ADD(alias, "m", manuf != BCMA_ANY_MANUF, manuf); |
| 841 | ADD(alias, "id", id != BCMA_ANY_ID, id); |
| 842 | ADD(alias, "rev", rev != BCMA_ANY_REV, rev); |
| 843 | ADD(alias, "cl", class != BCMA_ANY_CLASS, class); |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 844 | add_wildcard(alias); |
| 845 | return 1; |
| 846 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 847 | ADD_TO_DEVTABLE("bcma", bcma_device_id, do_bcma_entry); |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 848 | |
Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 849 | /* Looks like: virtio:dNvN */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 850 | static int do_virtio_entry(const char *filename, void *symval, |
Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 851 | char *alias) |
| 852 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 853 | DEF_FIELD(symval, virtio_device_id, device); |
| 854 | DEF_FIELD(symval, virtio_device_id, vendor); |
Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 855 | |
| 856 | strcpy(alias, "virtio:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 857 | ADD(alias, "d", device != VIRTIO_DEV_ANY_ID, device); |
| 858 | ADD(alias, "v", vendor != VIRTIO_DEV_ANY_ID, vendor); |
Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 859 | |
Jean Delvare | ac55182 | 2008-05-02 20:37:21 +0200 | [diff] [blame] | 860 | add_wildcard(alias); |
Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 861 | return 1; |
| 862 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 863 | ADD_TO_DEVTABLE("virtio", virtio_device_id, do_virtio_entry); |
Rusty Russell | b01d9f2 | 2007-10-22 11:03:39 +1000 | [diff] [blame] | 864 | |
K. Y. Srinivasan | d2ee52a | 2011-08-25 09:48:30 -0700 | [diff] [blame] | 865 | /* |
| 866 | * Looks like: vmbus:guid |
| 867 | * Each byte of the guid will be represented by two hex characters |
| 868 | * in the name. |
| 869 | */ |
| 870 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 871 | static int do_vmbus_entry(const char *filename, void *symval, |
K. Y. Srinivasan | d2ee52a | 2011-08-25 09:48:30 -0700 | [diff] [blame] | 872 | char *alias) |
| 873 | { |
| 874 | int i; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 875 | DEF_FIELD_ADDR(symval, hv_vmbus_device_id, guid); |
| 876 | char guid_name[(sizeof(*guid) + 1) * 2]; |
K. Y. Srinivasan | d2ee52a | 2011-08-25 09:48:30 -0700 | [diff] [blame] | 877 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 878 | for (i = 0; i < (sizeof(*guid) * 2); i += 2) |
| 879 | sprintf(&guid_name[i], "%02x", TO_NATIVE((*guid)[i/2])); |
K. Y. Srinivasan | d2ee52a | 2011-08-25 09:48:30 -0700 | [diff] [blame] | 880 | |
| 881 | strcpy(alias, "vmbus:"); |
| 882 | strcat(alias, guid_name); |
| 883 | |
| 884 | return 1; |
| 885 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 886 | ADD_TO_DEVTABLE("vmbus", hv_vmbus_device_id, do_vmbus_entry); |
K. Y. Srinivasan | d2ee52a | 2011-08-25 09:48:30 -0700 | [diff] [blame] | 887 | |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 888 | /* Looks like: i2c:S */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 889 | static int do_i2c_entry(const char *filename, void *symval, |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 890 | char *alias) |
| 891 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 892 | DEF_FIELD_ADDR(symval, i2c_device_id, name); |
| 893 | sprintf(alias, I2C_MODULE_PREFIX "%s", *name); |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 894 | |
| 895 | return 1; |
| 896 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 897 | ADD_TO_DEVTABLE("i2c", i2c_device_id, do_i2c_entry); |
Jean Delvare | d2653e9 | 2008-04-29 23:11:39 +0200 | [diff] [blame] | 898 | |
Anton Vorontsov | e0626e3 | 2009-09-22 16:46:08 -0700 | [diff] [blame] | 899 | /* Looks like: spi:S */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 900 | static int do_spi_entry(const char *filename, void *symval, |
Anton Vorontsov | 75368bf | 2009-09-22 16:46:04 -0700 | [diff] [blame] | 901 | char *alias) |
| 902 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 903 | DEF_FIELD_ADDR(symval, spi_device_id, name); |
| 904 | sprintf(alias, SPI_MODULE_PREFIX "%s", *name); |
Anton Vorontsov | 75368bf | 2009-09-22 16:46:04 -0700 | [diff] [blame] | 905 | |
| 906 | return 1; |
| 907 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 908 | ADD_TO_DEVTABLE("spi", spi_device_id, do_spi_entry); |
Anton Vorontsov | 75368bf | 2009-09-22 16:46:04 -0700 | [diff] [blame] | 909 | |
David Woodhouse | d945b69 | 2008-09-16 16:23:28 -0700 | [diff] [blame] | 910 | static const struct dmifield { |
| 911 | const char *prefix; |
| 912 | int field; |
| 913 | } dmi_fields[] = { |
| 914 | { "bvn", DMI_BIOS_VENDOR }, |
| 915 | { "bvr", DMI_BIOS_VERSION }, |
| 916 | { "bd", DMI_BIOS_DATE }, |
| 917 | { "svn", DMI_SYS_VENDOR }, |
| 918 | { "pn", DMI_PRODUCT_NAME }, |
| 919 | { "pvr", DMI_PRODUCT_VERSION }, |
| 920 | { "rvn", DMI_BOARD_VENDOR }, |
| 921 | { "rn", DMI_BOARD_NAME }, |
| 922 | { "rvr", DMI_BOARD_VERSION }, |
| 923 | { "cvn", DMI_CHASSIS_VENDOR }, |
| 924 | { "ct", DMI_CHASSIS_TYPE }, |
| 925 | { "cvr", DMI_CHASSIS_VERSION }, |
| 926 | { NULL, DMI_NONE } |
| 927 | }; |
| 928 | |
| 929 | static void dmi_ascii_filter(char *d, const char *s) |
| 930 | { |
| 931 | /* Filter out characters we don't want to see in the modalias string */ |
| 932 | for (; *s; s++) |
| 933 | if (*s > ' ' && *s < 127 && *s != ':') |
| 934 | *(d++) = *s; |
| 935 | |
| 936 | *d = 0; |
| 937 | } |
| 938 | |
| 939 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 940 | static int do_dmi_entry(const char *filename, void *symval, |
David Woodhouse | d945b69 | 2008-09-16 16:23:28 -0700 | [diff] [blame] | 941 | char *alias) |
| 942 | { |
| 943 | int i, j; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 944 | DEF_FIELD_ADDR(symval, dmi_system_id, matches); |
David Woodhouse | d945b69 | 2008-09-16 16:23:28 -0700 | [diff] [blame] | 945 | sprintf(alias, "dmi*"); |
| 946 | |
| 947 | for (i = 0; i < ARRAY_SIZE(dmi_fields); i++) { |
| 948 | for (j = 0; j < 4; j++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 949 | if ((*matches)[j].slot && |
| 950 | (*matches)[j].slot == dmi_fields[i].field) { |
David Woodhouse | d945b69 | 2008-09-16 16:23:28 -0700 | [diff] [blame] | 951 | sprintf(alias + strlen(alias), ":%s*", |
| 952 | dmi_fields[i].prefix); |
| 953 | dmi_ascii_filter(alias + strlen(alias), |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 954 | (*matches)[j].substr); |
David Woodhouse | d945b69 | 2008-09-16 16:23:28 -0700 | [diff] [blame] | 955 | strcat(alias, "*"); |
| 956 | } |
| 957 | } |
| 958 | } |
| 959 | |
| 960 | strcat(alias, ":"); |
| 961 | return 1; |
| 962 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 963 | ADD_TO_DEVTABLE("dmi", dmi_system_id, do_dmi_entry); |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 964 | |
| 965 | static int do_platform_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 966 | void *symval, char *alias) |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 967 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 968 | DEF_FIELD_ADDR(symval, platform_device_id, name); |
| 969 | sprintf(alias, PLATFORM_MODULE_PREFIX "%s", *name); |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 970 | return 1; |
| 971 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 972 | ADD_TO_DEVTABLE("platform", platform_device_id, do_platform_entry); |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 973 | |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 974 | static int do_mdio_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 975 | void *symval, char *alias) |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 976 | { |
| 977 | int i; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 978 | DEF_FIELD(symval, mdio_device_id, phy_id); |
| 979 | DEF_FIELD(symval, mdio_device_id, phy_id_mask); |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 980 | |
| 981 | alias += sprintf(alias, MDIO_MODULE_PREFIX); |
| 982 | |
| 983 | for (i = 0; i < 32; i++) { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 984 | if (!((phy_id_mask >> (31-i)) & 1)) |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 985 | *(alias++) = '?'; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 986 | else if ((phy_id >> (31-i)) & 1) |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 987 | *(alias++) = '1'; |
| 988 | else |
| 989 | *(alias++) = '0'; |
| 990 | } |
| 991 | |
| 992 | /* Terminate the string */ |
| 993 | *alias = 0; |
| 994 | |
| 995 | return 1; |
| 996 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 997 | ADD_TO_DEVTABLE("mdio", mdio_device_id, do_mdio_entry); |
David Woodhouse | 8626d3b | 2010-04-02 01:05:27 +0000 | [diff] [blame] | 998 | |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 999 | /* Looks like: zorro:iN. */ |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1000 | static int do_zorro_entry(const char *filename, void *symval, |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 1001 | char *alias) |
| 1002 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1003 | DEF_FIELD(symval, zorro_device_id, id); |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 1004 | strcpy(alias, "zorro:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1005 | ADD(alias, "i", id != ZORRO_WILDCARD, id); |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 1006 | return 1; |
| 1007 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1008 | ADD_TO_DEVTABLE("zorro", zorro_device_id, do_zorro_entry); |
Geert Uytterhoeven | bf54a2b | 2008-11-18 21:13:53 +0100 | [diff] [blame] | 1009 | |
Ondrej Zary | fedb3d2 | 2009-12-18 20:52:39 +0100 | [diff] [blame] | 1010 | /* looks like: "pnp:dD" */ |
| 1011 | static int do_isapnp_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1012 | void *symval, char *alias) |
Ondrej Zary | fedb3d2 | 2009-12-18 20:52:39 +0100 | [diff] [blame] | 1013 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1014 | DEF_FIELD(symval, isapnp_device_id, vendor); |
| 1015 | DEF_FIELD(symval, isapnp_device_id, function); |
Ondrej Zary | fedb3d2 | 2009-12-18 20:52:39 +0100 | [diff] [blame] | 1016 | sprintf(alias, "pnp:d%c%c%c%x%x%x%x*", |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1017 | 'A' + ((vendor >> 2) & 0x3f) - 1, |
| 1018 | 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1, |
| 1019 | 'A' + ((vendor >> 8) & 0x1f) - 1, |
| 1020 | (function >> 4) & 0x0f, function & 0x0f, |
| 1021 | (function >> 12) & 0x0f, (function >> 8) & 0x0f); |
Ondrej Zary | fedb3d2 | 2009-12-18 20:52:39 +0100 | [diff] [blame] | 1022 | return 1; |
| 1023 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1024 | ADD_TO_DEVTABLE("isapnp", isapnp_device_id, do_isapnp_entry); |
Ondrej Zary | fedb3d2 | 2009-12-18 20:52:39 +0100 | [diff] [blame] | 1025 | |
Jens Taprogge | 849e0ad | 2012-09-04 17:01:13 +0200 | [diff] [blame] | 1026 | /* Looks like: "ipack:fNvNdN". */ |
| 1027 | static int do_ipack_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1028 | void *symval, char *alias) |
Jens Taprogge | 849e0ad | 2012-09-04 17:01:13 +0200 | [diff] [blame] | 1029 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1030 | DEF_FIELD(symval, ipack_device_id, format); |
| 1031 | DEF_FIELD(symval, ipack_device_id, vendor); |
| 1032 | DEF_FIELD(symval, ipack_device_id, device); |
Jens Taprogge | 849e0ad | 2012-09-04 17:01:13 +0200 | [diff] [blame] | 1033 | strcpy(alias, "ipack:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1034 | ADD(alias, "f", format != IPACK_ANY_FORMAT, format); |
| 1035 | ADD(alias, "v", vendor != IPACK_ANY_ID, vendor); |
| 1036 | ADD(alias, "d", device != IPACK_ANY_ID, device); |
Jens Taprogge | 849e0ad | 2012-09-04 17:01:13 +0200 | [diff] [blame] | 1037 | add_wildcard(alias); |
| 1038 | return 1; |
| 1039 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1040 | ADD_TO_DEVTABLE("ipack", ipack_device_id, do_ipack_entry); |
Jens Taprogge | 849e0ad | 2012-09-04 17:01:13 +0200 | [diff] [blame] | 1041 | |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1042 | /* |
| 1043 | * Append a match expression for a single masked hex digit. |
| 1044 | * outp points to a pointer to the character at which to append. |
| 1045 | * *outp is updated on return to point just after the appended text, |
| 1046 | * to facilitate further appending. |
| 1047 | */ |
| 1048 | static void append_nibble_mask(char **outp, |
| 1049 | unsigned int nibble, unsigned int mask) |
| 1050 | { |
| 1051 | char *p = *outp; |
| 1052 | unsigned int i; |
| 1053 | |
| 1054 | switch (mask) { |
| 1055 | case 0: |
| 1056 | *p++ = '?'; |
| 1057 | break; |
| 1058 | |
| 1059 | case 0xf: |
| 1060 | p += sprintf(p, "%X", nibble); |
| 1061 | break; |
| 1062 | |
| 1063 | default: |
| 1064 | /* |
| 1065 | * Dumbly emit a match pattern for all possible matching |
| 1066 | * digits. This could be improved in some cases using ranges, |
| 1067 | * but it has the advantage of being trivially correct, and is |
| 1068 | * often optimal. |
| 1069 | */ |
| 1070 | *p++ = '['; |
| 1071 | for (i = 0; i < 0x10; i++) |
| 1072 | if ((i & mask) == nibble) |
| 1073 | p += sprintf(p, "%X", i); |
| 1074 | *p++ = ']'; |
| 1075 | } |
| 1076 | |
| 1077 | /* Ensure that the string remains NUL-terminated: */ |
| 1078 | *p = '\0'; |
| 1079 | |
| 1080 | /* Advance the caller's end-of-string pointer: */ |
| 1081 | *outp = p; |
| 1082 | } |
| 1083 | |
| 1084 | /* |
| 1085 | * looks like: "amba:dN" |
| 1086 | * |
| 1087 | * N is exactly 8 digits, where each is an upper-case hex digit, or |
| 1088 | * a ? or [] pattern matching exactly one digit. |
| 1089 | */ |
| 1090 | static int do_amba_entry(const char *filename, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1091 | void *symval, char *alias) |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1092 | { |
| 1093 | unsigned int digit; |
| 1094 | char *p = alias; |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1095 | DEF_FIELD(symval, amba_id, id); |
| 1096 | DEF_FIELD(symval, amba_id, mask); |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1097 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1098 | if ((id & mask) != id) |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1099 | fatal("%s: Masked-off bit(s) of AMBA device ID are non-zero: " |
| 1100 | "id=0x%08X, mask=0x%08X. Please fix this driver.\n", |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1101 | filename, id, mask); |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1102 | |
| 1103 | p += sprintf(alias, "amba:d"); |
| 1104 | for (digit = 0; digit < 8; digit++) |
| 1105 | append_nibble_mask(&p, |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1106 | (id >> (4 * (7 - digit))) & 0xf, |
| 1107 | (mask >> (4 * (7 - digit))) & 0xf); |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1108 | |
| 1109 | return 1; |
| 1110 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1111 | ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry); |
Dave Martin | 523817b | 2011-10-05 14:44:57 +0100 | [diff] [blame] | 1112 | |
Andi Kleen | 644e9cb | 2012-01-26 00:09:05 +0100 | [diff] [blame] | 1113 | /* LOOKS like x86cpu:vendor:VVVV:family:FFFF:model:MMMM:feature:*,FEAT,* |
| 1114 | * All fields are numbers. It would be nicer to use strings for vendor |
| 1115 | * and feature, but getting those out of the build system here is too |
| 1116 | * complicated. |
| 1117 | */ |
| 1118 | |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1119 | static int do_x86cpu_entry(const char *filename, void *symval, |
Andi Kleen | 644e9cb | 2012-01-26 00:09:05 +0100 | [diff] [blame] | 1120 | char *alias) |
| 1121 | { |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1122 | DEF_FIELD(symval, x86_cpu_id, feature); |
| 1123 | DEF_FIELD(symval, x86_cpu_id, family); |
| 1124 | DEF_FIELD(symval, x86_cpu_id, model); |
| 1125 | DEF_FIELD(symval, x86_cpu_id, vendor); |
Andi Kleen | 644e9cb | 2012-01-26 00:09:05 +0100 | [diff] [blame] | 1126 | |
| 1127 | strcpy(alias, "x86cpu:"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1128 | ADD(alias, "vendor:", vendor != X86_VENDOR_ANY, vendor); |
| 1129 | ADD(alias, ":family:", family != X86_FAMILY_ANY, family); |
| 1130 | ADD(alias, ":model:", model != X86_MODEL_ANY, model); |
Ben Hutchings | 5467bdd | 2012-02-11 22:57:19 +0000 | [diff] [blame] | 1131 | strcat(alias, ":feature:*"); |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1132 | if (feature != X86_FEATURE_ANY) |
| 1133 | sprintf(alias + strlen(alias), "%04X*", feature); |
Andi Kleen | 644e9cb | 2012-01-26 00:09:05 +0100 | [diff] [blame] | 1134 | return 1; |
| 1135 | } |
Andreas Schwab | 6543bec | 2013-01-20 17:58:47 +0100 | [diff] [blame] | 1136 | ADD_TO_DEVTABLE("x86cpu", x86_cpu_id, do_x86cpu_entry); |
Andi Kleen | 644e9cb | 2012-01-26 00:09:05 +0100 | [diff] [blame] | 1137 | |
Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame] | 1138 | /* Looks like: mei:S */ |
| 1139 | static int do_mei_entry(const char *filename, void *symval, |
| 1140 | char *alias) |
| 1141 | { |
| 1142 | DEF_FIELD_ADDR(symval, mei_cl_device_id, name); |
| 1143 | |
| 1144 | sprintf(alias, MEI_CL_MODULE_PREFIX "%s", *name); |
| 1145 | |
| 1146 | return 1; |
| 1147 | } |
| 1148 | ADD_TO_DEVTABLE("mei", mei_cl_device_id, do_mei_entry); |
| 1149 | |
Alexandre Bounine | 3bdbb62 | 2013-07-03 15:08:58 -0700 | [diff] [blame] | 1150 | /* Looks like: rapidio:vNdNavNadN */ |
| 1151 | static int do_rio_entry(const char *filename, |
| 1152 | void *symval, char *alias) |
| 1153 | { |
| 1154 | DEF_FIELD(symval, rio_device_id, did); |
| 1155 | DEF_FIELD(symval, rio_device_id, vid); |
| 1156 | DEF_FIELD(symval, rio_device_id, asm_did); |
| 1157 | DEF_FIELD(symval, rio_device_id, asm_vid); |
| 1158 | |
| 1159 | strcpy(alias, "rapidio:"); |
| 1160 | ADD(alias, "v", vid != RIO_ANY_ID, vid); |
| 1161 | ADD(alias, "d", did != RIO_ANY_ID, did); |
| 1162 | ADD(alias, "av", asm_vid != RIO_ANY_ID, asm_vid); |
| 1163 | ADD(alias, "ad", asm_did != RIO_ANY_ID, asm_did); |
| 1164 | |
| 1165 | add_wildcard(alias); |
| 1166 | return 1; |
| 1167 | } |
| 1168 | ADD_TO_DEVTABLE("rapidio", rio_device_id, do_rio_entry); |
| 1169 | |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1170 | /* Does namelen bytes of name exactly match the symbol? */ |
| 1171 | static bool sym_is(const char *name, unsigned namelen, const char *symbol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | { |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1173 | if (namelen != strlen(symbol)) |
| 1174 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1176 | return memcmp(name, symbol, namelen) == 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | static void do_table(void *symval, unsigned long size, |
| 1180 | unsigned long id_size, |
Sam Ravnborg | fb33d81 | 2006-07-09 16:26:07 +0200 | [diff] [blame] | 1181 | const char *device_id, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | void *function, |
| 1183 | struct module *mod) |
| 1184 | { |
| 1185 | unsigned int i; |
| 1186 | char alias[500]; |
| 1187 | int (*do_entry)(const char *, void *entry, char *alias) = function; |
| 1188 | |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 1189 | device_id_check(mod->name, device_id, size, id_size, symval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | /* Leave last one: it's the terminator. */ |
| 1191 | size -= id_size; |
| 1192 | |
| 1193 | for (i = 0; i < size; i += id_size) { |
| 1194 | if (do_entry(mod->name, symval+i, alias)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | buf_printf(&mod->dev_table_buf, |
| 1196 | "MODULE_ALIAS(\"%s\");\n", alias); |
| 1197 | } |
| 1198 | } |
| 1199 | } |
| 1200 | |
| 1201 | /* Create MODULE_ALIAS() statements. |
| 1202 | * At this time, we cannot write the actual output C source yet, |
| 1203 | * so we write into the mod->dev_table_buf buffer. */ |
| 1204 | void handle_moddevtable(struct module *mod, struct elf_info *info, |
| 1205 | Elf_Sym *sym, const char *symname) |
| 1206 | { |
| 1207 | void *symval; |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 1208 | char *zeros = NULL; |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1209 | const char *name; |
| 1210 | unsigned int namelen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | |
| 1212 | /* We're looking for a section relative symbol */ |
Denys Vlasenko | 1ce53ad | 2010-07-29 01:47:53 +0200 | [diff] [blame] | 1213 | if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | return; |
| 1215 | |
David Miller | e88aa7b | 2012-04-12 14:37:30 -0400 | [diff] [blame] | 1216 | /* We're looking for an object */ |
| 1217 | if (ELF_ST_TYPE(sym->st_info) != STT_OBJECT) |
| 1218 | return; |
| 1219 | |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1220 | /* All our symbols are of form <prefix>__mod_XXX_device_table. */ |
| 1221 | name = strstr(symname, "__mod_"); |
| 1222 | if (!name) |
| 1223 | return; |
| 1224 | name += strlen("__mod_"); |
| 1225 | namelen = strlen(name); |
| 1226 | if (namelen < strlen("_device_table")) |
| 1227 | return; |
| 1228 | if (strcmp(name + namelen - strlen("_device_table"), "_device_table")) |
| 1229 | return; |
| 1230 | namelen -= strlen("_device_table"); |
| 1231 | |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 1232 | /* Handle all-NULL symbols allocated into .bss */ |
Denys Vlasenko | 1ce53ad | 2010-07-29 01:47:53 +0200 | [diff] [blame] | 1233 | if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) { |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 1234 | zeros = calloc(1, sym->st_size); |
| 1235 | symval = zeros; |
| 1236 | } else { |
| 1237 | symval = (void *)info->hdr |
Denys Vlasenko | 1ce53ad | 2010-07-29 01:47:53 +0200 | [diff] [blame] | 1238 | + info->sechdrs[get_secindex(info, sym)].sh_offset |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 1239 | + sym->st_value; |
| 1240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1242 | /* First handle the "special" cases */ |
| 1243 | if (sym_is(name, namelen, "usb")) |
Roman Kagan | b19dcd9 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 1244 | do_usb_table(symval, sym->st_size, mod); |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1245 | else if (sym_is(name, namelen, "pnp")) |
Kay Sievers | 22454cb | 2008-05-28 23:06:47 +0200 | [diff] [blame] | 1246 | do_pnp_device_entry(symval, sym->st_size, mod); |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1247 | else if (sym_is(name, namelen, "pnp_card")) |
Kay Sievers | 0c81eed | 2008-02-21 00:35:54 +0100 | [diff] [blame] | 1248 | do_pnp_card_entries(symval, sym->st_size, mod); |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1249 | else { |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 1250 | struct devtable **p; |
Andreas Bießmann | dd2a3ac | 2012-02-24 08:23:53 +0100 | [diff] [blame] | 1251 | INIT_SECTION(__devtable); |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1252 | |
Rusty Russell | e49ce14 | 2012-01-13 09:32:16 +1030 | [diff] [blame] | 1253 | for (p = __start___devtable; p < __stop___devtable; p++) { |
| 1254 | if (sym_is(name, namelen, (*p)->device_id)) { |
| 1255 | do_table(symval, sym->st_size, (*p)->id_size, |
| 1256 | (*p)->device_id, (*p)->function, mod); |
Rusty Russell | 626596e | 2012-01-13 09:32:15 +1030 | [diff] [blame] | 1257 | break; |
| 1258 | } |
| 1259 | } |
| 1260 | } |
Kees Cook | e004982 | 2007-09-16 11:15:46 +0200 | [diff] [blame] | 1261 | free(zeros); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | } |
| 1263 | |
| 1264 | /* Now add out buffered information to the generated C source */ |
| 1265 | void add_moddevtable(struct buffer *buf, struct module *mod) |
| 1266 | { |
| 1267 | buf_printf(buf, "\n"); |
| 1268 | buf_write(buf, mod->dev_table_buf.p, mod->dev_table_buf.pos); |
| 1269 | free(mod->dev_table_buf.p); |
| 1270 | } |