blob: ddb32c890fa6afe44e7c5e1dd9aca6e456141cc5 [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>
16
Lee Jones3a4ffe92012-03-17 09:17:49 +000017static DEFINE_IDA(soc_ida);
Lee Jones74d1d822012-02-06 11:22:22 -080018
19static ssize_t soc_info_get(struct device *dev,
20 struct device_attribute *attr,
21 char *buf);
22
23struct soc_device {
24 struct device dev;
25 struct soc_device_attribute *attr;
26 int soc_dev_num;
27};
28
29static struct bus_type soc_bus_type = {
30 .name = "soc",
31};
32
33static DEVICE_ATTR(machine, S_IRUGO, soc_info_get, NULL);
34static DEVICE_ATTR(family, S_IRUGO, soc_info_get, NULL);
35static DEVICE_ATTR(soc_id, S_IRUGO, soc_info_get, NULL);
36static DEVICE_ATTR(revision, S_IRUGO, soc_info_get, NULL);
37
38struct device *soc_device_to_device(struct soc_device *soc_dev)
39{
40 return &soc_dev->dev;
41}
42
Al Viro726592a2012-05-19 10:00:52 -040043static umode_t soc_attribute_mode(struct kobject *kobj,
Lavinia Tache2071b952015-03-08 22:33:44 +020044 struct attribute *attr,
45 int index)
Lee Jones74d1d822012-02-06 11:22:22 -080046{
47 struct device *dev = container_of(kobj, struct device, kobj);
48 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
49
50 if ((attr == &dev_attr_machine.attr)
51 && (soc_dev->attr->machine != NULL))
52 return attr->mode;
53 if ((attr == &dev_attr_family.attr)
54 && (soc_dev->attr->family != NULL))
55 return attr->mode;
56 if ((attr == &dev_attr_revision.attr)
57 && (soc_dev->attr->revision != NULL))
58 return attr->mode;
59 if ((attr == &dev_attr_soc_id.attr)
60 && (soc_dev->attr->soc_id != NULL))
Lavinia Tache2071b952015-03-08 22:33:44 +020061 return attr->mode;
Lee Jones74d1d822012-02-06 11:22:22 -080062
63 /* Unknown or unfilled attribute. */
64 return 0;
65}
66
67static ssize_t soc_info_get(struct device *dev,
68 struct device_attribute *attr,
69 char *buf)
70{
71 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
72
73 if (attr == &dev_attr_machine)
74 return sprintf(buf, "%s\n", soc_dev->attr->machine);
75 if (attr == &dev_attr_family)
76 return sprintf(buf, "%s\n", soc_dev->attr->family);
77 if (attr == &dev_attr_revision)
78 return sprintf(buf, "%s\n", soc_dev->attr->revision);
79 if (attr == &dev_attr_soc_id)
80 return sprintf(buf, "%s\n", soc_dev->attr->soc_id);
81
82 return -EINVAL;
83
84}
85
86static struct attribute *soc_attr[] = {
87 &dev_attr_machine.attr,
88 &dev_attr_family.attr,
89 &dev_attr_soc_id.attr,
90 &dev_attr_revision.attr,
91 NULL,
92};
93
94static const struct attribute_group soc_attr_group = {
95 .attrs = soc_attr,
96 .is_visible = soc_attribute_mode,
97};
98
99static const struct attribute_group *soc_attr_groups[] = {
100 &soc_attr_group,
101 NULL,
102};
103
104static void soc_release(struct device *dev)
105{
106 struct soc_device *soc_dev = container_of(dev, struct soc_device, dev);
107
108 kfree(soc_dev);
109}
110
111struct soc_device *soc_device_register(struct soc_device_attribute *soc_dev_attr)
112{
113 struct soc_device *soc_dev;
114 int ret;
115
116 soc_dev = kzalloc(sizeof(*soc_dev), GFP_KERNEL);
117 if (!soc_dev) {
Lavinia Tache2071b952015-03-08 22:33:44 +0200118 ret = -ENOMEM;
Lee Jones74d1d822012-02-06 11:22:22 -0800119 goto out1;
120 }
121
122 /* Fetch a unique (reclaimable) SOC ID. */
Lee Duncancfcf6a92015-10-01 11:59:09 -0700123 ret = ida_simple_get(&soc_ida, 0, 0, GFP_KERNEL);
124 if (ret < 0)
Lavinia Tache2071b952015-03-08 22:33:44 +0200125 goto out2;
Lee Duncancfcf6a92015-10-01 11:59:09 -0700126 soc_dev->soc_dev_num = ret;
Lee Jones74d1d822012-02-06 11:22:22 -0800127
128 soc_dev->attr = soc_dev_attr;
129 soc_dev->dev.bus = &soc_bus_type;
130 soc_dev->dev.groups = soc_attr_groups;
131 soc_dev->dev.release = soc_release;
132
133 dev_set_name(&soc_dev->dev, "soc%d", soc_dev->soc_dev_num);
134
135 ret = device_register(&soc_dev->dev);
136 if (ret)
137 goto out3;
138
139 return soc_dev;
140
141out3:
Lee Duncancfcf6a92015-10-01 11:59:09 -0700142 ida_simple_remove(&soc_ida, soc_dev->soc_dev_num);
Lee Jones74d1d822012-02-06 11:22:22 -0800143out2:
144 kfree(soc_dev);
145out1:
146 return ERR_PTR(ret);
147}
Vinod Koul9c14d492019-07-24 04:05:12 +0530148EXPORT_SYMBOL_GPL(soc_device_register);
Lee Jones74d1d822012-02-06 11:22:22 -0800149
150/* Ensure soc_dev->attr is freed prior to calling soc_device_unregister. */
151void soc_device_unregister(struct soc_device *soc_dev)
152{
Lee Duncancfcf6a92015-10-01 11:59:09 -0700153 ida_simple_remove(&soc_ida, soc_dev->soc_dev_num);
Lee Jones74d1d822012-02-06 11:22:22 -0800154
155 device_unregister(&soc_dev->dev);
156}
Vinod Koul9c14d492019-07-24 04:05:12 +0530157EXPORT_SYMBOL_GPL(soc_device_unregister);
Lee Jones74d1d822012-02-06 11:22:22 -0800158
159static int __init soc_bus_register(void)
160{
Lee Jones74d1d822012-02-06 11:22:22 -0800161 return bus_register(&soc_bus_type);
162}
163core_initcall(soc_bus_register);