1 // SPDX-License-Identifier: GPL-2.0
2 #define pr_fmt(fmt) "OF: " fmt
4 #include <linux/device.h>
5 #include <linux/fwnode.h>
7 #include <linux/ioport.h>
8 #include <linux/logic_pio.h>
9 #include <linux/module.h>
10 #include <linux/of_address.h>
11 #include <linux/pci.h>
12 #include <linux/pci_regs.h>
13 #include <linux/sizes.h>
14 #include <linux/slab.h>
15 #include <linux/string.h>
17 #include "of_private.h"
19 /* Max address size we deal with */
20 #define OF_MAX_ADDR_CELLS 4
21 #define OF_CHECK_ADDR_COUNT(na) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS)
22 #define OF_CHECK_COUNTS(na, ns) (OF_CHECK_ADDR_COUNT(na) && (ns) > 0)
24 static struct of_bus
*of_match_bus(struct device_node
*np
);
25 static int __of_address_to_resource(struct device_node
*dev
,
26 const __be32
*addrp
, u64 size
, unsigned int flags
,
27 const char *name
, struct resource
*r
);
31 static void of_dump_addr(const char *s
, const __be32
*addr
, int na
)
35 pr_cont(" %08x", be32_to_cpu(*(addr
++)));
39 static void of_dump_addr(const char *s
, const __be32
*addr
, int na
) { }
42 /* Callbacks for bus specific translators */
45 const char *addresses
;
46 int (*match
)(struct device_node
*parent
);
47 void (*count_cells
)(struct device_node
*child
,
48 int *addrc
, int *sizec
);
49 u64 (*map
)(__be32
*addr
, const __be32
*range
,
50 int na
, int ns
, int pna
);
51 int (*translate
)(__be32
*addr
, u64 offset
, int na
);
53 unsigned int (*get_flags
)(const __be32
*addr
);
57 * Default translator (generic bus)
60 static void of_bus_default_count_cells(struct device_node
*dev
,
61 int *addrc
, int *sizec
)
64 *addrc
= of_n_addr_cells(dev
);
66 *sizec
= of_n_size_cells(dev
);
69 static u64
of_bus_default_map(__be32
*addr
, const __be32
*range
,
70 int na
, int ns
, int pna
)
74 cp
= of_read_number(range
, na
);
75 s
= of_read_number(range
+ na
+ pna
, ns
);
76 da
= of_read_number(addr
, na
);
78 pr_debug("default map, cp=%llx, s=%llx, da=%llx\n",
79 (unsigned long long)cp
, (unsigned long long)s
,
80 (unsigned long long)da
);
82 if (da
< cp
|| da
>= (cp
+ s
))
87 static int of_bus_default_translate(__be32
*addr
, u64 offset
, int na
)
89 u64 a
= of_read_number(addr
, na
);
90 memset(addr
, 0, na
* 4);
93 addr
[na
- 2] = cpu_to_be32(a
>> 32);
94 addr
[na
- 1] = cpu_to_be32(a
& 0xffffffffu
);
99 static unsigned int of_bus_default_get_flags(const __be32
*addr
)
101 return IORESOURCE_MEM
;
105 static unsigned int of_bus_pci_get_flags(const __be32
*addr
)
107 unsigned int flags
= 0;
108 u32 w
= be32_to_cpup(addr
);
110 if (!IS_ENABLED(CONFIG_PCI
))
113 switch((w
>> 24) & 0x03) {
115 flags
|= IORESOURCE_IO
;
117 case 0x02: /* 32 bits */
118 case 0x03: /* 64 bits */
119 flags
|= IORESOURCE_MEM
;
123 flags
|= IORESOURCE_PREFETCH
;
128 * PCI bus specific translator
131 static bool of_node_is_pcie(struct device_node
*np
)
133 bool is_pcie
= of_node_name_eq(np
, "pcie");
136 pr_warn_once("%pOF: Missing device_type\n", np
);
141 static int of_bus_pci_match(struct device_node
*np
)
144 * "pciex" is PCI Express
145 * "vci" is for the /chaos bridge on 1st-gen PCI powermacs
146 * "ht" is hypertransport
148 * If none of the device_type match, and that the node name is
149 * "pcie", accept the device as PCI (with a warning).
151 return of_node_is_type(np
, "pci") || of_node_is_type(np
, "pciex") ||
152 of_node_is_type(np
, "vci") || of_node_is_type(np
, "ht") ||
156 static void of_bus_pci_count_cells(struct device_node
*np
,
157 int *addrc
, int *sizec
)
165 static u64
of_bus_pci_map(__be32
*addr
, const __be32
*range
, int na
, int ns
,
171 af
= of_bus_pci_get_flags(addr
);
172 rf
= of_bus_pci_get_flags(range
);
174 /* Check address type match */
175 if ((af
^ rf
) & (IORESOURCE_MEM
| IORESOURCE_IO
))
178 /* Read address values, skipping high cell */
179 cp
= of_read_number(range
+ 1, na
- 1);
180 s
= of_read_number(range
+ na
+ pna
, ns
);
181 da
= of_read_number(addr
+ 1, na
- 1);
183 pr_debug("PCI map, cp=%llx, s=%llx, da=%llx\n",
184 (unsigned long long)cp
, (unsigned long long)s
,
185 (unsigned long long)da
);
187 if (da
< cp
|| da
>= (cp
+ s
))
192 static int of_bus_pci_translate(__be32
*addr
, u64 offset
, int na
)
194 return of_bus_default_translate(addr
+ 1, offset
, na
- 1);
197 const __be32
*of_get_pci_address(struct device_node
*dev
, int bar_no
, u64
*size
,
202 struct device_node
*parent
;
204 int onesize
, i
, na
, ns
;
206 /* Get parent & match bus type */
207 parent
= of_get_parent(dev
);
210 bus
= of_match_bus(parent
);
211 if (strcmp(bus
->name
, "pci")) {
215 bus
->count_cells(dev
, &na
, &ns
);
217 if (!OF_CHECK_ADDR_COUNT(na
))
220 /* Get "reg" or "assigned-addresses" property */
221 prop
= of_get_property(dev
, bus
->addresses
, &psize
);
227 for (i
= 0; psize
>= onesize
; psize
-= onesize
, prop
+= onesize
, i
++) {
228 u32 val
= be32_to_cpu(prop
[0]);
229 if ((val
& 0xff) == ((bar_no
* 4) + PCI_BASE_ADDRESS_0
)) {
231 *size
= of_read_number(prop
+ na
, ns
);
233 *flags
= bus
->get_flags(prop
);
239 EXPORT_SYMBOL(of_get_pci_address
);
241 int of_pci_address_to_resource(struct device_node
*dev
, int bar
,
248 addrp
= of_get_pci_address(dev
, bar
, &size
, &flags
);
251 return __of_address_to_resource(dev
, addrp
, size
, flags
, NULL
, r
);
253 EXPORT_SYMBOL_GPL(of_pci_address_to_resource
);
256 * of_pci_range_to_resource - Create a resource from an of_pci_range
257 * @range: the PCI range that describes the resource
258 * @np: device node where the range belongs to
259 * @res: pointer to a valid resource that will be updated to
260 * reflect the values contained in the range.
262 * Returns EINVAL if the range cannot be converted to resource.
264 * Note that if the range is an IO range, the resource will be converted
265 * using pci_address_to_pio() which can fail if it is called too early or
266 * if the range cannot be matched to any host bridge IO space (our case here).
267 * To guard against that we try to register the IO range first.
268 * If that fails we know that pci_address_to_pio() will do too.
270 int of_pci_range_to_resource(struct of_pci_range
*range
,
271 struct device_node
*np
, struct resource
*res
)
274 res
->flags
= range
->flags
;
275 res
->parent
= res
->child
= res
->sibling
= NULL
;
276 res
->name
= np
->full_name
;
278 if (res
->flags
& IORESOURCE_IO
) {
280 err
= pci_register_io_range(&np
->fwnode
, range
->cpu_addr
,
284 port
= pci_address_to_pio(range
->cpu_addr
);
285 if (port
== (unsigned long)-1) {
291 if ((sizeof(resource_size_t
) < 8) &&
292 upper_32_bits(range
->cpu_addr
)) {
297 res
->start
= range
->cpu_addr
;
299 res
->end
= res
->start
+ range
->size
- 1;
303 res
->start
= (resource_size_t
)OF_BAD_ADDR
;
304 res
->end
= (resource_size_t
)OF_BAD_ADDR
;
307 EXPORT_SYMBOL(of_pci_range_to_resource
);
308 #endif /* CONFIG_PCI */
311 * ISA bus specific translator
314 static int of_bus_isa_match(struct device_node
*np
)
316 return of_node_name_eq(np
, "isa");
319 static void of_bus_isa_count_cells(struct device_node
*child
,
320 int *addrc
, int *sizec
)
328 static u64
of_bus_isa_map(__be32
*addr
, const __be32
*range
, int na
, int ns
,
333 /* Check address type match */
334 if ((addr
[0] ^ range
[0]) & cpu_to_be32(1))
337 /* Read address values, skipping high cell */
338 cp
= of_read_number(range
+ 1, na
- 1);
339 s
= of_read_number(range
+ na
+ pna
, ns
);
340 da
= of_read_number(addr
+ 1, na
- 1);
342 pr_debug("ISA map, cp=%llx, s=%llx, da=%llx\n",
343 (unsigned long long)cp
, (unsigned long long)s
,
344 (unsigned long long)da
);
346 if (da
< cp
|| da
>= (cp
+ s
))
351 static int of_bus_isa_translate(__be32
*addr
, u64 offset
, int na
)
353 return of_bus_default_translate(addr
+ 1, offset
, na
- 1);
356 static unsigned int of_bus_isa_get_flags(const __be32
*addr
)
358 unsigned int flags
= 0;
359 u32 w
= be32_to_cpup(addr
);
362 flags
|= IORESOURCE_IO
;
364 flags
|= IORESOURCE_MEM
;
369 * Array of bus specific translators
372 static struct of_bus of_busses
[] = {
377 .addresses
= "assigned-addresses",
378 .match
= of_bus_pci_match
,
379 .count_cells
= of_bus_pci_count_cells
,
380 .map
= of_bus_pci_map
,
381 .translate
= of_bus_pci_translate
,
383 .get_flags
= of_bus_pci_get_flags
,
385 #endif /* CONFIG_PCI */
390 .match
= of_bus_isa_match
,
391 .count_cells
= of_bus_isa_count_cells
,
392 .map
= of_bus_isa_map
,
393 .translate
= of_bus_isa_translate
,
395 .get_flags
= of_bus_isa_get_flags
,
402 .count_cells
= of_bus_default_count_cells
,
403 .map
= of_bus_default_map
,
404 .translate
= of_bus_default_translate
,
405 .get_flags
= of_bus_default_get_flags
,
409 static struct of_bus
*of_match_bus(struct device_node
*np
)
413 for (i
= 0; i
< ARRAY_SIZE(of_busses
); i
++)
414 if (!of_busses
[i
].match
|| of_busses
[i
].match(np
))
415 return &of_busses
[i
];
420 static int of_empty_ranges_quirk(struct device_node
*np
)
422 if (IS_ENABLED(CONFIG_PPC
)) {
423 /* To save cycles, we cache the result for global "Mac" setting */
424 static int quirk_state
= -1;
426 /* PA-SEMI sdc DT bug */
427 if (of_device_is_compatible(np
, "1682m-sdc"))
430 /* Make quirk cached */
433 of_machine_is_compatible("Power Macintosh") ||
434 of_machine_is_compatible("MacRISC");
440 static int of_translate_one(struct device_node
*parent
, struct of_bus
*bus
,
441 struct of_bus
*pbus
, __be32
*addr
,
442 int na
, int ns
, int pna
, const char *rprop
)
444 const __be32
*ranges
;
447 u64 offset
= OF_BAD_ADDR
;
450 * Normally, an absence of a "ranges" property means we are
451 * crossing a non-translatable boundary, and thus the addresses
452 * below the current cannot be converted to CPU physical ones.
453 * Unfortunately, while this is very clear in the spec, it's not
454 * what Apple understood, and they do have things like /uni-n or
455 * /ht nodes with no "ranges" property and a lot of perfectly
456 * useable mapped devices below them. Thus we treat the absence of
457 * "ranges" as equivalent to an empty "ranges" property which means
458 * a 1:1 translation at that level. It's up to the caller not to try
459 * to translate addresses that aren't supposed to be translated in
460 * the first place. --BenH.
462 * As far as we know, this damage only exists on Apple machines, so
463 * This code is only enabled on powerpc. --gcl
465 * This quirk also applies for 'dma-ranges' which frequently exist in
466 * child nodes without 'dma-ranges' in the parent nodes. --RobH
468 ranges
= of_get_property(parent
, rprop
, &rlen
);
469 if (ranges
== NULL
&& !of_empty_ranges_quirk(parent
) &&
470 strcmp(rprop
, "dma-ranges")) {
471 pr_debug("no ranges; cannot translate\n");
474 if (ranges
== NULL
|| rlen
== 0) {
475 offset
= of_read_number(addr
, na
);
476 memset(addr
, 0, pna
* 4);
477 pr_debug("empty ranges; 1:1 translation\n");
481 pr_debug("walking ranges...\n");
483 /* Now walk through the ranges */
485 rone
= na
+ pna
+ ns
;
486 for (; rlen
>= rone
; rlen
-= rone
, ranges
+= rone
) {
487 offset
= bus
->map(addr
, ranges
, na
, ns
, pna
);
488 if (offset
!= OF_BAD_ADDR
)
491 if (offset
== OF_BAD_ADDR
) {
492 pr_debug("not found !\n");
495 memcpy(addr
, ranges
+ na
, 4 * pna
);
498 of_dump_addr("parent translation for:", addr
, pna
);
499 pr_debug("with offset: %llx\n", (unsigned long long)offset
);
501 /* Translate it into parent bus space */
502 return pbus
->translate(addr
, offset
, pna
);
506 * Translate an address from the device-tree into a CPU physical address,
507 * this walks up the tree and applies the various bus mappings on the
510 * Note: We consider that crossing any level with #size-cells == 0 to mean
511 * that translation is impossible (that is we are not dealing with a value
512 * that can be mapped to a cpu physical address). This is not really specified
513 * that way, but this is traditionally the way IBM at least do things
515 * Whenever the translation fails, the *host pointer will be set to the
516 * device that had registered logical PIO mapping, and the return code is
517 * relative to that node.
519 static u64
__of_translate_address(struct device_node
*dev
,
520 struct device_node
*(*get_parent
)(const struct device_node
*),
521 const __be32
*in_addr
, const char *rprop
,
522 struct device_node
**host
)
524 struct device_node
*parent
= NULL
;
525 struct of_bus
*bus
, *pbus
;
526 __be32 addr
[OF_MAX_ADDR_CELLS
];
527 int na
, ns
, pna
, pns
;
528 u64 result
= OF_BAD_ADDR
;
530 pr_debug("** translation for device %pOF **\n", dev
);
532 /* Increase refcount at current level */
536 /* Get parent & match bus type */
537 parent
= get_parent(dev
);
540 bus
= of_match_bus(parent
);
542 /* Count address cells & copy address locally */
543 bus
->count_cells(dev
, &na
, &ns
);
544 if (!OF_CHECK_COUNTS(na
, ns
)) {
545 pr_debug("Bad cell count for %pOF\n", dev
);
548 memcpy(addr
, in_addr
, na
* 4);
550 pr_debug("bus is %s (na=%d, ns=%d) on %pOF\n",
551 bus
->name
, na
, ns
, parent
);
552 of_dump_addr("translating address:", addr
, na
);
556 struct logic_pio_hwaddr
*iorange
;
558 /* Switch to parent bus */
561 parent
= get_parent(dev
);
563 /* If root, we have finished */
564 if (parent
== NULL
) {
565 pr_debug("reached root node\n");
566 result
= of_read_number(addr
, na
);
571 * For indirectIO device which has no ranges property, get
572 * the address from reg directly.
574 iorange
= find_io_range_by_fwnode(&dev
->fwnode
);
575 if (iorange
&& (iorange
->flags
!= LOGIC_PIO_CPU_MMIO
)) {
576 result
= of_read_number(addr
+ 1, na
- 1);
577 pr_debug("indirectIO matched(%pOF) 0x%llx\n",
579 *host
= of_node_get(dev
);
583 /* Get new parent bus and counts */
584 pbus
= of_match_bus(parent
);
585 pbus
->count_cells(dev
, &pna
, &pns
);
586 if (!OF_CHECK_COUNTS(pna
, pns
)) {
587 pr_err("Bad cell count for %pOF\n", dev
);
591 pr_debug("parent bus is %s (na=%d, ns=%d) on %pOF\n",
592 pbus
->name
, pna
, pns
, parent
);
594 /* Apply bus translation */
595 if (of_translate_one(dev
, bus
, pbus
, addr
, na
, ns
, pna
, rprop
))
598 /* Complete the move up one level */
603 of_dump_addr("one level translation:", addr
, na
);
612 u64
of_translate_address(struct device_node
*dev
, const __be32
*in_addr
)
614 struct device_node
*host
;
617 ret
= __of_translate_address(dev
, of_get_parent
,
618 in_addr
, "ranges", &host
);
626 EXPORT_SYMBOL(of_translate_address
);
628 static struct device_node
*__of_get_dma_parent(const struct device_node
*np
)
630 struct of_phandle_args args
;
633 index
= of_property_match_string(np
, "interconnect-names", "dma-mem");
635 return of_get_parent(np
);
637 ret
= of_parse_phandle_with_args(np
, "interconnects",
638 "#interconnect-cells",
641 return of_get_parent(np
);
643 return of_node_get(args
.np
);
646 static struct device_node
*of_get_next_dma_parent(struct device_node
*np
)
648 struct device_node
*parent
;
650 parent
= __of_get_dma_parent(np
);
656 u64
of_translate_dma_address(struct device_node
*dev
, const __be32
*in_addr
)
658 struct device_node
*host
;
661 ret
= __of_translate_address(dev
, __of_get_dma_parent
,
662 in_addr
, "dma-ranges", &host
);
671 EXPORT_SYMBOL(of_translate_dma_address
);
673 const __be32
*of_get_address(struct device_node
*dev
, int index
, u64
*size
,
678 struct device_node
*parent
;
680 int onesize
, i
, na
, ns
;
682 /* Get parent & match bus type */
683 parent
= of_get_parent(dev
);
686 bus
= of_match_bus(parent
);
687 bus
->count_cells(dev
, &na
, &ns
);
689 if (!OF_CHECK_ADDR_COUNT(na
))
692 /* Get "reg" or "assigned-addresses" property */
693 prop
= of_get_property(dev
, bus
->addresses
, &psize
);
699 for (i
= 0; psize
>= onesize
; psize
-= onesize
, prop
+= onesize
, i
++)
702 *size
= of_read_number(prop
+ na
, ns
);
704 *flags
= bus
->get_flags(prop
);
709 EXPORT_SYMBOL(of_get_address
);
711 static int parser_init(struct of_pci_range_parser
*parser
,
712 struct device_node
*node
, const char *name
)
717 parser
->pna
= of_n_addr_cells(node
);
718 parser
->na
= of_bus_n_addr_cells(node
);
719 parser
->ns
= of_bus_n_size_cells(node
);
720 parser
->dma
= !strcmp(name
, "dma-ranges");
721 parser
->bus
= of_match_bus(node
);
723 parser
->range
= of_get_property(node
, name
, &rlen
);
724 if (parser
->range
== NULL
)
727 parser
->end
= parser
->range
+ rlen
/ sizeof(__be32
);
732 int of_pci_range_parser_init(struct of_pci_range_parser
*parser
,
733 struct device_node
*node
)
735 return parser_init(parser
, node
, "ranges");
737 EXPORT_SYMBOL_GPL(of_pci_range_parser_init
);
739 int of_pci_dma_range_parser_init(struct of_pci_range_parser
*parser
,
740 struct device_node
*node
)
742 return parser_init(parser
, node
, "dma-ranges");
744 EXPORT_SYMBOL_GPL(of_pci_dma_range_parser_init
);
745 #define of_dma_range_parser_init of_pci_dma_range_parser_init
747 struct of_pci_range
*of_pci_range_parser_one(struct of_pci_range_parser
*parser
,
748 struct of_pci_range
*range
)
752 int np
= parser
->pna
+ na
+ ns
;
758 if (!parser
->range
|| parser
->range
+ np
> parser
->end
)
761 range
->flags
= parser
->bus
->get_flags(parser
->range
);
763 /* A extra cell for resource flags */
764 if (parser
->bus
->has_flags
)
767 range
->bus_addr
= of_read_number(parser
->range
+ busflag_na
, na
- busflag_na
);
770 range
->cpu_addr
= of_translate_dma_address(parser
->node
,
773 range
->cpu_addr
= of_translate_address(parser
->node
,
775 range
->size
= of_read_number(parser
->range
+ parser
->pna
+ na
, ns
);
779 /* Now consume following elements while they are contiguous */
780 while (parser
->range
+ np
<= parser
->end
) {
782 u64 bus_addr
, cpu_addr
, size
;
784 flags
= parser
->bus
->get_flags(parser
->range
);
785 bus_addr
= of_read_number(parser
->range
+ busflag_na
, na
- busflag_na
);
787 cpu_addr
= of_translate_dma_address(parser
->node
,
790 cpu_addr
= of_translate_address(parser
->node
,
792 size
= of_read_number(parser
->range
+ parser
->pna
+ na
, ns
);
794 if (flags
!= range
->flags
)
796 if (bus_addr
!= range
->bus_addr
+ range
->size
||
797 cpu_addr
!= range
->cpu_addr
+ range
->size
)
806 EXPORT_SYMBOL_GPL(of_pci_range_parser_one
);
808 static u64
of_translate_ioport(struct device_node
*dev
, const __be32
*in_addr
,
813 struct device_node
*host
;
815 taddr
= __of_translate_address(dev
, of_get_parent
,
816 in_addr
, "ranges", &host
);
818 /* host-specific port access */
819 port
= logic_pio_trans_hwaddr(&host
->fwnode
, taddr
, size
);
822 /* memory-mapped I/O range */
823 port
= pci_address_to_pio(taddr
);
826 if (port
== (unsigned long)-1)
832 static int __of_address_to_resource(struct device_node
*dev
,
833 const __be32
*addrp
, u64 size
, unsigned int flags
,
834 const char *name
, struct resource
*r
)
838 if (flags
& IORESOURCE_MEM
)
839 taddr
= of_translate_address(dev
, addrp
);
840 else if (flags
& IORESOURCE_IO
)
841 taddr
= of_translate_ioport(dev
, addrp
, size
);
845 if (taddr
== OF_BAD_ADDR
)
847 memset(r
, 0, sizeof(struct resource
));
850 r
->end
= taddr
+ size
- 1;
852 r
->name
= name
? name
: dev
->full_name
;
858 * of_address_to_resource - Translate device tree address and return as resource
860 * Note that if your address is a PIO address, the conversion will fail if
861 * the physical address can't be internally converted to an IO token with
862 * pci_address_to_pio(), that is because it's either called too early or it
863 * can't be matched to any host bridge IO space
865 int of_address_to_resource(struct device_node
*dev
, int index
,
871 const char *name
= NULL
;
873 addrp
= of_get_address(dev
, index
, &size
, &flags
);
877 /* Get optional "reg-names" property to add a name to a resource */
878 of_property_read_string_index(dev
, "reg-names", index
, &name
);
880 return __of_address_to_resource(dev
, addrp
, size
, flags
, name
, r
);
882 EXPORT_SYMBOL_GPL(of_address_to_resource
);
885 * of_iomap - Maps the memory mapped IO for a given device_node
886 * @np: the device whose io range will be mapped
887 * @index: index of the io range
889 * Returns a pointer to the mapped memory
891 void __iomem
*of_iomap(struct device_node
*np
, int index
)
895 if (of_address_to_resource(np
, index
, &res
))
898 return ioremap(res
.start
, resource_size(&res
));
900 EXPORT_SYMBOL(of_iomap
);
903 * of_io_request_and_map - Requests a resource and maps the memory mapped IO
904 * for a given device_node
905 * @device: the device whose io range will be mapped
906 * @index: index of the io range
907 * @name: name "override" for the memory region request or NULL
909 * Returns a pointer to the requested and mapped memory or an ERR_PTR() encoded
910 * error code on failure. Usage example:
912 * base = of_io_request_and_map(node, 0, "foo");
914 * return PTR_ERR(base);
916 void __iomem
*of_io_request_and_map(struct device_node
*np
, int index
,
922 if (of_address_to_resource(np
, index
, &res
))
923 return IOMEM_ERR_PTR(-EINVAL
);
927 if (!request_mem_region(res
.start
, resource_size(&res
), name
))
928 return IOMEM_ERR_PTR(-EBUSY
);
930 mem
= ioremap(res
.start
, resource_size(&res
));
932 release_mem_region(res
.start
, resource_size(&res
));
933 return IOMEM_ERR_PTR(-ENOMEM
);
938 EXPORT_SYMBOL(of_io_request_and_map
);
941 * of_dma_get_range - Get DMA range info
942 * @np: device node to get DMA range info
943 * @dma_addr: pointer to store initial DMA address of DMA range
944 * @paddr: pointer to store initial CPU address of DMA range
945 * @size: pointer to store size of DMA range
947 * Look in bottom up direction for the first "dma-ranges" property
950 * DMA addr (dma_addr) : naddr cells
951 * CPU addr (phys_addr_t) : pna cells
954 * It returns -ENODEV if "dma-ranges" property was not found
955 * for this device in DT.
957 int of_dma_get_range(struct device_node
*np
, u64
*dma_addr
, u64
*paddr
, u64
*size
)
959 struct device_node
*node
= of_node_get(np
);
960 const __be32
*ranges
= NULL
;
963 bool found_dma_ranges
= false;
964 struct of_range_parser parser
;
965 struct of_range range
;
966 u64 dma_start
= U64_MAX
, dma_end
= 0, dma_offset
= 0;
969 ranges
= of_get_property(node
, "dma-ranges", &len
);
971 /* Ignore empty ranges, they imply no translation required */
972 if (ranges
&& len
> 0)
975 /* Once we find 'dma-ranges', then a missing one is an error */
976 if (found_dma_ranges
&& !ranges
) {
980 found_dma_ranges
= true;
982 node
= of_get_next_dma_parent(node
);
985 if (!node
|| !ranges
) {
986 pr_debug("no dma-ranges found for node(%pOF)\n", np
);
991 of_dma_range_parser_init(&parser
, node
);
993 for_each_of_range(&parser
, &range
) {
994 pr_debug("dma_addr(%llx) cpu_addr(%llx) size(%llx)\n",
995 range
.bus_addr
, range
.cpu_addr
, range
.size
);
997 if (dma_offset
&& range
.cpu_addr
- range
.bus_addr
!= dma_offset
) {
998 pr_warn("Can't handle multiple dma-ranges with different offsets on node(%pOF)\n", node
);
999 /* Don't error out as we'd break some existing DTs */
1002 if (range
.cpu_addr
== OF_BAD_ADDR
) {
1003 pr_err("translation of DMA address(%llx) to CPU address failed node(%pOF)\n",
1004 range
.bus_addr
, node
);
1007 dma_offset
= range
.cpu_addr
- range
.bus_addr
;
1009 /* Take lower and upper limits */
1010 if (range
.bus_addr
< dma_start
)
1011 dma_start
= range
.bus_addr
;
1012 if (range
.bus_addr
+ range
.size
> dma_end
)
1013 dma_end
= range
.bus_addr
+ range
.size
;
1016 if (dma_start
>= dma_end
) {
1018 pr_debug("Invalid DMA ranges configuration on node(%pOF)\n",
1023 *dma_addr
= dma_start
;
1024 *size
= dma_end
- dma_start
;
1025 *paddr
= dma_start
+ dma_offset
;
1027 pr_debug("final: dma_addr(%llx) cpu_addr(%llx) size(%llx)\n",
1028 *dma_addr
, *paddr
, *size
);
1037 * of_dma_is_coherent - Check if device is coherent
1040 * It returns true if "dma-coherent" property was found
1041 * for this device in the DT, or if DMA is coherent by
1042 * default for OF devices on the current platform.
1044 bool of_dma_is_coherent(struct device_node
*np
)
1046 struct device_node
*node
= of_node_get(np
);
1048 if (IS_ENABLED(CONFIG_OF_DMA_DEFAULT_COHERENT
))
1052 if (of_property_read_bool(node
, "dma-coherent")) {
1056 node
= of_get_next_dma_parent(node
);
1061 EXPORT_SYMBOL_GPL(of_dma_is_coherent
);