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>
16 #include <linux/dma-direct.h> /* for bus_dma_region */
18 #include "of_private.h"
20 /* Max address size we deal with */
21 #define OF_MAX_ADDR_CELLS 4
22 #define OF_CHECK_ADDR_COUNT(na) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS)
23 #define OF_CHECK_COUNTS(na, ns) (OF_CHECK_ADDR_COUNT(na) && (ns) > 0)
25 static struct of_bus
*of_match_bus(struct device_node
*np
);
26 static int __of_address_to_resource(struct device_node
*dev
,
27 const __be32
*addrp
, u64 size
, unsigned int flags
,
28 const char *name
, struct resource
*r
);
32 static void of_dump_addr(const char *s
, const __be32
*addr
, int na
)
36 pr_cont(" %08x", be32_to_cpu(*(addr
++)));
40 static void of_dump_addr(const char *s
, const __be32
*addr
, int na
) { }
43 /* Callbacks for bus specific translators */
46 const char *addresses
;
47 int (*match
)(struct device_node
*parent
);
48 void (*count_cells
)(struct device_node
*child
,
49 int *addrc
, int *sizec
);
50 u64 (*map
)(__be32
*addr
, const __be32
*range
,
51 int na
, int ns
, int pna
);
52 int (*translate
)(__be32
*addr
, u64 offset
, int na
);
54 unsigned int (*get_flags
)(const __be32
*addr
);
58 * Default translator (generic bus)
61 static void of_bus_default_count_cells(struct device_node
*dev
,
62 int *addrc
, int *sizec
)
65 *addrc
= of_n_addr_cells(dev
);
67 *sizec
= of_n_size_cells(dev
);
70 static u64
of_bus_default_map(__be32
*addr
, const __be32
*range
,
71 int na
, int ns
, int pna
)
75 cp
= of_read_number(range
, na
);
76 s
= of_read_number(range
+ na
+ pna
, ns
);
77 da
= of_read_number(addr
, na
);
79 pr_debug("default map, cp=%llx, s=%llx, da=%llx\n",
80 (unsigned long long)cp
, (unsigned long long)s
,
81 (unsigned long long)da
);
83 if (da
< cp
|| da
>= (cp
+ s
))
88 static int of_bus_default_translate(__be32
*addr
, u64 offset
, int na
)
90 u64 a
= of_read_number(addr
, na
);
91 memset(addr
, 0, na
* 4);
94 addr
[na
- 2] = cpu_to_be32(a
>> 32);
95 addr
[na
- 1] = cpu_to_be32(a
& 0xffffffffu
);
100 static unsigned int of_bus_default_get_flags(const __be32
*addr
)
102 return IORESOURCE_MEM
;
106 static unsigned int of_bus_pci_get_flags(const __be32
*addr
)
108 unsigned int flags
= 0;
109 u32 w
= be32_to_cpup(addr
);
111 if (!IS_ENABLED(CONFIG_PCI
))
114 switch((w
>> 24) & 0x03) {
116 flags
|= IORESOURCE_IO
;
118 case 0x02: /* 32 bits */
119 case 0x03: /* 64 bits */
120 flags
|= IORESOURCE_MEM
;
124 flags
|= IORESOURCE_PREFETCH
;
129 * PCI bus specific translator
132 static bool of_node_is_pcie(struct device_node
*np
)
134 bool is_pcie
= of_node_name_eq(np
, "pcie");
137 pr_warn_once("%pOF: Missing device_type\n", np
);
142 static int of_bus_pci_match(struct device_node
*np
)
145 * "pciex" is PCI Express
146 * "vci" is for the /chaos bridge on 1st-gen PCI powermacs
147 * "ht" is hypertransport
149 * If none of the device_type match, and that the node name is
150 * "pcie", accept the device as PCI (with a warning).
152 return of_node_is_type(np
, "pci") || of_node_is_type(np
, "pciex") ||
153 of_node_is_type(np
, "vci") || of_node_is_type(np
, "ht") ||
157 static void of_bus_pci_count_cells(struct device_node
*np
,
158 int *addrc
, int *sizec
)
166 static u64
of_bus_pci_map(__be32
*addr
, const __be32
*range
, int na
, int ns
,
172 af
= of_bus_pci_get_flags(addr
);
173 rf
= of_bus_pci_get_flags(range
);
175 /* Check address type match */
176 if ((af
^ rf
) & (IORESOURCE_MEM
| IORESOURCE_IO
))
179 /* Read address values, skipping high cell */
180 cp
= of_read_number(range
+ 1, na
- 1);
181 s
= of_read_number(range
+ na
+ pna
, ns
);
182 da
= of_read_number(addr
+ 1, na
- 1);
184 pr_debug("PCI map, cp=%llx, s=%llx, da=%llx\n",
185 (unsigned long long)cp
, (unsigned long long)s
,
186 (unsigned long long)da
);
188 if (da
< cp
|| da
>= (cp
+ s
))
193 static int of_bus_pci_translate(__be32
*addr
, u64 offset
, int na
)
195 return of_bus_default_translate(addr
+ 1, offset
, na
- 1);
198 const __be32
*of_get_pci_address(struct device_node
*dev
, int bar_no
, u64
*size
,
203 struct device_node
*parent
;
205 int onesize
, i
, na
, ns
;
207 /* Get parent & match bus type */
208 parent
= of_get_parent(dev
);
211 bus
= of_match_bus(parent
);
212 if (strcmp(bus
->name
, "pci")) {
216 bus
->count_cells(dev
, &na
, &ns
);
218 if (!OF_CHECK_ADDR_COUNT(na
))
221 /* Get "reg" or "assigned-addresses" property */
222 prop
= of_get_property(dev
, bus
->addresses
, &psize
);
228 for (i
= 0; psize
>= onesize
; psize
-= onesize
, prop
+= onesize
, i
++) {
229 u32 val
= be32_to_cpu(prop
[0]);
230 if ((val
& 0xff) == ((bar_no
* 4) + PCI_BASE_ADDRESS_0
)) {
232 *size
= of_read_number(prop
+ na
, ns
);
234 *flags
= bus
->get_flags(prop
);
240 EXPORT_SYMBOL(of_get_pci_address
);
242 int of_pci_address_to_resource(struct device_node
*dev
, int bar
,
249 addrp
= of_get_pci_address(dev
, bar
, &size
, &flags
);
252 return __of_address_to_resource(dev
, addrp
, size
, flags
, NULL
, r
);
254 EXPORT_SYMBOL_GPL(of_pci_address_to_resource
);
257 * of_pci_range_to_resource - Create a resource from an of_pci_range
258 * @range: the PCI range that describes the resource
259 * @np: device node where the range belongs to
260 * @res: pointer to a valid resource that will be updated to
261 * reflect the values contained in the range.
263 * Returns EINVAL if the range cannot be converted to resource.
265 * Note that if the range is an IO range, the resource will be converted
266 * using pci_address_to_pio() which can fail if it is called too early or
267 * if the range cannot be matched to any host bridge IO space (our case here).
268 * To guard against that we try to register the IO range first.
269 * If that fails we know that pci_address_to_pio() will do too.
271 int of_pci_range_to_resource(struct of_pci_range
*range
,
272 struct device_node
*np
, struct resource
*res
)
275 res
->flags
= range
->flags
;
276 res
->parent
= res
->child
= res
->sibling
= NULL
;
277 res
->name
= np
->full_name
;
279 if (res
->flags
& IORESOURCE_IO
) {
281 err
= pci_register_io_range(&np
->fwnode
, range
->cpu_addr
,
285 port
= pci_address_to_pio(range
->cpu_addr
);
286 if (port
== (unsigned long)-1) {
292 if ((sizeof(resource_size_t
) < 8) &&
293 upper_32_bits(range
->cpu_addr
)) {
298 res
->start
= range
->cpu_addr
;
300 res
->end
= res
->start
+ range
->size
- 1;
304 res
->start
= (resource_size_t
)OF_BAD_ADDR
;
305 res
->end
= (resource_size_t
)OF_BAD_ADDR
;
308 EXPORT_SYMBOL(of_pci_range_to_resource
);
309 #endif /* CONFIG_PCI */
312 * ISA bus specific translator
315 static int of_bus_isa_match(struct device_node
*np
)
317 return of_node_name_eq(np
, "isa");
320 static void of_bus_isa_count_cells(struct device_node
*child
,
321 int *addrc
, int *sizec
)
329 static u64
of_bus_isa_map(__be32
*addr
, const __be32
*range
, int na
, int ns
,
334 /* Check address type match */
335 if ((addr
[0] ^ range
[0]) & cpu_to_be32(1))
338 /* Read address values, skipping high cell */
339 cp
= of_read_number(range
+ 1, na
- 1);
340 s
= of_read_number(range
+ na
+ pna
, ns
);
341 da
= of_read_number(addr
+ 1, na
- 1);
343 pr_debug("ISA map, cp=%llx, s=%llx, da=%llx\n",
344 (unsigned long long)cp
, (unsigned long long)s
,
345 (unsigned long long)da
);
347 if (da
< cp
|| da
>= (cp
+ s
))
352 static int of_bus_isa_translate(__be32
*addr
, u64 offset
, int na
)
354 return of_bus_default_translate(addr
+ 1, offset
, na
- 1);
357 static unsigned int of_bus_isa_get_flags(const __be32
*addr
)
359 unsigned int flags
= 0;
360 u32 w
= be32_to_cpup(addr
);
363 flags
|= IORESOURCE_IO
;
365 flags
|= IORESOURCE_MEM
;
370 * Array of bus specific translators
373 static struct of_bus of_busses
[] = {
378 .addresses
= "assigned-addresses",
379 .match
= of_bus_pci_match
,
380 .count_cells
= of_bus_pci_count_cells
,
381 .map
= of_bus_pci_map
,
382 .translate
= of_bus_pci_translate
,
384 .get_flags
= of_bus_pci_get_flags
,
386 #endif /* CONFIG_PCI */
391 .match
= of_bus_isa_match
,
392 .count_cells
= of_bus_isa_count_cells
,
393 .map
= of_bus_isa_map
,
394 .translate
= of_bus_isa_translate
,
396 .get_flags
= of_bus_isa_get_flags
,
403 .count_cells
= of_bus_default_count_cells
,
404 .map
= of_bus_default_map
,
405 .translate
= of_bus_default_translate
,
406 .get_flags
= of_bus_default_get_flags
,
410 static struct of_bus
*of_match_bus(struct device_node
*np
)
414 for (i
= 0; i
< ARRAY_SIZE(of_busses
); i
++)
415 if (!of_busses
[i
].match
|| of_busses
[i
].match(np
))
416 return &of_busses
[i
];
421 static int of_empty_ranges_quirk(struct device_node
*np
)
423 if (IS_ENABLED(CONFIG_PPC
)) {
424 /* To save cycles, we cache the result for global "Mac" setting */
425 static int quirk_state
= -1;
427 /* PA-SEMI sdc DT bug */
428 if (of_device_is_compatible(np
, "1682m-sdc"))
431 /* Make quirk cached */
434 of_machine_is_compatible("Power Macintosh") ||
435 of_machine_is_compatible("MacRISC");
441 static int of_translate_one(struct device_node
*parent
, struct of_bus
*bus
,
442 struct of_bus
*pbus
, __be32
*addr
,
443 int na
, int ns
, int pna
, const char *rprop
)
445 const __be32
*ranges
;
448 u64 offset
= OF_BAD_ADDR
;
451 * Normally, an absence of a "ranges" property means we are
452 * crossing a non-translatable boundary, and thus the addresses
453 * below the current cannot be converted to CPU physical ones.
454 * Unfortunately, while this is very clear in the spec, it's not
455 * what Apple understood, and they do have things like /uni-n or
456 * /ht nodes with no "ranges" property and a lot of perfectly
457 * useable mapped devices below them. Thus we treat the absence of
458 * "ranges" as equivalent to an empty "ranges" property which means
459 * a 1:1 translation at that level. It's up to the caller not to try
460 * to translate addresses that aren't supposed to be translated in
461 * the first place. --BenH.
463 * As far as we know, this damage only exists on Apple machines, so
464 * This code is only enabled on powerpc. --gcl
466 * This quirk also applies for 'dma-ranges' which frequently exist in
467 * child nodes without 'dma-ranges' in the parent nodes. --RobH
469 ranges
= of_get_property(parent
, rprop
, &rlen
);
470 if (ranges
== NULL
&& !of_empty_ranges_quirk(parent
) &&
471 strcmp(rprop
, "dma-ranges")) {
472 pr_debug("no ranges; cannot translate\n");
475 if (ranges
== NULL
|| rlen
== 0) {
476 offset
= of_read_number(addr
, na
);
477 memset(addr
, 0, pna
* 4);
478 pr_debug("empty ranges; 1:1 translation\n");
482 pr_debug("walking ranges...\n");
484 /* Now walk through the ranges */
486 rone
= na
+ pna
+ ns
;
487 for (; rlen
>= rone
; rlen
-= rone
, ranges
+= rone
) {
488 offset
= bus
->map(addr
, ranges
, na
, ns
, pna
);
489 if (offset
!= OF_BAD_ADDR
)
492 if (offset
== OF_BAD_ADDR
) {
493 pr_debug("not found !\n");
496 memcpy(addr
, ranges
+ na
, 4 * pna
);
499 of_dump_addr("parent translation for:", addr
, pna
);
500 pr_debug("with offset: %llx\n", (unsigned long long)offset
);
502 /* Translate it into parent bus space */
503 return pbus
->translate(addr
, offset
, pna
);
507 * Translate an address from the device-tree into a CPU physical address,
508 * this walks up the tree and applies the various bus mappings on the
511 * Note: We consider that crossing any level with #size-cells == 0 to mean
512 * that translation is impossible (that is we are not dealing with a value
513 * that can be mapped to a cpu physical address). This is not really specified
514 * that way, but this is traditionally the way IBM at least do things
516 * Whenever the translation fails, the *host pointer will be set to the
517 * device that had registered logical PIO mapping, and the return code is
518 * relative to that node.
520 static u64
__of_translate_address(struct device_node
*dev
,
521 struct device_node
*(*get_parent
)(const struct device_node
*),
522 const __be32
*in_addr
, const char *rprop
,
523 struct device_node
**host
)
525 struct device_node
*parent
= NULL
;
526 struct of_bus
*bus
, *pbus
;
527 __be32 addr
[OF_MAX_ADDR_CELLS
];
528 int na
, ns
, pna
, pns
;
529 u64 result
= OF_BAD_ADDR
;
531 pr_debug("** translation for device %pOF **\n", dev
);
533 /* Increase refcount at current level */
537 /* Get parent & match bus type */
538 parent
= get_parent(dev
);
541 bus
= of_match_bus(parent
);
543 /* Count address cells & copy address locally */
544 bus
->count_cells(dev
, &na
, &ns
);
545 if (!OF_CHECK_COUNTS(na
, ns
)) {
546 pr_debug("Bad cell count for %pOF\n", dev
);
549 memcpy(addr
, in_addr
, na
* 4);
551 pr_debug("bus is %s (na=%d, ns=%d) on %pOF\n",
552 bus
->name
, na
, ns
, parent
);
553 of_dump_addr("translating address:", addr
, na
);
557 struct logic_pio_hwaddr
*iorange
;
559 /* Switch to parent bus */
562 parent
= get_parent(dev
);
564 /* If root, we have finished */
565 if (parent
== NULL
) {
566 pr_debug("reached root node\n");
567 result
= of_read_number(addr
, na
);
572 * For indirectIO device which has no ranges property, get
573 * the address from reg directly.
575 iorange
= find_io_range_by_fwnode(&dev
->fwnode
);
576 if (iorange
&& (iorange
->flags
!= LOGIC_PIO_CPU_MMIO
)) {
577 result
= of_read_number(addr
+ 1, na
- 1);
578 pr_debug("indirectIO matched(%pOF) 0x%llx\n",
580 *host
= of_node_get(dev
);
584 /* Get new parent bus and counts */
585 pbus
= of_match_bus(parent
);
586 pbus
->count_cells(dev
, &pna
, &pns
);
587 if (!OF_CHECK_COUNTS(pna
, pns
)) {
588 pr_err("Bad cell count for %pOF\n", dev
);
592 pr_debug("parent bus is %s (na=%d, ns=%d) on %pOF\n",
593 pbus
->name
, pna
, pns
, parent
);
595 /* Apply bus translation */
596 if (of_translate_one(dev
, bus
, pbus
, addr
, na
, ns
, pna
, rprop
))
599 /* Complete the move up one level */
604 of_dump_addr("one level translation:", addr
, na
);
613 u64
of_translate_address(struct device_node
*dev
, const __be32
*in_addr
)
615 struct device_node
*host
;
618 ret
= __of_translate_address(dev
, of_get_parent
,
619 in_addr
, "ranges", &host
);
627 EXPORT_SYMBOL(of_translate_address
);
629 static struct device_node
*__of_get_dma_parent(const struct device_node
*np
)
631 struct of_phandle_args args
;
634 index
= of_property_match_string(np
, "interconnect-names", "dma-mem");
636 return of_get_parent(np
);
638 ret
= of_parse_phandle_with_args(np
, "interconnects",
639 "#interconnect-cells",
642 return of_get_parent(np
);
644 return of_node_get(args
.np
);
647 static struct device_node
*of_get_next_dma_parent(struct device_node
*np
)
649 struct device_node
*parent
;
651 parent
= __of_get_dma_parent(np
);
657 u64
of_translate_dma_address(struct device_node
*dev
, const __be32
*in_addr
)
659 struct device_node
*host
;
662 ret
= __of_translate_address(dev
, __of_get_dma_parent
,
663 in_addr
, "dma-ranges", &host
);
672 EXPORT_SYMBOL(of_translate_dma_address
);
674 const __be32
*of_get_address(struct device_node
*dev
, int index
, u64
*size
,
679 struct device_node
*parent
;
681 int onesize
, i
, na
, ns
;
683 /* Get parent & match bus type */
684 parent
= of_get_parent(dev
);
687 bus
= of_match_bus(parent
);
688 bus
->count_cells(dev
, &na
, &ns
);
690 if (!OF_CHECK_ADDR_COUNT(na
))
693 /* Get "reg" or "assigned-addresses" property */
694 prop
= of_get_property(dev
, bus
->addresses
, &psize
);
700 for (i
= 0; psize
>= onesize
; psize
-= onesize
, prop
+= onesize
, i
++)
703 *size
= of_read_number(prop
+ na
, ns
);
705 *flags
= bus
->get_flags(prop
);
710 EXPORT_SYMBOL(of_get_address
);
712 static int parser_init(struct of_pci_range_parser
*parser
,
713 struct device_node
*node
, const char *name
)
718 parser
->pna
= of_n_addr_cells(node
);
719 parser
->na
= of_bus_n_addr_cells(node
);
720 parser
->ns
= of_bus_n_size_cells(node
);
721 parser
->dma
= !strcmp(name
, "dma-ranges");
722 parser
->bus
= of_match_bus(node
);
724 parser
->range
= of_get_property(node
, name
, &rlen
);
725 if (parser
->range
== NULL
)
728 parser
->end
= parser
->range
+ rlen
/ sizeof(__be32
);
733 int of_pci_range_parser_init(struct of_pci_range_parser
*parser
,
734 struct device_node
*node
)
736 return parser_init(parser
, node
, "ranges");
738 EXPORT_SYMBOL_GPL(of_pci_range_parser_init
);
740 int of_pci_dma_range_parser_init(struct of_pci_range_parser
*parser
,
741 struct device_node
*node
)
743 return parser_init(parser
, node
, "dma-ranges");
745 EXPORT_SYMBOL_GPL(of_pci_dma_range_parser_init
);
746 #define of_dma_range_parser_init of_pci_dma_range_parser_init
748 struct of_pci_range
*of_pci_range_parser_one(struct of_pci_range_parser
*parser
,
749 struct of_pci_range
*range
)
753 int np
= parser
->pna
+ na
+ ns
;
759 if (!parser
->range
|| parser
->range
+ np
> parser
->end
)
762 range
->flags
= parser
->bus
->get_flags(parser
->range
);
764 /* A extra cell for resource flags */
765 if (parser
->bus
->has_flags
)
768 range
->bus_addr
= of_read_number(parser
->range
+ busflag_na
, na
- busflag_na
);
771 range
->cpu_addr
= of_translate_dma_address(parser
->node
,
774 range
->cpu_addr
= of_translate_address(parser
->node
,
776 range
->size
= of_read_number(parser
->range
+ parser
->pna
+ na
, ns
);
780 /* Now consume following elements while they are contiguous */
781 while (parser
->range
+ np
<= parser
->end
) {
783 u64 bus_addr
, cpu_addr
, size
;
785 flags
= parser
->bus
->get_flags(parser
->range
);
786 bus_addr
= of_read_number(parser
->range
+ busflag_na
, na
- busflag_na
);
788 cpu_addr
= of_translate_dma_address(parser
->node
,
791 cpu_addr
= of_translate_address(parser
->node
,
793 size
= of_read_number(parser
->range
+ parser
->pna
+ na
, ns
);
795 if (flags
!= range
->flags
)
797 if (bus_addr
!= range
->bus_addr
+ range
->size
||
798 cpu_addr
!= range
->cpu_addr
+ range
->size
)
807 EXPORT_SYMBOL_GPL(of_pci_range_parser_one
);
809 static u64
of_translate_ioport(struct device_node
*dev
, const __be32
*in_addr
,
814 struct device_node
*host
;
816 taddr
= __of_translate_address(dev
, of_get_parent
,
817 in_addr
, "ranges", &host
);
819 /* host-specific port access */
820 port
= logic_pio_trans_hwaddr(&host
->fwnode
, taddr
, size
);
823 /* memory-mapped I/O range */
824 port
= pci_address_to_pio(taddr
);
827 if (port
== (unsigned long)-1)
833 static int __of_address_to_resource(struct device_node
*dev
,
834 const __be32
*addrp
, u64 size
, unsigned int flags
,
835 const char *name
, struct resource
*r
)
839 if (flags
& IORESOURCE_MEM
)
840 taddr
= of_translate_address(dev
, addrp
);
841 else if (flags
& IORESOURCE_IO
)
842 taddr
= of_translate_ioport(dev
, addrp
, size
);
846 if (taddr
== OF_BAD_ADDR
)
848 memset(r
, 0, sizeof(struct resource
));
851 r
->end
= taddr
+ size
- 1;
853 r
->name
= name
? name
: dev
->full_name
;
859 * of_address_to_resource - Translate device tree address and return as resource
861 * Note that if your address is a PIO address, the conversion will fail if
862 * the physical address can't be internally converted to an IO token with
863 * pci_address_to_pio(), that is because it's either called too early or it
864 * can't be matched to any host bridge IO space
866 int of_address_to_resource(struct device_node
*dev
, int index
,
872 const char *name
= NULL
;
874 addrp
= of_get_address(dev
, index
, &size
, &flags
);
878 /* Get optional "reg-names" property to add a name to a resource */
879 of_property_read_string_index(dev
, "reg-names", index
, &name
);
881 return __of_address_to_resource(dev
, addrp
, size
, flags
, name
, r
);
883 EXPORT_SYMBOL_GPL(of_address_to_resource
);
886 * of_iomap - Maps the memory mapped IO for a given device_node
887 * @np: the device whose io range will be mapped
888 * @index: index of the io range
890 * Returns a pointer to the mapped memory
892 void __iomem
*of_iomap(struct device_node
*np
, int index
)
896 if (of_address_to_resource(np
, index
, &res
))
899 return ioremap(res
.start
, resource_size(&res
));
901 EXPORT_SYMBOL(of_iomap
);
904 * of_io_request_and_map - Requests a resource and maps the memory mapped IO
905 * for a given device_node
906 * @device: the device whose io range will be mapped
907 * @index: index of the io range
908 * @name: name "override" for the memory region request or NULL
910 * Returns a pointer to the requested and mapped memory or an ERR_PTR() encoded
911 * error code on failure. Usage example:
913 * base = of_io_request_and_map(node, 0, "foo");
915 * return PTR_ERR(base);
917 void __iomem
*of_io_request_and_map(struct device_node
*np
, int index
,
923 if (of_address_to_resource(np
, index
, &res
))
924 return IOMEM_ERR_PTR(-EINVAL
);
928 if (!request_mem_region(res
.start
, resource_size(&res
), name
))
929 return IOMEM_ERR_PTR(-EBUSY
);
931 mem
= ioremap(res
.start
, resource_size(&res
));
933 release_mem_region(res
.start
, resource_size(&res
));
934 return IOMEM_ERR_PTR(-ENOMEM
);
939 EXPORT_SYMBOL(of_io_request_and_map
);
941 #ifdef CONFIG_HAS_DMA
943 * of_dma_get_range - Get DMA range info and put it into a map array
944 * @np: device node to get DMA range info
945 * @map: dma range structure to return
947 * Look in bottom up direction for the first "dma-ranges" property
948 * and parse it. Put the information into a DMA offset map array.
951 * DMA addr (dma_addr) : naddr cells
952 * CPU addr (phys_addr_t) : pna cells
955 * It returns -ENODEV if "dma-ranges" property was not found for this
958 int of_dma_get_range(struct device_node
*np
, const struct bus_dma_region
**map
)
960 struct device_node
*node
= of_node_get(np
);
961 const __be32
*ranges
= NULL
;
962 bool found_dma_ranges
= false;
963 struct of_range_parser parser
;
964 struct of_range range
;
965 struct bus_dma_region
*r
;
966 int len
, num_ranges
= 0;
970 ranges
= of_get_property(node
, "dma-ranges", &len
);
972 /* Ignore empty ranges, they imply no translation required */
973 if (ranges
&& len
> 0)
976 /* Once we find 'dma-ranges', then a missing one is an error */
977 if (found_dma_ranges
&& !ranges
) {
981 found_dma_ranges
= true;
983 node
= of_get_next_dma_parent(node
);
986 if (!node
|| !ranges
) {
987 pr_debug("no dma-ranges found for node(%pOF)\n", np
);
992 of_dma_range_parser_init(&parser
, node
);
993 for_each_of_range(&parser
, &range
)
996 r
= kcalloc(num_ranges
+ 1, sizeof(*r
), GFP_KERNEL
);
1003 * Record all info in the generic DMA ranges array for struct device.
1006 of_dma_range_parser_init(&parser
, node
);
1007 for_each_of_range(&parser
, &range
) {
1008 pr_debug("dma_addr(%llx) cpu_addr(%llx) size(%llx)\n",
1009 range
.bus_addr
, range
.cpu_addr
, range
.size
);
1010 if (range
.cpu_addr
== OF_BAD_ADDR
) {
1011 pr_err("translation of DMA address(%llx) to CPU address failed node(%pOF)\n",
1012 range
.bus_addr
, node
);
1015 r
->cpu_start
= range
.cpu_addr
;
1016 r
->dma_start
= range
.bus_addr
;
1017 r
->size
= range
.size
;
1018 r
->offset
= range
.cpu_addr
- range
.bus_addr
;
1025 #endif /* CONFIG_HAS_DMA */
1028 * of_dma_get_max_cpu_address - Gets highest CPU address suitable for DMA
1029 * @np: The node to start searching from or NULL to start from the root
1031 * Gets the highest CPU physical address that is addressable by all DMA masters
1032 * in the sub-tree pointed by np, or the whole tree if NULL is passed. If no
1033 * DMA constrained device is found, it returns PHYS_ADDR_MAX.
1035 phys_addr_t __init
of_dma_get_max_cpu_address(struct device_node
*np
)
1037 phys_addr_t max_cpu_addr
= PHYS_ADDR_MAX
;
1038 struct of_range_parser parser
;
1039 phys_addr_t subtree_max_addr
;
1040 struct device_node
*child
;
1041 struct of_range range
;
1042 const __be32
*ranges
;
1049 ranges
= of_get_property(np
, "dma-ranges", &len
);
1050 if (ranges
&& len
) {
1051 of_dma_range_parser_init(&parser
, np
);
1052 for_each_of_range(&parser
, &range
)
1053 if (range
.cpu_addr
+ range
.size
> cpu_end
)
1054 cpu_end
= range
.cpu_addr
+ range
.size
- 1;
1056 if (max_cpu_addr
> cpu_end
)
1057 max_cpu_addr
= cpu_end
;
1060 for_each_available_child_of_node(np
, child
) {
1061 subtree_max_addr
= of_dma_get_max_cpu_address(child
);
1062 if (max_cpu_addr
> subtree_max_addr
)
1063 max_cpu_addr
= subtree_max_addr
;
1066 return max_cpu_addr
;
1070 * of_dma_is_coherent - Check if device is coherent
1073 * It returns true if "dma-coherent" property was found
1074 * for this device in the DT, or if DMA is coherent by
1075 * default for OF devices on the current platform.
1077 bool of_dma_is_coherent(struct device_node
*np
)
1079 struct device_node
*node
;
1081 if (IS_ENABLED(CONFIG_OF_DMA_DEFAULT_COHERENT
))
1084 node
= of_node_get(np
);
1087 if (of_property_read_bool(node
, "dma-coherent")) {
1091 node
= of_get_next_dma_parent(node
);
1096 EXPORT_SYMBOL_GPL(of_dma_is_coherent
);