2 #include <linux/device.h>
4 #include <linux/ioport.h>
5 #include <linux/module.h>
6 #include <linux/of_address.h>
8 #include <linux/pci_regs.h>
9 #include <linux/sizes.h>
10 #include <linux/slab.h>
11 #include <linux/string.h>
13 /* Max address size we deal with */
14 #define OF_MAX_ADDR_CELLS 4
15 #define OF_CHECK_ADDR_COUNT(na) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS)
16 #define OF_CHECK_COUNTS(na, ns) (OF_CHECK_ADDR_COUNT(na) && (ns) > 0)
18 static struct of_bus
*of_match_bus(struct device_node
*np
);
19 static int __of_address_to_resource(struct device_node
*dev
,
20 const __be32
*addrp
, u64 size
, unsigned int flags
,
21 const char *name
, struct resource
*r
);
25 static void of_dump_addr(const char *s
, const __be32
*addr
, int na
)
27 printk(KERN_DEBUG
"%s", s
);
29 printk(" %08x", be32_to_cpu(*(addr
++)));
33 static void of_dump_addr(const char *s
, const __be32
*addr
, int na
) { }
36 /* Callbacks for bus specific translators */
39 const char *addresses
;
40 int (*match
)(struct device_node
*parent
);
41 void (*count_cells
)(struct device_node
*child
,
42 int *addrc
, int *sizec
);
43 u64 (*map
)(__be32
*addr
, const __be32
*range
,
44 int na
, int ns
, int pna
);
45 int (*translate
)(__be32
*addr
, u64 offset
, int na
);
46 unsigned int (*get_flags
)(const __be32
*addr
);
50 * Default translator (generic bus)
53 static void of_bus_default_count_cells(struct device_node
*dev
,
54 int *addrc
, int *sizec
)
57 *addrc
= of_n_addr_cells(dev
);
59 *sizec
= of_n_size_cells(dev
);
62 static u64
of_bus_default_map(__be32
*addr
, const __be32
*range
,
63 int na
, int ns
, int pna
)
67 cp
= of_read_number(range
, na
);
68 s
= of_read_number(range
+ na
+ pna
, ns
);
69 da
= of_read_number(addr
, na
);
71 pr_debug("OF: default map, cp=%llx, s=%llx, da=%llx\n",
72 (unsigned long long)cp
, (unsigned long long)s
,
73 (unsigned long long)da
);
75 if (da
< cp
|| da
>= (cp
+ s
))
80 static int of_bus_default_translate(__be32
*addr
, u64 offset
, int na
)
82 u64 a
= of_read_number(addr
, na
);
83 memset(addr
, 0, na
* 4);
86 addr
[na
- 2] = cpu_to_be32(a
>> 32);
87 addr
[na
- 1] = cpu_to_be32(a
& 0xffffffffu
);
92 static unsigned int of_bus_default_get_flags(const __be32
*addr
)
94 return IORESOURCE_MEM
;
97 #ifdef CONFIG_OF_ADDRESS_PCI
99 * PCI bus specific translator
102 static int of_bus_pci_match(struct device_node
*np
)
105 * "pciex" is PCI Express
106 * "vci" is for the /chaos bridge on 1st-gen PCI powermacs
107 * "ht" is hypertransport
109 return !strcmp(np
->type
, "pci") || !strcmp(np
->type
, "pciex") ||
110 !strcmp(np
->type
, "vci") || !strcmp(np
->type
, "ht");
113 static void of_bus_pci_count_cells(struct device_node
*np
,
114 int *addrc
, int *sizec
)
122 static unsigned int of_bus_pci_get_flags(const __be32
*addr
)
124 unsigned int flags
= 0;
125 u32 w
= be32_to_cpup(addr
);
127 switch((w
>> 24) & 0x03) {
129 flags
|= IORESOURCE_IO
;
131 case 0x02: /* 32 bits */
132 case 0x03: /* 64 bits */
133 flags
|= IORESOURCE_MEM
;
137 flags
|= IORESOURCE_PREFETCH
;
141 static u64
of_bus_pci_map(__be32
*addr
, const __be32
*range
, int na
, int ns
,
147 af
= of_bus_pci_get_flags(addr
);
148 rf
= of_bus_pci_get_flags(range
);
150 /* Check address type match */
151 if ((af
^ rf
) & (IORESOURCE_MEM
| IORESOURCE_IO
))
154 /* Read address values, skipping high cell */
155 cp
= of_read_number(range
+ 1, na
- 1);
156 s
= of_read_number(range
+ na
+ pna
, ns
);
157 da
= of_read_number(addr
+ 1, na
- 1);
159 pr_debug("OF: PCI map, cp=%llx, s=%llx, da=%llx\n",
160 (unsigned long long)cp
, (unsigned long long)s
,
161 (unsigned long long)da
);
163 if (da
< cp
|| da
>= (cp
+ s
))
168 static int of_bus_pci_translate(__be32
*addr
, u64 offset
, int na
)
170 return of_bus_default_translate(addr
+ 1, offset
, na
- 1);
172 #endif /* CONFIG_OF_ADDRESS_PCI */
175 const __be32
*of_get_pci_address(struct device_node
*dev
, int bar_no
, u64
*size
,
180 struct device_node
*parent
;
182 int onesize
, i
, na
, ns
;
184 /* Get parent & match bus type */
185 parent
= of_get_parent(dev
);
188 bus
= of_match_bus(parent
);
189 if (strcmp(bus
->name
, "pci")) {
193 bus
->count_cells(dev
, &na
, &ns
);
195 if (!OF_CHECK_ADDR_COUNT(na
))
198 /* Get "reg" or "assigned-addresses" property */
199 prop
= of_get_property(dev
, bus
->addresses
, &psize
);
205 for (i
= 0; psize
>= onesize
; psize
-= onesize
, prop
+= onesize
, i
++) {
206 u32 val
= be32_to_cpu(prop
[0]);
207 if ((val
& 0xff) == ((bar_no
* 4) + PCI_BASE_ADDRESS_0
)) {
209 *size
= of_read_number(prop
+ na
, ns
);
211 *flags
= bus
->get_flags(prop
);
217 EXPORT_SYMBOL(of_get_pci_address
);
219 int of_pci_address_to_resource(struct device_node
*dev
, int bar
,
226 addrp
= of_get_pci_address(dev
, bar
, &size
, &flags
);
229 return __of_address_to_resource(dev
, addrp
, size
, flags
, NULL
, r
);
231 EXPORT_SYMBOL_GPL(of_pci_address_to_resource
);
233 int of_pci_range_parser_init(struct of_pci_range_parser
*parser
,
234 struct device_node
*node
)
236 const int na
= 3, ns
= 2;
240 parser
->pna
= of_n_addr_cells(node
);
241 parser
->np
= parser
->pna
+ na
+ ns
;
243 parser
->range
= of_get_property(node
, "ranges", &rlen
);
244 if (parser
->range
== NULL
)
247 parser
->end
= parser
->range
+ rlen
/ sizeof(__be32
);
251 EXPORT_SYMBOL_GPL(of_pci_range_parser_init
);
253 struct of_pci_range
*of_pci_range_parser_one(struct of_pci_range_parser
*parser
,
254 struct of_pci_range
*range
)
256 const int na
= 3, ns
= 2;
261 if (!parser
->range
|| parser
->range
+ parser
->np
> parser
->end
)
264 range
->pci_space
= parser
->range
[0];
265 range
->flags
= of_bus_pci_get_flags(parser
->range
);
266 range
->pci_addr
= of_read_number(parser
->range
+ 1, ns
);
267 range
->cpu_addr
= of_translate_address(parser
->node
,
269 range
->size
= of_read_number(parser
->range
+ parser
->pna
+ na
, ns
);
271 parser
->range
+= parser
->np
;
273 /* Now consume following elements while they are contiguous */
274 while (parser
->range
+ parser
->np
<= parser
->end
) {
275 u32 flags
, pci_space
;
276 u64 pci_addr
, cpu_addr
, size
;
278 pci_space
= be32_to_cpup(parser
->range
);
279 flags
= of_bus_pci_get_flags(parser
->range
);
280 pci_addr
= of_read_number(parser
->range
+ 1, ns
);
281 cpu_addr
= of_translate_address(parser
->node
,
283 size
= of_read_number(parser
->range
+ parser
->pna
+ na
, ns
);
285 if (flags
!= range
->flags
)
287 if (pci_addr
!= range
->pci_addr
+ range
->size
||
288 cpu_addr
!= range
->cpu_addr
+ range
->size
)
292 parser
->range
+= parser
->np
;
297 EXPORT_SYMBOL_GPL(of_pci_range_parser_one
);
300 * of_pci_range_to_resource - Create a resource from an of_pci_range
301 * @range: the PCI range that describes the resource
302 * @np: device node where the range belongs to
303 * @res: pointer to a valid resource that will be updated to
304 * reflect the values contained in the range.
306 * Returns EINVAL if the range cannot be converted to resource.
308 * Note that if the range is an IO range, the resource will be converted
309 * using pci_address_to_pio() which can fail if it is called too early or
310 * if the range cannot be matched to any host bridge IO space (our case here).
311 * To guard against that we try to register the IO range first.
312 * If that fails we know that pci_address_to_pio() will do too.
314 int of_pci_range_to_resource(struct of_pci_range
*range
,
315 struct device_node
*np
, struct resource
*res
)
318 res
->flags
= range
->flags
;
319 res
->parent
= res
->child
= res
->sibling
= NULL
;
320 res
->name
= np
->full_name
;
322 if (res
->flags
& IORESOURCE_IO
) {
324 err
= pci_register_io_range(range
->cpu_addr
, range
->size
);
327 port
= pci_address_to_pio(range
->cpu_addr
);
328 if (port
== (unsigned long)-1) {
334 if ((sizeof(resource_size_t
) < 8) &&
335 upper_32_bits(range
->cpu_addr
)) {
340 res
->start
= range
->cpu_addr
;
342 res
->end
= res
->start
+ range
->size
- 1;
346 res
->start
= (resource_size_t
)OF_BAD_ADDR
;
347 res
->end
= (resource_size_t
)OF_BAD_ADDR
;
350 #endif /* CONFIG_PCI */
353 * ISA bus specific translator
356 static int of_bus_isa_match(struct device_node
*np
)
358 return !strcmp(np
->name
, "isa");
361 static void of_bus_isa_count_cells(struct device_node
*child
,
362 int *addrc
, int *sizec
)
370 static u64
of_bus_isa_map(__be32
*addr
, const __be32
*range
, int na
, int ns
,
375 /* Check address type match */
376 if ((addr
[0] ^ range
[0]) & cpu_to_be32(1))
379 /* Read address values, skipping high cell */
380 cp
= of_read_number(range
+ 1, na
- 1);
381 s
= of_read_number(range
+ na
+ pna
, ns
);
382 da
= of_read_number(addr
+ 1, na
- 1);
384 pr_debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n",
385 (unsigned long long)cp
, (unsigned long long)s
,
386 (unsigned long long)da
);
388 if (da
< cp
|| da
>= (cp
+ s
))
393 static int of_bus_isa_translate(__be32
*addr
, u64 offset
, int na
)
395 return of_bus_default_translate(addr
+ 1, offset
, na
- 1);
398 static unsigned int of_bus_isa_get_flags(const __be32
*addr
)
400 unsigned int flags
= 0;
401 u32 w
= be32_to_cpup(addr
);
404 flags
|= IORESOURCE_IO
;
406 flags
|= IORESOURCE_MEM
;
411 * Array of bus specific translators
414 static struct of_bus of_busses
[] = {
415 #ifdef CONFIG_OF_ADDRESS_PCI
419 .addresses
= "assigned-addresses",
420 .match
= of_bus_pci_match
,
421 .count_cells
= of_bus_pci_count_cells
,
422 .map
= of_bus_pci_map
,
423 .translate
= of_bus_pci_translate
,
424 .get_flags
= of_bus_pci_get_flags
,
426 #endif /* CONFIG_OF_ADDRESS_PCI */
431 .match
= of_bus_isa_match
,
432 .count_cells
= of_bus_isa_count_cells
,
433 .map
= of_bus_isa_map
,
434 .translate
= of_bus_isa_translate
,
435 .get_flags
= of_bus_isa_get_flags
,
442 .count_cells
= of_bus_default_count_cells
,
443 .map
= of_bus_default_map
,
444 .translate
= of_bus_default_translate
,
445 .get_flags
= of_bus_default_get_flags
,
449 static struct of_bus
*of_match_bus(struct device_node
*np
)
453 for (i
= 0; i
< ARRAY_SIZE(of_busses
); i
++)
454 if (!of_busses
[i
].match
|| of_busses
[i
].match(np
))
455 return &of_busses
[i
];
460 static int of_empty_ranges_quirk(struct device_node
*np
)
462 if (IS_ENABLED(CONFIG_PPC
)) {
463 /* To save cycles, we cache the result for global "Mac" setting */
464 static int quirk_state
= -1;
466 /* PA-SEMI sdc DT bug */
467 if (of_device_is_compatible(np
, "1682m-sdc"))
470 /* Make quirk cached */
473 of_machine_is_compatible("Power Macintosh") ||
474 of_machine_is_compatible("MacRISC");
480 static int of_translate_one(struct device_node
*parent
, struct of_bus
*bus
,
481 struct of_bus
*pbus
, __be32
*addr
,
482 int na
, int ns
, int pna
, const char *rprop
)
484 const __be32
*ranges
;
487 u64 offset
= OF_BAD_ADDR
;
490 * Normally, an absence of a "ranges" property means we are
491 * crossing a non-translatable boundary, and thus the addresses
492 * below the current cannot be converted to CPU physical ones.
493 * Unfortunately, while this is very clear in the spec, it's not
494 * what Apple understood, and they do have things like /uni-n or
495 * /ht nodes with no "ranges" property and a lot of perfectly
496 * useable mapped devices below them. Thus we treat the absence of
497 * "ranges" as equivalent to an empty "ranges" property which means
498 * a 1:1 translation at that level. It's up to the caller not to try
499 * to translate addresses that aren't supposed to be translated in
500 * the first place. --BenH.
502 * As far as we know, this damage only exists on Apple machines, so
503 * This code is only enabled on powerpc. --gcl
505 ranges
= of_get_property(parent
, rprop
, &rlen
);
506 if (ranges
== NULL
&& !of_empty_ranges_quirk(parent
)) {
507 pr_debug("OF: no ranges; cannot translate\n");
510 if (ranges
== NULL
|| rlen
== 0) {
511 offset
= of_read_number(addr
, na
);
512 memset(addr
, 0, pna
* 4);
513 pr_debug("OF: empty ranges; 1:1 translation\n");
517 pr_debug("OF: walking ranges...\n");
519 /* Now walk through the ranges */
521 rone
= na
+ pna
+ ns
;
522 for (; rlen
>= rone
; rlen
-= rone
, ranges
+= rone
) {
523 offset
= bus
->map(addr
, ranges
, na
, ns
, pna
);
524 if (offset
!= OF_BAD_ADDR
)
527 if (offset
== OF_BAD_ADDR
) {
528 pr_debug("OF: not found !\n");
531 memcpy(addr
, ranges
+ na
, 4 * pna
);
534 of_dump_addr("OF: parent translation for:", addr
, pna
);
535 pr_debug("OF: with offset: %llx\n", (unsigned long long)offset
);
537 /* Translate it into parent bus space */
538 return pbus
->translate(addr
, offset
, pna
);
542 * Translate an address from the device-tree into a CPU physical address,
543 * this walks up the tree and applies the various bus mappings on the
546 * Note: We consider that crossing any level with #size-cells == 0 to mean
547 * that translation is impossible (that is we are not dealing with a value
548 * that can be mapped to a cpu physical address). This is not really specified
549 * that way, but this is traditionally the way IBM at least do things
551 static u64
__of_translate_address(struct device_node
*dev
,
552 const __be32
*in_addr
, const char *rprop
)
554 struct device_node
*parent
= NULL
;
555 struct of_bus
*bus
, *pbus
;
556 __be32 addr
[OF_MAX_ADDR_CELLS
];
557 int na
, ns
, pna
, pns
;
558 u64 result
= OF_BAD_ADDR
;
560 pr_debug("OF: ** translation for device %s **\n", of_node_full_name(dev
));
562 /* Increase refcount at current level */
565 /* Get parent & match bus type */
566 parent
= of_get_parent(dev
);
569 bus
= of_match_bus(parent
);
571 /* Count address cells & copy address locally */
572 bus
->count_cells(dev
, &na
, &ns
);
573 if (!OF_CHECK_COUNTS(na
, ns
)) {
574 pr_debug("OF: Bad cell count for %s\n", of_node_full_name(dev
));
577 memcpy(addr
, in_addr
, na
* 4);
579 pr_debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
580 bus
->name
, na
, ns
, of_node_full_name(parent
));
581 of_dump_addr("OF: translating address:", addr
, na
);
585 /* Switch to parent bus */
588 parent
= of_get_parent(dev
);
590 /* If root, we have finished */
591 if (parent
== NULL
) {
592 pr_debug("OF: reached root node\n");
593 result
= of_read_number(addr
, na
);
597 /* Get new parent bus and counts */
598 pbus
= of_match_bus(parent
);
599 pbus
->count_cells(dev
, &pna
, &pns
);
600 if (!OF_CHECK_COUNTS(pna
, pns
)) {
601 pr_err("prom_parse: Bad cell count for %s\n",
602 of_node_full_name(dev
));
606 pr_debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
607 pbus
->name
, pna
, pns
, of_node_full_name(parent
));
609 /* Apply bus translation */
610 if (of_translate_one(dev
, bus
, pbus
, addr
, na
, ns
, pna
, rprop
))
613 /* Complete the move up one level */
618 of_dump_addr("OF: one level translation:", addr
, na
);
627 u64
of_translate_address(struct device_node
*dev
, const __be32
*in_addr
)
629 return __of_translate_address(dev
, in_addr
, "ranges");
631 EXPORT_SYMBOL(of_translate_address
);
633 u64
of_translate_dma_address(struct device_node
*dev
, const __be32
*in_addr
)
635 return __of_translate_address(dev
, in_addr
, "dma-ranges");
637 EXPORT_SYMBOL(of_translate_dma_address
);
639 const __be32
*of_get_address(struct device_node
*dev
, int index
, u64
*size
,
644 struct device_node
*parent
;
646 int onesize
, i
, na
, ns
;
648 /* Get parent & match bus type */
649 parent
= of_get_parent(dev
);
652 bus
= of_match_bus(parent
);
653 bus
->count_cells(dev
, &na
, &ns
);
655 if (!OF_CHECK_ADDR_COUNT(na
))
658 /* Get "reg" or "assigned-addresses" property */
659 prop
= of_get_property(dev
, bus
->addresses
, &psize
);
665 for (i
= 0; psize
>= onesize
; psize
-= onesize
, prop
+= onesize
, i
++)
668 *size
= of_read_number(prop
+ na
, ns
);
670 *flags
= bus
->get_flags(prop
);
675 EXPORT_SYMBOL(of_get_address
);
677 static int __of_address_to_resource(struct device_node
*dev
,
678 const __be32
*addrp
, u64 size
, unsigned int flags
,
679 const char *name
, struct resource
*r
)
683 if ((flags
& (IORESOURCE_IO
| IORESOURCE_MEM
)) == 0)
685 taddr
= of_translate_address(dev
, addrp
);
686 if (taddr
== OF_BAD_ADDR
)
688 memset(r
, 0, sizeof(struct resource
));
689 if (flags
& IORESOURCE_IO
) {
691 port
= pci_address_to_pio(taddr
);
692 if (port
== (unsigned long)-1)
695 r
->end
= port
+ size
- 1;
698 r
->end
= taddr
+ size
- 1;
701 r
->name
= name
? name
: dev
->full_name
;
707 * of_address_to_resource - Translate device tree address and return as resource
709 * Note that if your address is a PIO address, the conversion will fail if
710 * the physical address can't be internally converted to an IO token with
711 * pci_address_to_pio(), that is because it's either called to early or it
712 * can't be matched to any host bridge IO space
714 int of_address_to_resource(struct device_node
*dev
, int index
,
720 const char *name
= NULL
;
722 addrp
= of_get_address(dev
, index
, &size
, &flags
);
726 /* Get optional "reg-names" property to add a name to a resource */
727 of_property_read_string_index(dev
, "reg-names", index
, &name
);
729 return __of_address_to_resource(dev
, addrp
, size
, flags
, name
, r
);
731 EXPORT_SYMBOL_GPL(of_address_to_resource
);
733 struct device_node
*of_find_matching_node_by_address(struct device_node
*from
,
734 const struct of_device_id
*matches
,
737 struct device_node
*dn
= of_find_matching_node(from
, matches
);
741 if (!of_address_to_resource(dn
, 0, &res
) &&
742 res
.start
== base_address
)
745 dn
= of_find_matching_node(dn
, matches
);
753 * of_iomap - Maps the memory mapped IO for a given device_node
754 * @device: the device whose io range will be mapped
755 * @index: index of the io range
757 * Returns a pointer to the mapped memory
759 void __iomem
*of_iomap(struct device_node
*np
, int index
)
763 if (of_address_to_resource(np
, index
, &res
))
766 return ioremap(res
.start
, resource_size(&res
));
768 EXPORT_SYMBOL(of_iomap
);
771 * of_io_request_and_map - Requests a resource and maps the memory mapped IO
772 * for a given device_node
773 * @device: the device whose io range will be mapped
774 * @index: index of the io range
775 * @name: name of the resource
777 * Returns a pointer to the requested and mapped memory or an ERR_PTR() encoded
778 * error code on failure. Usage example:
780 * base = of_io_request_and_map(node, 0, "foo");
782 * return PTR_ERR(base);
784 void __iomem
*of_io_request_and_map(struct device_node
*np
, int index
,
790 if (of_address_to_resource(np
, index
, &res
))
791 return IOMEM_ERR_PTR(-EINVAL
);
793 if (!request_mem_region(res
.start
, resource_size(&res
), name
))
794 return IOMEM_ERR_PTR(-EBUSY
);
796 mem
= ioremap(res
.start
, resource_size(&res
));
798 release_mem_region(res
.start
, resource_size(&res
));
799 return IOMEM_ERR_PTR(-ENOMEM
);
804 EXPORT_SYMBOL(of_io_request_and_map
);
807 * of_dma_get_range - Get DMA range info
808 * @np: device node to get DMA range info
809 * @dma_addr: pointer to store initial DMA address of DMA range
810 * @paddr: pointer to store initial CPU address of DMA range
811 * @size: pointer to store size of DMA range
813 * Look in bottom up direction for the first "dma-ranges" property
816 * DMA addr (dma_addr) : naddr cells
817 * CPU addr (phys_addr_t) : pna cells
820 * It returns -ENODEV if "dma-ranges" property was not found
821 * for this device in DT.
823 int of_dma_get_range(struct device_node
*np
, u64
*dma_addr
, u64
*paddr
, u64
*size
)
825 struct device_node
*node
= of_node_get(np
);
826 const __be32
*ranges
= NULL
;
827 int len
, naddr
, nsize
, pna
;
835 naddr
= of_n_addr_cells(node
);
836 nsize
= of_n_size_cells(node
);
837 node
= of_get_next_parent(node
);
841 ranges
= of_get_property(node
, "dma-ranges", &len
);
843 /* Ignore empty ranges, they imply no translation required */
844 if (ranges
&& len
> 0)
848 * At least empty ranges has to be defined for parent node if
856 pr_debug("%s: no dma-ranges found for node(%s)\n",
857 __func__
, np
->full_name
);
864 pna
= of_n_addr_cells(node
);
866 /* dma-ranges format:
867 * DMA addr : naddr cells
868 * CPU addr : pna cells
871 dmaaddr
= of_read_number(ranges
, naddr
);
872 *paddr
= of_translate_dma_address(np
, ranges
);
873 if (*paddr
== OF_BAD_ADDR
) {
874 pr_err("%s: translation of DMA address(%pad) to CPU address failed node(%s)\n",
875 __func__
, dma_addr
, np
->full_name
);
881 *size
= of_read_number(ranges
+ naddr
+ pna
, nsize
);
883 pr_debug("dma_addr(%llx) cpu_addr(%llx) size(%llx)\n",
884 *dma_addr
, *paddr
, *size
);
891 EXPORT_SYMBOL_GPL(of_dma_get_range
);
894 * of_dma_is_coherent - Check if device is coherent
897 * It returns true if "dma-coherent" property was found
898 * for this device in DT.
900 bool of_dma_is_coherent(struct device_node
*np
)
902 struct device_node
*node
= of_node_get(np
);
905 if (of_property_read_bool(node
, "dma-coherent")) {
909 node
= of_get_next_parent(node
);
914 EXPORT_SYMBOL_GPL(of_dma_is_coherent
);