blob: 161dd0d67da8a84f0062672cd9125c491a2f58e3 [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
Javier Martinez Canillas2f632362016-01-14 15:17:02 -0800128/* End in a wildcard, for future extension */
Jean Delvareac551822008-05-02 20:37:21 +0200129static 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 return 1;
Jeff Mahoney5e655772005-07-06 15:44:41 -0400708}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100709ADD_TO_DEVTABLE("of", of_device_id, do_of_entry);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400710
Andreas Schwab6543bec2013-01-20 17:58:47 +0100711static int do_vio_entry(const char *filename, void *symval,
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000712 char *alias)
713{
714 char *tmp;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100715 DEF_FIELD_ADDR(symval, vio_device_id, type);
716 DEF_FIELD_ADDR(symval, vio_device_id, compat);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000717
Andreas Schwab6543bec2013-01-20 17:58:47 +0100718 sprintf(alias, "vio:T%sS%s", (*type)[0] ? *type : "*",
719 (*compat)[0] ? *compat : "*");
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000720
721 /* Replace all whitespace with underscores */
722 for (tmp = alias; tmp && *tmp; tmp++)
723 if (isspace (*tmp))
724 *tmp = '_';
725
Jean Delvareac551822008-05-02 20:37:21 +0200726 add_wildcard(alias);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000727 return 1;
728}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100729ADD_TO_DEVTABLE("vio", vio_device_id, do_vio_entry);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000730
Rusty Russell1d8f4302005-12-07 21:40:34 +0100731#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
732
733static void do_input(char *alias,
734 kernel_ulong_t *arr, unsigned int min, unsigned int max)
735{
736 unsigned int i;
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400737
Andreas Schwab6543bec2013-01-20 17:58:47 +0100738 for (i = min / BITS_PER_LONG; i < max / BITS_PER_LONG + 1; i++)
739 arr[i] = TO_NATIVE(arr[i]);
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400740 for (i = min; i < max; i++)
Hans de Goedee0e92632006-08-15 12:09:27 +0200741 if (arr[i / BITS_PER_LONG] & (1L << (i%BITS_PER_LONG)))
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400742 sprintf(alias + strlen(alias), "%X,*", i);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100743}
744
745/* input:b0v0p0e0-eXkXrXaXmXlXsXfXwX where X is comma-separated %02X. */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100746static int do_input_entry(const char *filename, void *symval,
Rusty Russell1d8f4302005-12-07 21:40:34 +0100747 char *alias)
748{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100749 DEF_FIELD(symval, input_device_id, flags);
750 DEF_FIELD(symval, input_device_id, bustype);
751 DEF_FIELD(symval, input_device_id, vendor);
752 DEF_FIELD(symval, input_device_id, product);
753 DEF_FIELD(symval, input_device_id, version);
754 DEF_FIELD_ADDR(symval, input_device_id, evbit);
755 DEF_FIELD_ADDR(symval, input_device_id, keybit);
756 DEF_FIELD_ADDR(symval, input_device_id, relbit);
757 DEF_FIELD_ADDR(symval, input_device_id, absbit);
758 DEF_FIELD_ADDR(symval, input_device_id, mscbit);
759 DEF_FIELD_ADDR(symval, input_device_id, ledbit);
760 DEF_FIELD_ADDR(symval, input_device_id, sndbit);
761 DEF_FIELD_ADDR(symval, input_device_id, ffbit);
762 DEF_FIELD_ADDR(symval, input_device_id, swbit);
763
Rusty Russell1d8f4302005-12-07 21:40:34 +0100764 sprintf(alias, "input:");
765
Andreas Schwab6543bec2013-01-20 17:58:47 +0100766 ADD(alias, "b", flags & INPUT_DEVICE_ID_MATCH_BUS, bustype);
767 ADD(alias, "v", flags & INPUT_DEVICE_ID_MATCH_VENDOR, vendor);
768 ADD(alias, "p", flags & INPUT_DEVICE_ID_MATCH_PRODUCT, product);
769 ADD(alias, "e", flags & INPUT_DEVICE_ID_MATCH_VERSION, version);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100770
771 sprintf(alias + strlen(alias), "-e*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100772 if (flags & INPUT_DEVICE_ID_MATCH_EVBIT)
773 do_input(alias, *evbit, 0, INPUT_DEVICE_ID_EV_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100774 sprintf(alias + strlen(alias), "k*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100775 if (flags & INPUT_DEVICE_ID_MATCH_KEYBIT)
776 do_input(alias, *keybit,
Sam Ravnborgdc24f0e2007-03-09 19:59:06 +0100777 INPUT_DEVICE_ID_KEY_MIN_INTERESTING,
778 INPUT_DEVICE_ID_KEY_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100779 sprintf(alias + strlen(alias), "r*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100780 if (flags & INPUT_DEVICE_ID_MATCH_RELBIT)
781 do_input(alias, *relbit, 0, INPUT_DEVICE_ID_REL_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100782 sprintf(alias + strlen(alias), "a*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100783 if (flags & INPUT_DEVICE_ID_MATCH_ABSBIT)
784 do_input(alias, *absbit, 0, INPUT_DEVICE_ID_ABS_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100785 sprintf(alias + strlen(alias), "m*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100786 if (flags & INPUT_DEVICE_ID_MATCH_MSCIT)
787 do_input(alias, *mscbit, 0, INPUT_DEVICE_ID_MSC_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100788 sprintf(alias + strlen(alias), "l*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100789 if (flags & INPUT_DEVICE_ID_MATCH_LEDBIT)
790 do_input(alias, *ledbit, 0, INPUT_DEVICE_ID_LED_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100791 sprintf(alias + strlen(alias), "s*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100792 if (flags & INPUT_DEVICE_ID_MATCH_SNDBIT)
793 do_input(alias, *sndbit, 0, INPUT_DEVICE_ID_SND_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100794 sprintf(alias + strlen(alias), "f*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100795 if (flags & INPUT_DEVICE_ID_MATCH_FFBIT)
796 do_input(alias, *ffbit, 0, INPUT_DEVICE_ID_FF_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100797 sprintf(alias + strlen(alias), "w*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100798 if (flags & INPUT_DEVICE_ID_MATCH_SWBIT)
799 do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100800 return 1;
801}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100802ADD_TO_DEVTABLE("input", input_device_id, do_input_entry);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100803
Andreas Schwab6543bec2013-01-20 17:58:47 +0100804static int do_eisa_entry(const char *filename, void *symval,
Michael Tokarev07563c72006-09-27 01:50:56 -0700805 char *alias)
806{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100807 DEF_FIELD_ADDR(symval, eisa_device_id, sig);
808 if (sig[0])
809 sprintf(alias, EISA_DEVICE_MODALIAS_FMT "*", *sig);
Jean Delvareac551822008-05-02 20:37:21 +0200810 else
811 strcat(alias, "*");
Michael Tokarev07563c72006-09-27 01:50:56 -0700812 return 1;
813}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100814ADD_TO_DEVTABLE("eisa", eisa_device_id, do_eisa_entry);
Michael Tokarev07563c72006-09-27 01:50:56 -0700815
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500816/* Looks like: parisc:tNhvNrevNsvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100817static int do_parisc_entry(const char *filename, void *symval,
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500818 char *alias)
819{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100820 DEF_FIELD(symval, parisc_device_id, hw_type);
821 DEF_FIELD(symval, parisc_device_id, hversion);
822 DEF_FIELD(symval, parisc_device_id, hversion_rev);
823 DEF_FIELD(symval, parisc_device_id, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500824
825 strcpy(alias, "parisc:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100826 ADD(alias, "t", hw_type != PA_HWTYPE_ANY_ID, hw_type);
827 ADD(alias, "hv", hversion != PA_HVERSION_ANY_ID, hversion);
828 ADD(alias, "rev", hversion_rev != PA_HVERSION_REV_ANY_ID, hversion_rev);
829 ADD(alias, "sv", sversion != PA_SVERSION_ANY_ID, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500830
Jean Delvareac551822008-05-02 20:37:21 +0200831 add_wildcard(alias);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500832 return 1;
833}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100834ADD_TO_DEVTABLE("parisc", parisc_device_id, do_parisc_entry);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500835
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200836/* Looks like: sdio:cNvNdN. */
837static int do_sdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100838 void *symval, char *alias)
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200839{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100840 DEF_FIELD(symval, sdio_device_id, class);
841 DEF_FIELD(symval, sdio_device_id, vendor);
842 DEF_FIELD(symval, sdio_device_id, device);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200843
844 strcpy(alias, "sdio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100845 ADD(alias, "c", class != (__u8)SDIO_ANY_ID, class);
846 ADD(alias, "v", vendor != (__u16)SDIO_ANY_ID, vendor);
847 ADD(alias, "d", device != (__u16)SDIO_ANY_ID, device);
Jean Delvareac551822008-05-02 20:37:21 +0200848 add_wildcard(alias);
Linus Torvalds038a5002007-10-11 19:40:14 -0700849 return 1;
850}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100851ADD_TO_DEVTABLE("sdio", sdio_device_id, do_sdio_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200852
Michael Buesch61e115a2007-09-18 15:12:50 -0400853/* Looks like: ssb:vNidNrevN. */
854static int do_ssb_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100855 void *symval, char *alias)
Michael Buesch61e115a2007-09-18 15:12:50 -0400856{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100857 DEF_FIELD(symval, ssb_device_id, vendor);
858 DEF_FIELD(symval, ssb_device_id, coreid);
859 DEF_FIELD(symval, ssb_device_id, revision);
Michael Buesch61e115a2007-09-18 15:12:50 -0400860
861 strcpy(alias, "ssb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100862 ADD(alias, "v", vendor != SSB_ANY_VENDOR, vendor);
863 ADD(alias, "id", coreid != SSB_ANY_ID, coreid);
864 ADD(alias, "rev", revision != SSB_ANY_REV, revision);
Jean Delvareac551822008-05-02 20:37:21 +0200865 add_wildcard(alias);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200866 return 1;
867}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100868ADD_TO_DEVTABLE("ssb", ssb_device_id, do_ssb_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200869
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200870/* Looks like: bcma:mNidNrevNclN. */
871static int do_bcma_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100872 void *symval, char *alias)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200873{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100874 DEF_FIELD(symval, bcma_device_id, manuf);
875 DEF_FIELD(symval, bcma_device_id, id);
876 DEF_FIELD(symval, bcma_device_id, rev);
877 DEF_FIELD(symval, bcma_device_id, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200878
879 strcpy(alias, "bcma:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100880 ADD(alias, "m", manuf != BCMA_ANY_MANUF, manuf);
881 ADD(alias, "id", id != BCMA_ANY_ID, id);
882 ADD(alias, "rev", rev != BCMA_ANY_REV, rev);
883 ADD(alias, "cl", class != BCMA_ANY_CLASS, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200884 add_wildcard(alias);
885 return 1;
886}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100887ADD_TO_DEVTABLE("bcma", bcma_device_id, do_bcma_entry);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200888
Rusty Russellb01d9f22007-10-22 11:03:39 +1000889/* Looks like: virtio:dNvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100890static int do_virtio_entry(const char *filename, void *symval,
Rusty Russellb01d9f22007-10-22 11:03:39 +1000891 char *alias)
892{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100893 DEF_FIELD(symval, virtio_device_id, device);
894 DEF_FIELD(symval, virtio_device_id, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000895
896 strcpy(alias, "virtio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100897 ADD(alias, "d", device != VIRTIO_DEV_ANY_ID, device);
898 ADD(alias, "v", vendor != VIRTIO_DEV_ANY_ID, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000899
Jean Delvareac551822008-05-02 20:37:21 +0200900 add_wildcard(alias);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000901 return 1;
902}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100903ADD_TO_DEVTABLE("virtio", virtio_device_id, do_virtio_entry);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000904
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700905/*
906 * Looks like: vmbus:guid
907 * Each byte of the guid will be represented by two hex characters
908 * in the name.
909 */
910
Andreas Schwab6543bec2013-01-20 17:58:47 +0100911static int do_vmbus_entry(const char *filename, void *symval,
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700912 char *alias)
913{
914 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100915 DEF_FIELD_ADDR(symval, hv_vmbus_device_id, guid);
916 char guid_name[(sizeof(*guid) + 1) * 2];
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700917
Andreas Schwab6543bec2013-01-20 17:58:47 +0100918 for (i = 0; i < (sizeof(*guid) * 2); i += 2)
K. Y. Srinivasanaf3ff642015-12-14 16:01:43 -0800919 sprintf(&guid_name[i], "%02x", TO_NATIVE((guid->b)[i/2]));
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700920
921 strcpy(alias, "vmbus:");
922 strcat(alias, guid_name);
923
924 return 1;
925}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100926ADD_TO_DEVTABLE("vmbus", hv_vmbus_device_id, do_vmbus_entry);
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700927
Jean Delvared2653e92008-04-29 23:11:39 +0200928/* Looks like: i2c:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100929static int do_i2c_entry(const char *filename, void *symval,
Jean Delvared2653e92008-04-29 23:11:39 +0200930 char *alias)
931{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100932 DEF_FIELD_ADDR(symval, i2c_device_id, name);
933 sprintf(alias, I2C_MODULE_PREFIX "%s", *name);
Jean Delvared2653e92008-04-29 23:11:39 +0200934
935 return 1;
936}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100937ADD_TO_DEVTABLE("i2c", i2c_device_id, do_i2c_entry);
Jean Delvared2653e92008-04-29 23:11:39 +0200938
Anton Vorontsove0626e32009-09-22 16:46:08 -0700939/* Looks like: spi:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100940static int do_spi_entry(const char *filename, void *symval,
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700941 char *alias)
942{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100943 DEF_FIELD_ADDR(symval, spi_device_id, name);
944 sprintf(alias, SPI_MODULE_PREFIX "%s", *name);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700945
946 return 1;
947}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100948ADD_TO_DEVTABLE("spi", spi_device_id, do_spi_entry);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700949
David Woodhoused945b692008-09-16 16:23:28 -0700950static const struct dmifield {
951 const char *prefix;
952 int field;
953} dmi_fields[] = {
954 { "bvn", DMI_BIOS_VENDOR },
955 { "bvr", DMI_BIOS_VERSION },
956 { "bd", DMI_BIOS_DATE },
957 { "svn", DMI_SYS_VENDOR },
958 { "pn", DMI_PRODUCT_NAME },
959 { "pvr", DMI_PRODUCT_VERSION },
960 { "rvn", DMI_BOARD_VENDOR },
961 { "rn", DMI_BOARD_NAME },
962 { "rvr", DMI_BOARD_VERSION },
963 { "cvn", DMI_CHASSIS_VENDOR },
964 { "ct", DMI_CHASSIS_TYPE },
965 { "cvr", DMI_CHASSIS_VERSION },
966 { NULL, DMI_NONE }
967};
968
969static void dmi_ascii_filter(char *d, const char *s)
970{
971 /* Filter out characters we don't want to see in the modalias string */
972 for (; *s; s++)
973 if (*s > ' ' && *s < 127 && *s != ':')
974 *(d++) = *s;
975
976 *d = 0;
977}
978
979
Andreas Schwab6543bec2013-01-20 17:58:47 +0100980static int do_dmi_entry(const char *filename, void *symval,
David Woodhoused945b692008-09-16 16:23:28 -0700981 char *alias)
982{
983 int i, j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100984 DEF_FIELD_ADDR(symval, dmi_system_id, matches);
David Woodhoused945b692008-09-16 16:23:28 -0700985 sprintf(alias, "dmi*");
986
987 for (i = 0; i < ARRAY_SIZE(dmi_fields); i++) {
988 for (j = 0; j < 4; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100989 if ((*matches)[j].slot &&
990 (*matches)[j].slot == dmi_fields[i].field) {
David Woodhoused945b692008-09-16 16:23:28 -0700991 sprintf(alias + strlen(alias), ":%s*",
992 dmi_fields[i].prefix);
993 dmi_ascii_filter(alias + strlen(alias),
Andreas Schwab6543bec2013-01-20 17:58:47 +0100994 (*matches)[j].substr);
David Woodhoused945b692008-09-16 16:23:28 -0700995 strcat(alias, "*");
996 }
997 }
998 }
999
1000 strcat(alias, ":");
1001 return 1;
1002}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001003ADD_TO_DEVTABLE("dmi", dmi_system_id, do_dmi_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +08001004
1005static int do_platform_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001006 void *symval, char *alias)
Eric Miao57fee4a2009-02-04 11:52:40 +08001007{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001008 DEF_FIELD_ADDR(symval, platform_device_id, name);
1009 sprintf(alias, PLATFORM_MODULE_PREFIX "%s", *name);
Eric Miao57fee4a2009-02-04 11:52:40 +08001010 return 1;
1011}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001012ADD_TO_DEVTABLE("platform", platform_device_id, do_platform_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +08001013
David Woodhouse8626d3b2010-04-02 01:05:27 +00001014static int do_mdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001015 void *symval, char *alias)
David Woodhouse8626d3b2010-04-02 01:05:27 +00001016{
1017 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +01001018 DEF_FIELD(symval, mdio_device_id, phy_id);
1019 DEF_FIELD(symval, mdio_device_id, phy_id_mask);
David Woodhouse8626d3b2010-04-02 01:05:27 +00001020
1021 alias += sprintf(alias, MDIO_MODULE_PREFIX);
1022
1023 for (i = 0; i < 32; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +01001024 if (!((phy_id_mask >> (31-i)) & 1))
David Woodhouse8626d3b2010-04-02 01:05:27 +00001025 *(alias++) = '?';
Andreas Schwab6543bec2013-01-20 17:58:47 +01001026 else if ((phy_id >> (31-i)) & 1)
David Woodhouse8626d3b2010-04-02 01:05:27 +00001027 *(alias++) = '1';
1028 else
1029 *(alias++) = '0';
1030 }
1031
1032 /* Terminate the string */
1033 *alias = 0;
1034
1035 return 1;
1036}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001037ADD_TO_DEVTABLE("mdio", mdio_device_id, do_mdio_entry);
David Woodhouse8626d3b2010-04-02 01:05:27 +00001038
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001039/* Looks like: zorro:iN. */
Andreas Schwab6543bec2013-01-20 17:58:47 +01001040static int do_zorro_entry(const char *filename, void *symval,
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001041 char *alias)
1042{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001043 DEF_FIELD(symval, zorro_device_id, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001044 strcpy(alias, "zorro:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001045 ADD(alias, "i", id != ZORRO_WILDCARD, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001046 return 1;
1047}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001048ADD_TO_DEVTABLE("zorro", zorro_device_id, do_zorro_entry);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001049
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001050/* looks like: "pnp:dD" */
1051static int do_isapnp_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001052 void *symval, char *alias)
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001053{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001054 DEF_FIELD(symval, isapnp_device_id, vendor);
1055 DEF_FIELD(symval, isapnp_device_id, function);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001056 sprintf(alias, "pnp:d%c%c%c%x%x%x%x*",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001057 'A' + ((vendor >> 2) & 0x3f) - 1,
1058 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1,
1059 'A' + ((vendor >> 8) & 0x1f) - 1,
1060 (function >> 4) & 0x0f, function & 0x0f,
1061 (function >> 12) & 0x0f, (function >> 8) & 0x0f);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001062 return 1;
1063}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001064ADD_TO_DEVTABLE("isapnp", isapnp_device_id, do_isapnp_entry);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001065
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001066/* Looks like: "ipack:fNvNdN". */
1067static int do_ipack_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001068 void *symval, char *alias)
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001069{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001070 DEF_FIELD(symval, ipack_device_id, format);
1071 DEF_FIELD(symval, ipack_device_id, vendor);
1072 DEF_FIELD(symval, ipack_device_id, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001073 strcpy(alias, "ipack:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001074 ADD(alias, "f", format != IPACK_ANY_FORMAT, format);
1075 ADD(alias, "v", vendor != IPACK_ANY_ID, vendor);
1076 ADD(alias, "d", device != IPACK_ANY_ID, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001077 add_wildcard(alias);
1078 return 1;
1079}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001080ADD_TO_DEVTABLE("ipack", ipack_device_id, do_ipack_entry);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001081
Dave Martin523817b2011-10-05 14:44:57 +01001082/*
1083 * Append a match expression for a single masked hex digit.
1084 * outp points to a pointer to the character at which to append.
1085 * *outp is updated on return to point just after the appended text,
1086 * to facilitate further appending.
1087 */
1088static void append_nibble_mask(char **outp,
1089 unsigned int nibble, unsigned int mask)
1090{
1091 char *p = *outp;
1092 unsigned int i;
1093
1094 switch (mask) {
1095 case 0:
1096 *p++ = '?';
1097 break;
1098
1099 case 0xf:
1100 p += sprintf(p, "%X", nibble);
1101 break;
1102
1103 default:
1104 /*
1105 * Dumbly emit a match pattern for all possible matching
1106 * digits. This could be improved in some cases using ranges,
1107 * but it has the advantage of being trivially correct, and is
1108 * often optimal.
1109 */
1110 *p++ = '[';
1111 for (i = 0; i < 0x10; i++)
1112 if ((i & mask) == nibble)
1113 p += sprintf(p, "%X", i);
1114 *p++ = ']';
1115 }
1116
1117 /* Ensure that the string remains NUL-terminated: */
1118 *p = '\0';
1119
1120 /* Advance the caller's end-of-string pointer: */
1121 *outp = p;
1122}
1123
1124/*
1125 * looks like: "amba:dN"
1126 *
1127 * N is exactly 8 digits, where each is an upper-case hex digit, or
1128 * a ? or [] pattern matching exactly one digit.
1129 */
1130static int do_amba_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001131 void *symval, char *alias)
Dave Martin523817b2011-10-05 14:44:57 +01001132{
1133 unsigned int digit;
1134 char *p = alias;
Andreas Schwab6543bec2013-01-20 17:58:47 +01001135 DEF_FIELD(symval, amba_id, id);
1136 DEF_FIELD(symval, amba_id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001137
Andreas Schwab6543bec2013-01-20 17:58:47 +01001138 if ((id & mask) != id)
Dave Martin523817b2011-10-05 14:44:57 +01001139 fatal("%s: Masked-off bit(s) of AMBA device ID are non-zero: "
1140 "id=0x%08X, mask=0x%08X. Please fix this driver.\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001141 filename, id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001142
1143 p += sprintf(alias, "amba:d");
1144 for (digit = 0; digit < 8; digit++)
1145 append_nibble_mask(&p,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001146 (id >> (4 * (7 - digit))) & 0xf,
1147 (mask >> (4 * (7 - digit))) & 0xf);
Dave Martin523817b2011-10-05 14:44:57 +01001148
1149 return 1;
1150}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001151ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry);
Dave Martin523817b2011-10-05 14:44:57 +01001152
James Hogan8286ae02015-03-25 15:39:50 +00001153/*
1154 * looks like: "mipscdmm:tN"
1155 *
1156 * N is exactly 2 digits, where each is an upper-case hex digit, or
1157 * a ? or [] pattern matching exactly one digit.
1158 */
1159static int do_mips_cdmm_entry(const char *filename,
1160 void *symval, char *alias)
1161{
1162 DEF_FIELD(symval, mips_cdmm_device_id, type);
1163
1164 sprintf(alias, "mipscdmm:t%02X*", type);
1165 return 1;
1166}
1167ADD_TO_DEVTABLE("mipscdmm", mips_cdmm_device_id, do_mips_cdmm_entry);
1168
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +01001169/* LOOKS like cpu:type:x86,venVVVVfamFFFFmodMMMM:feature:*,FEAT,*
Andi Kleen644e9cb2012-01-26 00:09:05 +01001170 * All fields are numbers. It would be nicer to use strings for vendor
1171 * and feature, but getting those out of the build system here is too
1172 * complicated.
1173 */
1174
Andreas Schwab6543bec2013-01-20 17:58:47 +01001175static int do_x86cpu_entry(const char *filename, void *symval,
Andi Kleen644e9cb2012-01-26 00:09:05 +01001176 char *alias)
1177{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001178 DEF_FIELD(symval, x86_cpu_id, feature);
1179 DEF_FIELD(symval, x86_cpu_id, family);
1180 DEF_FIELD(symval, x86_cpu_id, model);
1181 DEF_FIELD(symval, x86_cpu_id, vendor);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001182
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +01001183 strcpy(alias, "cpu:type:x86,");
1184 ADD(alias, "ven", vendor != X86_VENDOR_ANY, vendor);
1185 ADD(alias, "fam", family != X86_FAMILY_ANY, family);
1186 ADD(alias, "mod", model != X86_MODEL_ANY, model);
Ben Hutchings5467bdd2012-02-11 22:57:19 +00001187 strcat(alias, ":feature:*");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001188 if (feature != X86_FEATURE_ANY)
1189 sprintf(alias + strlen(alias), "%04X*", feature);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001190 return 1;
1191}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001192ADD_TO_DEVTABLE("x86cpu", x86_cpu_id, do_x86cpu_entry);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001193
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +01001194/* LOOKS like cpu:type:*:feature:*FEAT* */
1195static int do_cpu_entry(const char *filename, void *symval, char *alias)
1196{
1197 DEF_FIELD(symval, cpu_feature, feature);
1198
1199 sprintf(alias, "cpu:type:*:feature:*%04X*", feature);
1200 return 1;
1201}
1202ADD_TO_DEVTABLE("cpu", cpu_feature, do_cpu_entry);
1203
Tomas Winklerb26864c2015-09-10 10:18:01 +03001204/* Looks like: mei:S:uuid:N:* */
Samuel Ortize5354102013-03-27 17:29:53 +02001205static int do_mei_entry(const char *filename, void *symval,
1206 char *alias)
1207{
1208 DEF_FIELD_ADDR(symval, mei_cl_device_id, name);
Tomas Winklerc93b76b2015-05-07 15:54:02 +03001209 DEF_FIELD_ADDR(symval, mei_cl_device_id, uuid);
Tomas Winklerb26864c2015-09-10 10:18:01 +03001210 DEF_FIELD(symval, mei_cl_device_id, version);
Samuel Ortize5354102013-03-27 17:29:53 +02001211
Tomas Winklerc93b76b2015-05-07 15:54:02 +03001212 sprintf(alias, MEI_CL_MODULE_PREFIX);
1213 sprintf(alias + strlen(alias), "%s:", (*name)[0] ? *name : "*");
1214 add_uuid(alias, *uuid);
Tomas Winklerb26864c2015-09-10 10:18:01 +03001215 ADD(alias, ":", version != MEI_CL_VERSION_ANY, version);
Tomas Winklerc93b76b2015-05-07 15:54:02 +03001216
1217 strcat(alias, ":*");
Samuel Ortize5354102013-03-27 17:29:53 +02001218
1219 return 1;
1220}
1221ADD_TO_DEVTABLE("mei", mei_cl_device_id, do_mei_entry);
1222
Alexandre Bounine3bdbb622013-07-03 15:08:58 -07001223/* Looks like: rapidio:vNdNavNadN */
1224static int do_rio_entry(const char *filename,
1225 void *symval, char *alias)
1226{
1227 DEF_FIELD(symval, rio_device_id, did);
1228 DEF_FIELD(symval, rio_device_id, vid);
1229 DEF_FIELD(symval, rio_device_id, asm_did);
1230 DEF_FIELD(symval, rio_device_id, asm_vid);
1231
1232 strcpy(alias, "rapidio:");
1233 ADD(alias, "v", vid != RIO_ANY_ID, vid);
1234 ADD(alias, "d", did != RIO_ANY_ID, did);
1235 ADD(alias, "av", asm_vid != RIO_ANY_ID, asm_vid);
1236 ADD(alias, "ad", asm_did != RIO_ANY_ID, asm_did);
1237
1238 add_wildcard(alias);
1239 return 1;
1240}
1241ADD_TO_DEVTABLE("rapidio", rio_device_id, do_rio_entry);
1242
Heikki Krogerus289fcff2015-05-13 15:26:42 +03001243/* Looks like: ulpi:vNpN */
1244static int do_ulpi_entry(const char *filename, void *symval,
1245 char *alias)
1246{
1247 DEF_FIELD(symval, ulpi_device_id, vendor);
1248 DEF_FIELD(symval, ulpi_device_id, product);
1249
1250 sprintf(alias, "ulpi:v%04xp%04x", vendor, product);
1251
1252 return 1;
1253}
1254ADD_TO_DEVTABLE("ulpi", ulpi_device_id, do_ulpi_entry);
1255
Subhransu S. Prustyda23ac12015-09-29 13:56:10 +05301256/* Looks like: hdaudio:vNrNaN */
1257static int do_hda_entry(const char *filename, void *symval, char *alias)
1258{
1259 DEF_FIELD(symval, hda_device_id, vendor_id);
1260 DEF_FIELD(symval, hda_device_id, rev_id);
1261 DEF_FIELD(symval, hda_device_id, api_version);
1262
1263 strcpy(alias, "hdaudio:");
1264 ADD(alias, "v", vendor_id != 0, vendor_id);
1265 ADD(alias, "r", rev_id != 0, rev_id);
1266 ADD(alias, "a", api_version != 0, api_version);
1267
1268 add_wildcard(alias);
1269 return 1;
1270}
1271ADD_TO_DEVTABLE("hdaudio", hda_device_id, do_hda_entry);
1272
Rusty Russell626596e2012-01-13 09:32:15 +10301273/* Does namelen bytes of name exactly match the symbol? */
1274static bool sym_is(const char *name, unsigned namelen, const char *symbol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Rusty Russell626596e2012-01-13 09:32:15 +10301276 if (namelen != strlen(symbol))
1277 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Rusty Russell626596e2012-01-13 09:32:15 +10301279 return memcmp(name, symbol, namelen) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282static void do_table(void *symval, unsigned long size,
1283 unsigned long id_size,
Sam Ravnborgfb33d812006-07-09 16:26:07 +02001284 const char *device_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 void *function,
1286 struct module *mod)
1287{
1288 unsigned int i;
1289 char alias[500];
1290 int (*do_entry)(const char *, void *entry, char *alias) = function;
1291
Kees Cooke0049822007-09-16 11:15:46 +02001292 device_id_check(mod->name, device_id, size, id_size, symval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 /* Leave last one: it's the terminator. */
1294 size -= id_size;
1295
1296 for (i = 0; i < size; i += id_size) {
1297 if (do_entry(mod->name, symval+i, alias)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 buf_printf(&mod->dev_table_buf,
1299 "MODULE_ALIAS(\"%s\");\n", alias);
1300 }
1301 }
1302}
1303
1304/* Create MODULE_ALIAS() statements.
1305 * At this time, we cannot write the actual output C source yet,
1306 * so we write into the mod->dev_table_buf buffer. */
1307void handle_moddevtable(struct module *mod, struct elf_info *info,
1308 Elf_Sym *sym, const char *symname)
1309{
1310 void *symval;
Kees Cooke0049822007-09-16 11:15:46 +02001311 char *zeros = NULL;
Tom Gundersen21bdd172014-02-03 11:14:13 +10301312 const char *name, *identifier;
Rusty Russell626596e2012-01-13 09:32:15 +10301313 unsigned int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 /* We're looking for a section relative symbol */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001316 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return;
1318
David Millere88aa7b2012-04-12 14:37:30 -04001319 /* We're looking for an object */
1320 if (ELF_ST_TYPE(sym->st_info) != STT_OBJECT)
1321 return;
1322
Tom Gundersen21bdd172014-02-03 11:14:13 +10301323 /* All our symbols are of form <prefix>__mod_<name>__<identifier>_device_table. */
Rusty Russell626596e2012-01-13 09:32:15 +10301324 name = strstr(symname, "__mod_");
1325 if (!name)
1326 return;
1327 name += strlen("__mod_");
1328 namelen = strlen(name);
1329 if (namelen < strlen("_device_table"))
1330 return;
1331 if (strcmp(name + namelen - strlen("_device_table"), "_device_table"))
1332 return;
Tom Gundersen21bdd172014-02-03 11:14:13 +10301333 identifier = strstr(name, "__");
1334 if (!identifier)
1335 return;
1336 namelen = identifier - name;
Rusty Russell626596e2012-01-13 09:32:15 +10301337
Kees Cooke0049822007-09-16 11:15:46 +02001338 /* Handle all-NULL symbols allocated into .bss */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001339 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) {
Kees Cooke0049822007-09-16 11:15:46 +02001340 zeros = calloc(1, sym->st_size);
1341 symval = zeros;
1342 } else {
1343 symval = (void *)info->hdr
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001344 + info->sechdrs[get_secindex(info, sym)].sh_offset
Kees Cooke0049822007-09-16 11:15:46 +02001345 + sym->st_value;
1346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Rusty Russell626596e2012-01-13 09:32:15 +10301348 /* First handle the "special" cases */
1349 if (sym_is(name, namelen, "usb"))
Roman Kaganb19dcd92005-04-22 15:07:01 -07001350 do_usb_table(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301351 else if (sym_is(name, namelen, "pnp"))
Kay Sievers22454cb2008-05-28 23:06:47 +02001352 do_pnp_device_entry(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301353 else if (sym_is(name, namelen, "pnp_card"))
Kay Sievers0c81eed2008-02-21 00:35:54 +01001354 do_pnp_card_entries(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301355 else {
Rusty Russelle49ce142012-01-13 09:32:16 +10301356 struct devtable **p;
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +01001357 INIT_SECTION(__devtable);
Rusty Russell626596e2012-01-13 09:32:15 +10301358
Rusty Russelle49ce142012-01-13 09:32:16 +10301359 for (p = __start___devtable; p < __stop___devtable; p++) {
1360 if (sym_is(name, namelen, (*p)->device_id)) {
1361 do_table(symval, sym->st_size, (*p)->id_size,
1362 (*p)->device_id, (*p)->function, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301363 break;
1364 }
1365 }
1366 }
Kees Cooke0049822007-09-16 11:15:46 +02001367 free(zeros);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
1370/* Now add out buffered information to the generated C source */
1371void add_moddevtable(struct buffer *buf, struct module *mod)
1372{
1373 buf_printf(buf, "\n");
1374 buf_write(buf, mod->dev_table_buf.p, mod->dev_table_buf.pos);
1375 free(mod->dev_table_buf.p);
1376}