blob: 23708636b05c873f78b1ef5911eb795ba7114497 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Simple code to turn various tables in an ELF file into alias definitions.
2 * This deals with kernel datastructures where they should be
3 * dealt with: in the kernel source.
4 *
5 * Copyright 2002-2003 Rusty Russell, IBM Corporation
6 * 2003 Kai Germaschewski
7 *
8 *
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
11 */
12
13#include "modpost.h"
Andreas Schwab6543bec2013-01-20 17:58:47 +010014#include "devicetable-offsets.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/* We use the ELF typedefs for kernel_ulong_t but bite the bullet and
17 * use either stdint.h or inttypes.h for the rest. */
18#if KERNEL_ELFCLASS == ELFCLASS32
19typedef Elf32_Addr kernel_ulong_t;
Rusty Russell1d8f4302005-12-07 21:40:34 +010020#define BITS_PER_LONG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#else
22typedef Elf64_Addr kernel_ulong_t;
Rusty Russell1d8f4302005-12-07 21:40:34 +010023#define BITS_PER_LONG 64
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#endif
25#ifdef __sun__
26#include <inttypes.h>
27#else
28#include <stdint.h>
29#endif
30
Jeff Mahoney5e655772005-07-06 15:44:41 -040031#include <ctype.h>
Rusty Russell626596e2012-01-13 09:32:15 +103032#include <stdbool.h>
Jeff Mahoney5e655772005-07-06 15:44:41 -040033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034typedef uint32_t __u32;
35typedef uint16_t __u16;
36typedef unsigned char __u8;
37
38/* Big exception to the "don't include kernel headers into userspace, which
Sam Ravnborg62070fa2006-03-03 16:46:04 +010039 * even potentially has different endianness and word sizes, since
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * we handle those differences explicitly below */
41#include "../../include/linux/mod_devicetable.h"
42
Rusty Russelle49ce142012-01-13 09:32:16 +103043/* This array collects all instances that use the generic do_table */
44struct devtable {
45 const char *device_id; /* name of table, __mod_<name>_device_table. */
46 unsigned long id_size;
47 void *function;
48};
49
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +010050#define ___cat(a,b) a ## b
51#define __cat(a,b) ___cat(a,b)
52
53/* we need some special handling for this host tool running eventually on
54 * Darwin. The Mach-O section handling is a bit different than ELF section
55 * handling. The differnces in detail are:
56 * a) we have segments which have sections
57 * b) we need a API call to get the respective section symbols */
58#if defined(__MACH__)
59#include <mach-o/getsect.h>
60
61#define INIT_SECTION(name) do { \
62 unsigned long name ## _len; \
63 char *__cat(pstart_,name) = getsectdata("__TEXT", \
64 #name, &__cat(name,_len)); \
65 char *__cat(pstop_,name) = __cat(pstart_,name) + \
66 __cat(name, _len); \
67 __cat(__start_,name) = (void *)__cat(pstart_,name); \
68 __cat(__stop_,name) = (void *)__cat(pstop_,name); \
69 } while (0)
70#define SECTION(name) __attribute__((section("__TEXT, " #name)))
71
72struct devtable **__start___devtable, **__stop___devtable;
73#else
74#define INIT_SECTION(name) /* no-op for ELF */
75#define SECTION(name) __attribute__((section(#name)))
76
Rusty Russelle49ce142012-01-13 09:32:16 +103077/* We construct a table of pointers in an ELF section (pointers generally
78 * go unpadded by gcc). ld creates boundary syms for us. */
79extern struct devtable *__start___devtable[], *__stop___devtable[];
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +010080#endif /* __MACH__ */
Rusty Russelle49ce142012-01-13 09:32:16 +103081
Daniel Tang04130cc2013-06-09 12:33:55 +100082#if !defined(__used)
83# if __GNUC__ == 3 && __GNUC_MINOR__ < 3
84# define __used __attribute__((__unused__))
85# else
86# define __used __attribute__((__used__))
87# endif
Rusty Russelle49ce142012-01-13 09:32:16 +103088#endif
89
Andreas Schwab6543bec2013-01-20 17:58:47 +010090/* Define a variable f that holds the value of field f of struct devid
91 * based at address m.
92 */
93#define DEF_FIELD(m, devid, f) \
94 typeof(((struct devid *)0)->f) f = TO_NATIVE(*(typeof(f) *)((m) + OFF_##devid##_##f))
95/* Define a variable f that holds the address of field f of struct devid
96 * based at address m. Due to the way typeof works, for a field of type
97 * T[N] the variable has type T(*)[N], _not_ T*.
98 */
99#define DEF_FIELD_ADDR(m, devid, f) \
100 typeof(((struct devid *)0)->f) *f = ((m) + OFF_##devid##_##f)
101
Rusty Russelle49ce142012-01-13 09:32:16 +1030102/* Add a table entry. We test function type matches while we're here. */
103#define ADD_TO_DEVTABLE(device_id, type, function) \
104 static struct devtable __cat(devtable,__LINE__) = { \
105 device_id + 0*sizeof((function)((const char *)NULL, \
Andreas Schwab6543bec2013-01-20 17:58:47 +0100106 (void *)NULL, \
Rusty Russelle49ce142012-01-13 09:32:16 +1030107 (char *)NULL)), \
Andreas Schwab6543bec2013-01-20 17:58:47 +0100108 SIZE_##type, (function) }; \
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +0100109 static struct devtable *SECTION(__devtable) __used \
110 __cat(devtable_ptr,__LINE__) = &__cat(devtable,__LINE__)
Rusty Russelle49ce142012-01-13 09:32:16 +1030111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define ADD(str, sep, cond, field) \
113do { \
114 strcat(str, sep); \
115 if (cond) \
116 sprintf(str + strlen(str), \
117 sizeof(field) == 1 ? "%02X" : \
118 sizeof(field) == 2 ? "%04X" : \
119 sizeof(field) == 4 ? "%08X" : "", \
120 field); \
121 else \
122 sprintf(str + strlen(str), "*"); \
123} while(0)
124
Jean Delvareac551822008-05-02 20:37:21 +0200125/* Always end in a wildcard, for future extension */
126static inline void add_wildcard(char *str)
127{
128 int len = strlen(str);
129
130 if (str[len - 1] != '*')
131 strcat(str + len, "*");
132}
133
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200134/**
135 * Check that sizeof(device_id type) are consistent with size of section
136 * in .o file. If in-consistent then userspace and kernel does not agree
137 * on actual size which is a bug.
Kees Cooke0049822007-09-16 11:15:46 +0200138 * Also verify that the final entry in the table is all zeros.
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +0100139 * Ignore both checks if build host differ from target host and size differs.
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200140 **/
Kees Cooke0049822007-09-16 11:15:46 +0200141static void device_id_check(const char *modname, const char *device_id,
142 unsigned long size, unsigned long id_size,
143 void *symval)
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200144{
Kees Cooke0049822007-09-16 11:15:46 +0200145 int i;
146
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200147 if (size % id_size || size < id_size) {
148 fatal("%s: sizeof(struct %s_device_id)=%lu is not a modulo "
149 "of the size of section __mod_%s_device_table=%lu.\n"
150 "Fix definition of struct %s_device_id "
151 "in mod_devicetable.h\n",
152 modname, device_id, id_size, device_id, size, device_id);
153 }
Kees Cooke0049822007-09-16 11:15:46 +0200154 /* Verify last one is a terminator */
155 for (i = 0; i < id_size; i++ ) {
156 if (*(uint8_t*)(symval+size-id_size+i)) {
157 fprintf(stderr,"%s: struct %s_device_id is %lu bytes. "
158 "The last of %lu is:\n",
159 modname, device_id, id_size, size / id_size);
160 for (i = 0; i < id_size; i++ )
161 fprintf(stderr,"0x%02x ",
162 *(uint8_t*)(symval+size-id_size+i) );
163 fprintf(stderr,"\n");
164 fatal("%s: struct %s_device_id is not terminated "
165 "with a NULL entry!\n", modname, device_id);
166 }
167 }
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200168}
169
Roman Kaganb19dcd92005-04-22 15:07:01 -0700170/* USB is special because the bcdDevice can be matched against a numeric range */
Bjørn Mork81df2d52012-05-18 21:27:43 +0200171/* Looks like "usb:vNpNdNdcNdscNdpNicNiscNipNinN" */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100172static void do_usb_entry(void *symval,
Roman Kaganb19dcd92005-04-22 15:07:01 -0700173 unsigned int bcdDevice_initial, int bcdDevice_initial_digits,
174 unsigned char range_lo, unsigned char range_hi,
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500175 unsigned char max, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Roman Kaganb19dcd92005-04-22 15:07:01 -0700177 char alias[500];
Andreas Schwab6543bec2013-01-20 17:58:47 +0100178 DEF_FIELD(symval, usb_device_id, match_flags);
179 DEF_FIELD(symval, usb_device_id, idVendor);
180 DEF_FIELD(symval, usb_device_id, idProduct);
181 DEF_FIELD(symval, usb_device_id, bcdDevice_lo);
182 DEF_FIELD(symval, usb_device_id, bDeviceClass);
183 DEF_FIELD(symval, usb_device_id, bDeviceSubClass);
184 DEF_FIELD(symval, usb_device_id, bDeviceProtocol);
185 DEF_FIELD(symval, usb_device_id, bInterfaceClass);
186 DEF_FIELD(symval, usb_device_id, bInterfaceSubClass);
187 DEF_FIELD(symval, usb_device_id, bInterfaceProtocol);
188 DEF_FIELD(symval, usb_device_id, bInterfaceNumber);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 strcpy(alias, "usb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100191 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR,
192 idVendor);
193 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT,
194 idProduct);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700195
196 strcat(alias, "d");
197 if (bcdDevice_initial_digits)
198 sprintf(alias + strlen(alias), "%0*X",
199 bcdDevice_initial_digits, bcdDevice_initial);
200 if (range_lo == range_hi)
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500201 sprintf(alias + strlen(alias), "%X", range_lo);
202 else if (range_lo > 0 || range_hi < max) {
203 if (range_lo > 0x9 || range_hi < 0xA)
204 sprintf(alias + strlen(alias),
205 "[%X-%X]",
206 range_lo,
207 range_hi);
208 else {
209 sprintf(alias + strlen(alias),
210 range_lo < 0x9 ? "[%X-9" : "[%X",
211 range_lo);
212 sprintf(alias + strlen(alias),
213 range_hi > 0xA ? "a-%X]" : "%X]",
214 range_lo);
215 }
216 }
Andreas Schwab6543bec2013-01-20 17:58:47 +0100217 if (bcdDevice_initial_digits < (sizeof(bcdDevice_lo) * 2 - 1))
Roman Kaganb19dcd92005-04-22 15:07:01 -0700218 strcat(alias, "*");
219
Andreas Schwab6543bec2013-01-20 17:58:47 +0100220 ADD(alias, "dc", match_flags&USB_DEVICE_ID_MATCH_DEV_CLASS,
221 bDeviceClass);
222 ADD(alias, "dsc", match_flags&USB_DEVICE_ID_MATCH_DEV_SUBCLASS,
223 bDeviceSubClass);
224 ADD(alias, "dp", match_flags&USB_DEVICE_ID_MATCH_DEV_PROTOCOL,
225 bDeviceProtocol);
226 ADD(alias, "ic", match_flags&USB_DEVICE_ID_MATCH_INT_CLASS,
227 bInterfaceClass);
228 ADD(alias, "isc", match_flags&USB_DEVICE_ID_MATCH_INT_SUBCLASS,
229 bInterfaceSubClass);
230 ADD(alias, "ip", match_flags&USB_DEVICE_ID_MATCH_INT_PROTOCOL,
231 bInterfaceProtocol);
232 ADD(alias, "in", match_flags&USB_DEVICE_ID_MATCH_INT_NUMBER,
233 bInterfaceNumber);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700234
Jean Delvareac551822008-05-02 20:37:21 +0200235 add_wildcard(alias);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700236 buf_printf(&mod->dev_table_buf,
237 "MODULE_ALIAS(\"%s\");\n", alias);
238}
239
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500240/* Handles increment/decrement of BCD formatted integers */
241/* Returns the previous value, so it works like i++ or i-- */
242static unsigned int incbcd(unsigned int *bcd,
243 int inc,
244 unsigned char max,
245 size_t chars)
246{
247 unsigned int init = *bcd, i, j;
248 unsigned long long c, dec = 0;
249
250 /* If bcd is not in BCD format, just increment */
251 if (max > 0x9) {
252 *bcd += inc;
253 return init;
254 }
255
256 /* Convert BCD to Decimal */
257 for (i=0 ; i < chars ; i++) {
258 c = (*bcd >> (i << 2)) & 0xf;
259 c = c > 9 ? 9 : c; /* force to bcd just in case */
260 for (j=0 ; j < i ; j++)
261 c = c * 10;
262 dec += c;
263 }
264
265 /* Do our increment/decrement */
266 dec += inc;
267 *bcd = 0;
268
269 /* Convert back to BCD */
270 for (i=0 ; i < chars ; i++) {
271 for (c=1,j=0 ; j < i ; j++)
272 c = c * 10;
273 c = (dec / c) % 10;
274 *bcd += c << (i << 2);
275 }
276 return init;
277}
278
Andreas Schwab6543bec2013-01-20 17:58:47 +0100279static void do_usb_entry_multi(void *symval, struct module *mod)
Roman Kaganb19dcd92005-04-22 15:07:01 -0700280{
281 unsigned int devlo, devhi;
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500282 unsigned char chi, clo, max;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700283 int ndigits;
284
Andreas Schwab6543bec2013-01-20 17:58:47 +0100285 DEF_FIELD(symval, usb_device_id, match_flags);
286 DEF_FIELD(symval, usb_device_id, idVendor);
287 DEF_FIELD(symval, usb_device_id, idProduct);
288 DEF_FIELD(symval, usb_device_id, bcdDevice_lo);
289 DEF_FIELD(symval, usb_device_id, bcdDevice_hi);
290 DEF_FIELD(symval, usb_device_id, bDeviceClass);
291 DEF_FIELD(symval, usb_device_id, bInterfaceClass);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700292
Andreas Schwab6543bec2013-01-20 17:58:47 +0100293 devlo = match_flags & USB_DEVICE_ID_MATCH_DEV_LO ?
294 bcdDevice_lo : 0x0U;
295 devhi = match_flags & USB_DEVICE_ID_MATCH_DEV_HI ?
296 bcdDevice_hi : ~0x0U;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700297
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500298 /* Figure out if this entry is in bcd or hex format */
299 max = 0x9; /* Default to decimal format */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100300 for (ndigits = 0 ; ndigits < sizeof(bcdDevice_lo) * 2 ; ndigits++) {
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500301 clo = (devlo >> (ndigits << 2)) & 0xf;
302 chi = ((devhi > 0x9999 ? 0x9999 : devhi) >> (ndigits << 2)) & 0xf;
303 if (clo > max || chi > max) {
304 max = 0xf;
305 break;
306 }
307 }
308
Roman Kaganb19dcd92005-04-22 15:07:01 -0700309 /*
310 * Some modules (visor) have empty slots as placeholder for
311 * run-time specification that results in catch-all alias
312 */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100313 if (!(idVendor | idProduct | bDeviceClass | bInterfaceClass))
Roman Kaganb19dcd92005-04-22 15:07:01 -0700314 return;
315
316 /* Convert numeric bcdDevice range into fnmatch-able pattern(s) */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100317 for (ndigits = sizeof(bcdDevice_lo) * 2 - 1; devlo <= devhi; ndigits--) {
Roman Kaganb19dcd92005-04-22 15:07:01 -0700318 clo = devlo & 0xf;
319 chi = devhi & 0xf;
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500320 if (chi > max) /* If we are in bcd mode, truncate if necessary */
321 chi = max;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700322 devlo >>= 4;
323 devhi >>= 4;
324
325 if (devlo == devhi || !ndigits) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100326 do_usb_entry(symval, devlo, ndigits, clo, chi, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700327 break;
328 }
329
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500330 if (clo > 0x0)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100331 do_usb_entry(symval,
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500332 incbcd(&devlo, 1, max,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100333 sizeof(bcdDevice_lo) * 2),
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500334 ndigits, clo, max, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700335
Nathaniel McCallumafe2dab2009-11-18 20:11:23 -0500336 if (chi < max)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100337 do_usb_entry(symval,
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500338 incbcd(&devhi, -1, max,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100339 sizeof(bcdDevice_lo) * 2),
Nathaniel McCallum55f49f22009-11-18 20:15:28 -0500340 ndigits, 0x0, chi, max, mod);
Roman Kaganb19dcd92005-04-22 15:07:01 -0700341 }
342}
343
344static void do_usb_table(void *symval, unsigned long size,
345 struct module *mod)
346{
347 unsigned int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100348 const unsigned long id_size = SIZE_usb_device_id;
Roman Kaganb19dcd92005-04-22 15:07:01 -0700349
Kees Cooke0049822007-09-16 11:15:46 +0200350 device_id_check(mod->name, "usb", size, id_size, symval);
Sam Ravnborgfb33d812006-07-09 16:26:07 +0200351
Roman Kaganb19dcd92005-04-22 15:07:01 -0700352 /* Leave last one: it's the terminator. */
353 size -= id_size;
354
355 for (i = 0; i < size; i += id_size)
356 do_usb_entry_multi(symval + i, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Jiri Slabye8c84f92008-05-19 15:50:01 +0200359/* Looks like: hid:bNvNpN */
360static int do_hid_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100361 void *symval, char *alias)
Jiri Slabye8c84f92008-05-19 15:50:01 +0200362{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100363 DEF_FIELD(symval, hid_device_id, bus);
364 DEF_FIELD(symval, hid_device_id, group);
365 DEF_FIELD(symval, hid_device_id, vendor);
366 DEF_FIELD(symval, hid_device_id, product);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200367
Henrik Rydberg7431fb72012-04-23 12:07:04 +0200368 sprintf(alias, "hid:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100369 ADD(alias, "b", bus != HID_BUS_ANY, bus);
370 ADD(alias, "g", group != HID_GROUP_ANY, group);
371 ADD(alias, "v", vendor != HID_ANY_ID, vendor);
372 ADD(alias, "p", product != HID_ANY_ID, product);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200373
374 return 1;
375}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100376ADD_TO_DEVTABLE("hid", hid_device_id, do_hid_entry);
Jiri Slabye8c84f92008-05-19 15:50:01 +0200377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/* Looks like: ieee1394:venNmoNspNverN */
379static int do_ieee1394_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100380 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100382 DEF_FIELD(symval, ieee1394_device_id, match_flags);
383 DEF_FIELD(symval, ieee1394_device_id, vendor_id);
384 DEF_FIELD(symval, ieee1394_device_id, model_id);
385 DEF_FIELD(symval, ieee1394_device_id, specifier_id);
386 DEF_FIELD(symval, ieee1394_device_id, version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 strcpy(alias, "ieee1394:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100389 ADD(alias, "ven", match_flags & IEEE1394_MATCH_VENDOR_ID,
390 vendor_id);
391 ADD(alias, "mo", match_flags & IEEE1394_MATCH_MODEL_ID,
392 model_id);
393 ADD(alias, "sp", match_flags & IEEE1394_MATCH_SPECIFIER_ID,
394 specifier_id);
395 ADD(alias, "ver", match_flags & IEEE1394_MATCH_VERSION,
396 version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Jean Delvareac551822008-05-02 20:37:21 +0200398 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 1;
400}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100401ADD_TO_DEVTABLE("ieee1394", ieee1394_device_id, do_ieee1394_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403/* Looks like: pci:vNdNsvNsdNbcNscNiN. */
404static int do_pci_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100405 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 /* Class field can be divided into these three. */
408 unsigned char baseclass, subclass, interface,
409 baseclass_mask, subclass_mask, interface_mask;
410
Andreas Schwab6543bec2013-01-20 17:58:47 +0100411 DEF_FIELD(symval, pci_device_id, vendor);
412 DEF_FIELD(symval, pci_device_id, device);
413 DEF_FIELD(symval, pci_device_id, subvendor);
414 DEF_FIELD(symval, pci_device_id, subdevice);
415 DEF_FIELD(symval, pci_device_id, class);
416 DEF_FIELD(symval, pci_device_id, class_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 strcpy(alias, "pci:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100419 ADD(alias, "v", vendor != PCI_ANY_ID, vendor);
420 ADD(alias, "d", device != PCI_ANY_ID, device);
421 ADD(alias, "sv", subvendor != PCI_ANY_ID, subvendor);
422 ADD(alias, "sd", subdevice != PCI_ANY_ID, subdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Andreas Schwab6543bec2013-01-20 17:58:47 +0100424 baseclass = (class) >> 16;
425 baseclass_mask = (class_mask) >> 16;
426 subclass = (class) >> 8;
427 subclass_mask = (class_mask) >> 8;
428 interface = class;
429 interface_mask = class_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 if ((baseclass_mask != 0 && baseclass_mask != 0xFF)
432 || (subclass_mask != 0 && subclass_mask != 0xFF)
433 || (interface_mask != 0 && interface_mask != 0xFF)) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100434 warn("Can't handle masks in %s:%04X\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +0100435 filename, class_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437 }
438
439 ADD(alias, "bc", baseclass_mask == 0xFF, baseclass);
440 ADD(alias, "sc", subclass_mask == 0xFF, subclass);
441 ADD(alias, "i", interface_mask == 0xFF, interface);
Jean Delvareac551822008-05-02 20:37:21 +0200442 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return 1;
444}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100445ADD_TO_DEVTABLE("pci", pci_device_id, do_pci_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100447/* looks like: "ccw:tNmNdtNdmN" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448static int do_ccw_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100449 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100451 DEF_FIELD(symval, ccw_device_id, match_flags);
452 DEF_FIELD(symval, ccw_device_id, cu_type);
453 DEF_FIELD(symval, ccw_device_id, cu_model);
454 DEF_FIELD(symval, ccw_device_id, dev_type);
455 DEF_FIELD(symval, ccw_device_id, dev_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 strcpy(alias, "ccw:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100458 ADD(alias, "t", match_flags&CCW_DEVICE_ID_MATCH_CU_TYPE,
459 cu_type);
460 ADD(alias, "m", match_flags&CCW_DEVICE_ID_MATCH_CU_MODEL,
461 cu_model);
462 ADD(alias, "dt", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_TYPE,
463 dev_type);
464 ADD(alias, "dm", match_flags&CCW_DEVICE_ID_MATCH_DEVICE_MODEL,
465 dev_model);
Jean Delvareac551822008-05-02 20:37:21 +0200466 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return 1;
468}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100469ADD_TO_DEVTABLE("ccw", ccw_device_id, do_ccw_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200471/* looks like: "ap:tN" */
472static int do_ap_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100473 void *symval, char *alias)
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200474{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100475 DEF_FIELD(symval, ap_device_id, dev_type);
476
477 sprintf(alias, "ap:t%02X*", dev_type);
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200478 return 1;
479}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100480ADD_TO_DEVTABLE("ap", ap_device_id, do_ap_entry);
Martin Schwidefsky1534c382006-09-20 15:58:25 +0200481
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200482/* looks like: "css:tN" */
483static int do_css_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100484 void *symval, char *alias)
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200485{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100486 DEF_FIELD(symval, css_device_id, type);
487
488 sprintf(alias, "css:t%01X", type);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200489 return 1;
490}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100491ADD_TO_DEVTABLE("css", css_device_id, do_css_entry);
Cornelia Huck7e9db9e2008-07-14 09:58:44 +0200492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493/* Looks like: "serio:tyNprNidNexN" */
494static int do_serio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100495 void *symval, char *alias)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100497 DEF_FIELD(symval, serio_device_id, type);
498 DEF_FIELD(symval, serio_device_id, proto);
499 DEF_FIELD(symval, serio_device_id, id);
500 DEF_FIELD(symval, serio_device_id, extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 strcpy(alias, "serio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100503 ADD(alias, "ty", type != SERIO_ANY, type);
504 ADD(alias, "pr", proto != SERIO_ANY, proto);
505 ADD(alias, "id", id != SERIO_ANY, id);
506 ADD(alias, "ex", extra != SERIO_ANY, extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jean Delvareac551822008-05-02 20:37:21 +0200508 add_wildcard(alias);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return 1;
510}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100511ADD_TO_DEVTABLE("serio", serio_device_id, do_serio_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Thomas Renninger29b71a12007-07-23 14:43:51 +0200513/* looks like: "acpi:ACPI0003 or acpi:PNP0C0B" or "acpi:LNXVIDEO" */
514static int do_acpi_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100515 void *symval, char *alias)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200516{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100517 DEF_FIELD_ADDR(symval, acpi_device_id, id);
518 sprintf(alias, "acpi*:%s:*", *id);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200519 return 1;
520}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100521ADD_TO_DEVTABLE("acpi", acpi_device_id, do_acpi_entry);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/* looks like: "pnp:dD" */
Kay Sievers22454cb2008-05-28 23:06:47 +0200524static void do_pnp_device_entry(void *symval, unsigned long size,
525 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100527 const unsigned long id_size = SIZE_pnp_device_id;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200528 const unsigned int count = (size / id_size)-1;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200529 unsigned int i;
Kay Sievers22454cb2008-05-28 23:06:47 +0200530
531 device_id_check(mod->name, "pnp", size, id_size, symval);
532
Kay Sievers5e4c6562008-08-21 15:28:56 +0200533 for (i = 0; i < count; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100534 DEF_FIELD_ADDR(symval + i*id_size, pnp_device_id, id);
535 char acpi_id[sizeof(*id)];
Kay Sievers72638f52009-01-08 03:06:42 +0100536 int j;
Kay Sievers5e4c6562008-08-21 15:28:56 +0200537
538 buf_printf(&mod->dev_table_buf,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100539 "MODULE_ALIAS(\"pnp:d%s*\");\n", *id);
Kay Sievers72638f52009-01-08 03:06:42 +0100540
541 /* fix broken pnp bus lowercasing */
542 for (j = 0; j < sizeof(acpi_id); j++)
Andreas Schwab6543bec2013-01-20 17:58:47 +0100543 acpi_id[j] = toupper((*id)[j]);
Kay Sievers5e4c6562008-08-21 15:28:56 +0200544 buf_printf(&mod->dev_table_buf,
Kay Sievers72638f52009-01-08 03:06:42 +0100545 "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id);
Kay Sievers5e4c6562008-08-21 15:28:56 +0200546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Kay Sievers0c81eed2008-02-21 00:35:54 +0100549/* looks like: "pnp:dD" for every device of the card */
550static void do_pnp_card_entries(void *symval, unsigned long size,
551 struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100553 const unsigned long id_size = SIZE_pnp_card_device_id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100554 const unsigned int count = (size / id_size)-1;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100555 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Kay Sievers0c81eed2008-02-21 00:35:54 +0100557 device_id_check(mod->name, "pnp", size, id_size, symval);
558
559 for (i = 0; i < count; i++) {
560 unsigned int j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100561 DEF_FIELD_ADDR(symval + i*id_size, pnp_card_device_id, devs);
Kay Sievers0c81eed2008-02-21 00:35:54 +0100562
563 for (j = 0; j < PNP_MAX_DEVICES; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100564 const char *id = (char *)(*devs)[j].id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100565 int i2, j2;
566 int dup = 0;
567
568 if (!id[0])
569 break;
570
571 /* find duplicate, already added value */
572 for (i2 = 0; i2 < i && !dup; i2++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100573 DEF_FIELD_ADDR(symval + i2*id_size, pnp_card_device_id, devs);
Kay Sievers0c81eed2008-02-21 00:35:54 +0100574
575 for (j2 = 0; j2 < PNP_MAX_DEVICES; j2++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100576 const char *id2 = (char *)(*devs)[j2].id;
Kay Sievers0c81eed2008-02-21 00:35:54 +0100577
578 if (!id2[0])
579 break;
580
581 if (!strcmp(id, id2)) {
582 dup = 1;
583 break;
584 }
585 }
586 }
587
588 /* add an individual alias for every device entry */
Kay Sievers22454cb2008-05-28 23:06:47 +0200589 if (!dup) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100590 char acpi_id[PNP_ID_LEN];
Kay Sievers72638f52009-01-08 03:06:42 +0100591 int k;
592
Kay Sievers0c81eed2008-02-21 00:35:54 +0100593 buf_printf(&mod->dev_table_buf,
594 "MODULE_ALIAS(\"pnp:d%s*\");\n", id);
Kay Sievers72638f52009-01-08 03:06:42 +0100595
596 /* fix broken pnp bus lowercasing */
597 for (k = 0; k < sizeof(acpi_id); k++)
598 acpi_id[k] = toupper(id[k]);
Kay Sievers22454cb2008-05-28 23:06:47 +0200599 buf_printf(&mod->dev_table_buf,
Kay Sievers72638f52009-01-08 03:06:42 +0100600 "MODULE_ALIAS(\"acpi*:%s:*\");\n", acpi_id);
Kay Sievers22454cb2008-05-28 23:06:47 +0200601 }
Kay Sievers0c81eed2008-02-21 00:35:54 +0100602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700606/* Looks like: pcmcia:mNcNfNfnNpfnNvaNvbNvcNvdN. */
607static int do_pcmcia_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100608 void *symval, char *alias)
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700609{
610 unsigned int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100611 DEF_FIELD(symval, pcmcia_device_id, match_flags);
612 DEF_FIELD(symval, pcmcia_device_id, manf_id);
613 DEF_FIELD(symval, pcmcia_device_id, card_id);
614 DEF_FIELD(symval, pcmcia_device_id, func_id);
615 DEF_FIELD(symval, pcmcia_device_id, function);
616 DEF_FIELD(symval, pcmcia_device_id, device_no);
617 DEF_FIELD_ADDR(symval, pcmcia_device_id, prod_id_hash);
Kars de Jong4fb7edc2005-09-25 14:39:46 +0200618
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700619 for (i=0; i<4; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100620 (*prod_id_hash)[i] = TO_NATIVE((*prod_id_hash)[i]);
621 }
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700622
Andreas Schwab6543bec2013-01-20 17:58:47 +0100623 strcpy(alias, "pcmcia:");
624 ADD(alias, "m", match_flags & PCMCIA_DEV_ID_MATCH_MANF_ID,
625 manf_id);
626 ADD(alias, "c", match_flags & PCMCIA_DEV_ID_MATCH_CARD_ID,
627 card_id);
628 ADD(alias, "f", match_flags & PCMCIA_DEV_ID_MATCH_FUNC_ID,
629 func_id);
630 ADD(alias, "fn", match_flags & PCMCIA_DEV_ID_MATCH_FUNCTION,
631 function);
632 ADD(alias, "pfn", match_flags & PCMCIA_DEV_ID_MATCH_DEVICE_NO,
633 device_no);
634 ADD(alias, "pa", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID1, (*prod_id_hash)[0]);
635 ADD(alias, "pb", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID2, (*prod_id_hash)[1]);
636 ADD(alias, "pc", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID3, (*prod_id_hash)[2]);
637 ADD(alias, "pd", match_flags & PCMCIA_DEV_ID_MATCH_PROD_ID4, (*prod_id_hash)[3]);
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700638
Jean Delvareac551822008-05-02 20:37:21 +0200639 add_wildcard(alias);
Andreas Schwab6543bec2013-01-20 17:58:47 +0100640 return 1;
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700641}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100642ADD_TO_DEVTABLE("pcmcia", pcmcia_device_id, do_pcmcia_entry);
Dominik Brodowski90829cf2005-06-27 16:28:12 -0700643
Andreas Schwab6543bec2013-01-20 17:58:47 +0100644static int do_of_entry (const char *filename, void *symval, char *alias)
Jeff Mahoney5e655772005-07-06 15:44:41 -0400645{
Sylvain Munautd1ab4232007-05-08 19:59:29 +1000646 int len;
Jeff Mahoney5e655772005-07-06 15:44:41 -0400647 char *tmp;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100648 DEF_FIELD_ADDR(symval, of_device_id, name);
649 DEF_FIELD_ADDR(symval, of_device_id, type);
650 DEF_FIELD_ADDR(symval, of_device_id, compatible);
Sylvain Munautd1ab4232007-05-08 19:59:29 +1000651
Andreas Schwab6543bec2013-01-20 17:58:47 +0100652 len = sprintf (alias, "of:N%sT%s",
653 (*name)[0] ? *name : "*",
654 (*type)[0] ? *type : "*");
655
656 if (compatible[0])
Sylvain Munautd1ab4232007-05-08 19:59:29 +1000657 sprintf (&alias[len], "%sC%s",
Andreas Schwab6543bec2013-01-20 17:58:47 +0100658 (*type)[0] ? "*" : "",
659 *compatible);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400660
661 /* Replace all whitespace with underscores */
662 for (tmp = alias; tmp && *tmp; tmp++)
663 if (isspace (*tmp))
664 *tmp = '_';
665
Jean Delvareac551822008-05-02 20:37:21 +0200666 add_wildcard(alias);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400667 return 1;
668}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100669ADD_TO_DEVTABLE("of", of_device_id, do_of_entry);
Jeff Mahoney5e655772005-07-06 15:44:41 -0400670
Andreas Schwab6543bec2013-01-20 17:58:47 +0100671static int do_vio_entry(const char *filename, void *symval,
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000672 char *alias)
673{
674 char *tmp;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100675 DEF_FIELD_ADDR(symval, vio_device_id, type);
676 DEF_FIELD_ADDR(symval, vio_device_id, compat);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000677
Andreas Schwab6543bec2013-01-20 17:58:47 +0100678 sprintf(alias, "vio:T%sS%s", (*type)[0] ? *type : "*",
679 (*compat)[0] ? *compat : "*");
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000680
681 /* Replace all whitespace with underscores */
682 for (tmp = alias; tmp && *tmp; tmp++)
683 if (isspace (*tmp))
684 *tmp = '_';
685
Jean Delvareac551822008-05-02 20:37:21 +0200686 add_wildcard(alias);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000687 return 1;
688}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100689ADD_TO_DEVTABLE("vio", vio_device_id, do_vio_entry);
Stephen Rothwellfb120da2005-08-17 16:42:59 +1000690
Rusty Russell1d8f4302005-12-07 21:40:34 +0100691#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
692
693static void do_input(char *alias,
694 kernel_ulong_t *arr, unsigned int min, unsigned int max)
695{
696 unsigned int i;
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400697
Andreas Schwab6543bec2013-01-20 17:58:47 +0100698 for (i = min / BITS_PER_LONG; i < max / BITS_PER_LONG + 1; i++)
699 arr[i] = TO_NATIVE(arr[i]);
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400700 for (i = min; i < max; i++)
Hans de Goedee0e92632006-08-15 12:09:27 +0200701 if (arr[i / BITS_PER_LONG] & (1L << (i%BITS_PER_LONG)))
Dmitry Torokhovddc5d342006-04-26 00:14:19 -0400702 sprintf(alias + strlen(alias), "%X,*", i);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100703}
704
705/* input:b0v0p0e0-eXkXrXaXmXlXsXfXwX where X is comma-separated %02X. */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100706static int do_input_entry(const char *filename, void *symval,
Rusty Russell1d8f4302005-12-07 21:40:34 +0100707 char *alias)
708{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100709 DEF_FIELD(symval, input_device_id, flags);
710 DEF_FIELD(symval, input_device_id, bustype);
711 DEF_FIELD(symval, input_device_id, vendor);
712 DEF_FIELD(symval, input_device_id, product);
713 DEF_FIELD(symval, input_device_id, version);
714 DEF_FIELD_ADDR(symval, input_device_id, evbit);
715 DEF_FIELD_ADDR(symval, input_device_id, keybit);
716 DEF_FIELD_ADDR(symval, input_device_id, relbit);
717 DEF_FIELD_ADDR(symval, input_device_id, absbit);
718 DEF_FIELD_ADDR(symval, input_device_id, mscbit);
719 DEF_FIELD_ADDR(symval, input_device_id, ledbit);
720 DEF_FIELD_ADDR(symval, input_device_id, sndbit);
721 DEF_FIELD_ADDR(symval, input_device_id, ffbit);
722 DEF_FIELD_ADDR(symval, input_device_id, swbit);
723
Rusty Russell1d8f4302005-12-07 21:40:34 +0100724 sprintf(alias, "input:");
725
Andreas Schwab6543bec2013-01-20 17:58:47 +0100726 ADD(alias, "b", flags & INPUT_DEVICE_ID_MATCH_BUS, bustype);
727 ADD(alias, "v", flags & INPUT_DEVICE_ID_MATCH_VENDOR, vendor);
728 ADD(alias, "p", flags & INPUT_DEVICE_ID_MATCH_PRODUCT, product);
729 ADD(alias, "e", flags & INPUT_DEVICE_ID_MATCH_VERSION, version);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100730
731 sprintf(alias + strlen(alias), "-e*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100732 if (flags & INPUT_DEVICE_ID_MATCH_EVBIT)
733 do_input(alias, *evbit, 0, INPUT_DEVICE_ID_EV_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100734 sprintf(alias + strlen(alias), "k*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100735 if (flags & INPUT_DEVICE_ID_MATCH_KEYBIT)
736 do_input(alias, *keybit,
Sam Ravnborgdc24f0e2007-03-09 19:59:06 +0100737 INPUT_DEVICE_ID_KEY_MIN_INTERESTING,
738 INPUT_DEVICE_ID_KEY_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100739 sprintf(alias + strlen(alias), "r*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100740 if (flags & INPUT_DEVICE_ID_MATCH_RELBIT)
741 do_input(alias, *relbit, 0, INPUT_DEVICE_ID_REL_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100742 sprintf(alias + strlen(alias), "a*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100743 if (flags & INPUT_DEVICE_ID_MATCH_ABSBIT)
744 do_input(alias, *absbit, 0, INPUT_DEVICE_ID_ABS_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100745 sprintf(alias + strlen(alias), "m*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100746 if (flags & INPUT_DEVICE_ID_MATCH_MSCIT)
747 do_input(alias, *mscbit, 0, INPUT_DEVICE_ID_MSC_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100748 sprintf(alias + strlen(alias), "l*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100749 if (flags & INPUT_DEVICE_ID_MATCH_LEDBIT)
750 do_input(alias, *ledbit, 0, INPUT_DEVICE_ID_LED_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100751 sprintf(alias + strlen(alias), "s*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100752 if (flags & INPUT_DEVICE_ID_MATCH_SNDBIT)
753 do_input(alias, *sndbit, 0, INPUT_DEVICE_ID_SND_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100754 sprintf(alias + strlen(alias), "f*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100755 if (flags & INPUT_DEVICE_ID_MATCH_FFBIT)
756 do_input(alias, *ffbit, 0, INPUT_DEVICE_ID_FF_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100757 sprintf(alias + strlen(alias), "w*");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100758 if (flags & INPUT_DEVICE_ID_MATCH_SWBIT)
759 do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100760 return 1;
761}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100762ADD_TO_DEVTABLE("input", input_device_id, do_input_entry);
Rusty Russell1d8f4302005-12-07 21:40:34 +0100763
Andreas Schwab6543bec2013-01-20 17:58:47 +0100764static int do_eisa_entry(const char *filename, void *symval,
Michael Tokarev07563c72006-09-27 01:50:56 -0700765 char *alias)
766{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100767 DEF_FIELD_ADDR(symval, eisa_device_id, sig);
768 if (sig[0])
769 sprintf(alias, EISA_DEVICE_MODALIAS_FMT "*", *sig);
Jean Delvareac551822008-05-02 20:37:21 +0200770 else
771 strcat(alias, "*");
Michael Tokarev07563c72006-09-27 01:50:56 -0700772 return 1;
773}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100774ADD_TO_DEVTABLE("eisa", eisa_device_id, do_eisa_entry);
Michael Tokarev07563c72006-09-27 01:50:56 -0700775
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500776/* Looks like: parisc:tNhvNrevNsvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100777static int do_parisc_entry(const char *filename, void *symval,
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500778 char *alias)
779{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100780 DEF_FIELD(symval, parisc_device_id, hw_type);
781 DEF_FIELD(symval, parisc_device_id, hversion);
782 DEF_FIELD(symval, parisc_device_id, hversion_rev);
783 DEF_FIELD(symval, parisc_device_id, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500784
785 strcpy(alias, "parisc:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100786 ADD(alias, "t", hw_type != PA_HWTYPE_ANY_ID, hw_type);
787 ADD(alias, "hv", hversion != PA_HVERSION_ANY_ID, hversion);
788 ADD(alias, "rev", hversion_rev != PA_HVERSION_REV_ANY_ID, hversion_rev);
789 ADD(alias, "sv", sversion != PA_SVERSION_ANY_ID, sversion);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500790
Jean Delvareac551822008-05-02 20:37:21 +0200791 add_wildcard(alias);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500792 return 1;
793}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100794ADD_TO_DEVTABLE("parisc", parisc_device_id, do_parisc_entry);
Kyle McMartinf3cf2672007-01-13 14:58:21 -0500795
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200796/* Looks like: sdio:cNvNdN. */
797static int do_sdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100798 void *symval, char *alias)
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200799{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100800 DEF_FIELD(symval, sdio_device_id, class);
801 DEF_FIELD(symval, sdio_device_id, vendor);
802 DEF_FIELD(symval, sdio_device_id, device);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200803
804 strcpy(alias, "sdio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100805 ADD(alias, "c", class != (__u8)SDIO_ANY_ID, class);
806 ADD(alias, "v", vendor != (__u16)SDIO_ANY_ID, vendor);
807 ADD(alias, "d", device != (__u16)SDIO_ANY_ID, device);
Jean Delvareac551822008-05-02 20:37:21 +0200808 add_wildcard(alias);
Linus Torvalds038a5002007-10-11 19:40:14 -0700809 return 1;
810}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100811ADD_TO_DEVTABLE("sdio", sdio_device_id, do_sdio_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200812
Michael Buesch61e115a2007-09-18 15:12:50 -0400813/* Looks like: ssb:vNidNrevN. */
814static int do_ssb_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100815 void *symval, char *alias)
Michael Buesch61e115a2007-09-18 15:12:50 -0400816{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100817 DEF_FIELD(symval, ssb_device_id, vendor);
818 DEF_FIELD(symval, ssb_device_id, coreid);
819 DEF_FIELD(symval, ssb_device_id, revision);
Michael Buesch61e115a2007-09-18 15:12:50 -0400820
821 strcpy(alias, "ssb:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100822 ADD(alias, "v", vendor != SSB_ANY_VENDOR, vendor);
823 ADD(alias, "id", coreid != SSB_ANY_ID, coreid);
824 ADD(alias, "rev", revision != SSB_ANY_REV, revision);
Jean Delvareac551822008-05-02 20:37:21 +0200825 add_wildcard(alias);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200826 return 1;
827}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100828ADD_TO_DEVTABLE("ssb", ssb_device_id, do_ssb_entry);
Pierre Ossmand59b66c2007-06-17 11:34:23 +0200829
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200830/* Looks like: bcma:mNidNrevNclN. */
831static int do_bcma_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100832 void *symval, char *alias)
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200833{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100834 DEF_FIELD(symval, bcma_device_id, manuf);
835 DEF_FIELD(symval, bcma_device_id, id);
836 DEF_FIELD(symval, bcma_device_id, rev);
837 DEF_FIELD(symval, bcma_device_id, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200838
839 strcpy(alias, "bcma:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100840 ADD(alias, "m", manuf != BCMA_ANY_MANUF, manuf);
841 ADD(alias, "id", id != BCMA_ANY_ID, id);
842 ADD(alias, "rev", rev != BCMA_ANY_REV, rev);
843 ADD(alias, "cl", class != BCMA_ANY_CLASS, class);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200844 add_wildcard(alias);
845 return 1;
846}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100847ADD_TO_DEVTABLE("bcma", bcma_device_id, do_bcma_entry);
Rafał Miłecki8369ae32011-05-09 18:56:46 +0200848
Rusty Russellb01d9f22007-10-22 11:03:39 +1000849/* Looks like: virtio:dNvN */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100850static int do_virtio_entry(const char *filename, void *symval,
Rusty Russellb01d9f22007-10-22 11:03:39 +1000851 char *alias)
852{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100853 DEF_FIELD(symval, virtio_device_id, device);
854 DEF_FIELD(symval, virtio_device_id, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000855
856 strcpy(alias, "virtio:");
Andreas Schwab6543bec2013-01-20 17:58:47 +0100857 ADD(alias, "d", device != VIRTIO_DEV_ANY_ID, device);
858 ADD(alias, "v", vendor != VIRTIO_DEV_ANY_ID, vendor);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000859
Jean Delvareac551822008-05-02 20:37:21 +0200860 add_wildcard(alias);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000861 return 1;
862}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100863ADD_TO_DEVTABLE("virtio", virtio_device_id, do_virtio_entry);
Rusty Russellb01d9f22007-10-22 11:03:39 +1000864
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700865/*
866 * Looks like: vmbus:guid
867 * Each byte of the guid will be represented by two hex characters
868 * in the name.
869 */
870
Andreas Schwab6543bec2013-01-20 17:58:47 +0100871static int do_vmbus_entry(const char *filename, void *symval,
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700872 char *alias)
873{
874 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100875 DEF_FIELD_ADDR(symval, hv_vmbus_device_id, guid);
876 char guid_name[(sizeof(*guid) + 1) * 2];
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700877
Andreas Schwab6543bec2013-01-20 17:58:47 +0100878 for (i = 0; i < (sizeof(*guid) * 2); i += 2)
879 sprintf(&guid_name[i], "%02x", TO_NATIVE((*guid)[i/2]));
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700880
881 strcpy(alias, "vmbus:");
882 strcat(alias, guid_name);
883
884 return 1;
885}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100886ADD_TO_DEVTABLE("vmbus", hv_vmbus_device_id, do_vmbus_entry);
K. Y. Srinivasand2ee52a2011-08-25 09:48:30 -0700887
Jean Delvared2653e92008-04-29 23:11:39 +0200888/* Looks like: i2c:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100889static int do_i2c_entry(const char *filename, void *symval,
Jean Delvared2653e92008-04-29 23:11:39 +0200890 char *alias)
891{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100892 DEF_FIELD_ADDR(symval, i2c_device_id, name);
893 sprintf(alias, I2C_MODULE_PREFIX "%s", *name);
Jean Delvared2653e92008-04-29 23:11:39 +0200894
895 return 1;
896}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100897ADD_TO_DEVTABLE("i2c", i2c_device_id, do_i2c_entry);
Jean Delvared2653e92008-04-29 23:11:39 +0200898
Anton Vorontsove0626e32009-09-22 16:46:08 -0700899/* Looks like: spi:S */
Andreas Schwab6543bec2013-01-20 17:58:47 +0100900static int do_spi_entry(const char *filename, void *symval,
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700901 char *alias)
902{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100903 DEF_FIELD_ADDR(symval, spi_device_id, name);
904 sprintf(alias, SPI_MODULE_PREFIX "%s", *name);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700905
906 return 1;
907}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100908ADD_TO_DEVTABLE("spi", spi_device_id, do_spi_entry);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700909
David Woodhoused945b692008-09-16 16:23:28 -0700910static const struct dmifield {
911 const char *prefix;
912 int field;
913} dmi_fields[] = {
914 { "bvn", DMI_BIOS_VENDOR },
915 { "bvr", DMI_BIOS_VERSION },
916 { "bd", DMI_BIOS_DATE },
917 { "svn", DMI_SYS_VENDOR },
918 { "pn", DMI_PRODUCT_NAME },
919 { "pvr", DMI_PRODUCT_VERSION },
920 { "rvn", DMI_BOARD_VENDOR },
921 { "rn", DMI_BOARD_NAME },
922 { "rvr", DMI_BOARD_VERSION },
923 { "cvn", DMI_CHASSIS_VENDOR },
924 { "ct", DMI_CHASSIS_TYPE },
925 { "cvr", DMI_CHASSIS_VERSION },
926 { NULL, DMI_NONE }
927};
928
929static void dmi_ascii_filter(char *d, const char *s)
930{
931 /* Filter out characters we don't want to see in the modalias string */
932 for (; *s; s++)
933 if (*s > ' ' && *s < 127 && *s != ':')
934 *(d++) = *s;
935
936 *d = 0;
937}
938
939
Andreas Schwab6543bec2013-01-20 17:58:47 +0100940static int do_dmi_entry(const char *filename, void *symval,
David Woodhoused945b692008-09-16 16:23:28 -0700941 char *alias)
942{
943 int i, j;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100944 DEF_FIELD_ADDR(symval, dmi_system_id, matches);
David Woodhoused945b692008-09-16 16:23:28 -0700945 sprintf(alias, "dmi*");
946
947 for (i = 0; i < ARRAY_SIZE(dmi_fields); i++) {
948 for (j = 0; j < 4; j++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100949 if ((*matches)[j].slot &&
950 (*matches)[j].slot == dmi_fields[i].field) {
David Woodhoused945b692008-09-16 16:23:28 -0700951 sprintf(alias + strlen(alias), ":%s*",
952 dmi_fields[i].prefix);
953 dmi_ascii_filter(alias + strlen(alias),
Andreas Schwab6543bec2013-01-20 17:58:47 +0100954 (*matches)[j].substr);
David Woodhoused945b692008-09-16 16:23:28 -0700955 strcat(alias, "*");
956 }
957 }
958 }
959
960 strcat(alias, ":");
961 return 1;
962}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100963ADD_TO_DEVTABLE("dmi", dmi_system_id, do_dmi_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +0800964
965static int do_platform_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100966 void *symval, char *alias)
Eric Miao57fee4a2009-02-04 11:52:40 +0800967{
Andreas Schwab6543bec2013-01-20 17:58:47 +0100968 DEF_FIELD_ADDR(symval, platform_device_id, name);
969 sprintf(alias, PLATFORM_MODULE_PREFIX "%s", *name);
Eric Miao57fee4a2009-02-04 11:52:40 +0800970 return 1;
971}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100972ADD_TO_DEVTABLE("platform", platform_device_id, do_platform_entry);
Eric Miao57fee4a2009-02-04 11:52:40 +0800973
David Woodhouse8626d3b2010-04-02 01:05:27 +0000974static int do_mdio_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +0100975 void *symval, char *alias)
David Woodhouse8626d3b2010-04-02 01:05:27 +0000976{
977 int i;
Andreas Schwab6543bec2013-01-20 17:58:47 +0100978 DEF_FIELD(symval, mdio_device_id, phy_id);
979 DEF_FIELD(symval, mdio_device_id, phy_id_mask);
David Woodhouse8626d3b2010-04-02 01:05:27 +0000980
981 alias += sprintf(alias, MDIO_MODULE_PREFIX);
982
983 for (i = 0; i < 32; i++) {
Andreas Schwab6543bec2013-01-20 17:58:47 +0100984 if (!((phy_id_mask >> (31-i)) & 1))
David Woodhouse8626d3b2010-04-02 01:05:27 +0000985 *(alias++) = '?';
Andreas Schwab6543bec2013-01-20 17:58:47 +0100986 else if ((phy_id >> (31-i)) & 1)
David Woodhouse8626d3b2010-04-02 01:05:27 +0000987 *(alias++) = '1';
988 else
989 *(alias++) = '0';
990 }
991
992 /* Terminate the string */
993 *alias = 0;
994
995 return 1;
996}
Andreas Schwab6543bec2013-01-20 17:58:47 +0100997ADD_TO_DEVTABLE("mdio", mdio_device_id, do_mdio_entry);
David Woodhouse8626d3b2010-04-02 01:05:27 +0000998
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +0100999/* Looks like: zorro:iN. */
Andreas Schwab6543bec2013-01-20 17:58:47 +01001000static int do_zorro_entry(const char *filename, void *symval,
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001001 char *alias)
1002{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001003 DEF_FIELD(symval, zorro_device_id, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001004 strcpy(alias, "zorro:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001005 ADD(alias, "i", id != ZORRO_WILDCARD, id);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001006 return 1;
1007}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001008ADD_TO_DEVTABLE("zorro", zorro_device_id, do_zorro_entry);
Geert Uytterhoevenbf54a2b2008-11-18 21:13:53 +01001009
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001010/* looks like: "pnp:dD" */
1011static int do_isapnp_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001012 void *symval, char *alias)
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001013{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001014 DEF_FIELD(symval, isapnp_device_id, vendor);
1015 DEF_FIELD(symval, isapnp_device_id, function);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001016 sprintf(alias, "pnp:d%c%c%c%x%x%x%x*",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001017 'A' + ((vendor >> 2) & 0x3f) - 1,
1018 'A' + (((vendor & 3) << 3) | ((vendor >> 13) & 7)) - 1,
1019 'A' + ((vendor >> 8) & 0x1f) - 1,
1020 (function >> 4) & 0x0f, function & 0x0f,
1021 (function >> 12) & 0x0f, (function >> 8) & 0x0f);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001022 return 1;
1023}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001024ADD_TO_DEVTABLE("isapnp", isapnp_device_id, do_isapnp_entry);
Ondrej Zaryfedb3d22009-12-18 20:52:39 +01001025
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001026/* Looks like: "ipack:fNvNdN". */
1027static int do_ipack_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001028 void *symval, char *alias)
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001029{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001030 DEF_FIELD(symval, ipack_device_id, format);
1031 DEF_FIELD(symval, ipack_device_id, vendor);
1032 DEF_FIELD(symval, ipack_device_id, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001033 strcpy(alias, "ipack:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001034 ADD(alias, "f", format != IPACK_ANY_FORMAT, format);
1035 ADD(alias, "v", vendor != IPACK_ANY_ID, vendor);
1036 ADD(alias, "d", device != IPACK_ANY_ID, device);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001037 add_wildcard(alias);
1038 return 1;
1039}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001040ADD_TO_DEVTABLE("ipack", ipack_device_id, do_ipack_entry);
Jens Taprogge849e0ad2012-09-04 17:01:13 +02001041
Dave Martin523817b2011-10-05 14:44:57 +01001042/*
1043 * Append a match expression for a single masked hex digit.
1044 * outp points to a pointer to the character at which to append.
1045 * *outp is updated on return to point just after the appended text,
1046 * to facilitate further appending.
1047 */
1048static void append_nibble_mask(char **outp,
1049 unsigned int nibble, unsigned int mask)
1050{
1051 char *p = *outp;
1052 unsigned int i;
1053
1054 switch (mask) {
1055 case 0:
1056 *p++ = '?';
1057 break;
1058
1059 case 0xf:
1060 p += sprintf(p, "%X", nibble);
1061 break;
1062
1063 default:
1064 /*
1065 * Dumbly emit a match pattern for all possible matching
1066 * digits. This could be improved in some cases using ranges,
1067 * but it has the advantage of being trivially correct, and is
1068 * often optimal.
1069 */
1070 *p++ = '[';
1071 for (i = 0; i < 0x10; i++)
1072 if ((i & mask) == nibble)
1073 p += sprintf(p, "%X", i);
1074 *p++ = ']';
1075 }
1076
1077 /* Ensure that the string remains NUL-terminated: */
1078 *p = '\0';
1079
1080 /* Advance the caller's end-of-string pointer: */
1081 *outp = p;
1082}
1083
1084/*
1085 * looks like: "amba:dN"
1086 *
1087 * N is exactly 8 digits, where each is an upper-case hex digit, or
1088 * a ? or [] pattern matching exactly one digit.
1089 */
1090static int do_amba_entry(const char *filename,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001091 void *symval, char *alias)
Dave Martin523817b2011-10-05 14:44:57 +01001092{
1093 unsigned int digit;
1094 char *p = alias;
Andreas Schwab6543bec2013-01-20 17:58:47 +01001095 DEF_FIELD(symval, amba_id, id);
1096 DEF_FIELD(symval, amba_id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001097
Andreas Schwab6543bec2013-01-20 17:58:47 +01001098 if ((id & mask) != id)
Dave Martin523817b2011-10-05 14:44:57 +01001099 fatal("%s: Masked-off bit(s) of AMBA device ID are non-zero: "
1100 "id=0x%08X, mask=0x%08X. Please fix this driver.\n",
Andreas Schwab6543bec2013-01-20 17:58:47 +01001101 filename, id, mask);
Dave Martin523817b2011-10-05 14:44:57 +01001102
1103 p += sprintf(alias, "amba:d");
1104 for (digit = 0; digit < 8; digit++)
1105 append_nibble_mask(&p,
Andreas Schwab6543bec2013-01-20 17:58:47 +01001106 (id >> (4 * (7 - digit))) & 0xf,
1107 (mask >> (4 * (7 - digit))) & 0xf);
Dave Martin523817b2011-10-05 14:44:57 +01001108
1109 return 1;
1110}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001111ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry);
Dave Martin523817b2011-10-05 14:44:57 +01001112
Andi Kleen644e9cb2012-01-26 00:09:05 +01001113/* LOOKS like x86cpu:vendor:VVVV:family:FFFF:model:MMMM:feature:*,FEAT,*
1114 * All fields are numbers. It would be nicer to use strings for vendor
1115 * and feature, but getting those out of the build system here is too
1116 * complicated.
1117 */
1118
Andreas Schwab6543bec2013-01-20 17:58:47 +01001119static int do_x86cpu_entry(const char *filename, void *symval,
Andi Kleen644e9cb2012-01-26 00:09:05 +01001120 char *alias)
1121{
Andreas Schwab6543bec2013-01-20 17:58:47 +01001122 DEF_FIELD(symval, x86_cpu_id, feature);
1123 DEF_FIELD(symval, x86_cpu_id, family);
1124 DEF_FIELD(symval, x86_cpu_id, model);
1125 DEF_FIELD(symval, x86_cpu_id, vendor);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001126
1127 strcpy(alias, "x86cpu:");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001128 ADD(alias, "vendor:", vendor != X86_VENDOR_ANY, vendor);
1129 ADD(alias, ":family:", family != X86_FAMILY_ANY, family);
1130 ADD(alias, ":model:", model != X86_MODEL_ANY, model);
Ben Hutchings5467bdd2012-02-11 22:57:19 +00001131 strcat(alias, ":feature:*");
Andreas Schwab6543bec2013-01-20 17:58:47 +01001132 if (feature != X86_FEATURE_ANY)
1133 sprintf(alias + strlen(alias), "%04X*", feature);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001134 return 1;
1135}
Andreas Schwab6543bec2013-01-20 17:58:47 +01001136ADD_TO_DEVTABLE("x86cpu", x86_cpu_id, do_x86cpu_entry);
Andi Kleen644e9cb2012-01-26 00:09:05 +01001137
Samuel Ortize5354102013-03-27 17:29:53 +02001138/* Looks like: mei:S */
1139static int do_mei_entry(const char *filename, void *symval,
1140 char *alias)
1141{
1142 DEF_FIELD_ADDR(symval, mei_cl_device_id, name);
1143
1144 sprintf(alias, MEI_CL_MODULE_PREFIX "%s", *name);
1145
1146 return 1;
1147}
1148ADD_TO_DEVTABLE("mei", mei_cl_device_id, do_mei_entry);
1149
Alexandre Bounine3bdbb622013-07-03 15:08:58 -07001150/* Looks like: rapidio:vNdNavNadN */
1151static int do_rio_entry(const char *filename,
1152 void *symval, char *alias)
1153{
1154 DEF_FIELD(symval, rio_device_id, did);
1155 DEF_FIELD(symval, rio_device_id, vid);
1156 DEF_FIELD(symval, rio_device_id, asm_did);
1157 DEF_FIELD(symval, rio_device_id, asm_vid);
1158
1159 strcpy(alias, "rapidio:");
1160 ADD(alias, "v", vid != RIO_ANY_ID, vid);
1161 ADD(alias, "d", did != RIO_ANY_ID, did);
1162 ADD(alias, "av", asm_vid != RIO_ANY_ID, asm_vid);
1163 ADD(alias, "ad", asm_did != RIO_ANY_ID, asm_did);
1164
1165 add_wildcard(alias);
1166 return 1;
1167}
1168ADD_TO_DEVTABLE("rapidio", rio_device_id, do_rio_entry);
1169
Rusty Russell626596e2012-01-13 09:32:15 +10301170/* Does namelen bytes of name exactly match the symbol? */
1171static bool sym_is(const char *name, unsigned namelen, const char *symbol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Rusty Russell626596e2012-01-13 09:32:15 +10301173 if (namelen != strlen(symbol))
1174 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Rusty Russell626596e2012-01-13 09:32:15 +10301176 return memcmp(name, symbol, namelen) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177}
1178
1179static void do_table(void *symval, unsigned long size,
1180 unsigned long id_size,
Sam Ravnborgfb33d812006-07-09 16:26:07 +02001181 const char *device_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 void *function,
1183 struct module *mod)
1184{
1185 unsigned int i;
1186 char alias[500];
1187 int (*do_entry)(const char *, void *entry, char *alias) = function;
1188
Kees Cooke0049822007-09-16 11:15:46 +02001189 device_id_check(mod->name, device_id, size, id_size, symval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 /* Leave last one: it's the terminator. */
1191 size -= id_size;
1192
1193 for (i = 0; i < size; i += id_size) {
1194 if (do_entry(mod->name, symval+i, alias)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 buf_printf(&mod->dev_table_buf,
1196 "MODULE_ALIAS(\"%s\");\n", alias);
1197 }
1198 }
1199}
1200
1201/* Create MODULE_ALIAS() statements.
1202 * At this time, we cannot write the actual output C source yet,
1203 * so we write into the mod->dev_table_buf buffer. */
1204void handle_moddevtable(struct module *mod, struct elf_info *info,
1205 Elf_Sym *sym, const char *symname)
1206{
1207 void *symval;
Kees Cooke0049822007-09-16 11:15:46 +02001208 char *zeros = NULL;
Rusty Russell626596e2012-01-13 09:32:15 +10301209 const char *name;
1210 unsigned int namelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 /* We're looking for a section relative symbol */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001213 if (!sym->st_shndx || get_secindex(info, sym) >= info->num_sections)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return;
1215
David Millere88aa7b2012-04-12 14:37:30 -04001216 /* We're looking for an object */
1217 if (ELF_ST_TYPE(sym->st_info) != STT_OBJECT)
1218 return;
1219
Rusty Russell626596e2012-01-13 09:32:15 +10301220 /* All our symbols are of form <prefix>__mod_XXX_device_table. */
1221 name = strstr(symname, "__mod_");
1222 if (!name)
1223 return;
1224 name += strlen("__mod_");
1225 namelen = strlen(name);
1226 if (namelen < strlen("_device_table"))
1227 return;
1228 if (strcmp(name + namelen - strlen("_device_table"), "_device_table"))
1229 return;
1230 namelen -= strlen("_device_table");
1231
Kees Cooke0049822007-09-16 11:15:46 +02001232 /* Handle all-NULL symbols allocated into .bss */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001233 if (info->sechdrs[get_secindex(info, sym)].sh_type & SHT_NOBITS) {
Kees Cooke0049822007-09-16 11:15:46 +02001234 zeros = calloc(1, sym->st_size);
1235 symval = zeros;
1236 } else {
1237 symval = (void *)info->hdr
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001238 + info->sechdrs[get_secindex(info, sym)].sh_offset
Kees Cooke0049822007-09-16 11:15:46 +02001239 + sym->st_value;
1240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Rusty Russell626596e2012-01-13 09:32:15 +10301242 /* First handle the "special" cases */
1243 if (sym_is(name, namelen, "usb"))
Roman Kaganb19dcd92005-04-22 15:07:01 -07001244 do_usb_table(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301245 else if (sym_is(name, namelen, "pnp"))
Kay Sievers22454cb2008-05-28 23:06:47 +02001246 do_pnp_device_entry(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301247 else if (sym_is(name, namelen, "pnp_card"))
Kay Sievers0c81eed2008-02-21 00:35:54 +01001248 do_pnp_card_entries(symval, sym->st_size, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301249 else {
Rusty Russelle49ce142012-01-13 09:32:16 +10301250 struct devtable **p;
Andreas Bießmanndd2a3ac2012-02-24 08:23:53 +01001251 INIT_SECTION(__devtable);
Rusty Russell626596e2012-01-13 09:32:15 +10301252
Rusty Russelle49ce142012-01-13 09:32:16 +10301253 for (p = __start___devtable; p < __stop___devtable; p++) {
1254 if (sym_is(name, namelen, (*p)->device_id)) {
1255 do_table(symval, sym->st_size, (*p)->id_size,
1256 (*p)->device_id, (*p)->function, mod);
Rusty Russell626596e2012-01-13 09:32:15 +10301257 break;
1258 }
1259 }
1260 }
Kees Cooke0049822007-09-16 11:15:46 +02001261 free(zeros);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
1264/* Now add out buffered information to the generated C source */
1265void add_moddevtable(struct buffer *buf, struct module *mod)
1266{
1267 buf_printf(buf, "\n");
1268 buf_write(buf, mod->dev_table_buf.p, mod->dev_table_buf.pos);
1269 free(mod->dev_table_buf.p);
1270}