blob: 8f3db32fac8bbe040b9a2a638ccbecd744ef1766 [file] [log] [blame]
Paul Mackerras2e686bc2005-10-06 13:22:17 +10001#include <linux/string.h>
2#include <linux/kernel.h>
Stephen Rothwellf85ff302007-05-01 16:40:36 +10003#include <linux/of.h>
Paul Mackerras2e686bc2005-10-06 13:22:17 +10004#include <linux/init.h>
5#include <linux/module.h>
6#include <linux/mod_devicetable.h>
Paul Mackerras734d6522005-10-31 13:57:01 +11007#include <linux/slab.h>
8
Paul Mackerras2e686bc2005-10-06 13:22:17 +10009#include <asm/errno.h>
10#include <asm/of_device.h>
11
Sylvain Munautde411892007-05-07 01:38:46 +100012ssize_t of_device_get_modalias(struct of_device *ofdev,
13 char *str, ssize_t len)
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010014{
15 const char *compat;
16 int cplen, i;
17 ssize_t tsize, csize, repend;
18
19 /* Name & Type */
20 csize = snprintf(str, len, "of:N%sT%s",
21 ofdev->node->name, ofdev->node->type);
22
23 /* Get compatible property if any */
Stephen Rothwellb3a6d2a2007-04-13 17:14:22 +100024 compat = of_get_property(ofdev->node, "compatible", &cplen);
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010025 if (!compat)
26 return csize;
27
28 /* Find true end (we tolerate multiple \0 at the end */
29 for (i=(cplen-1); i>=0 && !compat[i]; i--)
30 cplen--;
31 if (!cplen)
32 return csize;
33 cplen++;
34
35 /* Check space (need cplen+1 chars including final \0) */
36 tsize = csize + cplen;
37 repend = tsize;
38
39 if (csize>=len) /* @ the limit, all is already filled */
40 return tsize;
41
42 if (tsize>=len) { /* limit compat list */
43 cplen = len-csize-1;
44 repend = len;
45 }
46
47 /* Copy and do char replacement */
48 memcpy(&str[csize+1], compat, cplen);
49 for (i=csize; i<repend; i++) {
50 char c = str[i];
51 if (c=='\0')
52 str[i] = 'C';
53 else if (c==' ')
54 str[i] = '_';
55 }
56
57 return tsize;
58}
59
Kay Sievers7eff2e72007-08-14 15:15:12 +020060int of_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010061{
62 struct of_device *ofdev;
63 const char *compat;
Kay Sievers7eff2e72007-08-14 15:15:12 +020064 int seen = 0, cplen, sl;
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010065
66 if (!dev)
67 return -ENODEV;
68
69 ofdev = to_of_device(dev);
70
Kay Sievers7eff2e72007-08-14 15:15:12 +020071 if (add_uevent_var(env, "OF_NAME=%s", ofdev->node->name))
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010072 return -ENOMEM;
73
Kay Sievers7eff2e72007-08-14 15:15:12 +020074 if (add_uevent_var(env, "OF_TYPE=%s", ofdev->node->type))
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010075 return -ENOMEM;
76
77 /* Since the compatible field can contain pretty much anything
78 * it's not really legal to split it out with commas. We split it
79 * up using a number of environment variables instead. */
80
Stephen Rothwellb3a6d2a2007-04-13 17:14:22 +100081 compat = of_get_property(ofdev->node, "compatible", &cplen);
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010082 while (compat && *compat && cplen > 0) {
Kay Sievers7eff2e72007-08-14 15:15:12 +020083 if (add_uevent_var(env, "OF_COMPATIBLE_%d=%s", seen, compat))
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010084 return -ENOMEM;
85
86 sl = strlen (compat) + 1;
87 compat += sl;
88 cplen -= sl;
89 seen++;
90 }
91
Kay Sievers7eff2e72007-08-14 15:15:12 +020092 if (add_uevent_var(env, "OF_COMPATIBLE_N=%d", seen))
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010093 return -ENOMEM;
94
95 /* modalias is trickier, we add it in 2 steps */
Kay Sievers7eff2e72007-08-14 15:15:12 +020096 if (add_uevent_var(env, "MODALIAS="))
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +010097 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +020098 sl = of_device_get_modalias(ofdev, &env->buf[env->buflen-1],
99 sizeof(env->buf) - env->buflen);
100 if (sl >= (sizeof(env->buf) - env->buflen))
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +0100101 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200102 env->buflen += sl;
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +0100103
104 return 0;
105}
Sylvain Munauteb0cb8a2007-02-12 23:13:25 +0100106EXPORT_SYMBOL(of_device_uevent);
Sylvain Munautde411892007-05-07 01:38:46 +1000107EXPORT_SYMBOL(of_device_get_modalias);