Greg Kroah-Hartman | 989d42e | 2017-11-07 17:30:07 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) ST-Ericsson SA 2011 |
| 4 | * |
| 5 | * Author: Lee Jones <lee.jones@linaro.org> for ST-Ericsson. |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/sysfs.h> |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 9 | #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 Bergmann | c97db7c | 2016-09-21 14:57:19 +0800 | [diff] [blame] | 16 | #include <linux/glob.h> |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 17 | |
Lee Jones | 3a4ffe9 | 2012-03-17 09:17:49 +0000 | [diff] [blame] | 18 | static DEFINE_IDA(soc_ida); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 19 | |
| 20 | static ssize_t soc_info_get(struct device *dev, |
| 21 | struct device_attribute *attr, |
| 22 | char *buf); |
| 23 | |
| 24 | struct soc_device { |
| 25 | struct device dev; |
| 26 | struct soc_device_attribute *attr; |
| 27 | int soc_dev_num; |
| 28 | }; |
| 29 | |
| 30 | static struct bus_type soc_bus_type = { |
| 31 | .name = "soc", |
| 32 | }; |
| 33 | |
| 34 | static DEVICE_ATTR(machine, S_IRUGO, soc_info_get, NULL); |
| 35 | static DEVICE_ATTR(family, S_IRUGO, soc_info_get, NULL); |
Bjorn Andersson | 9aebf4d | 2019-07-24 04:05:11 +0530 | [diff] [blame] | 36 | static DEVICE_ATTR(serial_number, S_IRUGO, soc_info_get, NULL); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 37 | static DEVICE_ATTR(soc_id, S_IRUGO, soc_info_get, NULL); |
| 38 | static DEVICE_ATTR(revision, S_IRUGO, soc_info_get, NULL); |
| 39 | |
| 40 | struct device *soc_device_to_device(struct soc_device *soc_dev) |
| 41 | { |
| 42 | return &soc_dev->dev; |
| 43 | } |
| 44 | |
Al Viro | 726592a | 2012-05-19 10:00:52 -0400 | [diff] [blame] | 45 | static umode_t soc_attribute_mode(struct kobject *kobj, |
Lavinia Tache | 2071b95 | 2015-03-08 22:33:44 +0200 | [diff] [blame] | 46 | struct attribute *attr, |
| 47 | int index) |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 48 | { |
zhouchuangao | baf1d9c | 2020-04-26 13:13:51 +0800 | [diff] [blame^] | 49 | struct device *dev = kobj_to_dev(kobj); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 50 | struct soc_device *soc_dev = container_of(dev, struct soc_device, dev); |
| 51 | |
| 52 | if ((attr == &dev_attr_machine.attr) |
| 53 | && (soc_dev->attr->machine != NULL)) |
| 54 | return attr->mode; |
| 55 | if ((attr == &dev_attr_family.attr) |
| 56 | && (soc_dev->attr->family != NULL)) |
| 57 | return attr->mode; |
| 58 | if ((attr == &dev_attr_revision.attr) |
| 59 | && (soc_dev->attr->revision != NULL)) |
| 60 | return attr->mode; |
Bjorn Andersson | 9aebf4d | 2019-07-24 04:05:11 +0530 | [diff] [blame] | 61 | if ((attr == &dev_attr_serial_number.attr) |
| 62 | && (soc_dev->attr->serial_number != NULL)) |
| 63 | return attr->mode; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 64 | if ((attr == &dev_attr_soc_id.attr) |
| 65 | && (soc_dev->attr->soc_id != NULL)) |
Lavinia Tache | 2071b95 | 2015-03-08 22:33:44 +0200 | [diff] [blame] | 66 | return attr->mode; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 67 | |
| 68 | /* Unknown or unfilled attribute. */ |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static ssize_t soc_info_get(struct device *dev, |
| 73 | struct device_attribute *attr, |
| 74 | char *buf) |
| 75 | { |
| 76 | struct soc_device *soc_dev = container_of(dev, struct soc_device, dev); |
| 77 | |
| 78 | if (attr == &dev_attr_machine) |
| 79 | return sprintf(buf, "%s\n", soc_dev->attr->machine); |
| 80 | if (attr == &dev_attr_family) |
| 81 | return sprintf(buf, "%s\n", soc_dev->attr->family); |
| 82 | if (attr == &dev_attr_revision) |
| 83 | return sprintf(buf, "%s\n", soc_dev->attr->revision); |
Bjorn Andersson | 9aebf4d | 2019-07-24 04:05:11 +0530 | [diff] [blame] | 84 | if (attr == &dev_attr_serial_number) |
| 85 | return sprintf(buf, "%s\n", soc_dev->attr->serial_number); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 86 | if (attr == &dev_attr_soc_id) |
| 87 | return sprintf(buf, "%s\n", soc_dev->attr->soc_id); |
| 88 | |
| 89 | return -EINVAL; |
| 90 | |
| 91 | } |
| 92 | |
| 93 | static struct attribute *soc_attr[] = { |
| 94 | &dev_attr_machine.attr, |
| 95 | &dev_attr_family.attr, |
Bjorn Andersson | 9aebf4d | 2019-07-24 04:05:11 +0530 | [diff] [blame] | 96 | &dev_attr_serial_number.attr, |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 97 | &dev_attr_soc_id.attr, |
| 98 | &dev_attr_revision.attr, |
| 99 | NULL, |
| 100 | }; |
| 101 | |
| 102 | static const struct attribute_group soc_attr_group = { |
| 103 | .attrs = soc_attr, |
| 104 | .is_visible = soc_attribute_mode, |
| 105 | }; |
| 106 | |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 107 | static void soc_release(struct device *dev) |
| 108 | { |
| 109 | struct soc_device *soc_dev = container_of(dev, struct soc_device, dev); |
| 110 | |
Murali Nalajala | c31e731 | 2019-10-07 13:37:42 -0700 | [diff] [blame] | 111 | ida_simple_remove(&soc_ida, soc_dev->soc_dev_num); |
| 112 | kfree(soc_dev->dev.groups); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 113 | kfree(soc_dev); |
| 114 | } |
| 115 | |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 116 | static struct soc_device_attribute *early_soc_dev_attr; |
| 117 | |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 118 | struct soc_device *soc_device_register(struct soc_device_attribute *soc_dev_attr) |
| 119 | { |
| 120 | struct soc_device *soc_dev; |
Murali Nalajala | c31e731 | 2019-10-07 13:37:42 -0700 | [diff] [blame] | 121 | const struct attribute_group **soc_attr_groups; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 122 | int ret; |
| 123 | |
Geert Uytterhoeven | 1da1b362 | 2016-09-27 17:10:29 +0200 | [diff] [blame] | 124 | if (!soc_bus_type.p) { |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 125 | if (early_soc_dev_attr) |
| 126 | return ERR_PTR(-EBUSY); |
| 127 | early_soc_dev_attr = soc_dev_attr; |
| 128 | return NULL; |
Geert Uytterhoeven | 1da1b362 | 2016-09-27 17:10:29 +0200 | [diff] [blame] | 129 | } |
| 130 | |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 131 | soc_dev = kzalloc(sizeof(*soc_dev), GFP_KERNEL); |
| 132 | if (!soc_dev) { |
Lavinia Tache | 2071b95 | 2015-03-08 22:33:44 +0200 | [diff] [blame] | 133 | ret = -ENOMEM; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 134 | goto out1; |
| 135 | } |
| 136 | |
Murali Nalajala | c31e731 | 2019-10-07 13:37:42 -0700 | [diff] [blame] | 137 | soc_attr_groups = kcalloc(3, sizeof(*soc_attr_groups), GFP_KERNEL); |
| 138 | if (!soc_attr_groups) { |
| 139 | ret = -ENOMEM; |
| 140 | goto out2; |
| 141 | } |
| 142 | soc_attr_groups[0] = &soc_attr_group; |
| 143 | soc_attr_groups[1] = soc_dev_attr->custom_attr_group; |
| 144 | |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 145 | /* Fetch a unique (reclaimable) SOC ID. */ |
Lee Duncan | cfcf6a9 | 2015-10-01 11:59:09 -0700 | [diff] [blame] | 146 | ret = ida_simple_get(&soc_ida, 0, 0, GFP_KERNEL); |
| 147 | if (ret < 0) |
Murali Nalajala | c31e731 | 2019-10-07 13:37:42 -0700 | [diff] [blame] | 148 | goto out3; |
Lee Duncan | cfcf6a9 | 2015-10-01 11:59:09 -0700 | [diff] [blame] | 149 | soc_dev->soc_dev_num = ret; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 150 | |
| 151 | soc_dev->attr = soc_dev_attr; |
| 152 | soc_dev->dev.bus = &soc_bus_type; |
| 153 | soc_dev->dev.groups = soc_attr_groups; |
| 154 | soc_dev->dev.release = soc_release; |
| 155 | |
| 156 | dev_set_name(&soc_dev->dev, "soc%d", soc_dev->soc_dev_num); |
| 157 | |
| 158 | ret = device_register(&soc_dev->dev); |
Murali Nalajala | c31e731 | 2019-10-07 13:37:42 -0700 | [diff] [blame] | 159 | if (ret) { |
| 160 | put_device(&soc_dev->dev); |
| 161 | return ERR_PTR(ret); |
| 162 | } |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 163 | |
| 164 | return soc_dev; |
| 165 | |
| 166 | out3: |
Murali Nalajala | c31e731 | 2019-10-07 13:37:42 -0700 | [diff] [blame] | 167 | kfree(soc_attr_groups); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 168 | out2: |
| 169 | kfree(soc_dev); |
| 170 | out1: |
| 171 | return ERR_PTR(ret); |
| 172 | } |
Vinod Koul | f7ccc7a | 2019-07-24 04:05:12 +0530 | [diff] [blame] | 173 | EXPORT_SYMBOL_GPL(soc_device_register); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 174 | |
| 175 | /* Ensure soc_dev->attr is freed prior to calling soc_device_unregister. */ |
| 176 | void soc_device_unregister(struct soc_device *soc_dev) |
| 177 | { |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 178 | device_unregister(&soc_dev->dev); |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 179 | early_soc_dev_attr = NULL; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 180 | } |
Vinod Koul | f7ccc7a | 2019-07-24 04:05:12 +0530 | [diff] [blame] | 181 | EXPORT_SYMBOL_GPL(soc_device_unregister); |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 182 | |
| 183 | static int __init soc_bus_register(void) |
| 184 | { |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 185 | int ret; |
Geert Uytterhoeven | 1da1b362 | 2016-09-27 17:10:29 +0200 | [diff] [blame] | 186 | |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 187 | ret = bus_register(&soc_bus_type); |
| 188 | if (ret) |
| 189 | return ret; |
| 190 | |
| 191 | if (early_soc_dev_attr) |
| 192 | return PTR_ERR(soc_device_register(early_soc_dev_attr)); |
| 193 | |
| 194 | return 0; |
Lee Jones | 74d1d82 | 2012-02-06 11:22:22 -0800 | [diff] [blame] | 195 | } |
| 196 | core_initcall(soc_bus_register); |
Arnd Bergmann | c97db7c | 2016-09-21 14:57:19 +0800 | [diff] [blame] | 197 | |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 198 | static int soc_device_match_attr(const struct soc_device_attribute *attr, |
| 199 | const struct soc_device_attribute *match) |
| 200 | { |
| 201 | if (match->machine && |
| 202 | (!attr->machine || !glob_match(match->machine, attr->machine))) |
| 203 | return 0; |
| 204 | |
| 205 | if (match->family && |
| 206 | (!attr->family || !glob_match(match->family, attr->family))) |
| 207 | return 0; |
| 208 | |
| 209 | if (match->revision && |
| 210 | (!attr->revision || !glob_match(match->revision, attr->revision))) |
| 211 | return 0; |
| 212 | |
| 213 | if (match->soc_id && |
| 214 | (!attr->soc_id || !glob_match(match->soc_id, attr->soc_id))) |
| 215 | return 0; |
| 216 | |
| 217 | return 1; |
| 218 | } |
| 219 | |
Arnd Bergmann | c97db7c | 2016-09-21 14:57:19 +0800 | [diff] [blame] | 220 | static int soc_device_match_one(struct device *dev, void *arg) |
| 221 | { |
| 222 | struct soc_device *soc_dev = container_of(dev, struct soc_device, dev); |
Arnd Bergmann | c97db7c | 2016-09-21 14:57:19 +0800 | [diff] [blame] | 223 | |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 224 | return soc_device_match_attr(soc_dev->attr, arg); |
Arnd Bergmann | c97db7c | 2016-09-21 14:57:19 +0800 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | /* |
| 228 | * soc_device_match - identify the SoC in the machine |
| 229 | * @matches: zero-terminated array of possible matches |
| 230 | * |
| 231 | * returns the first matching entry of the argument array, or NULL |
| 232 | * if none of them match. |
| 233 | * |
| 234 | * This function is meant as a helper in place of of_match_node() |
| 235 | * in cases where either no device tree is available or the information |
| 236 | * in a device node is insufficient to identify a particular variant |
| 237 | * by its compatible strings or other properties. For new devices, |
| 238 | * the DT binding should always provide unique compatible strings |
| 239 | * that allow the use of of_match_node() instead. |
| 240 | * |
| 241 | * The calling function can use the .data entry of the |
| 242 | * soc_device_attribute to pass a structure or function pointer for |
| 243 | * each entry. |
| 244 | */ |
| 245 | const struct soc_device_attribute *soc_device_match( |
| 246 | const struct soc_device_attribute *matches) |
| 247 | { |
| 248 | int ret = 0; |
| 249 | |
| 250 | if (!matches) |
| 251 | return NULL; |
| 252 | |
| 253 | while (!ret) { |
| 254 | if (!(matches->machine || matches->family || |
| 255 | matches->revision || matches->soc_id)) |
| 256 | break; |
| 257 | ret = bus_for_each_dev(&soc_bus_type, NULL, (void *)matches, |
| 258 | soc_device_match_one); |
Geert Uytterhoeven | 6e12db3 | 2017-03-09 14:17:50 +0100 | [diff] [blame] | 259 | if (ret < 0 && early_soc_dev_attr) |
| 260 | ret = soc_device_match_attr(early_soc_dev_attr, |
| 261 | matches); |
Geert Uytterhoeven | 0656db9 | 2017-03-09 12:28:18 +0100 | [diff] [blame] | 262 | if (ret < 0) |
| 263 | return NULL; |
Arnd Bergmann | c97db7c | 2016-09-21 14:57:19 +0800 | [diff] [blame] | 264 | if (!ret) |
| 265 | matches++; |
| 266 | else |
| 267 | return matches; |
| 268 | } |
| 269 | return NULL; |
| 270 | } |
| 271 | EXPORT_SYMBOL_GPL(soc_device_match); |