Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 2 | #ifndef _LINUX_LMB_H |
| 3 | #define _LINUX_LMB_H |
| 4 | #ifdef __KERNEL__ |
| 5 | |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 6 | #include <alist.h> |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 7 | #include <asm/types.h> |
Simon Goldschmidt | 8890e7d | 2019-01-26 22:13:04 +0100 | [diff] [blame] | 8 | #include <asm/u-boot.h> |
Sughosh Ganu | 26d7fa1 | 2024-08-26 17:29:17 +0530 | [diff] [blame] | 9 | #include <linux/bitops.h> |
Simon Goldschmidt | 8890e7d | 2019-01-26 22:13:04 +0100 | [diff] [blame] | 10 | |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 11 | /* |
| 12 | * Logical memory blocks. |
| 13 | * |
| 14 | * Copyright (C) 2001 Peter Bergner, IBM Corp. |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 15 | */ |
| 16 | |
Ilias Apalodimas | 7d182fb | 2024-10-23 18:26:36 +0300 | [diff] [blame] | 17 | #define LMB_ALLOC_ANYWHERE 0 |
| 18 | #define LMB_ALIST_INITIAL_SIZE 4 |
| 19 | |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 20 | /** |
Patrick Delaunay | e11c908 | 2021-05-07 14:50:29 +0200 | [diff] [blame] | 21 | * enum lmb_flags - definition of memory region attributes |
| 22 | * @LMB_NONE: no special request |
| 23 | * @LMB_NOMAP: don't add to mmu configuration |
Sughosh Ganu | 7ebbdd7 | 2024-10-15 21:07:04 +0530 | [diff] [blame] | 24 | * @LMB_NOOVERWRITE: the memory region cannot be overwritten/re-reserved |
| 25 | * @LMB_NONOTIFY: do not notify other modules of changes to this memory region |
Patrick Delaunay | e11c908 | 2021-05-07 14:50:29 +0200 | [diff] [blame] | 26 | */ |
| 27 | enum lmb_flags { |
Sughosh Ganu | 26d7fa1 | 2024-08-26 17:29:17 +0530 | [diff] [blame] | 28 | LMB_NONE = 0, |
| 29 | LMB_NOMAP = BIT(1), |
Sughosh Ganu | 50e2727 | 2024-08-26 17:29:19 +0530 | [diff] [blame] | 30 | LMB_NOOVERWRITE = BIT(2), |
Sughosh Ganu | 7ebbdd7 | 2024-10-15 21:07:04 +0530 | [diff] [blame] | 31 | LMB_NONOTIFY = BIT(3), |
Patrick Delaunay | e11c908 | 2021-05-07 14:50:29 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | /** |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 35 | * struct lmb_region - Description of one region. |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 36 | * |
Heinrich Schuchardt | e6923f0 | 2021-11-14 08:43:07 +0100 | [diff] [blame] | 37 | * @base: Base address of the region. |
| 38 | * @size: Size of the region |
| 39 | * @flags: memory region attributes |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 40 | */ |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 41 | struct lmb_region { |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 42 | phys_addr_t base; |
| 43 | phys_size_t size; |
Patrick Delaunay | e11c908 | 2021-05-07 14:50:29 +0200 | [diff] [blame] | 44 | enum lmb_flags flags; |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 45 | }; |
| 46 | |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 47 | /** |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 48 | * struct lmb - The LMB structure |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 49 | * |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 50 | * @free_mem: List of free memory regions |
| 51 | * @used_mem: List of used/reserved memory regions |
Sughosh Ganu | a3af5ba | 2024-10-15 21:07:07 +0530 | [diff] [blame] | 52 | * @test: Is structure being used for LMB tests |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 53 | */ |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 54 | struct lmb { |
| 55 | struct alist free_mem; |
| 56 | struct alist used_mem; |
Sughosh Ganu | a3af5ba | 2024-10-15 21:07:07 +0530 | [diff] [blame] | 57 | bool test; |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 58 | }; |
| 59 | |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 60 | /** |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 61 | * lmb_init() - Initialise the LMB module |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 62 | * |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 63 | * Initialise the LMB lists needed for keeping the memory map. There |
| 64 | * are two lists, in form of alloced list data structure. One for the |
| 65 | * available memory, and one for the used memory. Initialise the two |
| 66 | * lists as part of board init. Add memory to the available memory |
| 67 | * list and reserve common areas by adding them to the used memory |
| 68 | * list. |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 69 | * |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 70 | * Return: 0 on success, -ve on error |
Patrick Delaunay | 71cc9c5 | 2021-03-10 10:16:31 +0100 | [diff] [blame] | 71 | */ |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 72 | int lmb_init(void); |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 73 | |
Sughosh Ganu | 65597fa | 2024-08-26 17:29:23 +0530 | [diff] [blame] | 74 | /** |
| 75 | * lmb_add_memory() - Add memory range for LMB allocations |
| 76 | * |
| 77 | * Add the entire available memory range to the pool of memory that |
| 78 | * can be used by the LMB module for allocations. |
| 79 | * |
| 80 | * Return: None |
| 81 | */ |
| 82 | void lmb_add_memory(void); |
| 83 | |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 84 | long lmb_add(phys_addr_t base, phys_size_t size); |
| 85 | long lmb_reserve(phys_addr_t base, phys_size_t size); |
Patrick Delaunay | e11c908 | 2021-05-07 14:50:29 +0200 | [diff] [blame] | 86 | /** |
| 87 | * lmb_reserve_flags - Reserve one region with a specific flags bitfield. |
| 88 | * |
Heinrich Schuchardt | e6923f0 | 2021-11-14 08:43:07 +0100 | [diff] [blame] | 89 | * @base: base address of the memory region |
| 90 | * @size: size of the memory region |
| 91 | * @flags: flags for the memory region |
| 92 | * Return: 0 if OK, > 0 for coalesced region or a negative error code. |
Patrick Delaunay | e11c908 | 2021-05-07 14:50:29 +0200 | [diff] [blame] | 93 | */ |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 94 | long lmb_reserve_flags(phys_addr_t base, phys_size_t size, |
| 95 | enum lmb_flags flags); |
| 96 | phys_addr_t lmb_alloc(phys_size_t size, ulong align); |
| 97 | phys_addr_t lmb_alloc_base(phys_size_t size, ulong align, phys_addr_t max_addr); |
| 98 | phys_addr_t lmb_alloc_addr(phys_addr_t base, phys_size_t size); |
| 99 | phys_size_t lmb_get_free_size(phys_addr_t addr); |
Heinrich Schuchardt | 5411fb7 | 2023-08-12 19:09:32 +0200 | [diff] [blame] | 100 | |
Sughosh Ganu | 7f15d32 | 2024-10-15 21:07:03 +0530 | [diff] [blame] | 101 | phys_addr_t lmb_alloc_base_flags(phys_size_t size, ulong align, |
| 102 | phys_addr_t max_addr, uint flags); |
| 103 | |
| 104 | /** |
| 105 | * lmb_alloc_addr_flags() - Allocate specified memory address with specified attributes |
| 106 | * @base: Base Address requested |
| 107 | * @size: Size of the region requested |
| 108 | * @flags: Memory region attributes to be set |
| 109 | * |
| 110 | * Allocate a region of memory with the attributes specified through the |
| 111 | * parameter. The base parameter is used to specify the base address |
| 112 | * of the requested region. |
| 113 | * |
| 114 | * Return: base address on success, 0 on error |
| 115 | */ |
| 116 | phys_addr_t lmb_alloc_addr_flags(phys_addr_t base, phys_size_t size, |
| 117 | uint flags); |
| 118 | |
| 119 | /** |
Heinrich Schuchardt | 5411fb7 | 2023-08-12 19:09:32 +0200 | [diff] [blame] | 120 | * lmb_is_reserved_flags() - test if address is in reserved region with flag bits set |
| 121 | * |
| 122 | * The function checks if a reserved region comprising @addr exists which has |
| 123 | * all flag bits set which are set in @flags. |
Patrick Delaunay | db2c9aa | 2021-05-07 14:50:30 +0200 | [diff] [blame] | 124 | * |
Heinrich Schuchardt | e6923f0 | 2021-11-14 08:43:07 +0100 | [diff] [blame] | 125 | * @addr: address to be tested |
Heinrich Schuchardt | 5411fb7 | 2023-08-12 19:09:32 +0200 | [diff] [blame] | 126 | * @flags: bitmap with bits to be tested |
| 127 | * Return: 1 if matching reservation exists, 0 otherwise |
Patrick Delaunay | db2c9aa | 2021-05-07 14:50:30 +0200 | [diff] [blame] | 128 | */ |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 129 | int lmb_is_reserved_flags(phys_addr_t addr, int flags); |
Heinrich Schuchardt | 5411fb7 | 2023-08-12 19:09:32 +0200 | [diff] [blame] | 130 | |
Sughosh Ganu | 7f15d32 | 2024-10-15 21:07:03 +0530 | [diff] [blame] | 131 | /** |
| 132 | * lmb_free_flags() - Free up a region of memory |
| 133 | * @base: Base Address of region to be freed |
| 134 | * @size: Size of the region to be freed |
| 135 | * @flags: Memory region attributes |
| 136 | * |
| 137 | * Free up a region of memory. |
| 138 | * |
| 139 | * Return: 0 if successful, -1 on failure |
| 140 | */ |
| 141 | long lmb_free_flags(phys_addr_t base, phys_size_t size, uint flags); |
| 142 | |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 143 | long lmb_free(phys_addr_t base, phys_size_t size); |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 144 | |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 145 | void lmb_dump_all(void); |
| 146 | void lmb_dump_all_force(void); |
| 147 | |
Sughosh Ganu | 1a36d44 | 2024-10-15 21:07:11 +0530 | [diff] [blame] | 148 | void lmb_arch_add_memory(void); |
| 149 | |
Sughosh Ganu | 291bf9c | 2024-08-26 17:29:18 +0530 | [diff] [blame] | 150 | struct lmb *lmb_get(void); |
| 151 | int lmb_push(struct lmb *store); |
| 152 | void lmb_pop(struct lmb *store); |
Mike Frysinger | a0dadf8 | 2009-11-03 11:35:59 -0500 | [diff] [blame] | 153 | |
Prasad Kummari | 940bebc | 2024-09-13 13:02:52 +0530 | [diff] [blame] | 154 | static inline int lmb_read_check(phys_addr_t addr, phys_size_t len) |
| 155 | { |
| 156 | return lmb_alloc_addr(addr, len) == addr ? 0 : -1; |
| 157 | } |
| 158 | |
Janne Grunau | e818d3c | 2024-11-11 07:56:33 +0100 | [diff] [blame] | 159 | /** |
| 160 | * io_lmb_setup() - Initialize LMB struct |
Tom Rini | d32dddb | 2024-11-11 07:26:50 -0600 | [diff] [blame] | 161 | * @io_lmb: IO LMB to initialize |
Janne Grunau | e818d3c | 2024-11-11 07:56:33 +0100 | [diff] [blame] | 162 | * |
| 163 | * Returns: 0 on success, negative error code on failure |
| 164 | */ |
| 165 | int io_lmb_setup(struct lmb *io_lmb); |
| 166 | |
| 167 | /** |
| 168 | * io_lmb_teardown() - Tear LMB struct down |
Tom Rini | d32dddb | 2024-11-11 07:26:50 -0600 | [diff] [blame] | 169 | * @io_lmb: IO LMB to teardown |
Janne Grunau | e818d3c | 2024-11-11 07:56:33 +0100 | [diff] [blame] | 170 | */ |
| 171 | void io_lmb_teardown(struct lmb *io_lmb); |
| 172 | |
| 173 | /** |
| 174 | * io_lmb_add() - Add an IOVA range for allocations |
| 175 | * @io_lmb: LMB to add the space to |
| 176 | * @base: Base Address of region to add |
| 177 | * @size: Size of the region to add |
| 178 | * |
| 179 | * Add the IOVA space [base, base + size] to be managed by io_lmb. |
| 180 | * |
| 181 | * Returns: 0 if the region addition was successful, -1 on failure |
| 182 | */ |
| 183 | long io_lmb_add(struct lmb *io_lmb, phys_addr_t base, phys_size_t size); |
| 184 | |
| 185 | /** |
| 186 | * io_lmb_alloc() - Allocate specified IO memory address with specified alignment |
| 187 | * @io_lmb: LMB to alloc from |
| 188 | * @size: Size of the region requested |
| 189 | * @align: Required address and size alignment |
| 190 | * |
| 191 | * Allocate a region of IO memory. The base parameter is used to specify the |
| 192 | * base address of the requested region. |
| 193 | * |
| 194 | * Return: base IO address on success, 0 on error |
| 195 | */ |
| 196 | phys_addr_t io_lmb_alloc(struct lmb *io_lmb, phys_size_t size, ulong align); |
| 197 | |
| 198 | /** |
| 199 | * io_lmb_free() - Free up a region of IOVA space |
| 200 | * @io_lmb: LMB to return the IO address space to |
| 201 | * @base: Base Address of region to be freed |
| 202 | * @size: Size of the region to be freed |
| 203 | * |
| 204 | * Free up a region of IOVA space. |
| 205 | * |
| 206 | * Return: 0 if successful, -1 on failure |
| 207 | */ |
| 208 | long io_lmb_free(struct lmb *io_lmb, phys_addr_t base, phys_size_t size); |
| 209 | |
Kumar Gala | 6d7bfa8 | 2008-02-27 21:51:47 -0600 | [diff] [blame] | 210 | #endif /* __KERNEL__ */ |
| 211 | |
| 212 | #endif /* _LINUX_LMB_H */ |