2 * System Control Driver
4 * Copyright (C) 2012 Freescale Semiconductor, Inc.
5 * Copyright (C) 2012 Linaro Ltd.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
15 #include <linux/err.h>
17 #include <linux/module.h>
18 #include <linux/list.h>
20 #include <linux/of_address.h>
21 #include <linux/of_platform.h>
22 #include <linux/platform_data/syscon.h>
23 #include <linux/platform_device.h>
24 #include <linux/regmap.h>
25 #include <linux/mfd/syscon.h>
26 #include <linux/slab.h>
28 static struct platform_driver syscon_driver;
30 static DEFINE_SPINLOCK(syscon_list_slock);
31 static LIST_HEAD(syscon_list);
34 struct device_node *np;
35 struct regmap *regmap;
36 struct list_head list;
39 static const struct regmap_config syscon_regmap_config = {
45 static struct syscon *of_syscon_register(struct device_node *np)
47 struct syscon *syscon;
48 struct regmap *regmap;
52 struct regmap_config syscon_config = syscon_regmap_config;
55 if (!of_device_is_compatible(np, "syscon"))
56 return ERR_PTR(-EINVAL);
58 syscon = kzalloc(sizeof(*syscon), GFP_KERNEL);
60 return ERR_PTR(-ENOMEM);
62 if (of_address_to_resource(np, 0, &res)) {
67 base = ioremap(res.start, resource_size(&res));
73 /* Parse the device's DT node for an endianness specification */
74 if (of_property_read_bool(np, "big-endian"))
75 syscon_config.val_format_endian = REGMAP_ENDIAN_BIG;
76 else if (of_property_read_bool(np, "little-endian"))
77 syscon_config.val_format_endian = REGMAP_ENDIAN_LITTLE;
78 else if (of_property_read_bool(np, "native-endian"))
79 syscon_config.val_format_endian = REGMAP_ENDIAN_NATIVE;
82 * search for reg-io-width property in DT. If it is not provided,
83 * default to 4 bytes. regmap_init_mmio will return an error if values
84 * are invalid so there is no need to check them here.
86 ret = of_property_read_u32(np, "reg-io-width", ®_io_width);
90 syscon_config.reg_stride = reg_io_width;
91 syscon_config.val_bits = reg_io_width * 8;
92 syscon_config.max_register = resource_size(&res) - reg_io_width;
94 regmap = regmap_init_mmio(NULL, base, &syscon_config);
96 pr_err("regmap init failed\n");
97 ret = PTR_ERR(regmap);
101 syscon->regmap = regmap;
104 spin_lock(&syscon_list_slock);
105 list_add_tail(&syscon->list, &syscon_list);
106 spin_unlock(&syscon_list_slock);
117 struct regmap *syscon_node_to_regmap(struct device_node *np)
119 struct syscon *entry, *syscon = NULL;
121 spin_lock(&syscon_list_slock);
123 list_for_each_entry(entry, &syscon_list, list)
124 if (entry->np == np) {
129 spin_unlock(&syscon_list_slock);
132 syscon = of_syscon_register(np);
135 return ERR_CAST(syscon);
137 return syscon->regmap;
139 EXPORT_SYMBOL_GPL(syscon_node_to_regmap);
141 struct regmap *syscon_regmap_lookup_by_compatible(const char *s)
143 struct device_node *syscon_np;
144 struct regmap *regmap;
146 syscon_np = of_find_compatible_node(NULL, NULL, s);
148 return ERR_PTR(-ENODEV);
150 regmap = syscon_node_to_regmap(syscon_np);
151 of_node_put(syscon_np);
155 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_compatible);
157 static int syscon_match_pdevname(struct device *dev, void *data)
159 return !strcmp(dev_name(dev), (const char *)data);
162 struct regmap *syscon_regmap_lookup_by_pdevname(const char *s)
165 struct syscon *syscon;
167 dev = driver_find_device(&syscon_driver.driver, NULL, (void *)s,
168 syscon_match_pdevname);
170 return ERR_PTR(-EPROBE_DEFER);
172 syscon = dev_get_drvdata(dev);
174 return syscon->regmap;
176 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_pdevname);
178 struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
179 const char *property)
181 struct device_node *syscon_np;
182 struct regmap *regmap;
185 syscon_np = of_parse_phandle(np, property, 0);
190 return ERR_PTR(-ENODEV);
192 regmap = syscon_node_to_regmap(syscon_np);
193 of_node_put(syscon_np);
197 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);
199 static int syscon_probe(struct platform_device *pdev)
201 struct device *dev = &pdev->dev;
202 struct syscon_platform_data *pdata = dev_get_platdata(dev);
203 struct syscon *syscon;
204 struct regmap_config syscon_config = syscon_regmap_config;
205 struct resource *res;
208 syscon = devm_kzalloc(dev, sizeof(*syscon), GFP_KERNEL);
212 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
216 base = devm_ioremap(dev, res->start, resource_size(res));
220 syscon_config.max_register = res->end - res->start - 3;
222 syscon_config.name = pdata->label;
223 syscon->regmap = devm_regmap_init_mmio(dev, base, &syscon_config);
224 if (IS_ERR(syscon->regmap)) {
225 dev_err(dev, "regmap init failed\n");
226 return PTR_ERR(syscon->regmap);
229 platform_set_drvdata(pdev, syscon);
231 dev_dbg(dev, "regmap %pR registered\n", res);
236 static const struct platform_device_id syscon_ids[] = {
241 static struct platform_driver syscon_driver = {
245 .probe = syscon_probe,
246 .id_table = syscon_ids,
249 static int __init syscon_init(void)
251 return platform_driver_register(&syscon_driver);
253 postcore_initcall(syscon_init);
255 static void __exit syscon_exit(void)
257 platform_driver_unregister(&syscon_driver);
259 module_exit(syscon_exit);
262 MODULE_DESCRIPTION("System Control driver");
263 MODULE_LICENSE("GPL v2");