2 * Copyright (C) ST-Ericsson SA 2011
4 * Author: Lee Jones <lee.jones@linaro.org> for ST-Ericsson.
5 * License terms: GNU General Public License (GPL), version 2
8 #include <linux/sysfs.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/stat.h>
12 #include <linux/slab.h>
13 #include <linux/idr.h>
14 #include <linux/spinlock.h>
15 #include <linux/sys_soc.h>
16 #include <linux/err.h>
18 static DEFINE_IDA(soc_ida
);
19 static DEFINE_SPINLOCK(soc_lock
);
21 static ssize_t
soc_info_get(struct device
*dev
,
22 struct device_attribute
*attr
,
27 struct soc_device_attribute
*attr
;
31 static struct bus_type soc_bus_type
= {
35 static DEVICE_ATTR(machine
, S_IRUGO
, soc_info_get
, NULL
);
36 static DEVICE_ATTR(family
, S_IRUGO
, soc_info_get
, NULL
);
37 static DEVICE_ATTR(soc_id
, S_IRUGO
, soc_info_get
, NULL
);
38 static DEVICE_ATTR(revision
, S_IRUGO
, soc_info_get
, NULL
);
40 struct device
*soc_device_to_device(struct soc_device
*soc_dev
)
45 static umode_t
soc_attribute_mode(struct kobject
*kobj
,
46 struct attribute
*attr
,
49 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
50 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
52 if ((attr
== &dev_attr_machine
.attr
)
53 && (soc_dev
->attr
->machine
!= NULL
))
55 if ((attr
== &dev_attr_family
.attr
)
56 && (soc_dev
->attr
->family
!= NULL
))
58 if ((attr
== &dev_attr_revision
.attr
)
59 && (soc_dev
->attr
->revision
!= NULL
))
61 if ((attr
== &dev_attr_soc_id
.attr
)
62 && (soc_dev
->attr
->soc_id
!= NULL
))
65 /* Unknown or unfilled attribute. */
69 static ssize_t
soc_info_get(struct device
*dev
,
70 struct device_attribute
*attr
,
73 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
75 if (attr
== &dev_attr_machine
)
76 return sprintf(buf
, "%s\n", soc_dev
->attr
->machine
);
77 if (attr
== &dev_attr_family
)
78 return sprintf(buf
, "%s\n", soc_dev
->attr
->family
);
79 if (attr
== &dev_attr_revision
)
80 return sprintf(buf
, "%s\n", soc_dev
->attr
->revision
);
81 if (attr
== &dev_attr_soc_id
)
82 return sprintf(buf
, "%s\n", soc_dev
->attr
->soc_id
);
88 static struct attribute
*soc_attr
[] = {
89 &dev_attr_machine
.attr
,
90 &dev_attr_family
.attr
,
91 &dev_attr_soc_id
.attr
,
92 &dev_attr_revision
.attr
,
96 static const struct attribute_group soc_attr_group
= {
98 .is_visible
= soc_attribute_mode
,
101 static const struct attribute_group
*soc_attr_groups
[] = {
106 static void soc_release(struct device
*dev
)
108 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
113 struct soc_device
*soc_device_register(struct soc_device_attribute
*soc_dev_attr
)
115 struct soc_device
*soc_dev
;
118 soc_dev
= kzalloc(sizeof(*soc_dev
), GFP_KERNEL
);
124 /* Fetch a unique (reclaimable) SOC ID. */
126 if (!ida_pre_get(&soc_ida
, GFP_KERNEL
)) {
131 spin_lock(&soc_lock
);
132 ret
= ida_get_new(&soc_ida
, &soc_dev
->soc_dev_num
);
133 spin_unlock(&soc_lock
);
135 } while (ret
== -EAGAIN
);
140 soc_dev
->attr
= soc_dev_attr
;
141 soc_dev
->dev
.bus
= &soc_bus_type
;
142 soc_dev
->dev
.groups
= soc_attr_groups
;
143 soc_dev
->dev
.release
= soc_release
;
145 dev_set_name(&soc_dev
->dev
, "soc%d", soc_dev
->soc_dev_num
);
147 ret
= device_register(&soc_dev
->dev
);
154 ida_remove(&soc_ida
, soc_dev
->soc_dev_num
);
161 /* Ensure soc_dev->attr is freed prior to calling soc_device_unregister. */
162 void soc_device_unregister(struct soc_device
*soc_dev
)
164 ida_remove(&soc_ida
, soc_dev
->soc_dev_num
);
166 device_unregister(&soc_dev
->dev
);
169 static int __init
soc_bus_register(void)
171 return bus_register(&soc_bus_type
);
173 core_initcall(soc_bus_register
);
175 static void __exit
soc_bus_unregister(void)
177 ida_destroy(&soc_ida
);
179 bus_unregister(&soc_bus_type
);
181 module_exit(soc_bus_unregister
);