1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) ST-Ericsson SA 2011
5 * Author: Lee Jones <lee.jones@linaro.org> for ST-Ericsson.
8 #include <linux/sysfs.h>
9 #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>
17 #include <linux/glob.h>
19 static DEFINE_IDA(soc_ida
);
21 /* Prototype to allow declarations of DEVICE_ATTR(<foo>) before soc_info_show */
22 static ssize_t
soc_info_show(struct device
*dev
, struct device_attribute
*attr
,
27 struct soc_device_attribute
*attr
;
31 static const struct bus_type soc_bus_type
= {
34 static bool soc_bus_registered
;
36 static DEVICE_ATTR(machine
, 0444, soc_info_show
, NULL
);
37 static DEVICE_ATTR(family
, 0444, soc_info_show
, NULL
);
38 static DEVICE_ATTR(serial_number
, 0444, soc_info_show
, NULL
);
39 static DEVICE_ATTR(soc_id
, 0444, soc_info_show
, NULL
);
40 static DEVICE_ATTR(revision
, 0444, soc_info_show
, NULL
);
42 struct device
*soc_device_to_device(struct soc_device
*soc_dev
)
47 static umode_t
soc_attribute_mode(struct kobject
*kobj
,
48 struct attribute
*attr
,
51 struct device
*dev
= kobj_to_dev(kobj
);
52 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
54 if ((attr
== &dev_attr_machine
.attr
) && soc_dev
->attr
->machine
)
56 if ((attr
== &dev_attr_family
.attr
) && soc_dev
->attr
->family
)
58 if ((attr
== &dev_attr_revision
.attr
) && soc_dev
->attr
->revision
)
60 if ((attr
== &dev_attr_serial_number
.attr
) && soc_dev
->attr
->serial_number
)
62 if ((attr
== &dev_attr_soc_id
.attr
) && soc_dev
->attr
->soc_id
)
65 /* Unknown or unfilled attribute */
69 static ssize_t
soc_info_show(struct device
*dev
, struct device_attribute
*attr
,
72 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
75 if (attr
== &dev_attr_machine
)
76 output
= soc_dev
->attr
->machine
;
77 else if (attr
== &dev_attr_family
)
78 output
= soc_dev
->attr
->family
;
79 else if (attr
== &dev_attr_revision
)
80 output
= soc_dev
->attr
->revision
;
81 else if (attr
== &dev_attr_serial_number
)
82 output
= soc_dev
->attr
->serial_number
;
83 else if (attr
== &dev_attr_soc_id
)
84 output
= soc_dev
->attr
->soc_id
;
88 return sysfs_emit(buf
, "%s\n", output
);
91 static struct attribute
*soc_attr
[] = {
92 &dev_attr_machine
.attr
,
93 &dev_attr_family
.attr
,
94 &dev_attr_serial_number
.attr
,
95 &dev_attr_soc_id
.attr
,
96 &dev_attr_revision
.attr
,
100 static const struct attribute_group soc_attr_group
= {
102 .is_visible
= soc_attribute_mode
,
105 static void soc_release(struct device
*dev
)
107 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
109 ida_free(&soc_ida
, soc_dev
->soc_dev_num
);
110 kfree(soc_dev
->dev
.groups
);
114 static void soc_device_get_machine(struct soc_device_attribute
*soc_dev_attr
)
116 struct device_node
*np
;
118 if (soc_dev_attr
->machine
)
121 np
= of_find_node_by_path("/");
122 of_property_read_string(np
, "model", &soc_dev_attr
->machine
);
126 static struct soc_device_attribute
*early_soc_dev_attr
;
128 struct soc_device
*soc_device_register(struct soc_device_attribute
*soc_dev_attr
)
130 struct soc_device
*soc_dev
;
131 const struct attribute_group
**soc_attr_groups
;
134 soc_device_get_machine(soc_dev_attr
);
136 if (!soc_bus_registered
) {
137 if (early_soc_dev_attr
)
138 return ERR_PTR(-EBUSY
);
139 early_soc_dev_attr
= soc_dev_attr
;
143 soc_dev
= kzalloc(sizeof(*soc_dev
), GFP_KERNEL
);
149 soc_attr_groups
= kcalloc(3, sizeof(*soc_attr_groups
), GFP_KERNEL
);
150 if (!soc_attr_groups
) {
154 soc_attr_groups
[0] = &soc_attr_group
;
155 soc_attr_groups
[1] = soc_dev_attr
->custom_attr_group
;
157 /* Fetch a unique (reclaimable) SOC ID. */
158 ret
= ida_alloc(&soc_ida
, GFP_KERNEL
);
161 soc_dev
->soc_dev_num
= ret
;
163 soc_dev
->attr
= soc_dev_attr
;
164 soc_dev
->dev
.bus
= &soc_bus_type
;
165 soc_dev
->dev
.groups
= soc_attr_groups
;
166 soc_dev
->dev
.release
= soc_release
;
168 dev_set_name(&soc_dev
->dev
, "soc%d", soc_dev
->soc_dev_num
);
170 ret
= device_register(&soc_dev
->dev
);
172 put_device(&soc_dev
->dev
);
179 kfree(soc_attr_groups
);
185 EXPORT_SYMBOL_GPL(soc_device_register
);
187 /* Ensure soc_dev->attr is freed after calling soc_device_unregister. */
188 void soc_device_unregister(struct soc_device
*soc_dev
)
190 device_unregister(&soc_dev
->dev
);
191 early_soc_dev_attr
= NULL
;
193 EXPORT_SYMBOL_GPL(soc_device_unregister
);
195 static int __init
soc_bus_register(void)
199 ret
= bus_register(&soc_bus_type
);
202 soc_bus_registered
= true;
204 if (early_soc_dev_attr
)
205 return PTR_ERR(soc_device_register(early_soc_dev_attr
));
209 core_initcall(soc_bus_register
);
211 static int soc_device_match_attr(const struct soc_device_attribute
*attr
,
212 const struct soc_device_attribute
*match
)
214 if (match
->machine
&&
215 (!attr
->machine
|| !glob_match(match
->machine
, attr
->machine
)))
219 (!attr
->family
|| !glob_match(match
->family
, attr
->family
)))
222 if (match
->revision
&&
223 (!attr
->revision
|| !glob_match(match
->revision
, attr
->revision
)))
227 (!attr
->soc_id
|| !glob_match(match
->soc_id
, attr
->soc_id
)))
233 static int soc_device_match_one(struct device
*dev
, void *arg
)
235 struct soc_device
*soc_dev
= container_of(dev
, struct soc_device
, dev
);
237 return soc_device_match_attr(soc_dev
->attr
, arg
);
241 * soc_device_match - identify the SoC in the machine
242 * @matches: zero-terminated array of possible matches
244 * returns the first matching entry of the argument array, or NULL
245 * if none of them match.
247 * This function is meant as a helper in place of of_match_node()
248 * in cases where either no device tree is available or the information
249 * in a device node is insufficient to identify a particular variant
250 * by its compatible strings or other properties. For new devices,
251 * the DT binding should always provide unique compatible strings
252 * that allow the use of of_match_node() instead.
254 * The calling function can use the .data entry of the
255 * soc_device_attribute to pass a structure or function pointer for
258 const struct soc_device_attribute
*soc_device_match(
259 const struct soc_device_attribute
*matches
)
266 while (matches
->machine
|| matches
->family
|| matches
->revision
||
268 ret
= bus_for_each_dev(&soc_bus_type
, NULL
, (void *)matches
,
269 soc_device_match_one
);
270 if (ret
< 0 && early_soc_dev_attr
)
271 ret
= soc_device_match_attr(early_soc_dev_attr
,
282 EXPORT_SYMBOL_GPL(soc_device_match
);