blob: e46abf400c682237923806b7615e63531a76f47b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kumar Gala6d7bfa82008-02-27 21:51:47 -06002#ifndef _LINUX_LMB_H
3#define _LINUX_LMB_H
4#ifdef __KERNEL__
5
Sughosh Ganu291bf9c2024-08-26 17:29:18 +05306#include <alist.h>
Kumar Gala6d7bfa82008-02-27 21:51:47 -06007#include <asm/types.h>
Simon Goldschmidt8890e7d2019-01-26 22:13:04 +01008#include <asm/u-boot.h>
Sughosh Ganu26d7fa12024-08-26 17:29:17 +05309#include <linux/bitops.h>
Simon Goldschmidt8890e7d2019-01-26 22:13:04 +010010
Kumar Gala6d7bfa82008-02-27 21:51:47 -060011/*
12 * Logical memory blocks.
13 *
14 * Copyright (C) 2001 Peter Bergner, IBM Corp.
Kumar Gala6d7bfa82008-02-27 21:51:47 -060015 */
16
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010017/**
Patrick Delaunaye11c9082021-05-07 14:50:29 +020018 * enum lmb_flags - definition of memory region attributes
19 * @LMB_NONE: no special request
20 * @LMB_NOMAP: don't add to mmu configuration
Sughosh Ganu7ebbdd72024-10-15 21:07:04 +053021 * @LMB_NOOVERWRITE: the memory region cannot be overwritten/re-reserved
22 * @LMB_NONOTIFY: do not notify other modules of changes to this memory region
Patrick Delaunaye11c9082021-05-07 14:50:29 +020023 */
24enum lmb_flags {
Sughosh Ganu26d7fa12024-08-26 17:29:17 +053025 LMB_NONE = 0,
26 LMB_NOMAP = BIT(1),
Sughosh Ganu50e27272024-08-26 17:29:19 +053027 LMB_NOOVERWRITE = BIT(2),
Sughosh Ganu7ebbdd72024-10-15 21:07:04 +053028 LMB_NONOTIFY = BIT(3),
Patrick Delaunaye11c9082021-05-07 14:50:29 +020029};
30
31/**
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053032 * struct lmb_region - Description of one region.
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010033 *
Heinrich Schuchardte6923f02021-11-14 08:43:07 +010034 * @base: Base address of the region.
35 * @size: Size of the region
36 * @flags: memory region attributes
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010037 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053038struct lmb_region {
Becky Bruced26d67c2008-06-09 20:37:18 -050039 phys_addr_t base;
40 phys_size_t size;
Patrick Delaunaye11c9082021-05-07 14:50:29 +020041 enum lmb_flags flags;
Kumar Gala6d7bfa82008-02-27 21:51:47 -060042};
43
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010044/**
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053045 * struct lmb - The LMB structure
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010046 *
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053047 * @free_mem: List of free memory regions
48 * @used_mem: List of used/reserved memory regions
Sughosh Ganua3af5ba2024-10-15 21:07:07 +053049 * @test: Is structure being used for LMB tests
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010050 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053051struct lmb {
52 struct alist free_mem;
53 struct alist used_mem;
Sughosh Ganua3af5ba2024-10-15 21:07:07 +053054 bool test;
Kumar Gala6d7bfa82008-02-27 21:51:47 -060055};
56
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010057/**
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053058 * lmb_init() - Initialise the LMB module
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010059 *
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053060 * Initialise the LMB lists needed for keeping the memory map. There
61 * are two lists, in form of alloced list data structure. One for the
62 * available memory, and one for the used memory. Initialise the two
63 * lists as part of board init. Add memory to the available memory
64 * list and reserve common areas by adding them to the used memory
65 * list.
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010066 *
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053067 * Return: 0 on success, -ve on error
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010068 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053069int lmb_init(void);
Kumar Gala6d7bfa82008-02-27 21:51:47 -060070
Sughosh Ganu65597fa2024-08-26 17:29:23 +053071/**
72 * lmb_add_memory() - Add memory range for LMB allocations
73 *
74 * Add the entire available memory range to the pool of memory that
75 * can be used by the LMB module for allocations.
76 *
77 * Return: None
78 */
79void lmb_add_memory(void);
80
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053081long lmb_add(phys_addr_t base, phys_size_t size);
82long lmb_reserve(phys_addr_t base, phys_size_t size);
Patrick Delaunaye11c9082021-05-07 14:50:29 +020083/**
84 * lmb_reserve_flags - Reserve one region with a specific flags bitfield.
85 *
Heinrich Schuchardte6923f02021-11-14 08:43:07 +010086 * @base: base address of the memory region
87 * @size: size of the memory region
88 * @flags: flags for the memory region
89 * Return: 0 if OK, > 0 for coalesced region or a negative error code.
Patrick Delaunaye11c9082021-05-07 14:50:29 +020090 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053091long lmb_reserve_flags(phys_addr_t base, phys_size_t size,
92 enum lmb_flags flags);
93phys_addr_t lmb_alloc(phys_size_t size, ulong align);
94phys_addr_t lmb_alloc_base(phys_size_t size, ulong align, phys_addr_t max_addr);
95phys_addr_t lmb_alloc_addr(phys_addr_t base, phys_size_t size);
96phys_size_t lmb_get_free_size(phys_addr_t addr);
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +020097
98/**
Sughosh Ganu7f15d322024-10-15 21:07:03 +053099 * lmb_alloc_flags() - Allocate memory region with specified attributes
100 * @size: Size of the region requested
101 * @align: Alignment of the memory region requested
102 * @flags: Memory region attributes to be set
103 *
104 * Allocate a region of memory with the attributes specified through the
105 * parameter.
106 *
107 * Return: base address on success, 0 on error
108 */
109phys_addr_t lmb_alloc_flags(phys_size_t size, ulong align, uint flags);
110
111/**
112 * lmb_alloc_base_flags() - Allocate specified memory region with specified attributes
113 * @size: Size of the region requested
114 * @align: Alignment of the memory region requested
115 * @max_addr: Maximum address of the requested region
116 * @flags: Memory region attributes to be set
117 *
118 * Allocate a region of memory with the attributes specified through the
119 * parameter. The max_addr parameter is used to specify the maximum address
120 * below which the requested region should be allocated.
121 *
122 * Return: base address on success, 0 on error
123 */
124phys_addr_t lmb_alloc_base_flags(phys_size_t size, ulong align,
125 phys_addr_t max_addr, uint flags);
126
127/**
128 * lmb_alloc_addr_flags() - Allocate specified memory address with specified attributes
129 * @base: Base Address requested
130 * @size: Size of the region requested
131 * @flags: Memory region attributes to be set
132 *
133 * Allocate a region of memory with the attributes specified through the
134 * parameter. The base parameter is used to specify the base address
135 * of the requested region.
136 *
137 * Return: base address on success, 0 on error
138 */
139phys_addr_t lmb_alloc_addr_flags(phys_addr_t base, phys_size_t size,
140 uint flags);
141
142/**
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +0200143 * lmb_is_reserved_flags() - test if address is in reserved region with flag bits set
144 *
145 * The function checks if a reserved region comprising @addr exists which has
146 * all flag bits set which are set in @flags.
Patrick Delaunaydb2c9aa2021-05-07 14:50:30 +0200147 *
Heinrich Schuchardte6923f02021-11-14 08:43:07 +0100148 * @addr: address to be tested
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +0200149 * @flags: bitmap with bits to be tested
150 * Return: 1 if matching reservation exists, 0 otherwise
Patrick Delaunaydb2c9aa2021-05-07 14:50:30 +0200151 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530152int lmb_is_reserved_flags(phys_addr_t addr, int flags);
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +0200153
Sughosh Ganu7f15d322024-10-15 21:07:03 +0530154/**
155 * lmb_free_flags() - Free up a region of memory
156 * @base: Base Address of region to be freed
157 * @size: Size of the region to be freed
158 * @flags: Memory region attributes
159 *
160 * Free up a region of memory.
161 *
162 * Return: 0 if successful, -1 on failure
163 */
164long lmb_free_flags(phys_addr_t base, phys_size_t size, uint flags);
165
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530166long lmb_free(phys_addr_t base, phys_size_t size);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600167
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530168void lmb_dump_all(void);
169void lmb_dump_all_force(void);
170
Sughosh Ganu1a36d442024-10-15 21:07:11 +0530171void lmb_arch_add_memory(void);
172
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530173struct lmb *lmb_get(void);
174int lmb_push(struct lmb *store);
175void lmb_pop(struct lmb *store);
Mike Frysingera0dadf82009-11-03 11:35:59 -0500176
Prasad Kummari940bebc2024-09-13 13:02:52 +0530177static inline int lmb_read_check(phys_addr_t addr, phys_size_t len)
178{
179 return lmb_alloc_addr(addr, len) == addr ? 0 : -1;
180}
181
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600182#endif /* __KERNEL__ */
183
184#endif /* _LINUX_LMB_H */