blob: 5b96206e9aab833f9a666bc7cf52d57662929b3d [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;
Greg Kroah-Hartmanb144ce22015-05-27 17:17:27 -070037typedef struct {
38 __u8 b[16];
39} uuid_le;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Big exception to the "don't include kernel headers into userspace, which
Sam Ravnborg62070fa2006-03-03 16:46:04 +010042 * even potentially has different endianness and word sizes, since
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * we handle those differences explicitly below */
44#include "../../include/linux/mod_devicetable.h"
45
Rusty Russelle49ce142012-01-13 09:32:16 +103046/* This array collects all instances that use the generic do_table */
47struct devtable {
Tom Gundersen21bdd172014-02-03 11:14:13 +103048 const char *device_id; /* name of table, __mod_<name>__*_device_table. */
Rusty Russelle49ce142012-01-13 09:32:16 +103049 unsigned long id_size;
50 void *function;
51};
52
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +010053#define ___cat(a,b) a ## b
54#define __cat(a,b) ___cat(a,b)
55
56/* we need some special handling for this host tool running eventually on
57 * Darwin. The Mach-O section handling is a bit different than ELF section
58 * handling. The differnces in detail are:
59 * a) we have segments which have sections
60 * b) we need a API call to get the respective section symbols */
61#if defined(__MACH__)
62#include <mach-o/getsect.h>
63
64#define INIT_SECTION(name) do { \
65 unsigned long name ## _len; \
66 char *__cat(pstart_,name) = getsectdata("__TEXT", \
67 #name, &__cat(name,_len)); \
68 char *__cat(pstop_,name) = __cat(pstart_,name) + \
69 __cat(name, _len); \
70 __cat(__start_,name) = (void *)__cat(pstart_,name); \
71 __cat(__stop_,name) = (void *)__cat(pstop_,name); \
72 } while (0)
73#define SECTION(name) __attribute__((section("__TEXT, " #name)))
74
75struct devtable **__start___devtable, **__stop___devtable;
76#else
77#define INIT_SECTION(name) /* no-op for ELF */
78#define SECTION(name) __attribute__((section(#name)))
79
Rusty Russelle49ce142012-01-13 09:32:16 +103080/* We construct a table of pointers in an ELF section (pointers generally
81 * go unpadded by gcc). ld creates boundary syms for us. */
82extern struct devtable *__start___devtable[], *__stop___devtable[];
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +010083#endif /* __MACH__ */
Rusty Russelle49ce142012-01-13 09:32:16 +103084
Daniel Tang04130cc2013-06-09 12:33:55 +100085#if !defined(__used)
86# if __GNUC__ == 3 && __GNUC_MINOR__ < 3
87# define __used __attribute__((__unused__))
88# else
89# define __used __attribute__((__used__))
90# endif
Rusty Russelle49ce142012-01-13 09:32:16 +103091#endif
92
Andreas Schwab6543bec2013-01-20 17:58:47 +010093/* Define a variable f that holds the value of field f of struct devid
94 * based at address m.
95 */
96#define DEF_FIELD(m, devid, f) \
97 typeof(((struct devid *)0)->f) f = TO_NATIVE(*(typeof(f) *)((m) + OFF_##devid##_##f))
98/* Define a variable f that holds the address of field f of struct devid
99 * based at address m. Due to the way typeof works, for a field of type
100 * T[N] the variable has type T(*)[N], _not_ T*.
101 */
102#define DEF_FIELD_ADDR(m, devid, f) \
103 typeof(((struct devid *)0)->f) *f = ((m) + OFF_##devid##_##f)
104
Rusty Russelle49ce142012-01-13 09:32:16 +1030105/* Add a table entry. We test function type matches while we're here. */
106#define ADD_TO_DEVTABLE(device_id, type, function) \
107 static struct devtable __cat(devtable,__LINE__) = { \
108 device_id + 0*sizeof((function)((const char *)NULL, \
Andreas Schwab6543bec2013-01-20 17:58:47 +0100109 (void *)NULL, \
Rusty Russelle49ce142012-01-13 09:32:16 +1030110 (char *)NULL)), \
Andreas Schwab6543bec2013-01-20 17:58:47 +0100111 SIZE_##type, (function) }; \
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +0100112 static struct devtable *SECTION(__devtable) __used \
113 __cat(devtable_ptr,__LINE__) = &__cat(devtable,__LINE__)
Rusty Russelle49ce142012-01-13 09:32:16 +1030114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define ADD(str, sep, cond, field) \
116do { \
117 strcat(str, sep); \
118 if (cond) \
119 sprintf(str + strlen(str), \
120 sizeof(field) == 1 ? "%02X" : \
121 sizeof(field) == 2 ? "%04X" : \
122 sizeof(field) == 4 ? "%08X" : "", \
123 field); \
124 else \
125 sprintf(str + strlen(str), "*"); \
126} while(0)
127
Jean Delvareac551822008-05-02 20:37:21 +0200128/* Always end in a wildcard, for future extension */
129static inline void add_wildcard(char *str)
130{
131 int len = strlen(str);
132
133 if (str[len - 1] != '*')
134 strcat(str + len, "*");
135}
136
Greg Kroah-Hartmanb144ce22015-05-27 17:17:27 -0700137static inline void add_uuid(char *str, uuid_le uuid)
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300138{
139 int len = strlen(str);
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300140
Prarit Bhargava59796ed2015-09-10 10:17:59 +0300141 sprintf(str + len, "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x",
142 uuid.b[3], uuid.b[2], uuid.b[1], uuid.b[0],
143 uuid.b[5], uuid.b[4], uuid.b[7], uuid.b[6],
144 uuid.b[8], uuid.b[9], uuid.b[10], uuid.b[11],
145 uuid.b[12], uuid.b[13], uuid.b[14], uuid.b[15]);
Tomas Winklerc93b76b2015-05-07 15:54:02 +0300146}
147
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200148/**
149 * Check that sizeof(device_id type) are consistent with size of section
150 * in .o file. If in-consistent then userspace and kernel does not agree
151 * on actual size which is a bug.
Kees Cooke0049822007-09-16 11:15:46 +0200152 * Also verify that the final entry in the table is all zeros.
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +0100153 * Ignore both checks if build host differ from target host and size differs.
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200154 **/
Kees Cooke0049822007-09-16 11:15:46 +0200155static void device_id_check(const char *modname, const char *device_id,
156 unsigned long size, unsigned long id_size,
157 void *symval)
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200158{
Kees Cooke0049822007-09-16 11:15:46 +0200159 int i;
160
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200161 if (size % id_size || size < id_size) {
162 fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo "
Tom Gundersen21bdd172014-02-03 11:14:13 +1030163 "of the size of "
164 "section __mod_%s__<identifier>_device_table=%lu.\n"
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200165 "Fix definition of struct %s_device_id "
166 "in mod_devicetable.h\n",
167 modname, device_id, id_size, device_id, size, device_id);
168 }
Kees Cooke0049822007-09-16 11:15:46 +0200169 /* Verify last one is a terminator */
170 for (i = 0; i < id_size; i++ ) {
171 if (*(uint8_t*)(symval+size-id_size+i)) {
172 fprintf(stderr,"%s: struct %s_device_id is %lu bytes. "
173 "The last of %lu is:\n",
174 modname, device_id, id_size, size / id_size);
175 for (i = 0; i < id_size; i++ )
176 fprintf(stderr,"0x%02x ",
177 *(uint8_t*)(symval+size-id_size+i) );
178 fprintf(stderr,"\n");
179 fatal("%s: struct %s_device_id is not terminated "
180 "with a NULL entry!\n", modname, device_id);
181 }
182 }
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200183}
184
Roman Kaganb19dcd92005-04-22 15:07:01 -0700185/* USB is special because the bcdDevice can be matched against a numeric range */
Bjørn Mork81df2d52012-05-18 21:27:43 +0200186/* Looks like "usb:vNpNdNdcNdscNdpNicNiscNipNinN" */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100187static void do_usb_entry(void *symval,
Roman Kaganb19dcd92005-04-22 15:07:01 -0700188 unsigned int bcdDevice_initial, int bcdDevice_initial_digits,
189 unsigned char range_lo, unsigned char range_hi,
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500190 unsigned char max, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Roman Kaganb19dcd92005-04-22 15:07:01 -0700192 char alias[500];
Andreas Schwab6543bec2013-01-20 17:58:47 +0100193 DEF_FIELD(symval, usb_device_id, match_flags);
194 DEF_FIELD(symval, usb_device_id, idVendor);
195 DEF_FIELD(symval, usb_device_id, idProduct);
196 DEF_FIELD(symval, usb_device_id, bcdDevice_lo);
197 DEF_FIELD(symval, usb_device_id, bDeviceClass);
198 DEF_FIELD(symval, usb_device_id, bDeviceSubClass);
199 DEF_FIELD(symval, usb_device_id, bDeviceProtocol);
200 DEF_FIELD(symval, usb_device_id, bInterfaceClass);
201 DEF_FIELD(symval, usb_device_id, bInterfaceSubClass);
202 DEF_FIELD(symval, usb_device_id, bInterfaceProtocol);
203 DEF_FIELD(symval, usb_device_id, bInterfaceNumber);
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 strcpy(alias, "usb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100206 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR,
207 idVendor);
208 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT,
209 idProduct);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700210
211 strcat(alias, "d");
212 if (bcdDevice_initial_digits)
213 sprintf(alias + strlen(alias), "%0*X",
214 bcdDevice_initial_digits, bcdDevice_initial);
215 if (range_lo == range_hi)
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500216 sprintf(alias + strlen(alias), "%X", range_lo);
217 else if (range_lo > 0 || range_hi < max) {
218 if (range_lo > 0x9 || range_hi < 0xA)
219 sprintf(alias + strlen(alias),
220 "[%X-%X]",
221 range_lo,
222 range_hi);
223 else {
224 sprintf(alias + strlen(alias),
225 range_lo < 0x9 ? "[%X-9" : "[%X",
226 range_lo);
227 sprintf(alias + strlen(alias),
Jan Moskyto Matejka03b56322014-02-07 19:15:11 +0100228 range_hi > 0xA ? "A-%X]" : "%X]",
229 range_hi);
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500230 }
231 }
Andreas Schwab6543bec2013-01-20 17:58:47 +0100232 if (bcdDevice_initial_digits < (sizeof(bcdDevice_lo) * 2 - 1))
Roman Kaganb19dcd92005-04-22 15:07:01 -0700233 strcat(alias, "*");
234
Andreas Schwab6543bec2013-01-20 17:58:47 +0100235 ADD(alias, "dc", match_flags&USB_DEVICE_ID_MATCH_DEV_CLASS,
236 bDeviceClass);
237 ADD(alias, "dsc", match_flags&USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
238 bDeviceSubClass);
239 ADD(alias, "dp", match_flags&USB_DEVICE_ID_MATCH_DEV_PROTOCOL,
240 bDeviceProtocol);
241 ADD(alias, "ic", match_flags&USB_DEVICE_ID_MATCH_INT_CLASS,
242 bInterfaceClass);
243 ADD(alias, "isc", match_flags&USB_DEVICE_ID_MATCH_INT_SUBCLASS,
244 bInterfaceSubClass);
245 ADD(alias, "ip", match_flags&USB_DEVICE_ID_MATCH_INT_PROTOCOL,
246 bInterfaceProtocol);
247 ADD(alias, "in", match_flags&USB_DEVICE_ID_MATCH_INT_NUMBER,
248 bInterfaceNumber);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700249
Jean Delvareac551822008-05-02 20:37:21 +0200250 add_wildcard(alias);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700251 buf_printf(&mod->dev_table_buf,
252 "MODULE_ALIAS(\"%s\");\n", alias);
253}
254
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500255/* Handles increment/decrement of BCD formatted integers */
256/* Returns the previous value, so it works like i++ or i-- */
257static unsigned int incbcd(unsigned int *bcd,
258 int inc,
259 unsigned char max,
260 size_t chars)
261{
262 unsigned int init = *bcd, i, j;
263 unsigned long long c, dec = 0;
264
265 /* If bcd is not in BCD format, just increment */
266 if (max > 0x9) {
267 *bcd += inc;
268 return init;
269 }
270
271 /* Convert BCD to Decimal */
272 for (i=0 ; i < chars ; i++) {
273 c = (*bcd >> (i << 2)) & 0xf;
274 c = c > 9 ? 9 : c; /* force to bcd just in case */
275 for (j=0 ; j < i ; j++)
276 c = c * 10;
277 dec += c;
278 }
279
280 /* Do our increment/decrement */
281 dec += inc;
282 *bcd = 0;
283
284 /* Convert back to BCD */
285 for (i=0 ; i < chars ; i++) {
286 for (c=1,j=0 ; j < i ; j++)
287 c = c * 10;
288 c = (dec / c) % 10;
289 *bcd += c << (i << 2);
290 }
291 return init;
292}
293
Andreas Schwab6543bec2013-01-20 17:58:47 +0100294static void do_usb_entry_multi(void *symval, struct module *mod)
Roman Kaganb19dcd92005-04-22 15:07:01 -0700295{
296 unsigned int devlo, devhi;
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500297 unsigned char chi, clo, max;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700298 int ndigits;
299
Andreas Schwab6543bec2013-01-20 17:58:47 +0100300 DEF_FIELD(symval, usb_device_id, match_flags);
301 DEF_FIELD(symval, usb_device_id, idVendor);
302 DEF_FIELD(symval, usb_device_id, idProduct);
303 DEF_FIELD(symval, usb_device_id, bcdDevice_lo);
304 DEF_FIELD(symval, usb_device_id, bcdDevice_hi);
305 DEF_FIELD(symval, usb_device_id, bDeviceClass);
306 DEF_FIELD(symval, usb_device_id, bInterfaceClass);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700307
Andreas Schwab6543bec2013-01-20 17:58:47 +0100308 devlo = match_flags & USB_DEVICE_ID_MATCH_DEV_LO ?
309 bcdDevice_lo : 0x0U;
310 devhi = match_flags & USB_DEVICE_ID_MATCH_DEV_HI ?
311 bcdDevice_hi : ~0x0U;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700312
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500313 /* Figure out if this entry is in bcd or hex format */
314 max = 0x9; /* Default to decimal format */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100315 for (ndigits = 0 ; ndigits < sizeof(bcdDevice_lo) * 2 ; ndigits++) {
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500316 clo = (devlo >> (ndigits << 2)) & 0xf;
317 chi = ((devhi > 0x9999 ? 0x9999 : devhi) >> (ndigits << 2)) & 0xf;
318 if (clo > max || chi > max) {
319 max = 0xf;
320 break;
321 }
322 }
323
Roman Kaganb19dcd92005-04-22 15:07:01 -0700324 /*
325 * Some modules (visor) have empty slots as placeholder for
326 * run-time specification that results in catch-all alias
327 */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100328 if (!(idVendor | idProduct | bDeviceClass | bInterfaceClass))
Roman Kaganb19dcd92005-04-22 15:07:01 -0700329 return;
330
331 /* Convert numeric bcdDevice range into fnmatch-able pattern(s) */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100332 for (ndigits = sizeof(bcdDevice_lo) * 2 - 1; devlo <= devhi; ndigits--) {
Roman Kaganb19dcd92005-04-22 15:07:01 -0700333 clo = devlo & 0xf;
334 chi = devhi & 0xf;
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500335 if (chi > max) /* If we are in bcd mode, truncate if necessary */
336 chi = max;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700337 devlo >>= 4;
338 devhi >>= 4;
339
340 if (devlo == devhi || !ndigits) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100341 do_usb_entry(symval, devlo, ndigits, clo, chi, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700342 break;
343 }
344
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500345 if (clo > 0x0)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100346 do_usb_entry(symval,
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500347 incbcd(&devlo, 1, max,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100348 sizeof(bcdDevice_lo) * 2),
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500349 ndigits, clo, max, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700350
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500351 if (chi < max)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100352 do_usb_entry(symval,
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500353 incbcd(&devhi, -1, max,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100354 sizeof(bcdDevice_lo) * 2),
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500355 ndigits, 0x0, chi, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700356 }
357}
358
359static void do_usb_table(void *symval, unsigned long size,
360 struct module *mod)
361{
362 unsigned int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100363 const unsigned long id_size = SIZE_usb_device_id;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700364
Kees Cooke0049822007-09-16 11:15:46 +0200365 device_id_check(mod->name, "usb", size, id_size, symval);
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200366
Roman Kaganb19dcd92005-04-22 15:07:01 -0700367 /* Leave last one: it's the terminator. */
368 size -= id_size;
369
370 for (i = 0; i < size; i += id_size)
371 do_usb_entry_multi(symval + i, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Jiri Slabye8c84f92008-05-19 15:50:01 +0200374/* Looks like: hid:bNvNpN */
375static int do_hid_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100376 void *symval, char *alias)
Jiri Slabye8c84f92008-05-19 15:50:01 +0200377{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100378 DEF_FIELD(symval, hid_device_id, bus);
379 DEF_FIELD(symval, hid_device_id, group);
380 DEF_FIELD(symval, hid_device_id, vendor);
381 DEF_FIELD(symval, hid_device_id, product);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200382
Henrik Rydberg7431fb72012-04-23 12:07:04 +0200383 sprintf(alias, "hid:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100384 ADD(alias, "b", bus != HID_BUS_ANY, bus);
385 ADD(alias, "g", group != HID_GROUP_ANY, group);
386 ADD(alias, "v", vendor != HID_ANY_ID, vendor);
387 ADD(alias, "p", product != HID_ANY_ID, product);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200388
389 return 1;
390}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100391ADD_TO_DEVTABLE("hid", hid_device_id, do_hid_entry);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/* Looks like: ieee1394:venNmoNspNverN */
394static int do_ieee1394_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100395 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100397 DEF_FIELD(symval, ieee1394_device_id, match_flags);
398 DEF_FIELD(symval, ieee1394_device_id, vendor_id);
399 DEF_FIELD(symval, ieee1394_device_id, model_id);
400 DEF_FIELD(symval, ieee1394_device_id, specifier_id);
401 DEF_FIELD(symval, ieee1394_device_id, version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 strcpy(alias, "ieee1394:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100404 ADD(alias, "ven", match_flags & IEEE1394_MATCH_VENDOR_ID,
405 vendor_id);
406 ADD(alias, "mo", match_flags & IEEE1394_MATCH_MODEL_ID,
407 model_id);
408 ADD(alias, "sp", match_flags & IEEE1394_MATCH_SPECIFIER_ID,
409 specifier_id);
410 ADD(alias, "ver", match_flags & IEEE1394_MATCH_VERSION,
411 version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Jean Delvareac551822008-05-02 20:37:21 +0200413 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 1;
415}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100416ADD_TO_DEVTABLE("ieee1394", ieee1394_device_id, do_ieee1394_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/* Looks like: pci:vNdNsvNsdNbcNscNiN. */
419static int do_pci_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100420 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 /* Class field can be divided into these three. */
423 unsigned char baseclass, subclass, interface,
424 baseclass_mask, subclass_mask, interface_mask;
425
Andreas Schwab6543bec2013-01-20 17:58:47 +0100426 DEF_FIELD(symval, pci_device_id, vendor);
427 DEF_FIELD(symval, pci_device_id, device);
428 DEF_FIELD(symval, pci_device_id, subvendor);
429 DEF_FIELD(symval, pci_device_id, subdevice);
430 DEF_FIELD(symval, pci_device_id, class);
431 DEF_FIELD(symval, pci_device_id, class_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 strcpy(alias, "pci:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100434 ADD(alias, "v", vendor != PCI_ANY_ID, vendor);
435 ADD(alias, "d", device != PCI_ANY_ID, device);
436 ADD(alias, "sv", subvendor != PCI_ANY_ID, subvendor);
437 ADD(alias, "sd", subdevice != PCI_ANY_ID, subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Andreas Schwab6543bec2013-01-20 17:58:47 +0100439 baseclass = (class) >> 16;
440 baseclass_mask = (class_mask) >> 16;
441 subclass = (class) >> 8;
442 subclass_mask = (class_mask) >> 8;
443 interface = class;
444 interface_mask = class_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if ((baseclass_mask != 0 && baseclass_mask != 0xFF)
447 || (subclass_mask != 0 && subclass_mask != 0xFF)
448 || (interface_mask != 0 && interface_mask != 0xFF)) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100449 warn("Can't handle masks in %s:%04X\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +0100450 filename, class_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return 0;
452 }
453
454 ADD(alias, "bc", baseclass_mask == 0xFF, baseclass);
455 ADD(alias, "sc", subclass_mask == 0xFF, subclass);
456 ADD(alias, "i", interface_mask == 0xFF, interface);
Jean Delvareac551822008-05-02 20:37:21 +0200457 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return 1;
459}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100460ADD_TO_DEVTABLE("pci", pci_device_id, do_pci_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100462/* looks like: "ccw:tNmNdtNdmN" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static int do_ccw_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100464 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100466 DEF_FIELD(symval, ccw_device_id, match_flags);
467 DEF_FIELD(symval, ccw_device_id, cu_type);
468 DEF_FIELD(symval, ccw_device_id, cu_model);
469 DEF_FIELD(symval, ccw_device_id, dev_type);
470 DEF_FIELD(symval, ccw_device_id, dev_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 strcpy(alias, "ccw:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100473 ADD(alias, "t", match_flags&CCW_DEVICE_ID_MATCH_CU_TYPE,
474 cu_type);
475 ADD(alias, "m", match_flags&CCW_DEVICE_ID_MATCH_CU_MODEL,
476 cu_model);
477 ADD(alias, "dt", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_TYPE,
478 dev_type);
479 ADD(alias, "dm", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_MODEL,
480 dev_model);
Jean Delvareac551822008-05-02 20:37:21 +0200481 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return 1;
483}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100484ADD_TO_DEVTABLE("ccw", ccw_device_id, do_ccw_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200486/* looks like: "ap:tN" */
487static int do_ap_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100488 void *symval, char *alias)
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200489{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100490 DEF_FIELD(symval, ap_device_id, dev_type);
491
492 sprintf(alias, "ap:t%02X*", dev_type);
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200493 return 1;
494}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100495ADD_TO_DEVTABLE("ap", ap_device_id, do_ap_entry);
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200496
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200497/* looks like: "css:tN" */
498static int do_css_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100499 void *symval, char *alias)
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200500{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100501 DEF_FIELD(symval, css_device_id, type);
502
503 sprintf(alias, "css:t%01X", type);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200504 return 1;
505}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100506ADD_TO_DEVTABLE("css", css_device_id, do_css_entry);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/* Looks like: "serio:tyNprNidNexN" */
509static int do_serio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100510 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100512 DEF_FIELD(symval, serio_device_id, type);
513 DEF_FIELD(symval, serio_device_id, proto);
514 DEF_FIELD(symval, serio_device_id, id);
515 DEF_FIELD(symval, serio_device_id, extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 strcpy(alias, "serio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100518 ADD(alias, "ty", type != SERIO_ANY, type);
519 ADD(alias, "pr", proto != SERIO_ANY, proto);
520 ADD(alias, "id", id != SERIO_ANY, id);
521 ADD(alias, "ex", extra != SERIO_ANY, extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Jean Delvareac551822008-05-02 20:37:21 +0200523 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return 1;
525}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100526ADD_TO_DEVTABLE("serio", serio_device_id, do_serio_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Suthikulpanit, Suravee26095a02015-07-07 01:55:20 +0200528/* looks like: "acpi:ACPI0003" or "acpi:PNP0C0B" or "acpi:LNXVIDEO" or
529 * "acpi:bbsspp" (bb=base-class, ss=sub-class, pp=prog-if)
530 *
531 * NOTE: Each driver should use one of the following : _HID, _CIDs
532 * or _CLS. Also, bb, ss, and pp can be substituted with ??
533 * as don't care byte.
534 */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200535static int do_acpi_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100536 void *symval, char *alias)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200537{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100538 DEF_FIELD_ADDR(symval, acpi_device_id, id);
Suthikulpanit, Suravee26095a02015-07-07 01:55:20 +0200539 DEF_FIELD_ADDR(symval, acpi_device_id, cls);
540 DEF_FIELD_ADDR(symval, acpi_device_id, cls_msk);
541
542 if (id && strlen((const char *)*id))
543 sprintf(alias, "acpi*:%s:*", *id);
544 else if (cls) {
545 int i, byte_shift, cnt = 0;
546 unsigned int msk;
547
548 sprintf(&alias[cnt], "acpi*:");
549 cnt = 6;
550 for (i = 1; i <= 3; i++) {
551 byte_shift = 8 * (3-i);
552 msk = (*cls_msk >> byte_shift) & 0xFF;
553 if (msk)
554 sprintf(&alias[cnt], "%02x",
555 (*cls >> byte_shift) & 0xFF);
556 else
557 sprintf(&alias[cnt], "??");
558 cnt += 2;
559 }
560 sprintf(&alias[cnt], ":*");
561 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200562 return 1;
563}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100564ADD_TO_DEVTABLE("acpi", acpi_device_id, do_acpi_entry);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566/* looks like: "pnp:dD" */
Kay Sievers22454cb2008-05-28 23:06:47 +0200567static void do_pnp_device_entry(void *symval, unsigned long size,
568 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100570 const unsigned long id_size = SIZE_pnp_device_id;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200571 const unsigned int count = (size / id_size)-1;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200572 unsigned int i;
Kay Sievers22454cb2008-05-28 23:06:47 +0200573
574 device_id_check(mod->name, "pnp", size, id_size, symval);
575
Kay Sievers5e4c6562008-08-21 15:28:56 +0200576 for (i = 0; i < count; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100577 DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id);
578 char acpi_id[sizeof(*id)];
Kay Sievers72638f52009-01-08 03:06:42 +0100579 int j;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200580
581 buf_printf(&mod->dev_table_buf,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100582 "MODULE_ALIAS(\"pnp:d%s*\");\n", *id);
Kay Sievers72638f52009-01-08 03:06:42 +0100583
584 /* fix broken pnp bus lowercasing */
585 for (j = 0; j < sizeof(acpi_id); j++)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100586 acpi_id[j] = toupper((*id)[j]);
Kay Sievers5e4c6562008-08-21 15:28:56 +0200587 buf_printf(&mod->dev_table_buf,
Kay Sievers72638f52009-01-08 03:06:42 +0100588 "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id);
Kay Sievers5e4c6562008-08-21 15:28:56 +0200589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Kay Sievers0c81eed2008-02-21 00:35:54 +0100592/* looks like: "pnp:dD" for every device of the card */
593static void do_pnp_card_entries(void *symval, unsigned long size,
594 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100596 const unsigned long id_size = SIZE_pnp_card_device_id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100597 const unsigned int count = (size / id_size)-1;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100598 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Kay Sievers0c81eed2008-02-21 00:35:54 +0100600 device_id_check(mod->name, "pnp", size, id_size, symval);
601
602 for (i = 0; i < count; i++) {
603 unsigned int j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100604 DEF_FIELD_ADDR(symval + i*id_size, pnp_card_device_id, devs);
Kay Sievers0c81eed2008-02-21 00:35:54 +0100605
606 for (j = 0; j < PNP_MAX_DEVICES; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100607 const char *id = (char *)(*devs)[j].id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100608 int i2, j2;
609 int dup = 0;
610
611 if (!id[0])
612 break;
613
614 /* find duplicate, already added value */
615 for (i2 = 0; i2 < i && !dup; i2++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100616 DEF_FIELD_ADDR(symval + i2*id_size, pnp_card_device_id, devs);
Kay Sievers0c81eed2008-02-21 00:35:54 +0100617
618 for (j2 = 0; j2 < PNP_MAX_DEVICES; j2++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100619 const char *id2 = (char *)(*devs)[j2].id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100620
621 if (!id2[0])
622 break;
623
624 if (!strcmp(id, id2)) {
625 dup = 1;
626 break;
627 }
628 }
629 }
630
631 /* add an individual alias for every device entry */
Kay Sievers22454cb2008-05-28 23:06:47 +0200632 if (!dup) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100633 char acpi_id[PNP_ID_LEN];
Kay Sievers72638f52009-01-08 03:06:42 +0100634 int k;
635
Kay Sievers0c81eed2008-02-21 00:35:54 +0100636 buf_printf(&mod->dev_table_buf,
637 "MODULE_ALIAS(\"pnp:d%s*\");\n", id);
Kay Sievers72638f52009-01-08 03:06:42 +0100638
639 /* fix broken pnp bus lowercasing */
640 for (k = 0; k < sizeof(acpi_id); k++)
641 acpi_id[k] = toupper(id[k]);
Kay Sievers22454cb2008-05-28 23:06:47 +0200642 buf_printf(&mod->dev_table_buf,
Kay Sievers72638f52009-01-08 03:06:42 +0100643 "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id);
Kay Sievers22454cb2008-05-28 23:06:47 +0200644 }
Kay Sievers0c81eed2008-02-21 00:35:54 +0100645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700649/* Looks like: pcmcia:mNcNfNfnNpfnNvaNvbNvcNvdN. */
650static int do_pcmcia_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100651 void *symval, char *alias)
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700652{
653 unsigned int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100654 DEF_FIELD(symval, pcmcia_device_id, match_flags);
655 DEF_FIELD(symval, pcmcia_device_id, manf_id);
656 DEF_FIELD(symval, pcmcia_device_id, card_id);
657 DEF_FIELD(symval, pcmcia_device_id, func_id);
658 DEF_FIELD(symval, pcmcia_device_id, function);
659 DEF_FIELD(symval, pcmcia_device_id, device_no);
660 DEF_FIELD_ADDR(symval, pcmcia_device_id, prod_id_hash);
Kars de Jong4fb7edc2005-09-25 14:39:46 +0200661
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700662 for (i=0; i<4; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100663 (*prod_id_hash)[i] = TO_NATIVE((*prod_id_hash)[i]);
664 }
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700665
Andreas Schwab6543bec2013-01-20 17:58:47 +0100666 strcpy(alias, "pcmcia:");
667 ADD(alias, "m", match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID,
668 manf_id);
669 ADD(alias, "c", match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID,
670 card_id);
671 ADD(alias, "f", match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID,
672 func_id);
673 ADD(alias, "fn", match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION,
674 function);
675 ADD(alias, "pfn", match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO,
676 device_no);
677 ADD(alias, "pa", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1, (*prod_id_hash)[0]);
678 ADD(alias, "pb", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2, (*prod_id_hash)[1]);
679 ADD(alias, "pc", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3, (*prod_id_hash)[2]);
680 ADD(alias, "pd", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4, (*prod_id_hash)[3]);
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700681
Jean Delvareac551822008-05-02 20:37:21 +0200682 add_wildcard(alias);
Andreas Schwab6543bec2013-01-20 17:58:47 +0100683 return 1;
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700684}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100685ADD_TO_DEVTABLE("pcmcia", pcmcia_device_id, do_pcmcia_entry);
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700686
Andreas Schwab6543bec2013-01-20 17:58:47 +0100687static int do_of_entry (const char *filename, void *symval, char *alias)
Jeff Mahoney5e655772005-07-06 15:44:41 -0400688{
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900689 int len;
690 char *tmp;
691 DEF_FIELD_ADDR(symval, of_device_id, name);
692 DEF_FIELD_ADDR(symval, of_device_id, type);
693 DEF_FIELD_ADDR(symval, of_device_id, compatible);
Sylvain Munautd1ab4232007-05-08 19:59:29 +1000694
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900695 len = sprintf(alias, "of:N%sT%s", (*name)[0] ? *name : "*",
696 (*type)[0] ? *type : "*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100697
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900698 if (compatible[0])
699 sprintf(&alias[len], "%sC%s", (*type)[0] ? "*" : "",
700 *compatible);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400701
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900702 /* Replace all whitespace with underscores */
703 for (tmp = alias; tmp && *tmp; tmp++)
704 if (isspace (*tmp))
705 *tmp = '_';
Jeff Mahoney5e655772005-07-06 15:44:41 -0400706
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900707 add_wildcard(alias);
708 return 1;
Jeff Mahoney5e655772005-07-06 15:44:41 -0400709}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100710ADD_TO_DEVTABLE("of", of_device_id, do_of_entry);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400711
Andreas Schwab6543bec2013-01-20 17:58:47 +0100712static int do_vio_entry(const char *filename, void *symval,
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000713 char *alias)
714{
715 char *tmp;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100716 DEF_FIELD_ADDR(symval, vio_device_id, type);
717 DEF_FIELD_ADDR(symval, vio_device_id, compat);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000718
Andreas Schwab6543bec2013-01-20 17:58:47 +0100719 sprintf(alias, "vio:T%sS%s", (*type)[0] ? *type : "*",
720 (*compat)[0] ? *compat : "*");
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000721
722 /* Replace all whitespace with underscores */
723 for (tmp = alias; tmp && *tmp; tmp++)
724 if (isspace (*tmp))
725 *tmp = '_';
726
Jean Delvareac551822008-05-02 20:37:21 +0200727 add_wildcard(alias);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000728 return 1;
729}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100730ADD_TO_DEVTABLE("vio", vio_device_id, do_vio_entry);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000731
Rusty Russell1d8f4302005-12-07 21:40:34 +0100732#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
733
734static void do_input(char *alias,
735 kernel_ulong_t *arr, unsigned int min, unsigned int max)
736{
737 unsigned int i;
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400738
Andreas Schwab6543bec2013-01-20 17:58:47 +0100739 for (i = min / BITS_PER_LONG; i < max / BITS_PER_LONG + 1; i++)
740 arr[i] = TO_NATIVE(arr[i]);
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400741 for (i = min; i < max; i++)
Hans de Goedee0e92632006-08-15 12:09:27 +0200742 if (arr[i / BITS_PER_LONG] & (1L << (i%BITS_PER_LONG)))
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400743 sprintf(alias + strlen(alias), "%X,*", i);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100744}
745
746/* input:b0v0p0e0-eXkXrXaXmXlXsXfXwX where X is comma-separated %02X. */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100747static int do_input_entry(const char *filename, void *symval,
Rusty Russell1d8f4302005-12-07 21:40:34 +0100748 char *alias)
749{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100750 DEF_FIELD(symval, input_device_id, flags);
751 DEF_FIELD(symval, input_device_id, bustype);
752 DEF_FIELD(symval, input_device_id, vendor);
753 DEF_FIELD(symval, input_device_id, product);
754 DEF_FIELD(symval, input_device_id, version);
755 DEF_FIELD_ADDR(symval, input_device_id, evbit);
756 DEF_FIELD_ADDR(symval, input_device_id, keybit);
757 DEF_FIELD_ADDR(symval, input_device_id, relbit);
758 DEF_FIELD_ADDR(symval, input_device_id, absbit);
759 DEF_FIELD_ADDR(symval, input_device_id, mscbit);
760 DEF_FIELD_ADDR(symval, input_device_id, ledbit);
761 DEF_FIELD_ADDR(symval, input_device_id, sndbit);
762 DEF_FIELD_ADDR(symval, input_device_id, ffbit);
763 DEF_FIELD_ADDR(symval, input_device_id, swbit);
764
Rusty Russell1d8f4302005-12-07 21:40:34 +0100765 sprintf(alias, "input:");
766
Andreas Schwab6543bec2013-01-20 17:58:47 +0100767 ADD(alias, "b", flags & INPUT_DEVICE_ID_MATCH_BUS, bustype);
768 ADD(alias, "v", flags & INPUT_DEVICE_ID_MATCH_VENDOR, vendor);
769 ADD(alias, "p", flags & INPUT_DEVICE_ID_MATCH_PRODUCT, product);
770 ADD(alias, "e", flags & INPUT_DEVICE_ID_MATCH_VERSION, version);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100771
772 sprintf(alias + strlen(alias), "-e*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100773 if (flags & INPUT_DEVICE_ID_MATCH_EVBIT)
774 do_input(alias, *evbit, 0, INPUT_DEVICE_ID_EV_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100775 sprintf(alias + strlen(alias), "k*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100776 if (flags & INPUT_DEVICE_ID_MATCH_KEYBIT)
777 do_input(alias, *keybit,
Sam Ravnborgdc24f0e2007-03-09 19:59:06 +0100778 INPUT_DEVICE_ID_KEY_MIN_INTERESTING,
779 INPUT_DEVICE_ID_KEY_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100780 sprintf(alias + strlen(alias), "r*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100781 if (flags & INPUT_DEVICE_ID_MATCH_RELBIT)
782 do_input(alias, *relbit, 0, INPUT_DEVICE_ID_REL_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100783 sprintf(alias + strlen(alias), "a*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100784 if (flags & INPUT_DEVICE_ID_MATCH_ABSBIT)
785 do_input(alias, *absbit, 0, INPUT_DEVICE_ID_ABS_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100786 sprintf(alias + strlen(alias), "m*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100787 if (flags & INPUT_DEVICE_ID_MATCH_MSCIT)
788 do_input(alias, *mscbit, 0, INPUT_DEVICE_ID_MSC_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100789 sprintf(alias + strlen(alias), "l*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100790 if (flags & INPUT_DEVICE_ID_MATCH_LEDBIT)
791 do_input(alias, *ledbit, 0, INPUT_DEVICE_ID_LED_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100792 sprintf(alias + strlen(alias), "s*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100793 if (flags & INPUT_DEVICE_ID_MATCH_SNDBIT)
794 do_input(alias, *sndbit, 0, INPUT_DEVICE_ID_SND_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100795 sprintf(alias + strlen(alias), "f*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100796 if (flags & INPUT_DEVICE_ID_MATCH_FFBIT)
797 do_input(alias, *ffbit, 0, INPUT_DEVICE_ID_FF_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100798 sprintf(alias + strlen(alias), "w*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100799 if (flags & INPUT_DEVICE_ID_MATCH_SWBIT)
800 do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100801 return 1;
802}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100803ADD_TO_DEVTABLE("input", input_device_id, do_input_entry);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100804
Andreas Schwab6543bec2013-01-20 17:58:47 +0100805static int do_eisa_entry(const char *filename, void *symval,
Michael Tokarev07563c72006-09-27 01:50:56 -0700806 char *alias)
807{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100808 DEF_FIELD_ADDR(symval, eisa_device_id, sig);
809 if (sig[0])
810 sprintf(alias, EISA_DEVICE_MODALIAS_FMT "*", *sig);
Jean Delvareac551822008-05-02 20:37:21 +0200811 else
812 strcat(alias, "*");
Michael Tokarev07563c72006-09-27 01:50:56 -0700813 return 1;
814}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100815ADD_TO_DEVTABLE("eisa", eisa_device_id, do_eisa_entry);
Michael Tokarev07563c72006-09-27 01:50:56 -0700816
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500817/* Looks like: parisc:tNhvNrevNsvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100818static int do_parisc_entry(const char *filename, void *symval,
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500819 char *alias)
820{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100821 DEF_FIELD(symval, parisc_device_id, hw_type);
822 DEF_FIELD(symval, parisc_device_id, hversion);
823 DEF_FIELD(symval, parisc_device_id, hversion_rev);
824 DEF_FIELD(symval, parisc_device_id, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500825
826 strcpy(alias, "parisc:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100827 ADD(alias, "t", hw_type != PA_HWTYPE_ANY_ID, hw_type);
828 ADD(alias, "hv", hversion != PA_HVERSION_ANY_ID, hversion);
829 ADD(alias, "rev", hversion_rev != PA_HVERSION_REV_ANY_ID, hversion_rev);
830 ADD(alias, "sv", sversion != PA_SVERSION_ANY_ID, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500831
Jean Delvareac551822008-05-02 20:37:21 +0200832 add_wildcard(alias);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500833 return 1;
834}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100835ADD_TO_DEVTABLE("parisc", parisc_device_id, do_parisc_entry);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500836
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200837/* Looks like: sdio:cNvNdN. */
838static int do_sdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100839 void *symval, char *alias)
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200840{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100841 DEF_FIELD(symval, sdio_device_id, class);
842 DEF_FIELD(symval, sdio_device_id, vendor);
843 DEF_FIELD(symval, sdio_device_id, device);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200844
845 strcpy(alias, "sdio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100846 ADD(alias, "c", class != (__u8)SDIO_ANY_ID, class);
847 ADD(alias, "v", vendor != (__u16)SDIO_ANY_ID, vendor);
848 ADD(alias, "d", device != (__u16)SDIO_ANY_ID, device);
Jean Delvareac551822008-05-02 20:37:21 +0200849 add_wildcard(alias);
Linus Torvalds038a5002007-10-11 19:40:14 -0700850 return 1;
851}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100852ADD_TO_DEVTABLE("sdio", sdio_device_id, do_sdio_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200853
Michael Buesch61e115a2007-09-18 15:12:50 -0400854/* Looks like: ssb:vNidNrevN. */
855static int do_ssb_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100856 void *symval, char *alias)
Michael Buesch61e115a2007-09-18 15:12:50 -0400857{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100858 DEF_FIELD(symval, ssb_device_id, vendor);
859 DEF_FIELD(symval, ssb_device_id, coreid);
860 DEF_FIELD(symval, ssb_device_id, revision);
Michael Buesch61e115a2007-09-18 15:12:50 -0400861
862 strcpy(alias, "ssb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100863 ADD(alias, "v", vendor != SSB_ANY_VENDOR, vendor);
864 ADD(alias, "id", coreid != SSB_ANY_ID, coreid);
865 ADD(alias, "rev", revision != SSB_ANY_REV, revision);
Jean Delvareac551822008-05-02 20:37:21 +0200866 add_wildcard(alias);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200867 return 1;
868}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100869ADD_TO_DEVTABLE("ssb", ssb_device_id, do_ssb_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200870
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200871/* Looks like: bcma:mNidNrevNclN. */
872static int do_bcma_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100873 void *symval, char *alias)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200874{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100875 DEF_FIELD(symval, bcma_device_id, manuf);
876 DEF_FIELD(symval, bcma_device_id, id);
877 DEF_FIELD(symval, bcma_device_id, rev);
878 DEF_FIELD(symval, bcma_device_id, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200879
880 strcpy(alias, "bcma:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100881 ADD(alias, "m", manuf != BCMA_ANY_MANUF, manuf);
882 ADD(alias, "id", id != BCMA_ANY_ID, id);
883 ADD(alias, "rev", rev != BCMA_ANY_REV, rev);
884 ADD(alias, "cl", class != BCMA_ANY_CLASS, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200885 add_wildcard(alias);
886 return 1;
887}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100888ADD_TO_DEVTABLE("bcma", bcma_device_id, do_bcma_entry);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200889
Rusty Russellb01d9f22007-10-22 11:03:39 +1000890/* Looks like: virtio:dNvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100891static int do_virtio_entry(const char *filename, void *symval,
Rusty Russellb01d9f22007-10-22 11:03:39 +1000892 char *alias)
893{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100894 DEF_FIELD(symval, virtio_device_id, device);
895 DEF_FIELD(symval, virtio_device_id, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000896
897 strcpy(alias, "virtio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100898 ADD(alias, "d", device != VIRTIO_DEV_ANY_ID, device);
899 ADD(alias, "v", vendor != VIRTIO_DEV_ANY_ID, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000900
Jean Delvareac551822008-05-02 20:37:21 +0200901 add_wildcard(alias);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000902 return 1;
903}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100904ADD_TO_DEVTABLE("virtio", virtio_device_id, do_virtio_entry);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000905
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700906/*
907 * Looks like: vmbus:guid
908 * Each byte of the guid will be represented by two hex characters
909 * in the name.
910 */
911
Andreas Schwab6543bec2013-01-20 17:58:47 +0100912static int do_vmbus_entry(const char *filename, void *symval,
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700913 char *alias)
914{
915 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100916 DEF_FIELD_ADDR(symval, hv_vmbus_device_id, guid);
917 char guid_name[(sizeof(*guid) + 1) * 2];
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700918
Andreas Schwab6543bec2013-01-20 17:58:47 +0100919 for (i = 0; i < (sizeof(*guid) * 2); i += 2)
920 sprintf(&guid_name[i], "%02x", TO_NATIVE((*guid)[i/2]));
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700921
922 strcpy(alias, "vmbus:");
923 strcat(alias, guid_name);
924
925 return 1;
926}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100927ADD_TO_DEVTABLE("vmbus", hv_vmbus_device_id, do_vmbus_entry);
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700928
Jean Delvared2653e92008-04-29 23:11:39 +0200929/* Looks like: i2c:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100930static int do_i2c_entry(const char *filename, void *symval,
Jean Delvared2653e92008-04-29 23:11:39 +0200931 char *alias)
932{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100933 DEF_FIELD_ADDR(symval, i2c_device_id, name);
934 sprintf(alias, I2C_MODULE_PREFIX "%s", *name);
Jean Delvared2653e92008-04-29 23:11:39 +0200935
936 return 1;
937}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100938ADD_TO_DEVTABLE("i2c", i2c_device_id, do_i2c_entry);
Jean Delvared2653e92008-04-29 23:11:39 +0200939
Anton Vorontsove0626e32009-09-22 16:46:08 -0700940/* Looks like: spi:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100941static int do_spi_entry(const char *filename, void *symval,
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700942 char *alias)
943{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100944 DEF_FIELD_ADDR(symval, spi_device_id, name);
945 sprintf(alias, SPI_MODULE_PREFIX "%s", *name);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700946
947 return 1;
948}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100949ADD_TO_DEVTABLE("spi", spi_device_id, do_spi_entry);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700950
David Woodhoused945b692008-09-16 16:23:28 -0700951static const struct dmifield {
952 const char *prefix;
953 int field;
954} dmi_fields[] = {
955 { "bvn", DMI_BIOS_VENDOR },
956 { "bvr", DMI_BIOS_VERSION },
957 { "bd", DMI_BIOS_DATE },
958 { "svn", DMI_SYS_VENDOR },
959 { "pn", DMI_PRODUCT_NAME },
960 { "pvr", DMI_PRODUCT_VERSION },
961 { "rvn", DMI_BOARD_VENDOR },
962 { "rn", DMI_BOARD_NAME },
963 { "rvr", DMI_BOARD_VERSION },
964 { "cvn", DMI_CHASSIS_VENDOR },
965 { "ct", DMI_CHASSIS_TYPE },
966 { "cvr", DMI_CHASSIS_VERSION },
967 { NULL, DMI_NONE }
968};
969
970static void dmi_ascii_filter(char *d, const char *s)
971{
972 /* Filter out characters we don't want to see in the modalias string */
973 for (; *s; s++)
974 if (*s > ' ' && *s < 127 && *s != ':')
975 *(d++) = *s;
976
977 *d = 0;
978}
979
980
Andreas Schwab6543bec2013-01-20 17:58:47 +0100981static int do_dmi_entry(const char *filename, void *symval,
David Woodhoused945b692008-09-16 16:23:28 -0700982 char *alias)
983{
984 int i, j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100985 DEF_FIELD_ADDR(symval, dmi_system_id, matches);
David Woodhoused945b692008-09-16 16:23:28 -0700986 sprintf(alias, "dmi*");
987
988 for (i = 0; i < ARRAY_SIZE(dmi_fields); i++) {
989 for (j = 0; j < 4; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100990 if ((*matches)[j].slot &&
991 (*matches)[j].slot == dmi_fields[i].field) {
David Woodhoused945b692008-09-16 16:23:28 -0700992 sprintf(alias + strlen(alias), ":%s*",
993 dmi_fields[i].prefix);
994 dmi_ascii_filter(alias + strlen(alias),
Andreas Schwab6543bec2013-01-20 17:58:47 +0100995 (*matches)[j].substr);
David Woodhoused945b692008-09-16 16:23:28 -0700996 strcat(alias, "*");
997 }
998 }
999 }
1000
1001 strcat(alias, ":");
1002 return 1;
1003}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001004ADD_TO_DEVTABLE("dmi", dmi_system_id, do_dmi_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +08001005
1006static int do_platform_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001007 void *symval, char *alias)
Eric Miao57fee4a2009-02-04 11:52:40 +08001008{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001009 DEF_FIELD_ADDR(symval, platform_device_id, name);
1010 sprintf(alias, PLATFORM_MODULE_PREFIX "%s", *name);
Eric Miao57fee4a2009-02-04 11:52:40 +08001011 return 1;
1012}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001013ADD_TO_DEVTABLE("platform", platform_device_id, do_platform_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +08001014
David Woodhouse8626d3b2010-04-02 01:05:27 +00001015static int do_mdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001016 void *symval, char *alias)
David Woodhouse8626d3b2010-04-02 01:05:27 +00001017{
1018 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +01001019 DEF_FIELD(symval, mdio_device_id, phy_id);
1020 DEF_FIELD(symval, mdio_device_id, phy_id_mask);
David Woodhouse8626d3b2010-04-02 01:05:27 +00001021
1022 alias += sprintf(alias, MDIO_MODULE_PREFIX);
1023
1024 for (i = 0; i < 32; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +01001025 if (!((phy_id_mask >> (31-i)) & 1))
David Woodhouse8626d3b2010-04-02 01:05:27 +00001026 *(alias++) = '?';
Andreas Schwab6543bec2013-01-20 17:58:47 +01001027 else if ((phy_id >> (31-i)) & 1)
David Woodhouse8626d3b2010-04-02 01:05:27 +00001028 *(alias++) = '1';
1029 else
1030 *(alias++) = '0';
1031 }
1032
1033 /* Terminate the string */
1034 *alias = 0;
1035
1036 return 1;
1037}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001038ADD_TO_DEVTABLE("mdio", mdio_device_id, do_mdio_entry);
David Woodhouse8626d3b2010-04-02 01:05:27 +00001039
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001040/* Looks like: zorro:iN. */
Andreas Schwab6543bec2013-01-20 17:58:47 +01001041static int do_zorro_entry(const char *filename, void *symval,
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001042 char *alias)
1043{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001044 DEF_FIELD(symval, zorro_device_id, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001045 strcpy(alias, "zorro:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001046 ADD(alias, "i", id != ZORRO_WILDCARD, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001047 return 1;
1048}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001049ADD_TO_DEVTABLE("zorro", zorro_device_id, do_zorro_entry);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001050
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001051/* looks like: "pnp:dD" */
1052static int do_isapnp_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001053 void *symval, char *alias)
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001054{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001055 DEF_FIELD(symval, isapnp_device_id, vendor);
1056 DEF_FIELD(symval, isapnp_device_id, function);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001057 sprintf(alias, "pnp:d%c%c%c%x%x%x%x*",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001058 'A' + ((vendor >> 2) & 0x3f) - 1,
1059 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1,
1060 'A' + ((vendor >> 8) & 0x1f) - 1,
1061 (function >> 4) & 0x0f, function & 0x0f,
1062 (function >> 12) & 0x0f, (function >> 8) & 0x0f);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001063 return 1;
1064}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001065ADD_TO_DEVTABLE("isapnp", isapnp_device_id, do_isapnp_entry);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001066
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001067/* Looks like: "ipack:fNvNdN". */
1068static int do_ipack_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001069 void *symval, char *alias)
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001070{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001071 DEF_FIELD(symval, ipack_device_id, format);
1072 DEF_FIELD(symval, ipack_device_id, vendor);
1073 DEF_FIELD(symval, ipack_device_id, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001074 strcpy(alias, "ipack:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001075 ADD(alias, "f", format != IPACK_ANY_FORMAT, format);
1076 ADD(alias, "v", vendor != IPACK_ANY_ID, vendor);
1077 ADD(alias, "d", device != IPACK_ANY_ID, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001078 add_wildcard(alias);
1079 return 1;
1080}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001081ADD_TO_DEVTABLE("ipack", ipack_device_id, do_ipack_entry);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001082
Dave Martin523817b2011-10-05 14:44:57 +01001083/*
1084 * Append a match expression for a single masked hex digit.
1085 * outp points to a pointer to the character at which to append.
1086 * *outp is updated on return to point just after the appended text,
1087 * to facilitate further appending.
1088 */
1089static void append_nibble_mask(char **outp,
1090 unsigned int nibble, unsigned int mask)
1091{
1092 char *p = *outp;
1093 unsigned int i;
1094
1095 switch (mask) {
1096 case 0:
1097 *p++ = '?';
1098 break;
1099
1100 case 0xf:
1101 p += sprintf(p, "%X", nibble);
1102 break;
1103
1104 default:
1105 /*
1106 * Dumbly emit a match pattern for all possible matching
1107 * digits. This could be improved in some cases using ranges,
1108 * but it has the advantage of being trivially correct, and is
1109 * often optimal.
1110 */
1111 *p++ = '[';
1112 for (i = 0; i < 0x10; i++)
1113 if ((i & mask) == nibble)
1114 p += sprintf(p, "%X", i);
1115 *p++ = ']';
1116 }
1117
1118 /* Ensure that the string remains NUL-terminated: */
1119 *p = '\0';
1120
1121 /* Advance the caller's end-of-string pointer: */
1122 *outp = p;
1123}
1124
1125/*
1126 * looks like: "amba:dN"
1127 *
1128 * N is exactly 8 digits, where each is an upper-case hex digit, or
1129 * a ? or [] pattern matching exactly one digit.
1130 */
1131static int do_amba_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001132 void *symval, char *alias)
Dave Martin523817b2011-10-05 14:44:57 +01001133{
1134 unsigned int digit;
1135 char *p = alias;
Andreas Schwab6543bec2013-01-20 17:58:47 +01001136 DEF_FIELD(symval, amba_id, id);
1137 DEF_FIELD(symval, amba_id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001138
Andreas Schwab6543bec2013-01-20 17:58:47 +01001139 if ((id & mask) != id)
Dave Martin523817b2011-10-05 14:44:57 +01001140 fatal("%s: Masked-off bit(s) of AMBA device ID are non-zero: "
1141 "id=0x%08X, mask=0x%08X. Please fix this driver.\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001142 filename, id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001143
1144 p += sprintf(alias, "amba:d");
1145 for (digit = 0; digit < 8; digit++)
1146 append_nibble_mask(&p,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001147 (id >> (4 * (7 - digit))) & 0xf,
1148 (mask >> (4 * (7 - digit))) & 0xf);
Dave Martin523817b2011-10-05 14:44:57 +01001149
1150 return 1;
1151}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001152ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry);
Dave Martin523817b2011-10-05 14:44:57 +01001153
James Hogan8286ae02015-03-25 15:39:50 +00001154/*
1155 * looks like: "mipscdmm:tN"
1156 *
1157 * N is exactly 2 digits, where each is an upper-case hex digit, or
1158 * a ? or [] pattern matching exactly one digit.
1159 */
1160static int do_mips_cdmm_entry(const char *filename,
1161 void *symval, char *alias)
1162{
1163 DEF_FIELD(symval, mips_cdmm_device_id, type);
1164
1165 sprintf(alias, "mipscdmm:t%02X*", type);
1166 return 1;
1167}
1168ADD_TO_DEVTABLE("mipscdmm", mips_cdmm_device_id, do_mips_cdmm_entry);
1169
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +01001170/* LOOKS like cpu:type:x86,venVVVVfamFFFFmodMMMM:feature:*,FEAT,*
Andi Kleen644e9cb2012-01-26 00:09:05 +01001171 * All fields are numbers. It would be nicer to use strings for vendor
1172 * and feature, but getting those out of the build system here is too
1173 * complicated.
1174 */
1175
Andreas Schwab6543bec2013-01-20 17:58:47 +01001176static int do_x86cpu_entry(const char *filename, void *symval,
Andi Kleen644e9cb2012-01-26 00:09:05 +01001177 char *alias)
1178{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001179 DEF_FIELD(symval, x86_cpu_id, feature);
1180 DEF_FIELD(symval, x86_cpu_id, family);
1181 DEF_FIELD(symval, x86_cpu_id, model);
1182 DEF_FIELD(symval, x86_cpu_id, vendor);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001183
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +01001184 strcpy(alias, "cpu:type:x86,");
1185 ADD(alias, "ven", vendor != X86_VENDOR_ANY, vendor);
1186 ADD(alias, "fam", family != X86_FAMILY_ANY, family);
1187 ADD(alias, "mod", model != X86_MODEL_ANY, model);
Ben Hutchings5467bdd2012-02-11 22:57:19 +00001188 strcat(alias, ":feature:*");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001189 if (feature != X86_FEATURE_ANY)
1190 sprintf(alias + strlen(alias), "%04X*", feature);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001191 return 1;
1192}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001193ADD_TO_DEVTABLE("x86cpu", x86_cpu_id, do_x86cpu_entry);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001194
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +01001195/* LOOKS like cpu:type:*:feature:*FEAT* */
1196static int do_cpu_entry(const char *filename, void *symval, char *alias)
1197{
1198 DEF_FIELD(symval, cpu_feature, feature);
1199
1200 sprintf(alias, "cpu:type:*:feature:*%04X*", feature);
1201 return 1;
1202}
1203ADD_TO_DEVTABLE("cpu", cpu_feature, do_cpu_entry);
1204
Tomas Winklerb26864c2015-09-10 10:18:01 +03001205/* Looks like: mei:S:uuid:N:* */
Samuel Ortize5354102013-03-27 17:29:53 +02001206static int do_mei_entry(const char *filename, void *symval,
1207 char *alias)
1208{
1209 DEF_FIELD_ADDR(symval, mei_cl_device_id, name);
Tomas Winklerc93b76b2015-05-07 15:54:02 +03001210 DEF_FIELD_ADDR(symval, mei_cl_device_id, uuid);
Tomas Winklerb26864c2015-09-10 10:18:01 +03001211 DEF_FIELD(symval, mei_cl_device_id, version);
Samuel Ortize5354102013-03-27 17:29:53 +02001212
Tomas Winklerc93b76b2015-05-07 15:54:02 +03001213 sprintf(alias, MEI_CL_MODULE_PREFIX);
1214 sprintf(alias + strlen(alias), "%s:", (*name)[0] ? *name : "*");
1215 add_uuid(alias, *uuid);
Tomas Winklerb26864c2015-09-10 10:18:01 +03001216 ADD(alias, ":", version != MEI_CL_VERSION_ANY, version);
Tomas Winklerc93b76b2015-05-07 15:54:02 +03001217
1218 strcat(alias, ":*");
Samuel Ortize5354102013-03-27 17:29:53 +02001219
1220 return 1;
1221}
1222ADD_TO_DEVTABLE("mei", mei_cl_device_id, do_mei_entry);
1223
Alexandre Bounine3bdbb622013-07-03 15:08:58 -07001224/* Looks like: rapidio:vNdNavNadN */
1225static int do_rio_entry(const char *filename,
1226 void *symval, char *alias)
1227{
1228 DEF_FIELD(symval, rio_device_id, did);
1229 DEF_FIELD(symval, rio_device_id, vid);
1230 DEF_FIELD(symval, rio_device_id, asm_did);
1231 DEF_FIELD(symval, rio_device_id, asm_vid);
1232
1233 strcpy(alias, "rapidio:");
1234 ADD(alias, "v", vid != RIO_ANY_ID, vid);
1235 ADD(alias, "d", did != RIO_ANY_ID, did);
1236 ADD(alias, "av", asm_vid != RIO_ANY_ID, asm_vid);
1237 ADD(alias, "ad", asm_did != RIO_ANY_ID, asm_did);
1238
1239 add_wildcard(alias);
1240 return 1;
1241}
1242ADD_TO_DEVTABLE("rapidio", rio_device_id, do_rio_entry);
1243
Heikki Krogerus289fcff2015-05-13 15:26:42 +03001244/* Looks like: ulpi:vNpN */
1245static int do_ulpi_entry(const char *filename, void *symval,
1246 char *alias)
1247{
1248 DEF_FIELD(symval, ulpi_device_id, vendor);
1249 DEF_FIELD(symval, ulpi_device_id, product);
1250
1251 sprintf(alias, "ulpi:v%04xp%04x", vendor, product);
1252
1253 return 1;
1254}
1255ADD_TO_DEVTABLE("ulpi", ulpi_device_id, do_ulpi_entry);
1256
Subhransu S. Prustyda23ac12015-09-29 13:56:10 +05301257/* Looks like: hdaudio:vNrNaN */
1258static int do_hda_entry(const char *filename, void *symval, char *alias)
1259{
1260 DEF_FIELD(symval, hda_device_id, vendor_id);
1261 DEF_FIELD(symval, hda_device_id, rev_id);
1262 DEF_FIELD(symval, hda_device_id, api_version);
1263
1264 strcpy(alias, "hdaudio:");
1265 ADD(alias, "v", vendor_id != 0, vendor_id);
1266 ADD(alias, "r", rev_id != 0, rev_id);
1267 ADD(alias, "a", api_version != 0, api_version);
1268
1269 add_wildcard(alias);
1270 return 1;
1271}
1272ADD_TO_DEVTABLE("hdaudio", hda_device_id, do_hda_entry);
1273
Rusty Russell626596e2012-01-13 09:32:15 +10301274/* Does namelen bytes of name exactly match the symbol? */
1275static bool sym_is(const char *name, unsigned namelen, const char *symbol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Rusty Russell626596e2012-01-13 09:32:15 +10301277 if (namelen != strlen(symbol))
1278 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Rusty Russell626596e2012-01-13 09:32:15 +10301280 return memcmp(name, symbol, namelen) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283static void do_table(void *symval, unsigned long size,
1284 unsigned long id_size,
Sam Ravnborgfb33d812006-07-09 16:26:07 +02001285 const char *device_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 void *function,
1287 struct module *mod)
1288{
1289 unsigned int i;
1290 char alias[500];
1291 int (*do_entry)(const char *, void *entry, char *alias) = function;
1292
Kees Cooke0049822007-09-16 11:15:46 +02001293 device_id_check(mod->name, device_id, size, id_size, symval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /* Leave last one: it's the terminator. */
1295 size -= id_size;
1296
1297 for (i = 0; i < size; i += id_size) {
1298 if (do_entry(mod->name, symval+i, alias)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 buf_printf(&mod->dev_table_buf,
1300 "MODULE_ALIAS(\"%s\");\n", alias);
1301 }
1302 }
1303}
1304
1305/* Create MODULE_ALIAS() statements.
1306 * At this time, we cannot write the actual output C source yet,
1307 * so we write into the mod->dev_table_buf buffer. */
1308void handle_moddevtable(struct module *mod, struct elf_info *info,
1309 Elf_Sym *sym, const char *symname)
1310{
1311 void *symval;
Kees Cooke0049822007-09-16 11:15:46 +02001312 char *zeros = NULL;
Tom Gundersen21bdd172014-02-03 11:14:13 +10301313 const char *name, *identifier;
Rusty Russell626596e2012-01-13 09:32:15 +10301314 unsigned int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /* We're looking for a section relative symbol */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001317 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return;
1319
David Millere88aa7b2012-04-12 14:37:30 -04001320 /* We're looking for an object */
1321 if (ELF_ST_TYPE(sym->st_info) != STT_OBJECT)
1322 return;
1323
Tom Gundersen21bdd172014-02-03 11:14:13 +10301324 /* All our symbols are of form <prefix>__mod_<name>__<identifier>_device_table. */
Rusty Russell626596e2012-01-13 09:32:15 +10301325 name = strstr(symname, "__mod_");
1326 if (!name)
1327 return;
1328 name += strlen("__mod_");
1329 namelen = strlen(name);
1330 if (namelen < strlen("_device_table"))
1331 return;
1332 if (strcmp(name + namelen - strlen("_device_table"), "_device_table"))
1333 return;
Tom Gundersen21bdd172014-02-03 11:14:13 +10301334 identifier = strstr(name, "__");
1335 if (!identifier)
1336 return;
1337 namelen = identifier - name;
Rusty Russell626596e2012-01-13 09:32:15 +10301338
Kees Cooke0049822007-09-16 11:15:46 +02001339 /* Handle all-NULL symbols allocated into .bss */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001340 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) {
Kees Cooke0049822007-09-16 11:15:46 +02001341 zeros = calloc(1, sym->st_size);
1342 symval = zeros;
1343 } else {
1344 symval = (void *)info->hdr
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001345 + info->sechdrs[get_secindex(info, sym)].sh_offset
Kees Cooke0049822007-09-16 11:15:46 +02001346 + sym->st_value;
1347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Rusty Russell626596e2012-01-13 09:32:15 +10301349 /* First handle the "special" cases */
1350 if (sym_is(name, namelen, "usb"))
Roman Kaganb19dcd92005-04-22 15:07:01 -07001351 do_usb_table(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301352 else if (sym_is(name, namelen, "pnp"))
Kay Sievers22454cb2008-05-28 23:06:47 +02001353 do_pnp_device_entry(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301354 else if (sym_is(name, namelen, "pnp_card"))
Kay Sievers0c81eed2008-02-21 00:35:54 +01001355 do_pnp_card_entries(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301356 else {
Rusty Russelle49ce142012-01-13 09:32:16 +10301357 struct devtable **p;
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +01001358 INIT_SECTION(__devtable);
Rusty Russell626596e2012-01-13 09:32:15 +10301359
Rusty Russelle49ce142012-01-13 09:32:16 +10301360 for (p = __start___devtable; p < __stop___devtable; p++) {
1361 if (sym_is(name, namelen, (*p)->device_id)) {
1362 do_table(symval, sym->st_size, (*p)->id_size,
1363 (*p)->device_id, (*p)->function, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301364 break;
1365 }
1366 }
1367 }
Kees Cooke0049822007-09-16 11:15:46 +02001368 free(zeros);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
1371/* Now add out buffered information to the generated C source */
1372void add_moddevtable(struct buffer *buf, struct module *mod)
1373{
1374 buf_printf(buf, "\n");
1375 buf_write(buf, mod->dev_table_buf.p, mod->dev_table_buf.pos);
1376 free(mod->dev_table_buf.p);
1377}