blob: 823d0731640cc25c8a947834e65b1a906c24a51c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass57251282015-06-23 15:38:43 -06002/*
3 * Copyright (C) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass57251282015-06-23 15:38:43 -06005 */
6
Sean Anderson4d551552020-10-04 21:39:43 -04007#define LOG_CATEGORY UCLASS_SYSCON
8
Simon Glass57251282015-06-23 15:38:43 -06009#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass57251282015-06-23 15:38:43 -060011#include <syscon.h>
12#include <dm.h>
13#include <errno.h>
14#include <regmap.h>
15#include <dm/device-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <dm/device_compat.h>
Simon Glass57251282015-06-23 15:38:43 -060017#include <dm/lists.h>
18#include <dm/root.h>
19#include <linux/err.h>
20
Masahiro Yamadae151a1c2018-04-19 12:14:04 +090021/*
22 * Caution:
Heinrich Schuchardt36da81e2020-08-22 07:16:26 +020023 * This API requires the given device has already been bound to the syscon
24 * driver. For example,
25 *
Masahiro Yamadae151a1c2018-04-19 12:14:04 +090026 * compatible = "syscon", "simple-mfd";
Heinrich Schuchardt36da81e2020-08-22 07:16:26 +020027 *
Masahiro Yamadae151a1c2018-04-19 12:14:04 +090028 * works, but
Heinrich Schuchardt36da81e2020-08-22 07:16:26 +020029 *
Masahiro Yamadae151a1c2018-04-19 12:14:04 +090030 * compatible = "simple-mfd", "syscon";
Heinrich Schuchardt36da81e2020-08-22 07:16:26 +020031 *
32 * does not. The behavior is different from Linux.
Masahiro Yamadae151a1c2018-04-19 12:14:04 +090033 */
Simon Glass57251282015-06-23 15:38:43 -060034struct regmap *syscon_get_regmap(struct udevice *dev)
35{
Simon Glass9f4629b2015-07-06 12:54:38 -060036 struct syscon_uc_info *priv;
Simon Glass57251282015-06-23 15:38:43 -060037
Simon Glass9f4629b2015-07-06 12:54:38 -060038 if (device_get_uclass_id(dev) != UCLASS_SYSCON)
39 return ERR_PTR(-ENOEXEC);
40 priv = dev_get_uclass_priv(dev);
Simon Glass57251282015-06-23 15:38:43 -060041 return priv->regmap;
42}
43
44static int syscon_pre_probe(struct udevice *dev)
45{
46 struct syscon_uc_info *priv = dev_get_uclass_priv(dev);
47
Simon Glass529f57d2019-02-16 20:24:38 -070048 /* Special case for PCI devices, which don't have a regmap */
49 if (device_get_uclass_id(dev->parent) == UCLASS_PCI)
50 return 0;
51
Simon Glass04ecf362016-07-04 11:58:00 -060052 /*
53 * With OF_PLATDATA we really have no way of knowing the format of
54 * the device-specific platform data. So we assume that it starts with
55 * a 'reg' member, and this holds a single address and size. Drivers
56 * using OF_PLATDATA will need to ensure that this is true.
57 */
58#if CONFIG_IS_ENABLED(OF_PLATDATA)
59 struct syscon_base_platdata *plat = dev_get_platdata(dev);
60
61 return regmap_init_mem_platdata(dev, plat->reg, ARRAY_SIZE(plat->reg),
62 &priv->regmap);
63#else
Masahiro Yamadad3581232018-04-19 12:14:03 +090064 return regmap_init_mem(dev_ofnode(dev), &priv->regmap);
Simon Glass04ecf362016-07-04 11:58:00 -060065#endif
Simon Glass57251282015-06-23 15:38:43 -060066}
67
Patrick Delaunaya442e612019-03-07 09:57:13 +010068static int syscon_probe_by_ofnode(ofnode node, struct udevice **devp)
69{
70 struct udevice *dev, *parent;
71 int ret;
72
73 /* found node with "syscon" compatible, not bounded to SYSCON UCLASS */
74 if (!ofnode_device_is_compatible(node, "syscon")) {
Sean Anderson46df2f82020-09-15 10:44:37 -040075 log_debug("invalid compatible for syscon device\n");
Patrick Delaunaya442e612019-03-07 09:57:13 +010076 return -EINVAL;
77 }
78
79 /* bound to driver with same ofnode or to root if not found */
80 if (device_find_global_by_ofnode(node, &parent))
81 parent = dm_root();
82
83 /* force bound to syscon class */
84 ret = device_bind_driver_to_node(parent, "syscon",
85 ofnode_get_name(node),
86 node, &dev);
87 if (ret) {
88 dev_dbg(dev, "unable to bound syscon device\n");
89 return ret;
90 }
91 ret = device_probe(dev);
92 if (ret) {
93 dev_dbg(dev, "unable to probe syscon device\n");
94 return ret;
95 }
96
97 *devp = dev;
98 return 0;
99}
100
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100101struct regmap *syscon_regmap_lookup_by_phandle(struct udevice *dev,
102 const char *name)
103{
104 struct udevice *syscon;
105 struct regmap *r;
Patrick Delaunaya442e612019-03-07 09:57:13 +0100106 u32 phandle;
107 ofnode node;
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100108 int err;
109
110 err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
111 name, &syscon);
112 if (err) {
Patrick Delaunaya442e612019-03-07 09:57:13 +0100113 /* found node with "syscon" compatible, not bounded to SYSCON */
114 err = ofnode_read_u32(dev_ofnode(dev), name, &phandle);
115 if (err)
116 return ERR_PTR(err);
117
118 node = ofnode_get_by_phandle(phandle);
119 if (!ofnode_valid(node)) {
120 dev_dbg(dev, "unable to find syscon device\n");
121 return ERR_PTR(-EINVAL);
122 }
123 err = syscon_probe_by_ofnode(node, &syscon);
124 if (err)
125 return ERR_PTR(-ENODEV);
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100126 }
127
128 r = syscon_get_regmap(syscon);
129 if (!r) {
130 dev_dbg(dev, "unable to find regmap\n");
131 return ERR_PTR(-ENODEV);
132 }
133
134 return r;
135}
136
Simon Glassac94b7b2016-01-17 16:11:08 -0700137int syscon_get_by_driver_data(ulong driver_data, struct udevice **devp)
Simon Glass57251282015-06-23 15:38:43 -0600138{
Simon Glass57251282015-06-23 15:38:43 -0600139 int ret;
140
Simon Glass532f2432016-03-11 22:06:49 -0700141 *devp = NULL;
Simon Glass57251282015-06-23 15:38:43 -0600142
Simon Glassae44caf2020-02-06 09:54:51 -0700143 ret = uclass_first_device_drvdata(UCLASS_SYSCON, driver_data, devp);
144 if (ret)
Simon Glass28dc20f2020-09-27 18:46:17 -0600145 return ret;
Simon Glassae44caf2020-02-06 09:54:51 -0700146
147 return 0;
Simon Glassac94b7b2016-01-17 16:11:08 -0700148}
149
150struct regmap *syscon_get_regmap_by_driver_data(ulong driver_data)
151{
152 struct syscon_uc_info *priv;
153 struct udevice *dev;
154 int ret;
155
156 ret = syscon_get_by_driver_data(driver_data, &dev);
157 if (ret)
158 return ERR_PTR(ret);
159 priv = dev_get_uclass_priv(dev);
160
161 return priv->regmap;
Simon Glass57251282015-06-23 15:38:43 -0600162}
163
164void *syscon_get_first_range(ulong driver_data)
165{
166 struct regmap *map;
167
168 map = syscon_get_regmap_by_driver_data(driver_data);
169 if (IS_ERR(map))
170 return map;
171 return regmap_get_range(map, 0);
172}
173
174UCLASS_DRIVER(syscon) = {
175 .id = UCLASS_SYSCON,
176 .name = "syscon",
Simon Glass41575d82020-12-03 16:55:17 -0700177 .per_device_auto = sizeof(struct syscon_uc_info),
Simon Glass57251282015-06-23 15:38:43 -0600178 .pre_probe = syscon_pre_probe,
179};
Paul Burton8291bc82016-09-08 07:47:37 +0100180
181static const struct udevice_id generic_syscon_ids[] = {
182 { .compatible = "syscon" },
183 { }
184};
185
186U_BOOT_DRIVER(generic_syscon) = {
187 .name = "syscon",
188 .id = UCLASS_SYSCON,
Simon Glass745fb9c2017-07-29 11:34:52 -0600189#if !CONFIG_IS_ENABLED(OF_PLATDATA)
190 .bind = dm_scan_fdt_dev,
191#endif
Paul Burton8291bc82016-09-08 07:47:37 +0100192 .of_match = generic_syscon_ids,
193};
Masahiro Yamadae151a1c2018-04-19 12:14:04 +0900194
195/*
196 * Linux-compatible syscon-to-regmap
197 * The syscon node can be bound to another driver, but still works
198 * as a syscon provider.
199 */
Patrick Delaunayde5bab92018-10-31 16:49:03 +0100200struct regmap *syscon_node_to_regmap(ofnode node)
Masahiro Yamadae151a1c2018-04-19 12:14:04 +0900201{
Patrick Delaunaya442e612019-03-07 09:57:13 +0100202 struct udevice *dev;
203 struct regmap *r;
Masahiro Yamadae151a1c2018-04-19 12:14:04 +0900204
Patrick Delaunaya442e612019-03-07 09:57:13 +0100205 if (uclass_get_device_by_ofnode(UCLASS_SYSCON, node, &dev))
206 if (syscon_probe_by_ofnode(node, &dev))
207 return ERR_PTR(-ENODEV);
Patrick Delaunayde5bab92018-10-31 16:49:03 +0100208
Patrick Delaunaya442e612019-03-07 09:57:13 +0100209 r = syscon_get_regmap(dev);
210 if (!r) {
211 dev_dbg(dev, "unable to find regmap\n");
212 return ERR_PTR(-ENODEV);
213 }
Masahiro Yamadae151a1c2018-04-19 12:14:04 +0900214
Patrick Delaunaya442e612019-03-07 09:57:13 +0100215 return r;
Masahiro Yamadae151a1c2018-04-19 12:14:04 +0900216}