blob: 7afe96011604ae8d6c049274b637dc7daa48bb8a [file] [log] [blame]
Stefan Reinauer3b314022009-10-26 17:04:28 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009 coresystems GmbH
Aaron Durbindf3a1092013-03-13 12:41:44 -05005 * Copyright (C) 2013 Google, Inc.
Stefan Reinauer3b314022009-10-26 17:04:28 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Stefan Reinauer3b314022009-10-26 17:04:28 +000019 */
20
21#ifndef _CBMEM_H_
22#define _CBMEM_H_
23
Marc Jonesa8bda432015-06-04 23:36:01 -060024#include <cbmem_id.h>
25
Kyösti Mälkki2ca2afe2014-06-17 15:41:37 +030026#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME) && \
27 ! IS_ENABLED(CONFIG_RELOCATABLE_RAMSTAGE)
zbaof7223732012-04-13 13:42:15 +080028#define HIGH_MEMORY_SAVE (CONFIG_RAMTOP - CONFIG_RAMBASE)
Kyösti Mälkki2ca2afe2014-06-17 15:41:37 +030029#else
30#define HIGH_MEMORY_SAVE 0
31#endif
32
Stefan Reinauer61f4a742012-04-03 16:21:04 -070033/* Delegation of resume backup memory so we don't have to
34 * (slowly) handle backing up OS memory in romstage.c
35 */
36#define CBMEM_BOOT_MODE 0x610
37#define CBMEM_RESUME_BACKUP 0x614
Martin Roth582b2ae2015-01-11 14:29:29 -070038#define CBMEM_FSP_HOB_PTR 0x614
Stefan Reinauer3b314022009-10-26 17:04:28 +000039
Stefan Reinauer61f4a742012-04-03 16:21:04 -070040#ifndef __ASSEMBLER__
Aaron Durbin0f333072014-01-30 17:19:46 -060041#include <stddef.h>
Aaron Durbindf3a1092013-03-13 12:41:44 -050042#include <stdint.h>
43
44struct cbmem_entry;
45
Aaron Durbindf3a1092013-03-13 12:41:44 -050046/*
47 * The dynamic cbmem infrastructure allows for growing cbmem dynamically as
48 * things are added. It requires an external function, cbmem_top(), to be
49 * implemented by the board or chipset to define the upper address where
50 * cbmem lives. This address is required to be a 32-bit address. Additionally,
51 * the address needs to be consistent in both romstage and ramstage. The
Martin Roth0cb07e32013-07-09 21:46:01 -060052 * dynamic cbmem infrastructure allocates new regions below the last allocated
Aaron Durbindf3a1092013-03-13 12:41:44 -050053 * region. Regions are defined by a cbmem_entry struct that is opaque. Regions
54 * may be removed, but the last one added is the only that can be removed.
Aaron Durbindf3a1092013-03-13 12:41:44 -050055 */
56
57#define DYN_CBMEM_ALIGN_SIZE (4096)
Lee Leahy522149c2015-05-08 11:33:55 -070058#define CBMEM_ROOT_SIZE DYN_CBMEM_ALIGN_SIZE
59
60/* The root region is at least DYN_CBMEM_ALIGN_SIZE . */
61#define CBMEM_ROOT_MIN_SIZE DYN_CBMEM_ALIGN_SIZE
62#define CBMEM_LG_ALIGN CBMEM_ROOT_MIN_SIZE
63
64/* Small allocation parameters. */
65#define CBMEM_SM_ROOT_SIZE 1024
66#define CBMEM_SM_ALIGN 32
67
68/* Determine the size for CBMEM root and the small allocations */
69static inline size_t cbmem_overhead_size(void)
70{
71 return 2 * CBMEM_ROOT_MIN_SIZE;
72}
Aaron Durbindf3a1092013-03-13 12:41:44 -050073
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +020074/* By default cbmem is attempted to be recovered. Returns 0 if cbmem was
75 * recovered or 1 if cbmem had to be reinitialized. */
76int cbmem_initialize(void);
Lee Leahy522149c2015-05-08 11:33:55 -070077int cbmem_initialize_id_size(u32 id, u64 size);
78
Martin Roth0cb07e32013-07-09 21:46:01 -060079/* Initialize cbmem to be empty. */
Aaron Durbindf3a1092013-03-13 12:41:44 -050080void cbmem_initialize_empty(void);
Lee Leahy522149c2015-05-08 11:33:55 -070081void cbmem_initialize_empty_id_size(u32 id, u64 size);
Aaron Durbindf3a1092013-03-13 12:41:44 -050082
83/* Return the top address for dynamic cbmem. The address returned needs to
84 * be consistent across romstage and ramstage, and it is required to be
85 * below 4GiB. */
86void *cbmem_top(void);
87
88/* Add a cbmem entry of a given size and id. These return NULL on failure. The
89 * add function performs a find first and do not check against the original
90 * size. */
91const struct cbmem_entry *cbmem_entry_add(u32 id, u64 size);
92
93/* Find a cbmem entry of a given id. These return NULL on failure. */
94const struct cbmem_entry *cbmem_entry_find(u32 id);
95
96/* Remove a region defined by a cbmem_entry. Returns 0 on success, < 0 on
97 * error. Note: A cbmem_entry cannot be removed unless it was the last one
98 * added. */
99int cbmem_entry_remove(const struct cbmem_entry *entry);
100
101/* cbmem_entry accessors to get pointer and size of a cbmem_entry. */
102void *cbmem_entry_start(const struct cbmem_entry *entry);
103u64 cbmem_entry_size(const struct cbmem_entry *entry);
104
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +0200105/* Returns 0 if old cbmem was recovered. Recovery is only attempted if
106 * s3resume is non-zero. */
107int cbmem_recovery(int s3resume);
Aaron Durbindf3a1092013-03-13 12:41:44 -0500108/* Add a cbmem entry of a given size and id. These return NULL on failure. The
109 * add function performs a find first and do not check against the original
110 * size. */
111void *cbmem_add(u32 id, u64 size);
112/* Find a cbmem entry of a given id. These return NULL on failure. */
113void *cbmem_find(u32 id);
114
Kyösti Mälkki823edda2014-12-18 18:30:29 +0200115void cbmem_run_init_hooks(void);
116void cbmem_fail_resume(void);
117
Rudolf Marek33109342010-12-11 22:26:10 +0000118#ifndef __PRE_RAM__
Aaron Durbindf3a1092013-03-13 12:41:44 -0500119/* Ramstage only functions. */
Aaron Durbin49048022014-02-18 21:55:02 -0600120/* Add the cbmem memory used to the memory map at boot. */
121void cbmem_add_bootmem(void);
Aaron Durbindf3a1092013-03-13 12:41:44 -0500122void cbmem_list(void);
Aaron Durbindf3a1092013-03-13 12:41:44 -0500123#endif /* __PRE_RAM__ */
124
Kyösti Mälkki2fb6b402014-12-19 08:20:45 +0200125/* These are for compatibility with old boards only. Any new chipset and board
126 * must implement cbmem_top() for both romstage and ramstage to support
127 * early features like COLLECT_TIMESTAMPS and CBMEM_CONSOLE.
128 */
129#if IS_ENABLED(CONFIG_ARCH_X86) && IS_ENABLED(CONFIG_LATE_CBMEM_INIT)
Aaron Durbin28d5ec92015-05-26 11:15:45 -0500130/* Note that many of the current providers of get_top_of_ram() conditionally
131 * return 0 when the sleep type is non S3. i.e. cold and warm boots would
132 * return 0 from get_top_of_ram(). */
Kyösti Mälkki2fb6b402014-12-19 08:20:45 +0200133unsigned long get_top_of_ram(void);
134void set_top_of_ram(uint64_t ramtop);
135void backup_top_of_ram(uint64_t ramtop);
136#endif
137
Aaron Durbindf3a1092013-03-13 12:41:44 -0500138#endif /* __ASSEMBLER__ */
139
140
141#endif /* _CBMEM_H_ */