Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <syscon.h> |
| 9 | #include <dm.h> |
| 10 | #include <errno.h> |
| 11 | #include <regmap.h> |
| 12 | #include <dm/device-internal.h> |
| 13 | #include <dm/lists.h> |
| 14 | #include <dm/root.h> |
| 15 | #include <linux/err.h> |
| 16 | |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 17 | /* |
| 18 | * Caution: |
| 19 | * This API requires the given device has alerady been bound to syscon driver. |
| 20 | * For example, |
| 21 | * compatible = "syscon", "simple-mfd"; |
| 22 | * works, but |
| 23 | * compatible = "simple-mfd", "syscon"; |
| 24 | * does not. The behavior is different from Linux. |
| 25 | */ |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 26 | struct regmap *syscon_get_regmap(struct udevice *dev) |
| 27 | { |
Simon Glass | ead6497 | 2015-07-06 12:54:38 -0600 | [diff] [blame] | 28 | struct syscon_uc_info *priv; |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 29 | |
Simon Glass | ead6497 | 2015-07-06 12:54:38 -0600 | [diff] [blame] | 30 | if (device_get_uclass_id(dev) != UCLASS_SYSCON) |
| 31 | return ERR_PTR(-ENOEXEC); |
| 32 | priv = dev_get_uclass_priv(dev); |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 33 | return priv->regmap; |
| 34 | } |
| 35 | |
| 36 | static int syscon_pre_probe(struct udevice *dev) |
| 37 | { |
| 38 | struct syscon_uc_info *priv = dev_get_uclass_priv(dev); |
| 39 | |
Simon Glass | 73dd069 | 2016-07-04 11:58:00 -0600 | [diff] [blame] | 40 | /* |
| 41 | * With OF_PLATDATA we really have no way of knowing the format of |
| 42 | * the device-specific platform data. So we assume that it starts with |
| 43 | * a 'reg' member, and this holds a single address and size. Drivers |
| 44 | * using OF_PLATDATA will need to ensure that this is true. |
| 45 | */ |
| 46 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 47 | struct syscon_base_platdata *plat = dev_get_platdata(dev); |
| 48 | |
| 49 | return regmap_init_mem_platdata(dev, plat->reg, ARRAY_SIZE(plat->reg), |
| 50 | &priv->regmap); |
| 51 | #else |
Masahiro Yamada | e4873e3 | 2018-04-19 12:14:03 +0900 | [diff] [blame] | 52 | return regmap_init_mem(dev_ofnode(dev), &priv->regmap); |
Simon Glass | 73dd069 | 2016-07-04 11:58:00 -0600 | [diff] [blame] | 53 | #endif |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 54 | } |
| 55 | |
Jean-Jacques Hiblot | dc44ea4 | 2018-11-29 10:57:37 +0100 | [diff] [blame] | 56 | struct regmap *syscon_regmap_lookup_by_phandle(struct udevice *dev, |
| 57 | const char *name) |
| 58 | { |
| 59 | struct udevice *syscon; |
| 60 | struct regmap *r; |
| 61 | int err; |
| 62 | |
| 63 | err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev, |
| 64 | name, &syscon); |
| 65 | if (err) { |
| 66 | dev_dbg(dev, "unable to find syscon device\n"); |
| 67 | return ERR_PTR(err); |
| 68 | } |
| 69 | |
| 70 | r = syscon_get_regmap(syscon); |
| 71 | if (!r) { |
| 72 | dev_dbg(dev, "unable to find regmap\n"); |
| 73 | return ERR_PTR(-ENODEV); |
| 74 | } |
| 75 | |
| 76 | return r; |
| 77 | } |
| 78 | |
Simon Glass | 6d5579c | 2016-01-17 16:11:08 -0700 | [diff] [blame] | 79 | int syscon_get_by_driver_data(ulong driver_data, struct udevice **devp) |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 80 | { |
| 81 | struct udevice *dev; |
| 82 | struct uclass *uc; |
| 83 | int ret; |
| 84 | |
Simon Glass | 36ab8e3 | 2016-03-11 22:06:49 -0700 | [diff] [blame] | 85 | *devp = NULL; |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 86 | ret = uclass_get(UCLASS_SYSCON, &uc); |
| 87 | if (ret) |
Simon Glass | 6d5579c | 2016-01-17 16:11:08 -0700 | [diff] [blame] | 88 | return ret; |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 89 | uclass_foreach_dev(dev, uc) { |
| 90 | if (dev->driver_data == driver_data) { |
Simon Glass | 6d5579c | 2016-01-17 16:11:08 -0700 | [diff] [blame] | 91 | *devp = dev; |
| 92 | return device_probe(dev); |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | |
Simon Glass | 6d5579c | 2016-01-17 16:11:08 -0700 | [diff] [blame] | 96 | return -ENODEV; |
| 97 | } |
| 98 | |
| 99 | struct regmap *syscon_get_regmap_by_driver_data(ulong driver_data) |
| 100 | { |
| 101 | struct syscon_uc_info *priv; |
| 102 | struct udevice *dev; |
| 103 | int ret; |
| 104 | |
| 105 | ret = syscon_get_by_driver_data(driver_data, &dev); |
| 106 | if (ret) |
| 107 | return ERR_PTR(ret); |
| 108 | priv = dev_get_uclass_priv(dev); |
| 109 | |
| 110 | return priv->regmap; |
Simon Glass | 6a84aaf | 2015-06-23 15:38:43 -0600 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | void *syscon_get_first_range(ulong driver_data) |
| 114 | { |
| 115 | struct regmap *map; |
| 116 | |
| 117 | map = syscon_get_regmap_by_driver_data(driver_data); |
| 118 | if (IS_ERR(map)) |
| 119 | return map; |
| 120 | return regmap_get_range(map, 0); |
| 121 | } |
| 122 | |
| 123 | UCLASS_DRIVER(syscon) = { |
| 124 | .id = UCLASS_SYSCON, |
| 125 | .name = "syscon", |
| 126 | .per_device_auto_alloc_size = sizeof(struct syscon_uc_info), |
| 127 | .pre_probe = syscon_pre_probe, |
| 128 | }; |
Paul Burton | 8c946a7 | 2016-09-08 07:47:37 +0100 | [diff] [blame] | 129 | |
| 130 | static const struct udevice_id generic_syscon_ids[] = { |
| 131 | { .compatible = "syscon" }, |
| 132 | { } |
| 133 | }; |
| 134 | |
| 135 | U_BOOT_DRIVER(generic_syscon) = { |
| 136 | .name = "syscon", |
| 137 | .id = UCLASS_SYSCON, |
Simon Glass | 8061bc6 | 2017-07-29 11:34:52 -0600 | [diff] [blame] | 138 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
| 139 | .bind = dm_scan_fdt_dev, |
| 140 | #endif |
Paul Burton | 8c946a7 | 2016-09-08 07:47:37 +0100 | [diff] [blame] | 141 | .of_match = generic_syscon_ids, |
| 142 | }; |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 143 | |
| 144 | /* |
| 145 | * Linux-compatible syscon-to-regmap |
| 146 | * The syscon node can be bound to another driver, but still works |
| 147 | * as a syscon provider. |
| 148 | */ |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 149 | struct regmap *syscon_node_to_regmap(ofnode node) |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 150 | { |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 151 | struct udevice *dev, *parent; |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 152 | int ret; |
| 153 | |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 154 | if (!uclass_get_device_by_ofnode(UCLASS_SYSCON, node, &dev)) |
| 155 | return syscon_get_regmap(dev); |
| 156 | |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 157 | if (!ofnode_device_is_compatible(node, "syscon")) |
| 158 | return ERR_PTR(-EINVAL); |
| 159 | |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 160 | /* bound to driver with same ofnode or to root if not found */ |
| 161 | if (device_find_global_by_ofnode(node, &parent)) |
| 162 | parent = dm_root(); |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 163 | |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 164 | /* force bound to syscon class */ |
| 165 | ret = device_bind_driver_to_node(parent, "syscon", |
| 166 | ofnode_get_name(node), |
| 167 | node, &dev); |
| 168 | if (ret) |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 169 | return ERR_PTR(ret); |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 170 | |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 171 | ret = device_probe(dev); |
| 172 | if (ret) |
| 173 | return ERR_PTR(ret); |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 174 | |
Patrick Delaunay | 8a5a8a7 | 2018-10-31 16:49:03 +0100 | [diff] [blame^] | 175 | return syscon_get_regmap(dev); |
Masahiro Yamada | 60f9a1e | 2018-04-19 12:14:04 +0900 | [diff] [blame] | 176 | } |