2 * System Control Driver
4 * Copyright (C) 2012 Freescale Semiconductor, Inc.
5 * Copyright (C) 2012 Linaro Ltd.
7 * Author: Dong Aisheng <dong.aisheng@linaro.org>
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
;
80 * search for reg-io-width property in DT. If it is not provided,
81 * default to 4 bytes. regmap_init_mmio will return an error if values
82 * are invalid so there is no need to check them here.
84 ret
= of_property_read_u32(np
, "reg-io-width", ®_io_width
);
88 syscon_config
.reg_stride
= reg_io_width
;
89 syscon_config
.val_bits
= reg_io_width
* 8;
90 syscon_config
.max_register
= resource_size(&res
) - reg_io_width
;
92 regmap
= regmap_init_mmio(NULL
, base
, &syscon_config
);
94 pr_err("regmap init failed\n");
95 ret
= PTR_ERR(regmap
);
99 syscon
->regmap
= regmap
;
102 spin_lock(&syscon_list_slock
);
103 list_add_tail(&syscon
->list
, &syscon_list
);
104 spin_unlock(&syscon_list_slock
);
115 struct regmap
*syscon_node_to_regmap(struct device_node
*np
)
117 struct syscon
*entry
, *syscon
= NULL
;
119 spin_lock(&syscon_list_slock
);
121 list_for_each_entry(entry
, &syscon_list
, list
)
122 if (entry
->np
== np
) {
127 spin_unlock(&syscon_list_slock
);
130 syscon
= of_syscon_register(np
);
133 return ERR_CAST(syscon
);
135 return syscon
->regmap
;
137 EXPORT_SYMBOL_GPL(syscon_node_to_regmap
);
139 struct regmap
*syscon_regmap_lookup_by_compatible(const char *s
)
141 struct device_node
*syscon_np
;
142 struct regmap
*regmap
;
144 syscon_np
= of_find_compatible_node(NULL
, NULL
, s
);
146 return ERR_PTR(-ENODEV
);
148 regmap
= syscon_node_to_regmap(syscon_np
);
149 of_node_put(syscon_np
);
153 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_compatible
);
155 static int syscon_match_pdevname(struct device
*dev
, void *data
)
157 return !strcmp(dev_name(dev
), (const char *)data
);
160 struct regmap
*syscon_regmap_lookup_by_pdevname(const char *s
)
163 struct syscon
*syscon
;
165 dev
= driver_find_device(&syscon_driver
.driver
, NULL
, (void *)s
,
166 syscon_match_pdevname
);
168 return ERR_PTR(-EPROBE_DEFER
);
170 syscon
= dev_get_drvdata(dev
);
172 return syscon
->regmap
;
174 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_pdevname
);
176 struct regmap
*syscon_regmap_lookup_by_phandle(struct device_node
*np
,
177 const char *property
)
179 struct device_node
*syscon_np
;
180 struct regmap
*regmap
;
183 syscon_np
= of_parse_phandle(np
, property
, 0);
188 return ERR_PTR(-ENODEV
);
190 regmap
= syscon_node_to_regmap(syscon_np
);
191 of_node_put(syscon_np
);
195 EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle
);
197 static int syscon_probe(struct platform_device
*pdev
)
199 struct device
*dev
= &pdev
->dev
;
200 struct syscon_platform_data
*pdata
= dev_get_platdata(dev
);
201 struct syscon
*syscon
;
202 struct regmap_config syscon_config
= syscon_regmap_config
;
203 struct resource
*res
;
206 syscon
= devm_kzalloc(dev
, sizeof(*syscon
), GFP_KERNEL
);
210 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
214 base
= devm_ioremap(dev
, res
->start
, resource_size(res
));
218 syscon_config
.max_register
= res
->end
- res
->start
- 3;
220 syscon_config
.name
= pdata
->label
;
221 syscon
->regmap
= devm_regmap_init_mmio(dev
, base
, &syscon_config
);
222 if (IS_ERR(syscon
->regmap
)) {
223 dev_err(dev
, "regmap init failed\n");
224 return PTR_ERR(syscon
->regmap
);
227 platform_set_drvdata(pdev
, syscon
);
229 dev_dbg(dev
, "regmap %pR registered\n", res
);
234 static const struct platform_device_id syscon_ids
[] = {
239 static struct platform_driver syscon_driver
= {
243 .probe
= syscon_probe
,
244 .id_table
= syscon_ids
,
247 static int __init
syscon_init(void)
249 return platform_driver_register(&syscon_driver
);
251 postcore_initcall(syscon_init
);
253 static void __exit
syscon_exit(void)
255 platform_driver_unregister(&syscon_driver
);
257 module_exit(syscon_exit
);
259 MODULE_AUTHOR("Dong Aisheng <dong.aisheng@linaro.org>");
260 MODULE_DESCRIPTION("System Control driver");
261 MODULE_LICENSE("GPL v2");