blob: 04558724a78342cdd85a82e8bb81426718ebcb7c [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
21 */
22enum lmb_flags {
Sughosh Ganu26d7fa12024-08-26 17:29:17 +053023 LMB_NONE = 0,
24 LMB_NOMAP = BIT(1),
Sughosh Ganu50e27272024-08-26 17:29:19 +053025 LMB_NOOVERWRITE = BIT(2),
Patrick Delaunaye11c9082021-05-07 14:50:29 +020026};
27
28/**
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053029 * struct lmb_region - Description of one region.
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010030 *
Heinrich Schuchardte6923f02021-11-14 08:43:07 +010031 * @base: Base address of the region.
32 * @size: Size of the region
33 * @flags: memory region attributes
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010034 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053035struct lmb_region {
Becky Bruced26d67c2008-06-09 20:37:18 -050036 phys_addr_t base;
37 phys_size_t size;
Patrick Delaunaye11c9082021-05-07 14:50:29 +020038 enum lmb_flags flags;
Kumar Gala6d7bfa82008-02-27 21:51:47 -060039};
40
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010041/**
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053042 * struct lmb - The LMB structure
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010043 *
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053044 * @free_mem: List of free memory regions
45 * @used_mem: List of used/reserved memory regions
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010046 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053047struct lmb {
48 struct alist free_mem;
49 struct alist used_mem;
Kumar Gala6d7bfa82008-02-27 21:51:47 -060050};
51
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010052/**
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053053 * lmb_init() - Initialise the LMB module
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010054 *
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053055 * Initialise the LMB lists needed for keeping the memory map. There
56 * are two lists, in form of alloced list data structure. One for the
57 * available memory, and one for the used memory. Initialise the two
58 * lists as part of board init. Add memory to the available memory
59 * list and reserve common areas by adding them to the used memory
60 * list.
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010061 *
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053062 * Return: 0 on success, -ve on error
Patrick Delaunay71cc9c52021-03-10 10:16:31 +010063 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053064int lmb_init(void);
Kumar Gala6d7bfa82008-02-27 21:51:47 -060065
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053066void lmb_init_and_reserve_range(phys_addr_t base, phys_size_t size,
67 void *fdt_blob);
Sughosh Ganu65597fa2024-08-26 17:29:23 +053068
69/**
70 * lmb_add_memory() - Add memory range for LMB allocations
71 *
72 * Add the entire available memory range to the pool of memory that
73 * can be used by the LMB module for allocations.
74 *
75 * Return: None
76 */
77void lmb_add_memory(void);
78
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053079long lmb_add(phys_addr_t base, phys_size_t size);
80long lmb_reserve(phys_addr_t base, phys_size_t size);
Patrick Delaunaye11c9082021-05-07 14:50:29 +020081/**
82 * lmb_reserve_flags - Reserve one region with a specific flags bitfield.
83 *
Heinrich Schuchardte6923f02021-11-14 08:43:07 +010084 * @base: base address of the memory region
85 * @size: size of the memory region
86 * @flags: flags for the memory region
87 * Return: 0 if OK, > 0 for coalesced region or a negative error code.
Patrick Delaunaye11c9082021-05-07 14:50:29 +020088 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053089long lmb_reserve_flags(phys_addr_t base, phys_size_t size,
90 enum lmb_flags flags);
91phys_addr_t lmb_alloc(phys_size_t size, ulong align);
92phys_addr_t lmb_alloc_base(phys_size_t size, ulong align, phys_addr_t max_addr);
93phys_addr_t lmb_alloc_addr(phys_addr_t base, phys_size_t size);
94phys_size_t lmb_get_free_size(phys_addr_t addr);
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +020095
96/**
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +020097 * lmb_is_reserved_flags() - test if address is in reserved region with flag bits set
98 *
99 * The function checks if a reserved region comprising @addr exists which has
100 * all flag bits set which are set in @flags.
Patrick Delaunaydb2c9aa2021-05-07 14:50:30 +0200101 *
Heinrich Schuchardte6923f02021-11-14 08:43:07 +0100102 * @addr: address to be tested
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +0200103 * @flags: bitmap with bits to be tested
104 * Return: 1 if matching reservation exists, 0 otherwise
Patrick Delaunaydb2c9aa2021-05-07 14:50:30 +0200105 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530106int lmb_is_reserved_flags(phys_addr_t addr, int flags);
Heinrich Schuchardt5411fb72023-08-12 19:09:32 +0200107
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530108long lmb_free(phys_addr_t base, phys_size_t size);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600109
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530110void lmb_dump_all(void);
111void lmb_dump_all_force(void);
112
113void board_lmb_reserve(void);
114void arch_lmb_reserve(void);
115void arch_lmb_reserve_generic(ulong sp, ulong end, ulong align);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600116
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530117struct lmb *lmb_get(void);
118int lmb_push(struct lmb *store);
119void lmb_pop(struct lmb *store);
Mike Frysingera0dadf82009-11-03 11:35:59 -0500120
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600121#endif /* __KERNEL__ */
122
123#endif /* _LINUX_LMB_H */