blob: 04ee597fc3a3fda00ff69cf0e14d54b5b871cb42 [file] [log] [blame]
Lee Jones74d1d822012-02-06 11:22:22 -08001/*
2 * Copyright (C) ST-Ericsson SA 2011
3 *
4 * Author: Lee Jones <lee.jones@linaro.org> for ST-Ericsson.
5 * License terms: GNU General Public License (GPL), version 2
6 */
7
8#include <linux/sysfs.h>
Lee Jones74d1d822012-02-06 11:22:22 -08009#include <linux/init.h>
10#include <linux/stat.h>
11#include <linux/slab.h>
12#include <linux/idr.h>
13#include <linux/spinlock.h>
14#include <linux/sys_soc.h>
15#include <linux/err.h>
Arnd Bergmannc97db7c2016-09-21 14:57:19 +080016#include <linux/glob.h>
Lee Jones74d1d822012-02-06 11:22:22 -080017
Lee Jones3a4ffe92012-03-17 09:17:49 +000018static DEFINE_IDA(soc_ida);
Lee Jones74d1d822012-02-06 11:22:22 -080019
20static ssize_t soc_info_get(struct device *dev,
21 struct device_attribute *attr,
22 char *buf);
23
24struct soc_device {
25 struct device dev;
26 struct soc_device_attribute *attr;
27 int soc_dev_num;
28};
29
30static struct bus_type soc_bus_type = {
31 .name = "soc",
32};
33
34static DEVICE_ATTR(machine, S_IRUGO, soc_info_get, NULL);
35static DEVICE_ATTR(family, S_IRUGO, soc_info_get, NULL);
36static DEVICE_ATTR(soc_id, S_IRUGO, soc_info_get, NULL);
37static DEVICE_ATTR(revision, S_IRUGO, soc_info_get, NULL);
38
39struct device *soc_device_to_device(struct soc_device *soc_dev)
40{
41 return &soc_dev->dev;
42}
43
Al Viro726592a2012-05-19 10:00:52 -040044static umode_t soc_attribute_mode(struct kobject *kobj,
Lavinia Tache2071b952015-03-08 22:33:44 +020045 struct attribute *attr,
46 int index)
Lee Jones74d1d822012-02-06 11:22:22 -080047{
48 struct device *dev = container_of(kobj, struct device, kobj);
49 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
50
51 if ((attr == &dev_attr_machine.attr)
52 && (soc_dev->attr->machine != NULL))
53 return attr->mode;
54 if ((attr == &dev_attr_family.attr)
55 && (soc_dev->attr->family != NULL))
56 return attr->mode;
57 if ((attr == &dev_attr_revision.attr)
58 && (soc_dev->attr->revision != NULL))
59 return attr->mode;
60 if ((attr == &dev_attr_soc_id.attr)
61 && (soc_dev->attr->soc_id != NULL))
Lavinia Tache2071b952015-03-08 22:33:44 +020062 return attr->mode;
Lee Jones74d1d822012-02-06 11:22:22 -080063
64 /* Unknown or unfilled attribute. */
65 return 0;
66}
67
68static ssize_t soc_info_get(struct device *dev,
69 struct device_attribute *attr,
70 char *buf)
71{
72 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
73
74 if (attr == &dev_attr_machine)
75 return sprintf(buf, "%s\n", soc_dev->attr->machine);
76 if (attr == &dev_attr_family)
77 return sprintf(buf, "%s\n", soc_dev->attr->family);
78 if (attr == &dev_attr_revision)
79 return sprintf(buf, "%s\n", soc_dev->attr->revision);
80 if (attr == &dev_attr_soc_id)
81 return sprintf(buf, "%s\n", soc_dev->attr->soc_id);
82
83 return -EINVAL;
84
85}
86
87static struct attribute *soc_attr[] = {
88 &dev_attr_machine.attr,
89 &dev_attr_family.attr,
90 &dev_attr_soc_id.attr,
91 &dev_attr_revision.attr,
92 NULL,
93};
94
95static const struct attribute_group soc_attr_group = {
96 .attrs = soc_attr,
97 .is_visible = soc_attribute_mode,
98};
99
100static const struct attribute_group *soc_attr_groups[] = {
101 &soc_attr_group,
102 NULL,
103};
104
105static void soc_release(struct device *dev)
106{
107 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
108
109 kfree(soc_dev);
110}
111
112struct soc_device *soc_device_register(struct soc_device_attribute *soc_dev_attr)
113{
114 struct soc_device *soc_dev;
115 int ret;
116
Geert Uytterhoeven1da1b3622016-09-27 17:10:29 +0200117 if (!soc_bus_type.p) {
118 ret = bus_register(&soc_bus_type);
119 if (ret)
120 goto out1;
121 }
122
Lee Jones74d1d822012-02-06 11:22:22 -0800123 soc_dev = kzalloc(sizeof(*soc_dev), GFP_KERNEL);
124 if (!soc_dev) {
Lavinia Tache2071b952015-03-08 22:33:44 +0200125 ret = -ENOMEM;
Lee Jones74d1d822012-02-06 11:22:22 -0800126 goto out1;
127 }
128
129 /* Fetch a unique (reclaimable) SOC ID. */
Lee Duncancfcf6a92015-10-01 11:59:09 -0700130 ret = ida_simple_get(&soc_ida, 0, 0, GFP_KERNEL);
131 if (ret < 0)
Lavinia Tache2071b952015-03-08 22:33:44 +0200132 goto out2;
Lee Duncancfcf6a92015-10-01 11:59:09 -0700133 soc_dev->soc_dev_num = ret;
Lee Jones74d1d822012-02-06 11:22:22 -0800134
135 soc_dev->attr = soc_dev_attr;
136 soc_dev->dev.bus = &soc_bus_type;
137 soc_dev->dev.groups = soc_attr_groups;
138 soc_dev->dev.release = soc_release;
139
140 dev_set_name(&soc_dev->dev, "soc%d", soc_dev->soc_dev_num);
141
142 ret = device_register(&soc_dev->dev);
143 if (ret)
144 goto out3;
145
146 return soc_dev;
147
148out3:
Lee Duncancfcf6a92015-10-01 11:59:09 -0700149 ida_simple_remove(&soc_ida, soc_dev->soc_dev_num);
Lee Jones74d1d822012-02-06 11:22:22 -0800150out2:
151 kfree(soc_dev);
152out1:
153 return ERR_PTR(ret);
154}
155
156/* Ensure soc_dev->attr is freed prior to calling soc_device_unregister. */
157void soc_device_unregister(struct soc_device *soc_dev)
158{
Lee Duncancfcf6a92015-10-01 11:59:09 -0700159 ida_simple_remove(&soc_ida, soc_dev->soc_dev_num);
Lee Jones74d1d822012-02-06 11:22:22 -0800160
161 device_unregister(&soc_dev->dev);
162}
163
164static int __init soc_bus_register(void)
165{
Geert Uytterhoeven1da1b3622016-09-27 17:10:29 +0200166 if (soc_bus_type.p)
167 return 0;
168
Lee Jones74d1d822012-02-06 11:22:22 -0800169 return bus_register(&soc_bus_type);
170}
171core_initcall(soc_bus_register);
Arnd Bergmannc97db7c2016-09-21 14:57:19 +0800172
173static int soc_device_match_one(struct device *dev, void *arg)
174{
175 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
176 const struct soc_device_attribute *match = arg;
177
178 if (match->machine &&
179 !glob_match(match->machine, soc_dev->attr->machine))
180 return 0;
181
182 if (match->family &&
183 !glob_match(match->family, soc_dev->attr->family))
184 return 0;
185
186 if (match->revision &&
187 !glob_match(match->revision, soc_dev->attr->revision))
188 return 0;
189
190 if (match->soc_id &&
191 !glob_match(match->soc_id, soc_dev->attr->soc_id))
192 return 0;
193
194 return 1;
195}
196
197/*
198 * soc_device_match - identify the SoC in the machine
199 * @matches: zero-terminated array of possible matches
200 *
201 * returns the first matching entry of the argument array, or NULL
202 * if none of them match.
203 *
204 * This function is meant as a helper in place of of_match_node()
205 * in cases where either no device tree is available or the information
206 * in a device node is insufficient to identify a particular variant
207 * by its compatible strings or other properties. For new devices,
208 * the DT binding should always provide unique compatible strings
209 * that allow the use of of_match_node() instead.
210 *
211 * The calling function can use the .data entry of the
212 * soc_device_attribute to pass a structure or function pointer for
213 * each entry.
214 */
215const struct soc_device_attribute *soc_device_match(
216 const struct soc_device_attribute *matches)
217{
218 int ret = 0;
219
220 if (!matches)
221 return NULL;
222
223 while (!ret) {
224 if (!(matches->machine || matches->family ||
225 matches->revision || matches->soc_id))
226 break;
227 ret = bus_for_each_dev(&soc_bus_type, NULL, (void *)matches,
228 soc_device_match_one);
229 if (!ret)
230 matches++;
231 else
232 return matches;
233 }
234 return NULL;
235}
236EXPORT_SYMBOL_GPL(soc_device_match);