blob: 5be1d527a0a711c0f03365e556d0a8b899af1997 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6a84aaf2015-06-23 15:38:43 -06002/*
3 * Copyright (C) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass6a84aaf2015-06-23 15:38:43 -06005 */
6
7#include <common.h>
Simon Glass0f2af882020-05-10 11:40:05 -06008#include <log.h>
Simon Glass6a84aaf2015-06-23 15:38:43 -06009#include <syscon.h>
10#include <dm.h>
11#include <errno.h>
12#include <regmap.h>
13#include <dm/device-internal.h>
Simon Glass9bc15642020-02-03 07:36:16 -070014#include <dm/device_compat.h>
Simon Glass6a84aaf2015-06-23 15:38:43 -060015#include <dm/lists.h>
16#include <dm/root.h>
17#include <linux/err.h>
18
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +090019/*
20 * Caution:
Heinrich Schuchardt43b05c02020-08-22 07:16:26 +020021 * This API requires the given device has already been bound to the syscon
22 * driver. For example,
23 *
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +090024 * compatible = "syscon", "simple-mfd";
Heinrich Schuchardt43b05c02020-08-22 07:16:26 +020025 *
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +090026 * works, but
Heinrich Schuchardt43b05c02020-08-22 07:16:26 +020027 *
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +090028 * compatible = "simple-mfd", "syscon";
Heinrich Schuchardt43b05c02020-08-22 07:16:26 +020029 *
30 * does not. The behavior is different from Linux.
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +090031 */
Simon Glass6a84aaf2015-06-23 15:38:43 -060032struct regmap *syscon_get_regmap(struct udevice *dev)
33{
Simon Glassead64972015-07-06 12:54:38 -060034 struct syscon_uc_info *priv;
Simon Glass6a84aaf2015-06-23 15:38:43 -060035
Simon Glassead64972015-07-06 12:54:38 -060036 if (device_get_uclass_id(dev) != UCLASS_SYSCON)
37 return ERR_PTR(-ENOEXEC);
38 priv = dev_get_uclass_priv(dev);
Simon Glass6a84aaf2015-06-23 15:38:43 -060039 return priv->regmap;
40}
41
42static int syscon_pre_probe(struct udevice *dev)
43{
44 struct syscon_uc_info *priv = dev_get_uclass_priv(dev);
45
Simon Glass7e75aba2019-02-16 20:24:38 -070046 /* Special case for PCI devices, which don't have a regmap */
47 if (device_get_uclass_id(dev->parent) == UCLASS_PCI)
48 return 0;
49
Simon Glass73dd0692016-07-04 11:58:00 -060050 /*
51 * With OF_PLATDATA we really have no way of knowing the format of
52 * the device-specific platform data. So we assume that it starts with
53 * a 'reg' member, and this holds a single address and size. Drivers
54 * using OF_PLATDATA will need to ensure that this is true.
55 */
56#if CONFIG_IS_ENABLED(OF_PLATDATA)
57 struct syscon_base_platdata *plat = dev_get_platdata(dev);
58
59 return regmap_init_mem_platdata(dev, plat->reg, ARRAY_SIZE(plat->reg),
60 &priv->regmap);
61#else
Masahiro Yamadae4873e32018-04-19 12:14:03 +090062 return regmap_init_mem(dev_ofnode(dev), &priv->regmap);
Simon Glass73dd0692016-07-04 11:58:00 -060063#endif
Simon Glass6a84aaf2015-06-23 15:38:43 -060064}
65
Patrick Delaunayee010432019-03-07 09:57:13 +010066static int syscon_probe_by_ofnode(ofnode node, struct udevice **devp)
67{
68 struct udevice *dev, *parent;
69 int ret;
70
71 /* found node with "syscon" compatible, not bounded to SYSCON UCLASS */
72 if (!ofnode_device_is_compatible(node, "syscon")) {
Sean Anderson8d06ce42020-09-15 10:44:37 -040073 log_debug("invalid compatible for syscon device\n");
Patrick Delaunayee010432019-03-07 09:57:13 +010074 return -EINVAL;
75 }
76
77 /* bound to driver with same ofnode or to root if not found */
78 if (device_find_global_by_ofnode(node, &parent))
79 parent = dm_root();
80
81 /* force bound to syscon class */
82 ret = device_bind_driver_to_node(parent, "syscon",
83 ofnode_get_name(node),
84 node, &dev);
85 if (ret) {
86 dev_dbg(dev, "unable to bound syscon device\n");
87 return ret;
88 }
89 ret = device_probe(dev);
90 if (ret) {
91 dev_dbg(dev, "unable to probe syscon device\n");
92 return ret;
93 }
94
95 *devp = dev;
96 return 0;
97}
98
Jean-Jacques Hiblotdc44ea42018-11-29 10:57:37 +010099struct regmap *syscon_regmap_lookup_by_phandle(struct udevice *dev,
100 const char *name)
101{
102 struct udevice *syscon;
103 struct regmap *r;
Patrick Delaunayee010432019-03-07 09:57:13 +0100104 u32 phandle;
105 ofnode node;
Jean-Jacques Hiblotdc44ea42018-11-29 10:57:37 +0100106 int err;
107
108 err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev,
109 name, &syscon);
110 if (err) {
Patrick Delaunayee010432019-03-07 09:57:13 +0100111 /* found node with "syscon" compatible, not bounded to SYSCON */
112 err = ofnode_read_u32(dev_ofnode(dev), name, &phandle);
113 if (err)
114 return ERR_PTR(err);
115
116 node = ofnode_get_by_phandle(phandle);
117 if (!ofnode_valid(node)) {
118 dev_dbg(dev, "unable to find syscon device\n");
119 return ERR_PTR(-EINVAL);
120 }
121 err = syscon_probe_by_ofnode(node, &syscon);
122 if (err)
123 return ERR_PTR(-ENODEV);
Jean-Jacques Hiblotdc44ea42018-11-29 10:57:37 +0100124 }
125
126 r = syscon_get_regmap(syscon);
127 if (!r) {
128 dev_dbg(dev, "unable to find regmap\n");
129 return ERR_PTR(-ENODEV);
130 }
131
132 return r;
133}
134
Simon Glass6d5579c2016-01-17 16:11:08 -0700135int syscon_get_by_driver_data(ulong driver_data, struct udevice **devp)
Simon Glass6a84aaf2015-06-23 15:38:43 -0600136{
Simon Glass6a84aaf2015-06-23 15:38:43 -0600137 int ret;
138
Simon Glass36ab8e32016-03-11 22:06:49 -0700139 *devp = NULL;
Simon Glasse5f50c92020-02-06 09:54:51 -0700140
141 ret = uclass_first_device_drvdata(UCLASS_SYSCON, driver_data, devp);
Simon Glass6a84aaf2015-06-23 15:38:43 -0600142 if (ret)
Simon Glasse5f50c92020-02-06 09:54:51 -0700143 return log_msg_ret("find", ret);
Simon Glass6a84aaf2015-06-23 15:38:43 -0600144
Simon Glasse5f50c92020-02-06 09:54:51 -0700145 return 0;
Simon Glass6d5579c2016-01-17 16:11:08 -0700146}
147
148struct regmap *syscon_get_regmap_by_driver_data(ulong driver_data)
149{
150 struct syscon_uc_info *priv;
151 struct udevice *dev;
152 int ret;
153
154 ret = syscon_get_by_driver_data(driver_data, &dev);
155 if (ret)
156 return ERR_PTR(ret);
157 priv = dev_get_uclass_priv(dev);
158
159 return priv->regmap;
Simon Glass6a84aaf2015-06-23 15:38:43 -0600160}
161
162void *syscon_get_first_range(ulong driver_data)
163{
164 struct regmap *map;
165
166 map = syscon_get_regmap_by_driver_data(driver_data);
167 if (IS_ERR(map))
168 return map;
169 return regmap_get_range(map, 0);
170}
171
172UCLASS_DRIVER(syscon) = {
173 .id = UCLASS_SYSCON,
174 .name = "syscon",
175 .per_device_auto_alloc_size = sizeof(struct syscon_uc_info),
176 .pre_probe = syscon_pre_probe,
177};
Paul Burton8c946a72016-09-08 07:47:37 +0100178
179static const struct udevice_id generic_syscon_ids[] = {
180 { .compatible = "syscon" },
181 { }
182};
183
184U_BOOT_DRIVER(generic_syscon) = {
185 .name = "syscon",
186 .id = UCLASS_SYSCON,
Simon Glass8061bc62017-07-29 11:34:52 -0600187#if !CONFIG_IS_ENABLED(OF_PLATDATA)
188 .bind = dm_scan_fdt_dev,
189#endif
Paul Burton8c946a72016-09-08 07:47:37 +0100190 .of_match = generic_syscon_ids,
191};
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +0900192
193/*
194 * Linux-compatible syscon-to-regmap
195 * The syscon node can be bound to another driver, but still works
196 * as a syscon provider.
197 */
Patrick Delaunay8a5a8a72018-10-31 16:49:03 +0100198struct regmap *syscon_node_to_regmap(ofnode node)
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +0900199{
Patrick Delaunayee010432019-03-07 09:57:13 +0100200 struct udevice *dev;
201 struct regmap *r;
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +0900202
Patrick Delaunayee010432019-03-07 09:57:13 +0100203 if (uclass_get_device_by_ofnode(UCLASS_SYSCON, node, &dev))
204 if (syscon_probe_by_ofnode(node, &dev))
205 return ERR_PTR(-ENODEV);
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +0900206
Patrick Delaunayee010432019-03-07 09:57:13 +0100207 r = syscon_get_regmap(dev);
208 if (!r) {
209 dev_dbg(dev, "unable to find regmap\n");
210 return ERR_PTR(-ENODEV);
211 }
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +0900212
Patrick Delaunayee010432019-03-07 09:57:13 +0100213 return r;
Masahiro Yamada60f9a1e2018-04-19 12:14:04 +0900214}