blob: 43608309aa69c0865772f2d34a3ddda403fd4282 [file] [log] [blame]
Aaron Durbin956c4f22015-09-05 13:31:14 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2006 Advanced Micro Devices, Inc.
5 * Copyright (C) 2008-2010 coresystems GmbH
6 * Copyright 2015 Google Inc
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Aaron Durbin956c4f22015-09-05 13:31:14 -050016 */
17
18/* This file is included inside a SECTIONS block */
19. = CONFIG_DCACHE_RAM_BASE;
20.car.data . (NOLOAD) : {
Andrey Petrovdd56de92016-02-25 17:22:17 -080021 _car_region_start = . ;
Aaron Durbin0f35af8f2018-04-18 01:00:27 -060022#if IS_ENABLED(CONFIG_PAGING_IN_CACHE_AS_RAM)
23 /* Page table pre-allocation. CONFIG_DCACHE_RAM_BASE should be 4KiB
24 * aligned when using this option. */
25 _pagetables = . ;
26 . += 4096 * CONFIG_NUM_CAR_PAGE_TABLE_PAGES;
27 _epagetables = . ;
28#endif
Joel Kitchingd6f71d02019-02-21 12:37:55 +080029 /* Vboot work buffer only needs to be available when verified boot
30 * starts in bootblock. */
31#if IS_ENABLED(CONFIG_VBOOT_STARTS_IN_BOOTBLOCK)
Aaron Durbin75c51d92015-09-29 16:31:20 -050032 VBOOT2_WORK(., 16K)
33#endif
Andrey Petrovee9e4ae2016-02-08 17:17:05 -080034 /* Stack for CAR stages. Since it persists across all stages that
35 * use CAR it can be reused. The chipset/SoC is expected to provide
36 * the stack size. */
37#if IS_ENABLED(CONFIG_C_ENVIRONMENT_BOOTBLOCK)
38 _car_stack_start = .;
39 . += CONFIG_DCACHE_BSP_STACK_SIZE;
40 _car_stack_end = .;
41#endif
Aaron Durbindd6fa932015-09-24 12:18:07 -050042 /* The pre-ram cbmem console as well as the timestamp region are fixed
Arthur Heymans4cc9b6c2018-12-28 17:53:36 +010043 * in size. Therefore place them above the car global section so that
44 * multiple stages (romstage and verstage) have a consistent
45 * link address of these shared objects. */
Kyösti Mälkki513a1a82018-06-03 12:29:50 +030046 PRERAM_CBMEM_CONSOLE(., CONFIG_PRERAM_CBMEM_CONSOLE_SIZE)
Aaron Durbin0f35af8f2018-04-18 01:00:27 -060047#if IS_ENABLED(CONFIG_PAGING_IN_CACHE_AS_RAM)
48 . = ALIGN(32);
49 /* Page directory pointer table resides here. There are 4 8-byte entries
50 * totalling 32 bytes that need to be 32-byte aligned. The reason the
51 * pdpt are not colocated with the rest of the page tables is to reduce
52 * fragmentation of the CAR space that persists across stages. */
53 _pdpt = .;
54 . += 32;
55 _epdpt = .;
56#endif
Andrey Petrovdd56de92016-02-25 17:22:17 -080057 _car_relocatable_data_start = .;
Aaron Durbindd6fa932015-09-24 12:18:07 -050058 /* The timestamp implementation relies on this storage to be around
59 * after migration. One of the fields indicates not to use it as the
60 * backing store once cbmem comes online. Therefore, this data needs
Andrey Petrovdd56de92016-02-25 17:22:17 -080061 * to reside in the migrated area (between _car_relocatable_data_start
62 * and _car_relocatable_data_end). */
Furquan Shaikh549080b2018-05-17 23:30:28 -070063 TIMESTAMP(., 0x200)
Arthur Heymans4cc9b6c2018-12-28 17:53:36 +010064 _car_ehci_dbg_info_start = .;
Kyösti Mälkkif88208e2019-01-31 08:29:32 +020065 /* Reserve sizeof(struct ehci_dbg_info). */
Kyösti Mälkki45ad4f02019-01-31 19:24:04 +020066 . += 80;
Arthur Heymans4cc9b6c2018-12-28 17:53:36 +010067 _car_ehci_dbg_info_end = .;
Aaron Durbindd6fa932015-09-24 12:18:07 -050068 /* _car_global_start and _car_global_end provide symbols to per-stage
69 * variables that are not shared like the timestamp and the pre-ram
70 * cbmem console. This is useful for clearing this area on a per-stage
71 * basis when more than one stage uses cache-as-ram for CAR_GLOBALs. */
72 _car_global_start = .;
Aaron Durbin76ab2b72018-10-30 12:15:10 -060073#if IS_ENABLED(CONFIG_NO_CAR_GLOBAL_MIGRATION)
74 /* Allow global unitialized variables when CAR_GLOBALs are not used. */
75 *(.bss)
76 *(.bss.*)
77 *(.sbss)
78 *(.sbss.*)
79#else
80 /* .car.global_data objects only around when
81 * !CONFIG_NO_CAR_GLOBAL_MIGRATION is employed. */
Aaron Durbin956c4f22015-09-05 13:31:14 -050082 *(.car.global_data);
Aaron Durbin76ab2b72018-10-30 12:15:10 -060083#endif
Aaron Durbin956c4f22015-09-05 13:31:14 -050084 . = ALIGN(ARCH_POINTER_ALIGN_SIZE);
Aaron Durbindd6fa932015-09-24 12:18:07 -050085 _car_global_end = .;
Andrey Petrovdd56de92016-02-25 17:22:17 -080086 _car_relocatable_data_end = .;
87
Kyösti Mälkkib697c902019-01-30 08:19:49 +020088#if IS_ENABLED(CONFIG_NORTHBRIDGE_INTEL_SANDYBRIDGE) && \
89 !IS_ENABLED(CONFIG_USE_NATIVE_RAMINIT)
90 . = ABSOLUTE(0xff7e1000);
91 _mrc_pool = .;
92 . += 0x5000;
93 _emrc_pool = .;
94#endif
95
Kyösti Mälkkid7892bc2018-12-28 19:18:46 +020096#if !IS_ENABLED(CONFIG_C_ENVIRONMENT_BOOTBLOCK)
97 _car_stack_start = .;
98 _car_stack_end = _car_region_end;
99#endif
Andrey Petrovdd56de92016-02-25 17:22:17 -0800100 _car_region_end = . + CONFIG_DCACHE_RAM_SIZE - (. - _car_region_start);
Aaron Durbin956c4f22015-09-05 13:31:14 -0500101}
102
103/* Global variables are not allowed in romstage
104 * This section is checked during stage creation to ensure
105 * that there are no global variables present
106 */
107
108. = 0xffffff00;
109.illegal_globals . : {
Nico Huber98fc4262016-01-23 01:24:33 +0100110 *(EXCLUDE_FILE ("*/libagesa.*.a:" "*/romstage*/buildOpts.o" "*/romstage*/agesawrapper.o" "*/vendorcode/amd/agesa/*" "*/vendorcode/amd/cimx/*") .data)
111 *(EXCLUDE_FILE ("*/libagesa.*.a:" "*/romstage*/buildOpts.o" "*/romstage*/agesawrapper.o" "*/vendorcode/amd/agesa/*" "*/vendorcode/amd/cimx/*") .data.*)
Aaron Durbin76ab2b72018-10-30 12:15:10 -0600112#if !IS_ENABLED(CONFIG_NO_CAR_GLOBAL_MIGRATION)
Aaron Durbin956c4f22015-09-05 13:31:14 -0500113 *(.bss)
114 *(.bss.*)
115 *(.sbss)
116 *(.sbss.*)
Aaron Durbin76ab2b72018-10-30 12:15:10 -0600117#else
118 /* In case something sneaks through when it shouldn't. */
119 *(.car.global_data);
120#endif
Aaron Durbin956c4f22015-09-05 13:31:14 -0500121}
122
Aaron Durbindd6fa932015-09-24 12:18:07 -0500123_bogus = ASSERT((CONFIG_DCACHE_RAM_SIZE == 0) || (SIZEOF(.car.data) <= CONFIG_DCACHE_RAM_SIZE), "Cache as RAM area is too full");
Aaron Durbin0f35af8f2018-04-18 01:00:27 -0600124#if IS_ENABLED(CONFIG_PAGING_IN_CACHE_AS_RAM)
125_bogus2 = ASSERT(_pagetables == ALIGN(_pagetables, 4096), "_pagetables aren't 4KiB aligned");
126#endif
Patrick Rudolphd72d52a2018-11-12 19:26:54 +0100127#if IS_ENABLED(CONFIG_C_ENVIRONMENT_BOOTBLOCK)
128_bogus3 = ASSERT(CONFIG_DCACHE_BSP_STACK_SIZE > 0x0, "BSP stack size not configured");
129#endif