blob: e614ef689eee1f16dc19daf1c00be4460a184f63 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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 Schwab6543bec2013-01-20 17:58:47 +010014#include "devicetable-offsets.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
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
19typedef Elf32_Addr kernel_ulong_t;
Rusty Russell1d8f4302005-12-07 21:40:34 +010020#define BITS_PER_LONG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#else
22typedef Elf64_Addr kernel_ulong_t;
Rusty Russell1d8f4302005-12-07 21:40:34 +010023#define BITS_PER_LONG 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#endif
25#ifdef __sun__
26#include <inttypes.h>
27#else
28#include <stdint.h>
29#endif
30
Jeff Mahoney5e655772005-07-06 15:44:41 -040031#include <ctype.h>
Rusty Russell626596e2012-01-13 09:32:15 +103032#include <stdbool.h>
Jeff Mahoney5e655772005-07-06 15:44:41 -040033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034typedef uint32_t __u32;
35typedef uint16_t __u16;
36typedef unsigned char __u8;
37
38/* Big exception to the "don't include kernel headers into userspace, which
Sam Ravnborg62070fa2006-03-03 16:46:04 +010039 * even potentially has different endianness and word sizes, since
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * we handle those differences explicitly below */
41#include "../../include/linux/mod_devicetable.h"
42
Rusty Russelle49ce142012-01-13 09:32:16 +103043/* This array collects all instances that use the generic do_table */
44struct devtable {
Tom Gundersen21bdd172014-02-03 11:14:13 +103045 const char *device_id; /* name of table, __mod_<name>__*_device_table. */
Rusty Russelle49ce142012-01-13 09:32:16 +103046 unsigned long id_size;
47 void *function;
48};
49
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +010050#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
72struct 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 Russelle49ce142012-01-13 09:32:16 +103077/* We construct a table of pointers in an ELF section (pointers generally
78 * go unpadded by gcc). ld creates boundary syms for us. */
79extern struct devtable *__start___devtable[], *__stop___devtable[];
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +010080#endif /* __MACH__ */
Rusty Russelle49ce142012-01-13 09:32:16 +103081
Daniel Tang04130cc2013-06-09 12:33:55 +100082#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 Russelle49ce142012-01-13 09:32:16 +103088#endif
89
Andreas Schwab6543bec2013-01-20 17:58:47 +010090/* 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 Russelle49ce142012-01-13 09:32:16 +1030102/* 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 Schwab6543bec2013-01-20 17:58:47 +0100106 (void *)NULL, \
Rusty Russelle49ce142012-01-13 09:32:16 +1030107 (char *)NULL)), \
Andreas Schwab6543bec2013-01-20 17:58:47 +0100108 SIZE_##type, (function) }; \
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +0100109 static struct devtable *SECTION(__devtable) __used \
110 __cat(devtable_ptr,__LINE__) = &__cat(devtable,__LINE__)
Rusty Russelle49ce142012-01-13 09:32:16 +1030111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define ADD(str, sep, cond, field) \
113do { \
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 Delvareac551822008-05-02 20:37:21 +0200125/* Always end in a wildcard, for future extension */
126static 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 Ravnborgfb33d812006-07-09 16:26:07 +0200134/**
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 Cooke0049822007-09-16 11:15:46 +0200138 * Also verify that the final entry in the table is all zeros.
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +0100139 * Ignore both checks if build host differ from target host and size differs.
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200140 **/
Kees Cooke0049822007-09-16 11:15:46 +0200141static void device_id_check(const char *modname, const char *device_id,
142 unsigned long size, unsigned long id_size,
143 void *symval)
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200144{
Kees Cooke0049822007-09-16 11:15:46 +0200145 int i;
146
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200147 if (size % id_size || size < id_size) {
148 fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo "
Tom Gundersen21bdd172014-02-03 11:14:13 +1030149 "of the size of "
150 "section __mod_%s__<identifier>_device_table=%lu.\n"
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200151 "Fix definition of struct %s_device_id "
152 "in mod_devicetable.h\n",
153 modname, device_id, id_size, device_id, size, device_id);
154 }
Kees Cooke0049822007-09-16 11:15:46 +0200155 /* Verify last one is a terminator */
156 for (i = 0; i < id_size; i++ ) {
157 if (*(uint8_t*)(symval+size-id_size+i)) {
158 fprintf(stderr,"%s: struct %s_device_id is %lu bytes. "
159 "The last of %lu is:\n",
160 modname, device_id, id_size, size / id_size);
161 for (i = 0; i < id_size; i++ )
162 fprintf(stderr,"0x%02x ",
163 *(uint8_t*)(symval+size-id_size+i) );
164 fprintf(stderr,"\n");
165 fatal("%s: struct %s_device_id is not terminated "
166 "with a NULL entry!\n", modname, device_id);
167 }
168 }
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200169}
170
Roman Kaganb19dcd92005-04-22 15:07:01 -0700171/* USB is special because the bcdDevice can be matched against a numeric range */
Bjørn Mork81df2d52012-05-18 21:27:43 +0200172/* Looks like "usb:vNpNdNdcNdscNdpNicNiscNipNinN" */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100173static void do_usb_entry(void *symval,
Roman Kaganb19dcd92005-04-22 15:07:01 -0700174 unsigned int bcdDevice_initial, int bcdDevice_initial_digits,
175 unsigned char range_lo, unsigned char range_hi,
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500176 unsigned char max, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Roman Kaganb19dcd92005-04-22 15:07:01 -0700178 char alias[500];
Andreas Schwab6543bec2013-01-20 17:58:47 +0100179 DEF_FIELD(symval, usb_device_id, match_flags);
180 DEF_FIELD(symval, usb_device_id, idVendor);
181 DEF_FIELD(symval, usb_device_id, idProduct);
182 DEF_FIELD(symval, usb_device_id, bcdDevice_lo);
183 DEF_FIELD(symval, usb_device_id, bDeviceClass);
184 DEF_FIELD(symval, usb_device_id, bDeviceSubClass);
185 DEF_FIELD(symval, usb_device_id, bDeviceProtocol);
186 DEF_FIELD(symval, usb_device_id, bInterfaceClass);
187 DEF_FIELD(symval, usb_device_id, bInterfaceSubClass);
188 DEF_FIELD(symval, usb_device_id, bInterfaceProtocol);
189 DEF_FIELD(symval, usb_device_id, bInterfaceNumber);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 strcpy(alias, "usb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100192 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR,
193 idVendor);
194 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT,
195 idProduct);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700196
197 strcat(alias, "d");
198 if (bcdDevice_initial_digits)
199 sprintf(alias + strlen(alias), "%0*X",
200 bcdDevice_initial_digits, bcdDevice_initial);
201 if (range_lo == range_hi)
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500202 sprintf(alias + strlen(alias), "%X", range_lo);
203 else if (range_lo > 0 || range_hi < max) {
204 if (range_lo > 0x9 || range_hi < 0xA)
205 sprintf(alias + strlen(alias),
206 "[%X-%X]",
207 range_lo,
208 range_hi);
209 else {
210 sprintf(alias + strlen(alias),
211 range_lo < 0x9 ? "[%X-9" : "[%X",
212 range_lo);
213 sprintf(alias + strlen(alias),
Jan Moskyto Matejka03b56322014-02-07 19:15:11 +0100214 range_hi > 0xA ? "A-%X]" : "%X]",
215 range_hi);
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500216 }
217 }
Andreas Schwab6543bec2013-01-20 17:58:47 +0100218 if (bcdDevice_initial_digits < (sizeof(bcdDevice_lo) * 2 - 1))
Roman Kaganb19dcd92005-04-22 15:07:01 -0700219 strcat(alias, "*");
220
Andreas Schwab6543bec2013-01-20 17:58:47 +0100221 ADD(alias, "dc", match_flags&USB_DEVICE_ID_MATCH_DEV_CLASS,
222 bDeviceClass);
223 ADD(alias, "dsc", match_flags&USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
224 bDeviceSubClass);
225 ADD(alias, "dp", match_flags&USB_DEVICE_ID_MATCH_DEV_PROTOCOL,
226 bDeviceProtocol);
227 ADD(alias, "ic", match_flags&USB_DEVICE_ID_MATCH_INT_CLASS,
228 bInterfaceClass);
229 ADD(alias, "isc", match_flags&USB_DEVICE_ID_MATCH_INT_SUBCLASS,
230 bInterfaceSubClass);
231 ADD(alias, "ip", match_flags&USB_DEVICE_ID_MATCH_INT_PROTOCOL,
232 bInterfaceProtocol);
233 ADD(alias, "in", match_flags&USB_DEVICE_ID_MATCH_INT_NUMBER,
234 bInterfaceNumber);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700235
Jean Delvareac551822008-05-02 20:37:21 +0200236 add_wildcard(alias);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700237 buf_printf(&mod->dev_table_buf,
238 "MODULE_ALIAS(\"%s\");\n", alias);
239}
240
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500241/* Handles increment/decrement of BCD formatted integers */
242/* Returns the previous value, so it works like i++ or i-- */
243static unsigned int incbcd(unsigned int *bcd,
244 int inc,
245 unsigned char max,
246 size_t chars)
247{
248 unsigned int init = *bcd, i, j;
249 unsigned long long c, dec = 0;
250
251 /* If bcd is not in BCD format, just increment */
252 if (max > 0x9) {
253 *bcd += inc;
254 return init;
255 }
256
257 /* Convert BCD to Decimal */
258 for (i=0 ; i < chars ; i++) {
259 c = (*bcd >> (i << 2)) & 0xf;
260 c = c > 9 ? 9 : c; /* force to bcd just in case */
261 for (j=0 ; j < i ; j++)
262 c = c * 10;
263 dec += c;
264 }
265
266 /* Do our increment/decrement */
267 dec += inc;
268 *bcd = 0;
269
270 /* Convert back to BCD */
271 for (i=0 ; i < chars ; i++) {
272 for (c=1,j=0 ; j < i ; j++)
273 c = c * 10;
274 c = (dec / c) % 10;
275 *bcd += c << (i << 2);
276 }
277 return init;
278}
279
Andreas Schwab6543bec2013-01-20 17:58:47 +0100280static void do_usb_entry_multi(void *symval, struct module *mod)
Roman Kaganb19dcd92005-04-22 15:07:01 -0700281{
282 unsigned int devlo, devhi;
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500283 unsigned char chi, clo, max;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700284 int ndigits;
285
Andreas Schwab6543bec2013-01-20 17:58:47 +0100286 DEF_FIELD(symval, usb_device_id, match_flags);
287 DEF_FIELD(symval, usb_device_id, idVendor);
288 DEF_FIELD(symval, usb_device_id, idProduct);
289 DEF_FIELD(symval, usb_device_id, bcdDevice_lo);
290 DEF_FIELD(symval, usb_device_id, bcdDevice_hi);
291 DEF_FIELD(symval, usb_device_id, bDeviceClass);
292 DEF_FIELD(symval, usb_device_id, bInterfaceClass);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700293
Andreas Schwab6543bec2013-01-20 17:58:47 +0100294 devlo = match_flags & USB_DEVICE_ID_MATCH_DEV_LO ?
295 bcdDevice_lo : 0x0U;
296 devhi = match_flags & USB_DEVICE_ID_MATCH_DEV_HI ?
297 bcdDevice_hi : ~0x0U;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700298
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500299 /* Figure out if this entry is in bcd or hex format */
300 max = 0x9; /* Default to decimal format */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100301 for (ndigits = 0 ; ndigits < sizeof(bcdDevice_lo) * 2 ; ndigits++) {
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500302 clo = (devlo >> (ndigits << 2)) & 0xf;
303 chi = ((devhi > 0x9999 ? 0x9999 : devhi) >> (ndigits << 2)) & 0xf;
304 if (clo > max || chi > max) {
305 max = 0xf;
306 break;
307 }
308 }
309
Roman Kaganb19dcd92005-04-22 15:07:01 -0700310 /*
311 * Some modules (visor) have empty slots as placeholder for
312 * run-time specification that results in catch-all alias
313 */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100314 if (!(idVendor | idProduct | bDeviceClass | bInterfaceClass))
Roman Kaganb19dcd92005-04-22 15:07:01 -0700315 return;
316
317 /* Convert numeric bcdDevice range into fnmatch-able pattern(s) */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100318 for (ndigits = sizeof(bcdDevice_lo) * 2 - 1; devlo <= devhi; ndigits--) {
Roman Kaganb19dcd92005-04-22 15:07:01 -0700319 clo = devlo & 0xf;
320 chi = devhi & 0xf;
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500321 if (chi > max) /* If we are in bcd mode, truncate if necessary */
322 chi = max;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700323 devlo >>= 4;
324 devhi >>= 4;
325
326 if (devlo == devhi || !ndigits) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100327 do_usb_entry(symval, devlo, ndigits, clo, chi, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700328 break;
329 }
330
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500331 if (clo > 0x0)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100332 do_usb_entry(symval,
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500333 incbcd(&devlo, 1, max,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100334 sizeof(bcdDevice_lo) * 2),
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500335 ndigits, clo, max, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700336
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500337 if (chi < max)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100338 do_usb_entry(symval,
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500339 incbcd(&devhi, -1, max,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100340 sizeof(bcdDevice_lo) * 2),
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500341 ndigits, 0x0, chi, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700342 }
343}
344
345static void do_usb_table(void *symval, unsigned long size,
346 struct module *mod)
347{
348 unsigned int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100349 const unsigned long id_size = SIZE_usb_device_id;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700350
Kees Cooke0049822007-09-16 11:15:46 +0200351 device_id_check(mod->name, "usb", size, id_size, symval);
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200352
Roman Kaganb19dcd92005-04-22 15:07:01 -0700353 /* Leave last one: it's the terminator. */
354 size -= id_size;
355
356 for (i = 0; i < size; i += id_size)
357 do_usb_entry_multi(symval + i, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Jiri Slabye8c84f92008-05-19 15:50:01 +0200360/* Looks like: hid:bNvNpN */
361static int do_hid_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100362 void *symval, char *alias)
Jiri Slabye8c84f92008-05-19 15:50:01 +0200363{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100364 DEF_FIELD(symval, hid_device_id, bus);
365 DEF_FIELD(symval, hid_device_id, group);
366 DEF_FIELD(symval, hid_device_id, vendor);
367 DEF_FIELD(symval, hid_device_id, product);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200368
Henrik Rydberg7431fb72012-04-23 12:07:04 +0200369 sprintf(alias, "hid:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100370 ADD(alias, "b", bus != HID_BUS_ANY, bus);
371 ADD(alias, "g", group != HID_GROUP_ANY, group);
372 ADD(alias, "v", vendor != HID_ANY_ID, vendor);
373 ADD(alias, "p", product != HID_ANY_ID, product);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200374
375 return 1;
376}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100377ADD_TO_DEVTABLE("hid", hid_device_id, do_hid_entry);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/* Looks like: ieee1394:venNmoNspNverN */
380static int do_ieee1394_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100381 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100383 DEF_FIELD(symval, ieee1394_device_id, match_flags);
384 DEF_FIELD(symval, ieee1394_device_id, vendor_id);
385 DEF_FIELD(symval, ieee1394_device_id, model_id);
386 DEF_FIELD(symval, ieee1394_device_id, specifier_id);
387 DEF_FIELD(symval, ieee1394_device_id, version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 strcpy(alias, "ieee1394:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100390 ADD(alias, "ven", match_flags & IEEE1394_MATCH_VENDOR_ID,
391 vendor_id);
392 ADD(alias, "mo", match_flags & IEEE1394_MATCH_MODEL_ID,
393 model_id);
394 ADD(alias, "sp", match_flags & IEEE1394_MATCH_SPECIFIER_ID,
395 specifier_id);
396 ADD(alias, "ver", match_flags & IEEE1394_MATCH_VERSION,
397 version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Jean Delvareac551822008-05-02 20:37:21 +0200399 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return 1;
401}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100402ADD_TO_DEVTABLE("ieee1394", ieee1394_device_id, do_ieee1394_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404/* Looks like: pci:vNdNsvNsdNbcNscNiN. */
405static int do_pci_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100406 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 /* Class field can be divided into these three. */
409 unsigned char baseclass, subclass, interface,
410 baseclass_mask, subclass_mask, interface_mask;
411
Andreas Schwab6543bec2013-01-20 17:58:47 +0100412 DEF_FIELD(symval, pci_device_id, vendor);
413 DEF_FIELD(symval, pci_device_id, device);
414 DEF_FIELD(symval, pci_device_id, subvendor);
415 DEF_FIELD(symval, pci_device_id, subdevice);
416 DEF_FIELD(symval, pci_device_id, class);
417 DEF_FIELD(symval, pci_device_id, class_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 strcpy(alias, "pci:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100420 ADD(alias, "v", vendor != PCI_ANY_ID, vendor);
421 ADD(alias, "d", device != PCI_ANY_ID, device);
422 ADD(alias, "sv", subvendor != PCI_ANY_ID, subvendor);
423 ADD(alias, "sd", subdevice != PCI_ANY_ID, subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Andreas Schwab6543bec2013-01-20 17:58:47 +0100425 baseclass = (class) >> 16;
426 baseclass_mask = (class_mask) >> 16;
427 subclass = (class) >> 8;
428 subclass_mask = (class_mask) >> 8;
429 interface = class;
430 interface_mask = class_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if ((baseclass_mask != 0 && baseclass_mask != 0xFF)
433 || (subclass_mask != 0 && subclass_mask != 0xFF)
434 || (interface_mask != 0 && interface_mask != 0xFF)) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100435 warn("Can't handle masks in %s:%04X\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +0100436 filename, class_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return 0;
438 }
439
440 ADD(alias, "bc", baseclass_mask == 0xFF, baseclass);
441 ADD(alias, "sc", subclass_mask == 0xFF, subclass);
442 ADD(alias, "i", interface_mask == 0xFF, interface);
Jean Delvareac551822008-05-02 20:37:21 +0200443 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return 1;
445}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100446ADD_TO_DEVTABLE("pci", pci_device_id, do_pci_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100448/* looks like: "ccw:tNmNdtNdmN" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449static int do_ccw_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100450 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100452 DEF_FIELD(symval, ccw_device_id, match_flags);
453 DEF_FIELD(symval, ccw_device_id, cu_type);
454 DEF_FIELD(symval, ccw_device_id, cu_model);
455 DEF_FIELD(symval, ccw_device_id, dev_type);
456 DEF_FIELD(symval, ccw_device_id, dev_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 strcpy(alias, "ccw:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100459 ADD(alias, "t", match_flags&CCW_DEVICE_ID_MATCH_CU_TYPE,
460 cu_type);
461 ADD(alias, "m", match_flags&CCW_DEVICE_ID_MATCH_CU_MODEL,
462 cu_model);
463 ADD(alias, "dt", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_TYPE,
464 dev_type);
465 ADD(alias, "dm", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_MODEL,
466 dev_model);
Jean Delvareac551822008-05-02 20:37:21 +0200467 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 1;
469}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100470ADD_TO_DEVTABLE("ccw", ccw_device_id, do_ccw_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200472/* looks like: "ap:tN" */
473static int do_ap_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100474 void *symval, char *alias)
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200475{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100476 DEF_FIELD(symval, ap_device_id, dev_type);
477
478 sprintf(alias, "ap:t%02X*", dev_type);
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200479 return 1;
480}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100481ADD_TO_DEVTABLE("ap", ap_device_id, do_ap_entry);
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200482
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200483/* looks like: "css:tN" */
484static int do_css_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100485 void *symval, char *alias)
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200486{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100487 DEF_FIELD(symval, css_device_id, type);
488
489 sprintf(alias, "css:t%01X", type);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200490 return 1;
491}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100492ADD_TO_DEVTABLE("css", css_device_id, do_css_entry);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494/* Looks like: "serio:tyNprNidNexN" */
495static int do_serio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100496 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100498 DEF_FIELD(symval, serio_device_id, type);
499 DEF_FIELD(symval, serio_device_id, proto);
500 DEF_FIELD(symval, serio_device_id, id);
501 DEF_FIELD(symval, serio_device_id, extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 strcpy(alias, "serio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100504 ADD(alias, "ty", type != SERIO_ANY, type);
505 ADD(alias, "pr", proto != SERIO_ANY, proto);
506 ADD(alias, "id", id != SERIO_ANY, id);
507 ADD(alias, "ex", extra != SERIO_ANY, extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jean Delvareac551822008-05-02 20:37:21 +0200509 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 1;
511}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100512ADD_TO_DEVTABLE("serio", serio_device_id, do_serio_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Thomas Renninger29b71a12007-07-23 14:43:51 +0200514/* looks like: "acpi:ACPI0003 or acpi:PNP0C0B" or "acpi:LNXVIDEO" */
515static int do_acpi_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100516 void *symval, char *alias)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200517{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100518 DEF_FIELD_ADDR(symval, acpi_device_id, id);
519 sprintf(alias, "acpi*:%s:*", *id);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200520 return 1;
521}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100522ADD_TO_DEVTABLE("acpi", acpi_device_id, do_acpi_entry);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/* looks like: "pnp:dD" */
Kay Sievers22454cb2008-05-28 23:06:47 +0200525static void do_pnp_device_entry(void *symval, unsigned long size,
526 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100528 const unsigned long id_size = SIZE_pnp_device_id;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200529 const unsigned int count = (size / id_size)-1;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200530 unsigned int i;
Kay Sievers22454cb2008-05-28 23:06:47 +0200531
532 device_id_check(mod->name, "pnp", size, id_size, symval);
533
Kay Sievers5e4c6562008-08-21 15:28:56 +0200534 for (i = 0; i < count; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100535 DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id);
536 char acpi_id[sizeof(*id)];
Kay Sievers72638f52009-01-08 03:06:42 +0100537 int j;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200538
539 buf_printf(&mod->dev_table_buf,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100540 "MODULE_ALIAS(\"pnp:d%s*\");\n", *id);
Kay Sievers72638f52009-01-08 03:06:42 +0100541
542 /* fix broken pnp bus lowercasing */
543 for (j = 0; j < sizeof(acpi_id); j++)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100544 acpi_id[j] = toupper((*id)[j]);
Kay Sievers5e4c6562008-08-21 15:28:56 +0200545 buf_printf(&mod->dev_table_buf,
Kay Sievers72638f52009-01-08 03:06:42 +0100546 "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id);
Kay Sievers5e4c6562008-08-21 15:28:56 +0200547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Kay Sievers0c81eed2008-02-21 00:35:54 +0100550/* looks like: "pnp:dD" for every device of the card */
551static void do_pnp_card_entries(void *symval, unsigned long size,
552 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100554 const unsigned long id_size = SIZE_pnp_card_device_id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100555 const unsigned int count = (size / id_size)-1;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100556 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Kay Sievers0c81eed2008-02-21 00:35:54 +0100558 device_id_check(mod->name, "pnp", size, id_size, symval);
559
560 for (i = 0; i < count; i++) {
561 unsigned int j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100562 DEF_FIELD_ADDR(symval + i*id_size, pnp_card_device_id, devs);
Kay Sievers0c81eed2008-02-21 00:35:54 +0100563
564 for (j = 0; j < PNP_MAX_DEVICES; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100565 const char *id = (char *)(*devs)[j].id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100566 int i2, j2;
567 int dup = 0;
568
569 if (!id[0])
570 break;
571
572 /* find duplicate, already added value */
573 for (i2 = 0; i2 < i && !dup; i2++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100574 DEF_FIELD_ADDR(symval + i2*id_size, pnp_card_device_id, devs);
Kay Sievers0c81eed2008-02-21 00:35:54 +0100575
576 for (j2 = 0; j2 < PNP_MAX_DEVICES; j2++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100577 const char *id2 = (char *)(*devs)[j2].id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100578
579 if (!id2[0])
580 break;
581
582 if (!strcmp(id, id2)) {
583 dup = 1;
584 break;
585 }
586 }
587 }
588
589 /* add an individual alias for every device entry */
Kay Sievers22454cb2008-05-28 23:06:47 +0200590 if (!dup) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100591 char acpi_id[PNP_ID_LEN];
Kay Sievers72638f52009-01-08 03:06:42 +0100592 int k;
593
Kay Sievers0c81eed2008-02-21 00:35:54 +0100594 buf_printf(&mod->dev_table_buf,
595 "MODULE_ALIAS(\"pnp:d%s*\");\n", id);
Kay Sievers72638f52009-01-08 03:06:42 +0100596
597 /* fix broken pnp bus lowercasing */
598 for (k = 0; k < sizeof(acpi_id); k++)
599 acpi_id[k] = toupper(id[k]);
Kay Sievers22454cb2008-05-28 23:06:47 +0200600 buf_printf(&mod->dev_table_buf,
Kay Sievers72638f52009-01-08 03:06:42 +0100601 "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id);
Kay Sievers22454cb2008-05-28 23:06:47 +0200602 }
Kay Sievers0c81eed2008-02-21 00:35:54 +0100603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700607/* Looks like: pcmcia:mNcNfNfnNpfnNvaNvbNvcNvdN. */
608static int do_pcmcia_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100609 void *symval, char *alias)
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700610{
611 unsigned int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100612 DEF_FIELD(symval, pcmcia_device_id, match_flags);
613 DEF_FIELD(symval, pcmcia_device_id, manf_id);
614 DEF_FIELD(symval, pcmcia_device_id, card_id);
615 DEF_FIELD(symval, pcmcia_device_id, func_id);
616 DEF_FIELD(symval, pcmcia_device_id, function);
617 DEF_FIELD(symval, pcmcia_device_id, device_no);
618 DEF_FIELD_ADDR(symval, pcmcia_device_id, prod_id_hash);
Kars de Jong4fb7edc2005-09-25 14:39:46 +0200619
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700620 for (i=0; i<4; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100621 (*prod_id_hash)[i] = TO_NATIVE((*prod_id_hash)[i]);
622 }
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700623
Andreas Schwab6543bec2013-01-20 17:58:47 +0100624 strcpy(alias, "pcmcia:");
625 ADD(alias, "m", match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID,
626 manf_id);
627 ADD(alias, "c", match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID,
628 card_id);
629 ADD(alias, "f", match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID,
630 func_id);
631 ADD(alias, "fn", match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION,
632 function);
633 ADD(alias, "pfn", match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO,
634 device_no);
635 ADD(alias, "pa", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1, (*prod_id_hash)[0]);
636 ADD(alias, "pb", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2, (*prod_id_hash)[1]);
637 ADD(alias, "pc", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3, (*prod_id_hash)[2]);
638 ADD(alias, "pd", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4, (*prod_id_hash)[3]);
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700639
Jean Delvareac551822008-05-02 20:37:21 +0200640 add_wildcard(alias);
Andreas Schwab6543bec2013-01-20 17:58:47 +0100641 return 1;
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700642}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100643ADD_TO_DEVTABLE("pcmcia", pcmcia_device_id, do_pcmcia_entry);
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700644
Andreas Schwab6543bec2013-01-20 17:58:47 +0100645static int do_of_entry (const char *filename, void *symval, char *alias)
Jeff Mahoney5e655772005-07-06 15:44:41 -0400646{
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900647 int len;
648 char *tmp;
649 DEF_FIELD_ADDR(symval, of_device_id, name);
650 DEF_FIELD_ADDR(symval, of_device_id, type);
651 DEF_FIELD_ADDR(symval, of_device_id, compatible);
Sylvain Munautd1ab4232007-05-08 19:59:29 +1000652
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900653 len = sprintf(alias, "of:N%sT%s", (*name)[0] ? *name : "*",
654 (*type)[0] ? *type : "*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100655
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900656 if (compatible[0])
657 sprintf(&alias[len], "%sC%s", (*type)[0] ? "*" : "",
658 *compatible);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400659
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900660 /* Replace all whitespace with underscores */
661 for (tmp = alias; tmp && *tmp; tmp++)
662 if (isspace (*tmp))
663 *tmp = '_';
Jeff Mahoney5e655772005-07-06 15:44:41 -0400664
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900665 add_wildcard(alias);
666 return 1;
Jeff Mahoney5e655772005-07-06 15:44:41 -0400667}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100668ADD_TO_DEVTABLE("of", of_device_id, do_of_entry);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400669
Andreas Schwab6543bec2013-01-20 17:58:47 +0100670static int do_vio_entry(const char *filename, void *symval,
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000671 char *alias)
672{
673 char *tmp;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100674 DEF_FIELD_ADDR(symval, vio_device_id, type);
675 DEF_FIELD_ADDR(symval, vio_device_id, compat);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000676
Andreas Schwab6543bec2013-01-20 17:58:47 +0100677 sprintf(alias, "vio:T%sS%s", (*type)[0] ? *type : "*",
678 (*compat)[0] ? *compat : "*");
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000679
680 /* Replace all whitespace with underscores */
681 for (tmp = alias; tmp && *tmp; tmp++)
682 if (isspace (*tmp))
683 *tmp = '_';
684
Jean Delvareac551822008-05-02 20:37:21 +0200685 add_wildcard(alias);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000686 return 1;
687}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100688ADD_TO_DEVTABLE("vio", vio_device_id, do_vio_entry);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000689
Rusty Russell1d8f4302005-12-07 21:40:34 +0100690#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
691
692static void do_input(char *alias,
693 kernel_ulong_t *arr, unsigned int min, unsigned int max)
694{
695 unsigned int i;
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400696
Andreas Schwab6543bec2013-01-20 17:58:47 +0100697 for (i = min / BITS_PER_LONG; i < max / BITS_PER_LONG + 1; i++)
698 arr[i] = TO_NATIVE(arr[i]);
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400699 for (i = min; i < max; i++)
Hans de Goedee0e92632006-08-15 12:09:27 +0200700 if (arr[i / BITS_PER_LONG] & (1L << (i%BITS_PER_LONG)))
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400701 sprintf(alias + strlen(alias), "%X,*", i);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100702}
703
704/* input:b0v0p0e0-eXkXrXaXmXlXsXfXwX where X is comma-separated %02X. */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100705static int do_input_entry(const char *filename, void *symval,
Rusty Russell1d8f4302005-12-07 21:40:34 +0100706 char *alias)
707{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100708 DEF_FIELD(symval, input_device_id, flags);
709 DEF_FIELD(symval, input_device_id, bustype);
710 DEF_FIELD(symval, input_device_id, vendor);
711 DEF_FIELD(symval, input_device_id, product);
712 DEF_FIELD(symval, input_device_id, version);
713 DEF_FIELD_ADDR(symval, input_device_id, evbit);
714 DEF_FIELD_ADDR(symval, input_device_id, keybit);
715 DEF_FIELD_ADDR(symval, input_device_id, relbit);
716 DEF_FIELD_ADDR(symval, input_device_id, absbit);
717 DEF_FIELD_ADDR(symval, input_device_id, mscbit);
718 DEF_FIELD_ADDR(symval, input_device_id, ledbit);
719 DEF_FIELD_ADDR(symval, input_device_id, sndbit);
720 DEF_FIELD_ADDR(symval, input_device_id, ffbit);
721 DEF_FIELD_ADDR(symval, input_device_id, swbit);
722
Rusty Russell1d8f4302005-12-07 21:40:34 +0100723 sprintf(alias, "input:");
724
Andreas Schwab6543bec2013-01-20 17:58:47 +0100725 ADD(alias, "b", flags & INPUT_DEVICE_ID_MATCH_BUS, bustype);
726 ADD(alias, "v", flags & INPUT_DEVICE_ID_MATCH_VENDOR, vendor);
727 ADD(alias, "p", flags & INPUT_DEVICE_ID_MATCH_PRODUCT, product);
728 ADD(alias, "e", flags & INPUT_DEVICE_ID_MATCH_VERSION, version);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100729
730 sprintf(alias + strlen(alias), "-e*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100731 if (flags & INPUT_DEVICE_ID_MATCH_EVBIT)
732 do_input(alias, *evbit, 0, INPUT_DEVICE_ID_EV_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100733 sprintf(alias + strlen(alias), "k*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100734 if (flags & INPUT_DEVICE_ID_MATCH_KEYBIT)
735 do_input(alias, *keybit,
Sam Ravnborgdc24f0e2007-03-09 19:59:06 +0100736 INPUT_DEVICE_ID_KEY_MIN_INTERESTING,
737 INPUT_DEVICE_ID_KEY_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100738 sprintf(alias + strlen(alias), "r*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100739 if (flags & INPUT_DEVICE_ID_MATCH_RELBIT)
740 do_input(alias, *relbit, 0, INPUT_DEVICE_ID_REL_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100741 sprintf(alias + strlen(alias), "a*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100742 if (flags & INPUT_DEVICE_ID_MATCH_ABSBIT)
743 do_input(alias, *absbit, 0, INPUT_DEVICE_ID_ABS_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100744 sprintf(alias + strlen(alias), "m*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100745 if (flags & INPUT_DEVICE_ID_MATCH_MSCIT)
746 do_input(alias, *mscbit, 0, INPUT_DEVICE_ID_MSC_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100747 sprintf(alias + strlen(alias), "l*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100748 if (flags & INPUT_DEVICE_ID_MATCH_LEDBIT)
749 do_input(alias, *ledbit, 0, INPUT_DEVICE_ID_LED_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100750 sprintf(alias + strlen(alias), "s*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100751 if (flags & INPUT_DEVICE_ID_MATCH_SNDBIT)
752 do_input(alias, *sndbit, 0, INPUT_DEVICE_ID_SND_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100753 sprintf(alias + strlen(alias), "f*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100754 if (flags & INPUT_DEVICE_ID_MATCH_FFBIT)
755 do_input(alias, *ffbit, 0, INPUT_DEVICE_ID_FF_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100756 sprintf(alias + strlen(alias), "w*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100757 if (flags & INPUT_DEVICE_ID_MATCH_SWBIT)
758 do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100759 return 1;
760}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100761ADD_TO_DEVTABLE("input", input_device_id, do_input_entry);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100762
Andreas Schwab6543bec2013-01-20 17:58:47 +0100763static int do_eisa_entry(const char *filename, void *symval,
Michael Tokarev07563c72006-09-27 01:50:56 -0700764 char *alias)
765{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100766 DEF_FIELD_ADDR(symval, eisa_device_id, sig);
767 if (sig[0])
768 sprintf(alias, EISA_DEVICE_MODALIAS_FMT "*", *sig);
Jean Delvareac551822008-05-02 20:37:21 +0200769 else
770 strcat(alias, "*");
Michael Tokarev07563c72006-09-27 01:50:56 -0700771 return 1;
772}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100773ADD_TO_DEVTABLE("eisa", eisa_device_id, do_eisa_entry);
Michael Tokarev07563c72006-09-27 01:50:56 -0700774
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500775/* Looks like: parisc:tNhvNrevNsvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100776static int do_parisc_entry(const char *filename, void *symval,
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500777 char *alias)
778{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100779 DEF_FIELD(symval, parisc_device_id, hw_type);
780 DEF_FIELD(symval, parisc_device_id, hversion);
781 DEF_FIELD(symval, parisc_device_id, hversion_rev);
782 DEF_FIELD(symval, parisc_device_id, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500783
784 strcpy(alias, "parisc:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100785 ADD(alias, "t", hw_type != PA_HWTYPE_ANY_ID, hw_type);
786 ADD(alias, "hv", hversion != PA_HVERSION_ANY_ID, hversion);
787 ADD(alias, "rev", hversion_rev != PA_HVERSION_REV_ANY_ID, hversion_rev);
788 ADD(alias, "sv", sversion != PA_SVERSION_ANY_ID, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500789
Jean Delvareac551822008-05-02 20:37:21 +0200790 add_wildcard(alias);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500791 return 1;
792}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100793ADD_TO_DEVTABLE("parisc", parisc_device_id, do_parisc_entry);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500794
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200795/* Looks like: sdio:cNvNdN. */
796static int do_sdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100797 void *symval, char *alias)
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200798{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100799 DEF_FIELD(symval, sdio_device_id, class);
800 DEF_FIELD(symval, sdio_device_id, vendor);
801 DEF_FIELD(symval, sdio_device_id, device);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200802
803 strcpy(alias, "sdio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100804 ADD(alias, "c", class != (__u8)SDIO_ANY_ID, class);
805 ADD(alias, "v", vendor != (__u16)SDIO_ANY_ID, vendor);
806 ADD(alias, "d", device != (__u16)SDIO_ANY_ID, device);
Jean Delvareac551822008-05-02 20:37:21 +0200807 add_wildcard(alias);
Linus Torvalds038a5002007-10-11 19:40:14 -0700808 return 1;
809}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100810ADD_TO_DEVTABLE("sdio", sdio_device_id, do_sdio_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200811
Michael Buesch61e115a2007-09-18 15:12:50 -0400812/* Looks like: ssb:vNidNrevN. */
813static int do_ssb_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100814 void *symval, char *alias)
Michael Buesch61e115a2007-09-18 15:12:50 -0400815{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100816 DEF_FIELD(symval, ssb_device_id, vendor);
817 DEF_FIELD(symval, ssb_device_id, coreid);
818 DEF_FIELD(symval, ssb_device_id, revision);
Michael Buesch61e115a2007-09-18 15:12:50 -0400819
820 strcpy(alias, "ssb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100821 ADD(alias, "v", vendor != SSB_ANY_VENDOR, vendor);
822 ADD(alias, "id", coreid != SSB_ANY_ID, coreid);
823 ADD(alias, "rev", revision != SSB_ANY_REV, revision);
Jean Delvareac551822008-05-02 20:37:21 +0200824 add_wildcard(alias);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200825 return 1;
826}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100827ADD_TO_DEVTABLE("ssb", ssb_device_id, do_ssb_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200828
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200829/* Looks like: bcma:mNidNrevNclN. */
830static int do_bcma_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100831 void *symval, char *alias)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200832{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100833 DEF_FIELD(symval, bcma_device_id, manuf);
834 DEF_FIELD(symval, bcma_device_id, id);
835 DEF_FIELD(symval, bcma_device_id, rev);
836 DEF_FIELD(symval, bcma_device_id, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200837
838 strcpy(alias, "bcma:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100839 ADD(alias, "m", manuf != BCMA_ANY_MANUF, manuf);
840 ADD(alias, "id", id != BCMA_ANY_ID, id);
841 ADD(alias, "rev", rev != BCMA_ANY_REV, rev);
842 ADD(alias, "cl", class != BCMA_ANY_CLASS, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200843 add_wildcard(alias);
844 return 1;
845}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100846ADD_TO_DEVTABLE("bcma", bcma_device_id, do_bcma_entry);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200847
Rusty Russellb01d9f22007-10-22 11:03:39 +1000848/* Looks like: virtio:dNvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100849static int do_virtio_entry(const char *filename, void *symval,
Rusty Russellb01d9f22007-10-22 11:03:39 +1000850 char *alias)
851{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100852 DEF_FIELD(symval, virtio_device_id, device);
853 DEF_FIELD(symval, virtio_device_id, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000854
855 strcpy(alias, "virtio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100856 ADD(alias, "d", device != VIRTIO_DEV_ANY_ID, device);
857 ADD(alias, "v", vendor != VIRTIO_DEV_ANY_ID, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000858
Jean Delvareac551822008-05-02 20:37:21 +0200859 add_wildcard(alias);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000860 return 1;
861}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100862ADD_TO_DEVTABLE("virtio", virtio_device_id, do_virtio_entry);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000863
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700864/*
865 * Looks like: vmbus:guid
866 * Each byte of the guid will be represented by two hex characters
867 * in the name.
868 */
869
Andreas Schwab6543bec2013-01-20 17:58:47 +0100870static int do_vmbus_entry(const char *filename, void *symval,
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700871 char *alias)
872{
873 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100874 DEF_FIELD_ADDR(symval, hv_vmbus_device_id, guid);
875 char guid_name[(sizeof(*guid) + 1) * 2];
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700876
Andreas Schwab6543bec2013-01-20 17:58:47 +0100877 for (i = 0; i < (sizeof(*guid) * 2); i += 2)
878 sprintf(&guid_name[i], "%02x", TO_NATIVE((*guid)[i/2]));
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700879
880 strcpy(alias, "vmbus:");
881 strcat(alias, guid_name);
882
883 return 1;
884}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100885ADD_TO_DEVTABLE("vmbus", hv_vmbus_device_id, do_vmbus_entry);
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700886
Jean Delvared2653e92008-04-29 23:11:39 +0200887/* Looks like: i2c:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100888static int do_i2c_entry(const char *filename, void *symval,
Jean Delvared2653e92008-04-29 23:11:39 +0200889 char *alias)
890{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100891 DEF_FIELD_ADDR(symval, i2c_device_id, name);
892 sprintf(alias, I2C_MODULE_PREFIX "%s", *name);
Jean Delvared2653e92008-04-29 23:11:39 +0200893
894 return 1;
895}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100896ADD_TO_DEVTABLE("i2c", i2c_device_id, do_i2c_entry);
Jean Delvared2653e92008-04-29 23:11:39 +0200897
Anton Vorontsove0626e32009-09-22 16:46:08 -0700898/* Looks like: spi:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100899static int do_spi_entry(const char *filename, void *symval,
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700900 char *alias)
901{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100902 DEF_FIELD_ADDR(symval, spi_device_id, name);
903 sprintf(alias, SPI_MODULE_PREFIX "%s", *name);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700904
905 return 1;
906}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100907ADD_TO_DEVTABLE("spi", spi_device_id, do_spi_entry);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700908
David Woodhoused945b692008-09-16 16:23:28 -0700909static const struct dmifield {
910 const char *prefix;
911 int field;
912} dmi_fields[] = {
913 { "bvn", DMI_BIOS_VENDOR },
914 { "bvr", DMI_BIOS_VERSION },
915 { "bd", DMI_BIOS_DATE },
916 { "svn", DMI_SYS_VENDOR },
917 { "pn", DMI_PRODUCT_NAME },
918 { "pvr", DMI_PRODUCT_VERSION },
919 { "rvn", DMI_BOARD_VENDOR },
920 { "rn", DMI_BOARD_NAME },
921 { "rvr", DMI_BOARD_VERSION },
922 { "cvn", DMI_CHASSIS_VENDOR },
923 { "ct", DMI_CHASSIS_TYPE },
924 { "cvr", DMI_CHASSIS_VERSION },
925 { NULL, DMI_NONE }
926};
927
928static void dmi_ascii_filter(char *d, const char *s)
929{
930 /* Filter out characters we don't want to see in the modalias string */
931 for (; *s; s++)
932 if (*s > ' ' && *s < 127 && *s != ':')
933 *(d++) = *s;
934
935 *d = 0;
936}
937
938
Andreas Schwab6543bec2013-01-20 17:58:47 +0100939static int do_dmi_entry(const char *filename, void *symval,
David Woodhoused945b692008-09-16 16:23:28 -0700940 char *alias)
941{
942 int i, j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100943 DEF_FIELD_ADDR(symval, dmi_system_id, matches);
David Woodhoused945b692008-09-16 16:23:28 -0700944 sprintf(alias, "dmi*");
945
946 for (i = 0; i < ARRAY_SIZE(dmi_fields); i++) {
947 for (j = 0; j < 4; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100948 if ((*matches)[j].slot &&
949 (*matches)[j].slot == dmi_fields[i].field) {
David Woodhoused945b692008-09-16 16:23:28 -0700950 sprintf(alias + strlen(alias), ":%s*",
951 dmi_fields[i].prefix);
952 dmi_ascii_filter(alias + strlen(alias),
Andreas Schwab6543bec2013-01-20 17:58:47 +0100953 (*matches)[j].substr);
David Woodhoused945b692008-09-16 16:23:28 -0700954 strcat(alias, "*");
955 }
956 }
957 }
958
959 strcat(alias, ":");
960 return 1;
961}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100962ADD_TO_DEVTABLE("dmi", dmi_system_id, do_dmi_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +0800963
964static int do_platform_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100965 void *symval, char *alias)
Eric Miao57fee4a2009-02-04 11:52:40 +0800966{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100967 DEF_FIELD_ADDR(symval, platform_device_id, name);
968 sprintf(alias, PLATFORM_MODULE_PREFIX "%s", *name);
Eric Miao57fee4a2009-02-04 11:52:40 +0800969 return 1;
970}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100971ADD_TO_DEVTABLE("platform", platform_device_id, do_platform_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +0800972
David Woodhouse8626d3b2010-04-02 01:05:27 +0000973static int do_mdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100974 void *symval, char *alias)
David Woodhouse8626d3b2010-04-02 01:05:27 +0000975{
976 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100977 DEF_FIELD(symval, mdio_device_id, phy_id);
978 DEF_FIELD(symval, mdio_device_id, phy_id_mask);
David Woodhouse8626d3b2010-04-02 01:05:27 +0000979
980 alias += sprintf(alias, MDIO_MODULE_PREFIX);
981
982 for (i = 0; i < 32; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100983 if (!((phy_id_mask >> (31-i)) & 1))
David Woodhouse8626d3b2010-04-02 01:05:27 +0000984 *(alias++) = '?';
Andreas Schwab6543bec2013-01-20 17:58:47 +0100985 else if ((phy_id >> (31-i)) & 1)
David Woodhouse8626d3b2010-04-02 01:05:27 +0000986 *(alias++) = '1';
987 else
988 *(alias++) = '0';
989 }
990
991 /* Terminate the string */
992 *alias = 0;
993
994 return 1;
995}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100996ADD_TO_DEVTABLE("mdio", mdio_device_id, do_mdio_entry);
David Woodhouse8626d3b2010-04-02 01:05:27 +0000997
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +0100998/* Looks like: zorro:iN. */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100999static int do_zorro_entry(const char *filename, void *symval,
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001000 char *alias)
1001{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001002 DEF_FIELD(symval, zorro_device_id, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001003 strcpy(alias, "zorro:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001004 ADD(alias, "i", id != ZORRO_WILDCARD, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001005 return 1;
1006}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001007ADD_TO_DEVTABLE("zorro", zorro_device_id, do_zorro_entry);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001008
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001009/* looks like: "pnp:dD" */
1010static int do_isapnp_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001011 void *symval, char *alias)
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001012{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001013 DEF_FIELD(symval, isapnp_device_id, vendor);
1014 DEF_FIELD(symval, isapnp_device_id, function);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001015 sprintf(alias, "pnp:d%c%c%c%x%x%x%x*",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001016 'A' + ((vendor >> 2) & 0x3f) - 1,
1017 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1,
1018 'A' + ((vendor >> 8) & 0x1f) - 1,
1019 (function >> 4) & 0x0f, function & 0x0f,
1020 (function >> 12) & 0x0f, (function >> 8) & 0x0f);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001021 return 1;
1022}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001023ADD_TO_DEVTABLE("isapnp", isapnp_device_id, do_isapnp_entry);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001024
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001025/* Looks like: "ipack:fNvNdN". */
1026static int do_ipack_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001027 void *symval, char *alias)
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001028{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001029 DEF_FIELD(symval, ipack_device_id, format);
1030 DEF_FIELD(symval, ipack_device_id, vendor);
1031 DEF_FIELD(symval, ipack_device_id, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001032 strcpy(alias, "ipack:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001033 ADD(alias, "f", format != IPACK_ANY_FORMAT, format);
1034 ADD(alias, "v", vendor != IPACK_ANY_ID, vendor);
1035 ADD(alias, "d", device != IPACK_ANY_ID, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001036 add_wildcard(alias);
1037 return 1;
1038}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001039ADD_TO_DEVTABLE("ipack", ipack_device_id, do_ipack_entry);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001040
Dave Martin523817b2011-10-05 14:44:57 +01001041/*
1042 * Append a match expression for a single masked hex digit.
1043 * outp points to a pointer to the character at which to append.
1044 * *outp is updated on return to point just after the appended text,
1045 * to facilitate further appending.
1046 */
1047static void append_nibble_mask(char **outp,
1048 unsigned int nibble, unsigned int mask)
1049{
1050 char *p = *outp;
1051 unsigned int i;
1052
1053 switch (mask) {
1054 case 0:
1055 *p++ = '?';
1056 break;
1057
1058 case 0xf:
1059 p += sprintf(p, "%X", nibble);
1060 break;
1061
1062 default:
1063 /*
1064 * Dumbly emit a match pattern for all possible matching
1065 * digits. This could be improved in some cases using ranges,
1066 * but it has the advantage of being trivially correct, and is
1067 * often optimal.
1068 */
1069 *p++ = '[';
1070 for (i = 0; i < 0x10; i++)
1071 if ((i & mask) == nibble)
1072 p += sprintf(p, "%X", i);
1073 *p++ = ']';
1074 }
1075
1076 /* Ensure that the string remains NUL-terminated: */
1077 *p = '\0';
1078
1079 /* Advance the caller's end-of-string pointer: */
1080 *outp = p;
1081}
1082
1083/*
1084 * looks like: "amba:dN"
1085 *
1086 * N is exactly 8 digits, where each is an upper-case hex digit, or
1087 * a ? or [] pattern matching exactly one digit.
1088 */
1089static int do_amba_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001090 void *symval, char *alias)
Dave Martin523817b2011-10-05 14:44:57 +01001091{
1092 unsigned int digit;
1093 char *p = alias;
Andreas Schwab6543bec2013-01-20 17:58:47 +01001094 DEF_FIELD(symval, amba_id, id);
1095 DEF_FIELD(symval, amba_id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001096
Andreas Schwab6543bec2013-01-20 17:58:47 +01001097 if ((id & mask) != id)
Dave Martin523817b2011-10-05 14:44:57 +01001098 fatal("%s: Masked-off bit(s) of AMBA device ID are non-zero: "
1099 "id=0x%08X, mask=0x%08X. Please fix this driver.\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001100 filename, id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001101
1102 p += sprintf(alias, "amba:d");
1103 for (digit = 0; digit < 8; digit++)
1104 append_nibble_mask(&p,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001105 (id >> (4 * (7 - digit))) & 0xf,
1106 (mask >> (4 * (7 - digit))) & 0xf);
Dave Martin523817b2011-10-05 14:44:57 +01001107
1108 return 1;
1109}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001110ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry);
Dave Martin523817b2011-10-05 14:44:57 +01001111
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +01001112/* LOOKS like cpu:type:x86,venVVVVfamFFFFmodMMMM:feature:*,FEAT,*
Andi Kleen644e9cb2012-01-26 00:09:05 +01001113 * All fields are numbers. It would be nicer to use strings for vendor
1114 * and feature, but getting those out of the build system here is too
1115 * complicated.
1116 */
1117
Andreas Schwab6543bec2013-01-20 17:58:47 +01001118static int do_x86cpu_entry(const char *filename, void *symval,
Andi Kleen644e9cb2012-01-26 00:09:05 +01001119 char *alias)
1120{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001121 DEF_FIELD(symval, x86_cpu_id, feature);
1122 DEF_FIELD(symval, x86_cpu_id, family);
1123 DEF_FIELD(symval, x86_cpu_id, model);
1124 DEF_FIELD(symval, x86_cpu_id, vendor);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001125
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +01001126 strcpy(alias, "cpu:type:x86,");
1127 ADD(alias, "ven", vendor != X86_VENDOR_ANY, vendor);
1128 ADD(alias, "fam", family != X86_FAMILY_ANY, family);
1129 ADD(alias, "mod", model != X86_MODEL_ANY, model);
Ben Hutchings5467bdd2012-02-11 22:57:19 +00001130 strcat(alias, ":feature:*");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001131 if (feature != X86_FEATURE_ANY)
1132 sprintf(alias + strlen(alias), "%04X*", feature);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001133 return 1;
1134}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001135ADD_TO_DEVTABLE("x86cpu", x86_cpu_id, do_x86cpu_entry);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001136
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +01001137/* LOOKS like cpu:type:*:feature:*FEAT* */
1138static int do_cpu_entry(const char *filename, void *symval, char *alias)
1139{
1140 DEF_FIELD(symval, cpu_feature, feature);
1141
1142 sprintf(alias, "cpu:type:*:feature:*%04X*", feature);
1143 return 1;
1144}
1145ADD_TO_DEVTABLE("cpu", cpu_feature, do_cpu_entry);
1146
Samuel Ortize5354102013-03-27 17:29:53 +02001147/* Looks like: mei:S */
1148static int do_mei_entry(const char *filename, void *symval,
1149 char *alias)
1150{
1151 DEF_FIELD_ADDR(symval, mei_cl_device_id, name);
1152
1153 sprintf(alias, MEI_CL_MODULE_PREFIX "%s", *name);
1154
1155 return 1;
1156}
1157ADD_TO_DEVTABLE("mei", mei_cl_device_id, do_mei_entry);
1158
Alexandre Bounine3bdbb622013-07-03 15:08:58 -07001159/* Looks like: rapidio:vNdNavNadN */
1160static int do_rio_entry(const char *filename,
1161 void *symval, char *alias)
1162{
1163 DEF_FIELD(symval, rio_device_id, did);
1164 DEF_FIELD(symval, rio_device_id, vid);
1165 DEF_FIELD(symval, rio_device_id, asm_did);
1166 DEF_FIELD(symval, rio_device_id, asm_vid);
1167
1168 strcpy(alias, "rapidio:");
1169 ADD(alias, "v", vid != RIO_ANY_ID, vid);
1170 ADD(alias, "d", did != RIO_ANY_ID, did);
1171 ADD(alias, "av", asm_vid != RIO_ANY_ID, asm_vid);
1172 ADD(alias, "ad", asm_did != RIO_ANY_ID, asm_did);
1173
1174 add_wildcard(alias);
1175 return 1;
1176}
1177ADD_TO_DEVTABLE("rapidio", rio_device_id, do_rio_entry);
1178
Rusty Russell626596e2012-01-13 09:32:15 +10301179/* Does namelen bytes of name exactly match the symbol? */
1180static bool sym_is(const char *name, unsigned namelen, const char *symbol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181{
Rusty Russell626596e2012-01-13 09:32:15 +10301182 if (namelen != strlen(symbol))
1183 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Rusty Russell626596e2012-01-13 09:32:15 +10301185 return memcmp(name, symbol, namelen) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
1188static void do_table(void *symval, unsigned long size,
1189 unsigned long id_size,
Sam Ravnborgfb33d812006-07-09 16:26:07 +02001190 const char *device_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 void *function,
1192 struct module *mod)
1193{
1194 unsigned int i;
1195 char alias[500];
1196 int (*do_entry)(const char *, void *entry, char *alias) = function;
1197
Kees Cooke0049822007-09-16 11:15:46 +02001198 device_id_check(mod->name, device_id, size, id_size, symval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /* Leave last one: it's the terminator. */
1200 size -= id_size;
1201
1202 for (i = 0; i < size; i += id_size) {
1203 if (do_entry(mod->name, symval+i, alias)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 buf_printf(&mod->dev_table_buf,
1205 "MODULE_ALIAS(\"%s\");\n", alias);
1206 }
1207 }
1208}
1209
1210/* Create MODULE_ALIAS() statements.
1211 * At this time, we cannot write the actual output C source yet,
1212 * so we write into the mod->dev_table_buf buffer. */
1213void handle_moddevtable(struct module *mod, struct elf_info *info,
1214 Elf_Sym *sym, const char *symname)
1215{
1216 void *symval;
Kees Cooke0049822007-09-16 11:15:46 +02001217 char *zeros = NULL;
Tom Gundersen21bdd172014-02-03 11:14:13 +10301218 const char *name, *identifier;
Rusty Russell626596e2012-01-13 09:32:15 +10301219 unsigned int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /* We're looking for a section relative symbol */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001222 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return;
1224
David Millere88aa7b2012-04-12 14:37:30 -04001225 /* We're looking for an object */
1226 if (ELF_ST_TYPE(sym->st_info) != STT_OBJECT)
1227 return;
1228
Tom Gundersen21bdd172014-02-03 11:14:13 +10301229 /* All our symbols are of form <prefix>__mod_<name>__<identifier>_device_table. */
Rusty Russell626596e2012-01-13 09:32:15 +10301230 name = strstr(symname, "__mod_");
1231 if (!name)
1232 return;
1233 name += strlen("__mod_");
1234 namelen = strlen(name);
1235 if (namelen < strlen("_device_table"))
1236 return;
1237 if (strcmp(name + namelen - strlen("_device_table"), "_device_table"))
1238 return;
Tom Gundersen21bdd172014-02-03 11:14:13 +10301239 identifier = strstr(name, "__");
1240 if (!identifier)
1241 return;
1242 namelen = identifier - name;
Rusty Russell626596e2012-01-13 09:32:15 +10301243
Kees Cooke0049822007-09-16 11:15:46 +02001244 /* Handle all-NULL symbols allocated into .bss */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001245 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) {
Kees Cooke0049822007-09-16 11:15:46 +02001246 zeros = calloc(1, sym->st_size);
1247 symval = zeros;
1248 } else {
1249 symval = (void *)info->hdr
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001250 + info->sechdrs[get_secindex(info, sym)].sh_offset
Kees Cooke0049822007-09-16 11:15:46 +02001251 + sym->st_value;
1252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Rusty Russell626596e2012-01-13 09:32:15 +10301254 /* First handle the "special" cases */
1255 if (sym_is(name, namelen, "usb"))
Roman Kaganb19dcd92005-04-22 15:07:01 -07001256 do_usb_table(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301257 else if (sym_is(name, namelen, "pnp"))
Kay Sievers22454cb2008-05-28 23:06:47 +02001258 do_pnp_device_entry(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301259 else if (sym_is(name, namelen, "pnp_card"))
Kay Sievers0c81eed2008-02-21 00:35:54 +01001260 do_pnp_card_entries(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301261 else {
Rusty Russelle49ce142012-01-13 09:32:16 +10301262 struct devtable **p;
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +01001263 INIT_SECTION(__devtable);
Rusty Russell626596e2012-01-13 09:32:15 +10301264
Rusty Russelle49ce142012-01-13 09:32:16 +10301265 for (p = __start___devtable; p < __stop___devtable; p++) {
1266 if (sym_is(name, namelen, (*p)->device_id)) {
1267 do_table(symval, sym->st_size, (*p)->id_size,
1268 (*p)->device_id, (*p)->function, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301269 break;
1270 }
1271 }
1272 }
Kees Cooke0049822007-09-16 11:15:46 +02001273 free(zeros);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276/* Now add out buffered information to the generated C source */
1277void add_moddevtable(struct buffer *buf, struct module *mod)
1278{
1279 buf_printf(buf, "\n");
1280 buf_write(buf, mod->dev_table_buf.p, mod->dev_table_buf.pos);
1281 free(mod->dev_table_buf.p);
1282}