blob: 49066b59cdaf461dda00d8b412dfcc526d319a13 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasscfdae5c2017-05-18 20:09:04 -06002/*
3 * Copyright (c) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glasscfdae5c2017-05-18 20:09:04 -06005 */
6
7#include <common.h>
8#include <dm.h>
9#include <dm/of_access.h>
Stefan Roesea8c43062020-04-29 09:08:44 +020010#include <mapmem.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Stefan Roesea8c43062020-04-29 09:08:44 +020012#include <asm/types.h>
13#include <asm/io.h>
Stefan Roese0a9ecc52020-08-05 13:56:11 +020014#include <linux/ioport.h>
Simon Glasscfdae5c2017-05-18 20:09:04 -060015
Stefan Herbrechtsmeier1b090e62022-06-14 15:21:30 +020016int dev_read_u8(const struct udevice *dev, const char *propname, u8 *outp)
17{
18 return ofnode_read_u8(dev_ofnode(dev), propname, outp);
19}
20
21u8 dev_read_u8_default(const struct udevice *dev, const char *propname, u8 def)
22{
23 return ofnode_read_u8_default(dev_ofnode(dev), propname, def);
24}
25
26int dev_read_u16(const struct udevice *dev, const char *propname, u16 *outp)
27{
28 return ofnode_read_u16(dev_ofnode(dev), propname, outp);
29}
30
31u16 dev_read_u16_default(const struct udevice *dev, const char *propname,
32 u16 def)
33{
34 return ofnode_read_u16_default(dev_ofnode(dev), propname, def);
35}
36
Simon Glass2f9a6122020-01-27 08:49:40 -070037int dev_read_u32(const struct udevice *dev, const char *propname, u32 *outp)
Masahiro Yamada71d115f2017-12-30 02:00:05 +090038{
39 return ofnode_read_u32(dev_ofnode(dev), propname, outp);
40}
41
Simon Glass2f9a6122020-01-27 08:49:40 -070042int dev_read_u32_default(const struct udevice *dev, const char *propname,
43 int def)
Simon Glasscfdae5c2017-05-18 20:09:04 -060044{
45 return ofnode_read_u32_default(dev_ofnode(dev), propname, def);
46}
47
Dario Binacchi81d80b52020-03-29 18:04:41 +020048int dev_read_u32_index(struct udevice *dev, const char *propname, int index,
49 u32 *outp)
50{
51 return ofnode_read_u32_index(dev_ofnode(dev), propname, index, outp);
52}
53
54u32 dev_read_u32_index_default(struct udevice *dev, const char *propname,
55 int index, u32 def)
56{
57 return ofnode_read_u32_index_default(dev_ofnode(dev), propname, index,
58 def);
59}
60
Simon Glass2f9a6122020-01-27 08:49:40 -070061int dev_read_s32(const struct udevice *dev, const char *propname, s32 *outp)
Simon Glass6df01f92018-12-10 10:37:37 -070062{
63 return ofnode_read_u32(dev_ofnode(dev), propname, (u32 *)outp);
64}
65
Simon Glass2f9a6122020-01-27 08:49:40 -070066int dev_read_s32_default(const struct udevice *dev, const char *propname,
67 int def)
Simon Glass6df01f92018-12-10 10:37:37 -070068{
69 return ofnode_read_u32_default(dev_ofnode(dev), propname, def);
70}
71
Simon Glass2f9a6122020-01-27 08:49:40 -070072int dev_read_u32u(const struct udevice *dev, const char *propname, uint *outp)
Simon Glass6df01f92018-12-10 10:37:37 -070073{
74 u32 val;
75 int ret;
76
77 ret = ofnode_read_u32(dev_ofnode(dev), propname, &val);
78 if (ret)
79 return ret;
80 *outp = val;
81
82 return 0;
83}
84
Simon Glass2f9a6122020-01-27 08:49:40 -070085int dev_read_u64(const struct udevice *dev, const char *propname, u64 *outp)
T Karthik Reddy478860d2019-09-02 16:34:30 +020086{
87 return ofnode_read_u64(dev_ofnode(dev), propname, outp);
88}
89
Simon Glass2f9a6122020-01-27 08:49:40 -070090u64 dev_read_u64_default(const struct udevice *dev, const char *propname,
91 u64 def)
T Karthik Reddy478860d2019-09-02 16:34:30 +020092{
93 return ofnode_read_u64_default(dev_ofnode(dev), propname, def);
94}
95
Simon Glass2f9a6122020-01-27 08:49:40 -070096const char *dev_read_string(const struct udevice *dev, const char *propname)
Simon Glasscfdae5c2017-05-18 20:09:04 -060097{
98 return ofnode_read_string(dev_ofnode(dev), propname);
99}
100
Simon Glass2f9a6122020-01-27 08:49:40 -0700101bool dev_read_bool(const struct udevice *dev, const char *propname)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600102{
103 return ofnode_read_bool(dev_ofnode(dev), propname);
104}
105
Simon Glass2f9a6122020-01-27 08:49:40 -0700106ofnode dev_read_subnode(const struct udevice *dev, const char *subnode_name)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600107{
108 return ofnode_find_subnode(dev_ofnode(dev), subnode_name);
109}
110
Simon Glass2f9a6122020-01-27 08:49:40 -0700111ofnode dev_read_first_subnode(const struct udevice *dev)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600112{
113 return ofnode_first_subnode(dev_ofnode(dev));
114}
115
116ofnode dev_read_next_subnode(ofnode node)
117{
118 return ofnode_next_subnode(node);
119}
120
Simon Glass2f9a6122020-01-27 08:49:40 -0700121int dev_read_size(const struct udevice *dev, const char *propname)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600122{
123 return ofnode_read_size(dev_ofnode(dev), propname);
124}
125
Simon Glass2f9a6122020-01-27 08:49:40 -0700126fdt_addr_t dev_read_addr_index(const struct udevice *dev, int index)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600127{
128 if (ofnode_is_np(dev_ofnode(dev)))
129 return ofnode_get_addr_index(dev_ofnode(dev), index);
130 else
131 return devfdt_get_addr_index(dev, index);
132}
133
Johan Jonker54ab0442023-03-13 01:31:25 +0100134void *dev_read_addr_index_ptr(const struct udevice *dev, int index)
135{
136 fdt_addr_t addr = dev_read_addr_index(dev, index);
137
138 if (addr == FDT_ADDR_T_NONE)
139 return NULL;
140
141 return map_sysmem(addr, 0);
142}
143
Simon Glass2f9a6122020-01-27 08:49:40 -0700144fdt_addr_t dev_read_addr_size_index(const struct udevice *dev, int index,
Sekhar Norif677c6f2019-08-01 19:12:56 +0530145 fdt_size_t *size)
146{
147 if (ofnode_is_np(dev_ofnode(dev)))
148 return ofnode_get_addr_size_index(dev_ofnode(dev), index, size);
149 else
150 return devfdt_get_addr_size_index(dev, index, size);
151}
152
Jonas Karlman3b007302023-07-22 13:30:15 +0000153void *dev_read_addr_size_index_ptr(const struct udevice *dev, int index,
154 fdt_size_t *size)
155{
156 fdt_addr_t addr = dev_read_addr_size_index(dev, index, size);
157
158 if (addr == FDT_ADDR_T_NONE)
159 return NULL;
160
161 return map_sysmem(addr, 0);
162}
163
Simon Glass2f9a6122020-01-27 08:49:40 -0700164void *dev_remap_addr_index(const struct udevice *dev, int index)
Álvaro Fernández Rojas670361292018-04-29 21:56:54 +0200165{
166 fdt_addr_t addr = dev_read_addr_index(dev, index);
167
168 if (addr == FDT_ADDR_T_NONE)
169 return NULL;
170
171 return map_physmem(addr, 0, MAP_NOCACHE);
172}
173
Simon Glass2f9a6122020-01-27 08:49:40 -0700174fdt_addr_t dev_read_addr_name(const struct udevice *dev, const char *name)
Álvaro Fernández Rojasa3181152018-12-03 19:37:09 +0100175{
176 int index = dev_read_stringlist_search(dev, "reg-names", name);
177
178 if (index < 0)
179 return FDT_ADDR_T_NONE;
180 else
181 return dev_read_addr_index(dev, index);
182}
183
Simon Glass2f9a6122020-01-27 08:49:40 -0700184fdt_addr_t dev_read_addr_size_name(const struct udevice *dev, const char *name,
Sekhar Norif677c6f2019-08-01 19:12:56 +0530185 fdt_size_t *size)
186{
187 int index = dev_read_stringlist_search(dev, "reg-names", name);
188
189 if (index < 0)
190 return FDT_ADDR_T_NONE;
191 else
192 return dev_read_addr_size_index(dev, index, size);
193}
194
Simon Glass2f9a6122020-01-27 08:49:40 -0700195void *dev_remap_addr_name(const struct udevice *dev, const char *name)
Álvaro Fernández Rojasa3181152018-12-03 19:37:09 +0100196{
197 fdt_addr_t addr = dev_read_addr_name(dev, name);
198
199 if (addr == FDT_ADDR_T_NONE)
200 return NULL;
201
202 return map_physmem(addr, 0, MAP_NOCACHE);
203}
204
Simon Glass2f9a6122020-01-27 08:49:40 -0700205fdt_addr_t dev_read_addr(const struct udevice *dev)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600206{
207 return dev_read_addr_index(dev, 0);
208}
209
Simon Glass2f9a6122020-01-27 08:49:40 -0700210void *dev_read_addr_ptr(const struct udevice *dev)
Philipp Tomsich7719b392017-09-11 22:04:12 +0200211{
212 fdt_addr_t addr = dev_read_addr(dev);
213
Johan Jonker54ab0442023-03-13 01:31:25 +0100214 if (addr == FDT_ADDR_T_NONE)
215 return NULL;
216
217 return map_sysmem(addr, 0);
Philipp Tomsich7719b392017-09-11 22:04:12 +0200218}
219
Simon Glass2f9a6122020-01-27 08:49:40 -0700220void *dev_remap_addr(const struct udevice *dev)
Álvaro Fernández Rojas670361292018-04-29 21:56:54 +0200221{
222 return dev_remap_addr_index(dev, 0);
223}
224
John Keepingab62d0b2023-06-01 15:11:19 +0100225fdt_addr_t dev_read_addr_size(const struct udevice *dev, fdt_size_t *sizep)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600226{
John Keepingab62d0b2023-06-01 15:11:19 +0100227 return dev_read_addr_size_index(dev, 0, sizep);
Simon Glasscfdae5c2017-05-18 20:09:04 -0600228}
229
Simon Glass2f9a6122020-01-27 08:49:40 -0700230const char *dev_read_name(const struct udevice *dev)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600231{
232 return ofnode_get_name(dev_ofnode(dev));
233}
234
Simon Glass2f9a6122020-01-27 08:49:40 -0700235int dev_read_stringlist_search(const struct udevice *dev, const char *property,
Mario Six6eac2222018-01-15 11:07:18 +0100236 const char *string)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600237{
238 return ofnode_stringlist_search(dev_ofnode(dev), property, string);
239}
240
Simon Glass2f9a6122020-01-27 08:49:40 -0700241int dev_read_string_index(const struct udevice *dev, const char *propname,
242 int index, const char **outp)
Jean-Jacques Hiblot8365ebd2017-09-21 17:03:09 +0200243{
244 return ofnode_read_string_index(dev_ofnode(dev), propname, index, outp);
245}
246
Simon Glass2f9a6122020-01-27 08:49:40 -0700247int dev_read_string_count(const struct udevice *dev, const char *propname)
Jean-Jacques Hiblot8365ebd2017-09-21 17:03:09 +0200248{
249 return ofnode_read_string_count(dev_ofnode(dev), propname);
250}
251
Simon Glass9580bfc2021-10-23 17:26:07 -0600252int dev_read_string_list(const struct udevice *dev, const char *propname,
253 const char ***listp)
254{
255 return ofnode_read_string_list(dev_ofnode(dev), propname, listp);
256}
257
Simon Glass2f9a6122020-01-27 08:49:40 -0700258int dev_read_phandle_with_args(const struct udevice *dev, const char *list_name,
Mario Six6eac2222018-01-15 11:07:18 +0100259 const char *cells_name, int cell_count,
260 int index, struct ofnode_phandle_args *out_args)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600261{
262 return ofnode_parse_phandle_with_args(dev_ofnode(dev), list_name,
263 cells_name, cell_count, index,
264 out_args);
265}
266
Simon Glass2f9a6122020-01-27 08:49:40 -0700267int dev_count_phandle_with_args(const struct udevice *dev,
Patrick Delaunayd776a842020-09-25 09:41:14 +0200268 const char *list_name, const char *cells_name,
269 int cell_count)
Patrice Chotard99503c12017-11-29 09:06:10 +0100270{
271 return ofnode_count_phandle_with_args(dev_ofnode(dev), list_name,
Patrick Delaunayd776a842020-09-25 09:41:14 +0200272 cells_name, cell_count);
Patrice Chotard99503c12017-11-29 09:06:10 +0100273}
274
Simon Glass2f9a6122020-01-27 08:49:40 -0700275int dev_read_addr_cells(const struct udevice *dev)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600276{
277 return ofnode_read_addr_cells(dev_ofnode(dev));
278}
279
Simon Glass2f9a6122020-01-27 08:49:40 -0700280int dev_read_size_cells(const struct udevice *dev)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600281{
282 return ofnode_read_size_cells(dev_ofnode(dev));
283}
284
Simon Glass2f9a6122020-01-27 08:49:40 -0700285int dev_read_simple_addr_cells(const struct udevice *dev)
Simon Glass4191dc12017-06-12 06:21:31 -0600286{
287 return ofnode_read_simple_addr_cells(dev_ofnode(dev));
288}
289
Simon Glass2f9a6122020-01-27 08:49:40 -0700290int dev_read_simple_size_cells(const struct udevice *dev)
Simon Glass4191dc12017-06-12 06:21:31 -0600291{
292 return ofnode_read_simple_size_cells(dev_ofnode(dev));
293}
294
Simon Glass2f9a6122020-01-27 08:49:40 -0700295int dev_read_phandle(const struct udevice *dev)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600296{
297 ofnode node = dev_ofnode(dev);
298
299 if (ofnode_is_np(node))
300 return ofnode_to_np(node)->phandle;
301 else
302 return fdt_get_phandle(gd->fdt_blob, ofnode_to_offset(node));
303}
304
Simon Glass2f9a6122020-01-27 08:49:40 -0700305const void *dev_read_prop(const struct udevice *dev, const char *propname,
306 int *lenp)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600307{
Masahiro Yamada9cf85cb2017-06-22 16:54:05 +0900308 return ofnode_get_property(dev_ofnode(dev), propname, lenp);
Simon Glasscfdae5c2017-05-18 20:09:04 -0600309}
310
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100311int dev_read_first_prop(const struct udevice *dev, struct ofprop *prop)
312{
Simon Glassfec058d2022-09-06 20:27:13 -0600313 return ofnode_first_property(dev_ofnode(dev), prop);
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100314}
315
316int dev_read_next_prop(struct ofprop *prop)
317{
Simon Glassfec058d2022-09-06 20:27:13 -0600318 return ofnode_next_property(prop);
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100319}
320
321const void *dev_read_prop_by_prop(struct ofprop *prop,
322 const char **propname, int *lenp)
323{
Simon Glassd0aff8b2022-09-06 20:27:14 -0600324 return ofprop_get_property(prop, propname, lenp);
Patrick Delaunaycaee1552020-01-13 11:34:56 +0100325}
326
Simon Glass2f9a6122020-01-27 08:49:40 -0700327int dev_read_alias_seq(const struct udevice *dev, int *devnump)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600328{
329 ofnode node = dev_ofnode(dev);
330 const char *uc_name = dev->uclass->uc_drv->name;
Marcel Ziswiler65c2bf62019-05-20 02:44:57 +0200331 int ret = -ENOTSUPP;
Simon Glasscfdae5c2017-05-18 20:09:04 -0600332
333 if (ofnode_is_np(node)) {
334 ret = of_alias_get_id(ofnode_to_np(node), uc_name);
Simon Glassa2b58552020-12-16 21:20:12 -0700335 if (ret >= 0) {
Simon Glasscfdae5c2017-05-18 20:09:04 -0600336 *devnump = ret;
Simon Glassa2b58552020-12-16 21:20:12 -0700337 ret = 0;
338 }
Simon Glasscfdae5c2017-05-18 20:09:04 -0600339 } else {
Marcel Ziswiler65c2bf62019-05-20 02:44:57 +0200340#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600341 ret = fdtdec_get_alias_seq(gd->fdt_blob, uc_name,
342 ofnode_to_offset(node), devnump);
Marcel Ziswiler65c2bf62019-05-20 02:44:57 +0200343#endif
Simon Glasscfdae5c2017-05-18 20:09:04 -0600344 }
345
346 return ret;
347}
348
Simon Glass2f9a6122020-01-27 08:49:40 -0700349int dev_read_u32_array(const struct udevice *dev, const char *propname,
Simon Glasscfdae5c2017-05-18 20:09:04 -0600350 u32 *out_values, size_t sz)
351{
352 return ofnode_read_u32_array(dev_ofnode(dev), propname, out_values, sz);
353}
354
Simon Glass2f9a6122020-01-27 08:49:40 -0700355const uint8_t *dev_read_u8_array_ptr(const struct udevice *dev,
356 const char *propname, size_t sz)
Simon Glasscfdae5c2017-05-18 20:09:04 -0600357{
358 return ofnode_read_u8_array_ptr(dev_ofnode(dev), propname, sz);
359}
Simon Glassfa031f82017-06-12 06:21:30 -0600360
Simon Glass2f9a6122020-01-27 08:49:40 -0700361int dev_read_enabled(const struct udevice *dev)
Simon Glassfa031f82017-06-12 06:21:30 -0600362{
363 ofnode node = dev_ofnode(dev);
364
365 if (ofnode_is_np(node))
366 return of_device_is_available(ofnode_to_np(node));
367 else
368 return fdtdec_get_is_enabled(gd->fdt_blob,
369 ofnode_to_offset(node));
370}
Simon Glassf7bfcc42017-07-25 08:29:55 -0600371
Simon Glass2f9a6122020-01-27 08:49:40 -0700372int dev_read_resource(const struct udevice *dev, uint index,
373 struct resource *res)
Simon Glassf7bfcc42017-07-25 08:29:55 -0600374{
375 return ofnode_read_resource(dev_ofnode(dev), index, res);
376}
Masahiro Yamada4dada2c2017-08-26 01:12:30 +0900377
Simon Glass2f9a6122020-01-27 08:49:40 -0700378int dev_read_resource_byname(const struct udevice *dev, const char *name,
Masahiro Yamada4dada2c2017-08-26 01:12:30 +0900379 struct resource *res)
380{
381 return ofnode_read_resource_byname(dev_ofnode(dev), name, res);
382}
Mario Sixaefac062018-01-15 11:07:19 +0100383
Simon Glass2f9a6122020-01-27 08:49:40 -0700384u64 dev_translate_address(const struct udevice *dev, const fdt32_t *in_addr)
Mario Sixaefac062018-01-15 11:07:19 +0100385{
386 return ofnode_translate_address(dev_ofnode(dev), in_addr);
387}
Michal Simekd0e30a02019-01-31 16:30:59 +0100388
Simon Glass2f9a6122020-01-27 08:49:40 -0700389u64 dev_translate_dma_address(const struct udevice *dev, const fdt32_t *in_addr)
Fabien Dessenne22236e02019-05-31 15:11:30 +0200390{
391 return ofnode_translate_dma_address(dev_ofnode(dev), in_addr);
392}
393
Nicolas Saenz Julienne50d2fa42021-01-12 13:55:22 +0100394int dev_get_dma_range(const struct udevice *dev, phys_addr_t *cpu,
395 dma_addr_t *bus, u64 *size)
396{
397 return ofnode_get_dma_range(dev_ofnode(dev), cpu, bus, size);
398}
399
Michal Simekd0e30a02019-01-31 16:30:59 +0100400int dev_read_alias_highest_id(const char *stem)
401{
402 if (of_live_active())
403 return of_alias_get_highest_id(stem);
404
405 return fdtdec_get_alias_highest_id(gd->fdt_blob, stem);
406}
Simon Glass23b27592019-09-15 12:08:58 -0600407
Simon Glass2f9a6122020-01-27 08:49:40 -0700408fdt_addr_t dev_read_addr_pci(const struct udevice *dev)
Simon Glass23b27592019-09-15 12:08:58 -0600409{
410 ulong addr;
411
412 addr = dev_read_addr(dev);
413 if (addr == FDT_ADDR_T_NONE && !of_live_active())
414 addr = devfdt_get_addr_pci(dev);
415
416 return addr;
417}
developerd93c8b42020-05-02 11:35:09 +0200418
419int dev_get_child_count(const struct udevice *dev)
420{
421 return ofnode_get_child_count(dev_ofnode(dev));
422}
Stefan Roese0a9ecc52020-08-05 13:56:11 +0200423
424int dev_read_pci_bus_range(const struct udevice *dev,
425 struct resource *res)
426{
427 const u32 *values;
428 int len;
429
430 values = dev_read_prop(dev, "bus-range", &len);
431 if (!values || len < sizeof(*values) * 2)
432 return -EINVAL;
433
434 res->start = *values++;
435 res->end = *values;
436
437 return 0;
438}
Dario Binacchi836cc9d2020-12-30 00:16:26 +0100439
440int dev_decode_display_timing(const struct udevice *dev, int index,
441 struct display_timing *config)
442{
443 return ofnode_decode_display_timing(dev_ofnode(dev), index, config);
444}
Marek Behúnf4f1ddc2022-04-07 00:32:57 +0200445
Nikhil M Jainff407062023-01-31 15:35:14 +0530446int dev_decode_panel_timing(const struct udevice *dev,
447 struct display_timing *config)
448{
449 return ofnode_decode_panel_timing(dev_ofnode(dev), config);
450}
451
Marek Behúnf4f1ddc2022-04-07 00:32:57 +0200452ofnode dev_get_phy_node(const struct udevice *dev)
453{
454 return ofnode_get_phy_node(dev_ofnode(dev));
455}
Marek Behúnbc194772022-04-07 00:33:01 +0200456
457phy_interface_t dev_read_phy_mode(const struct udevice *dev)
458{
459 return ofnode_read_phy_mode(dev_ofnode(dev));
460}