blob: 61aea6381cdf37675595dd3a9a7173ea3fc69eb9 [file] [log] [blame]
Dong Aisheng87d68732012-09-05 10:57:13 +08001/*
2 * System Control Driver
3 *
4 * Copyright (C) 2012 Freescale Semiconductor, Inc.
5 * Copyright (C) 2012 Linaro Ltd.
6 *
7 * Author: Dong Aisheng <dong.aisheng@linaro.org>
8 *
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.
13 */
14
15#include <linux/err.h>
16#include <linux/io.h>
17#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/of_address.h>
20#include <linux/of_platform.h>
21#include <linux/platform_device.h>
22#include <linux/regmap.h>
Fabio Estevam75177de2013-02-11 18:48:00 -020023#include <linux/mfd/syscon.h>
Dong Aisheng87d68732012-09-05 10:57:13 +080024
25static struct platform_driver syscon_driver;
26
27struct syscon {
28 struct device *dev;
29 void __iomem *base;
30 struct regmap *regmap;
31};
32
33static int syscon_match(struct device *dev, void *data)
34{
35 struct syscon *syscon = dev_get_drvdata(dev);
36 struct device_node *dn = data;
37
38 return (syscon->dev->of_node == dn) ? 1 : 0;
39}
40
41struct regmap *syscon_node_to_regmap(struct device_node *np)
42{
43 struct syscon *syscon;
44 struct device *dev;
45
46 dev = driver_find_device(&syscon_driver.driver, NULL, np,
47 syscon_match);
48 if (!dev)
49 return ERR_PTR(-EPROBE_DEFER);
50
51 syscon = dev_get_drvdata(dev);
52
53 return syscon->regmap;
54}
55EXPORT_SYMBOL_GPL(syscon_node_to_regmap);
56
57struct regmap *syscon_regmap_lookup_by_compatible(const char *s)
58{
59 struct device_node *syscon_np;
60 struct regmap *regmap;
61
62 syscon_np = of_find_compatible_node(NULL, NULL, s);
63 if (!syscon_np)
64 return ERR_PTR(-ENODEV);
65
66 regmap = syscon_node_to_regmap(syscon_np);
67 of_node_put(syscon_np);
68
69 return regmap;
70}
71EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_compatible);
72
73struct regmap *syscon_regmap_lookup_by_phandle(struct device_node *np,
74 const char *property)
75{
76 struct device_node *syscon_np;
77 struct regmap *regmap;
78
79 syscon_np = of_parse_phandle(np, property, 0);
80 if (!syscon_np)
81 return ERR_PTR(-ENODEV);
82
83 regmap = syscon_node_to_regmap(syscon_np);
84 of_node_put(syscon_np);
85
86 return regmap;
87}
88EXPORT_SYMBOL_GPL(syscon_regmap_lookup_by_phandle);
89
90static const struct of_device_id of_syscon_match[] = {
91 { .compatible = "syscon", },
92 { },
93};
94
95static struct regmap_config syscon_regmap_config = {
96 .reg_bits = 32,
97 .val_bits = 32,
98 .reg_stride = 4,
99};
100
Bill Pembertonf791be42012-11-19 13:23:04 -0500101static int syscon_probe(struct platform_device *pdev)
Dong Aisheng87d68732012-09-05 10:57:13 +0800102{
103 struct device *dev = &pdev->dev;
104 struct device_node *np = dev->of_node;
105 struct syscon *syscon;
106 struct resource res;
107 int ret;
108
109 if (!np)
110 return -ENOENT;
111
112 syscon = devm_kzalloc(dev, sizeof(struct syscon),
113 GFP_KERNEL);
114 if (!syscon)
115 return -ENOMEM;
116
117 syscon->base = of_iomap(np, 0);
118 if (!syscon->base)
119 return -EADDRNOTAVAIL;
120
121 ret = of_address_to_resource(np, 0, &res);
122 if (ret)
123 return ret;
124
125 syscon_regmap_config.max_register = res.end - res.start - 3;
126 syscon->regmap = devm_regmap_init_mmio(dev, syscon->base,
127 &syscon_regmap_config);
128 if (IS_ERR(syscon->regmap)) {
129 dev_err(dev, "regmap init failed\n");
130 return PTR_ERR(syscon->regmap);
131 }
132
133 syscon->dev = dev;
134 platform_set_drvdata(pdev, syscon);
135
136 dev_info(dev, "syscon regmap start 0x%x end 0x%x registered\n",
137 res.start, res.end);
138
139 return 0;
140}
141
Bill Pemberton4740f732012-11-19 13:26:01 -0500142static int syscon_remove(struct platform_device *pdev)
Dong Aisheng87d68732012-09-05 10:57:13 +0800143{
144 struct syscon *syscon;
145
146 syscon = platform_get_drvdata(pdev);
147 iounmap(syscon->base);
148 platform_set_drvdata(pdev, NULL);
149
150 return 0;
151}
152
153static struct platform_driver syscon_driver = {
154 .driver = {
155 .name = "syscon",
156 .owner = THIS_MODULE,
157 .of_match_table = of_syscon_match,
158 },
159 .probe = syscon_probe,
Bill Pemberton84449212012-11-19 13:20:24 -0500160 .remove = syscon_remove,
Dong Aisheng87d68732012-09-05 10:57:13 +0800161};
162
163static int __init syscon_init(void)
164{
165 return platform_driver_register(&syscon_driver);
166}
167postcore_initcall(syscon_init);
168
169static void __exit syscon_exit(void)
170{
171 platform_driver_unregister(&syscon_driver);
172}
173module_exit(syscon_exit);
174
175MODULE_AUTHOR("Dong Aisheng <dong.aisheng@linaro.org>");
176MODULE_DESCRIPTION("System Control driver");
177MODULE_LICENSE("GPL v2");