Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Taken from Linux v4.9 drivers/of/address.c |
| 4 | * |
| 5 | * Modified for U-Boot |
| 6 | * Copyright (c) 2017 Google, Inc |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _DM_OF_ADDR_H |
| 10 | #define _DM_OF_ADDR_H |
| 11 | |
| 12 | /** |
| 13 | * of_translate_address() - translate a device-tree address to a CPU address |
| 14 | * |
| 15 | * Translate an address from the device-tree into a CPU physical address, |
| 16 | * this walks up the tree and applies the various bus mappings on the way. |
| 17 | * |
| 18 | * Note: We consider that crossing any level with #size-cells == 0 to mean |
| 19 | * that translation is impossible (that is we are not dealing with a value |
| 20 | * that can be mapped to a cpu physical address). This is not really specified |
| 21 | * that way, but this is traditionally the way IBM at least do things |
| 22 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 23 | * @np: pointer to node to check |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 24 | * @in_addr: pointer to input address |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 25 | * Return: translated address or OF_BAD_ADDR on error |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 26 | */ |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 27 | u64 of_translate_address(const struct device_node *np, const __be32 *in_addr); |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 28 | |
| 29 | /** |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 30 | * of_translate_dma_address() - translate a device-tree DMA address to a CPU |
| 31 | * address |
| 32 | * |
| 33 | * Translate a DMA address from the device-tree into a CPU physical address, |
| 34 | * this walks up the tree and applies the various bus mappings on the way. |
| 35 | * |
| 36 | * Note: We consider that crossing any level with #size-cells == 0 to mean |
| 37 | * that translation is impossible (that is we are not dealing with a value |
| 38 | * that can be mapped to a cpu physical address). This is not really specified |
| 39 | * that way, but this is traditionally the way IBM at least do things |
| 40 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 41 | * @np: ne |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 42 | * @in_addr: pointer to input DMA address |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 43 | * Return: translated DMA address or OF_BAD_ADDR on error |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 44 | */ |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 45 | u64 of_translate_dma_address(const struct device_node *np, const __be32 *in_addr); |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 46 | |
Nicolas Saenz Julienne | 51bdb50 | 2021-01-12 13:55:22 +0100 | [diff] [blame] | 47 | |
| 48 | /** |
| 49 | * of_get_dma_range() - get dma-ranges for a specific DT node |
| 50 | * |
| 51 | * Get DMA ranges for a specifc node, this is useful to perform bus->cpu and |
| 52 | * cpu->bus address translations |
| 53 | * |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 54 | * @np: Pointer to device tree blob |
| 55 | * @cpu: Pointer to variable storing the range's cpu address |
| 56 | * @bus: Pointer to variable storing the range's bus address |
| 57 | * @size: Pointer to variable storing the range's size |
| 58 | * Return: translated DMA address or OF_BAD_ADDR on error |
Nicolas Saenz Julienne | 51bdb50 | 2021-01-12 13:55:22 +0100 | [diff] [blame] | 59 | */ |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 60 | int of_get_dma_range(const struct device_node *np, phys_addr_t *cpu, |
Nicolas Saenz Julienne | 51bdb50 | 2021-01-12 13:55:22 +0100 | [diff] [blame] | 61 | dma_addr_t *bus, u64 *size); |
| 62 | |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 63 | /** |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 64 | * of_get_address() - obtain an address from a node |
| 65 | * |
| 66 | * Extract an address from a node, returns the region size and the address |
| 67 | * space flags too. The PCI version uses a BAR number instead of an absolute |
| 68 | * index. |
| 69 | * |
| 70 | * @np: Node to check |
| 71 | * @index: Index of address to read (0 = first) |
| 72 | * @size: place to put size on success |
| 73 | * @flags: place to put flags on success |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 74 | * Return: pointer to address which can be read |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 75 | */ |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 76 | const __be32 *of_get_address(const struct device_node *np, int index, |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 77 | u64 *size, unsigned int *flags); |
| 78 | |
| 79 | struct resource; |
| 80 | |
| 81 | /** |
| 82 | * of_address_to_resource() - translate device tree address to resource |
| 83 | * |
| 84 | * Note that if your address is a PIO address, the conversion will fail if |
| 85 | * the physical address can't be internally converted to an IO token with |
| 86 | * pci_address_to_pio(), that is because it's either called to early or it |
| 87 | * can't be matched to any host bridge IO space |
| 88 | * |
| 89 | * @np: node to check |
| 90 | * @index: index of address to read (0 = first) |
| 91 | * @r: place to put resource information |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 92 | * Return: 0 if OK, -ve on error |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 93 | */ |
Patrick Delaunay | be74f71 | 2022-01-12 10:53:49 +0100 | [diff] [blame] | 94 | int of_address_to_resource(const struct device_node *np, int index, |
Simon Glass | 38d21b4 | 2017-05-18 20:08:59 -0600 | [diff] [blame] | 95 | struct resource *r); |
| 96 | |
| 97 | #endif |