blob: 7b20a14f2158322d6782e3b291d9d9ba257465dc [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 = . ;
Julius Wernercd49cce2019-03-05 16:53:33 -080022#if CONFIG(PAGING_IN_CACHE_AS_RAM)
Aaron Durbin0f35af8f2018-04-18 01:00:27 -060023 /* 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. */
Julius Wernercd49cce2019-03-05 16:53:33 -080031#if CONFIG(VBOOT_STARTS_IN_BOOTBLOCK)
Joel Kitching0097f552019-02-21 12:36:55 +080032 VBOOT2_WORK(., 12K)
Aaron Durbin75c51d92015-09-29 16:31:20 -050033#endif
Philipp Deppenwiesec9b7d1f2018-11-10 00:35:02 +010034 /* Vboot measured boot TCPA log measurements.
35 * Needs to be transferred until CBMEM is available
36 */
Arthur Heymans3c613042019-04-21 23:59:47 +020037#if CONFIG(VBOOT_MEASURED_BOOT)
Philipp Deppenwiesec9b7d1f2018-11-10 00:35:02 +010038 VBOOT2_TPM_LOG(., 2K)
Arthur Heymans3c613042019-04-21 23:59:47 +020039#endif
Andrey Petrovee9e4ae2016-02-08 17:17:05 -080040 /* Stack for CAR stages. Since it persists across all stages that
41 * use CAR it can be reused. The chipset/SoC is expected to provide
42 * the stack size. */
Julius Wernercd49cce2019-03-05 16:53:33 -080043#if CONFIG(C_ENVIRONMENT_BOOTBLOCK)
Andrey Petrovee9e4ae2016-02-08 17:17:05 -080044 _car_stack_start = .;
45 . += CONFIG_DCACHE_BSP_STACK_SIZE;
46 _car_stack_end = .;
47#endif
Aaron Durbindd6fa932015-09-24 12:18:07 -050048 /* The pre-ram cbmem console as well as the timestamp region are fixed
Arthur Heymans4cc9b6c2018-12-28 17:53:36 +010049 * in size. Therefore place them above the car global section so that
50 * multiple stages (romstage and verstage) have a consistent
51 * link address of these shared objects. */
Kyösti Mälkki513a1a82018-06-03 12:29:50 +030052 PRERAM_CBMEM_CONSOLE(., CONFIG_PRERAM_CBMEM_CONSOLE_SIZE)
Julius Wernercd49cce2019-03-05 16:53:33 -080053#if CONFIG(PAGING_IN_CACHE_AS_RAM)
Aaron Durbin0f35af8f2018-04-18 01:00:27 -060054 . = ALIGN(32);
55 /* Page directory pointer table resides here. There are 4 8-byte entries
56 * totalling 32 bytes that need to be 32-byte aligned. The reason the
57 * pdpt are not colocated with the rest of the page tables is to reduce
58 * fragmentation of the CAR space that persists across stages. */
59 _pdpt = .;
60 . += 32;
61 _epdpt = .;
62#endif
Andrey Petrovdd56de92016-02-25 17:22:17 -080063 _car_relocatable_data_start = .;
Aaron Durbindd6fa932015-09-24 12:18:07 -050064 /* The timestamp implementation relies on this storage to be around
65 * after migration. One of the fields indicates not to use it as the
66 * backing store once cbmem comes online. Therefore, this data needs
Andrey Petrovdd56de92016-02-25 17:22:17 -080067 * to reside in the migrated area (between _car_relocatable_data_start
68 * and _car_relocatable_data_end). */
Furquan Shaikh549080b2018-05-17 23:30:28 -070069 TIMESTAMP(., 0x200)
Arthur Heymans4cc9b6c2018-12-28 17:53:36 +010070 _car_ehci_dbg_info_start = .;
Kyösti Mälkkif88208e2019-01-31 08:29:32 +020071 /* Reserve sizeof(struct ehci_dbg_info). */
Kyösti Mälkki45ad4f02019-01-31 19:24:04 +020072 . += 80;
Arthur Heymans4cc9b6c2018-12-28 17:53:36 +010073 _car_ehci_dbg_info_end = .;
Aaron Durbindd6fa932015-09-24 12:18:07 -050074 /* _car_global_start and _car_global_end provide symbols to per-stage
75 * variables that are not shared like the timestamp and the pre-ram
76 * cbmem console. This is useful for clearing this area on a per-stage
77 * basis when more than one stage uses cache-as-ram for CAR_GLOBALs. */
78 _car_global_start = .;
Julius Wernercd49cce2019-03-05 16:53:33 -080079#if CONFIG(NO_CAR_GLOBAL_MIGRATION)
Aaron Durbin76ab2b72018-10-30 12:15:10 -060080 /* Allow global unitialized variables when CAR_GLOBALs are not used. */
81 *(.bss)
82 *(.bss.*)
83 *(.sbss)
84 *(.sbss.*)
85#else
86 /* .car.global_data objects only around when
87 * !CONFIG_NO_CAR_GLOBAL_MIGRATION is employed. */
Aaron Durbin956c4f22015-09-05 13:31:14 -050088 *(.car.global_data);
Aaron Durbin76ab2b72018-10-30 12:15:10 -060089#endif
Aaron Durbin956c4f22015-09-05 13:31:14 -050090 . = ALIGN(ARCH_POINTER_ALIGN_SIZE);
Aaron Durbindd6fa932015-09-24 12:18:07 -050091 _car_global_end = .;
Andrey Petrovdd56de92016-02-25 17:22:17 -080092 _car_relocatable_data_end = .;
93
Arthur Heymansc94ba792019-04-22 00:25:05 +020094#if (CONFIG(NORTHBRIDGE_INTEL_SANDYBRIDGE) || \
95 CONFIG(NORTHBRIDGE_INTEL_IVYBRIDGE)) && \
Julius Wernercd49cce2019-03-05 16:53:33 -080096 !CONFIG(USE_NATIVE_RAMINIT)
Kyösti Mälkkib697c902019-01-30 08:19:49 +020097 . = ABSOLUTE(0xff7e1000);
98 _mrc_pool = .;
99 . += 0x5000;
100 _emrc_pool = .;
101#endif
102
Julius Wernercd49cce2019-03-05 16:53:33 -0800103#if !CONFIG(C_ENVIRONMENT_BOOTBLOCK)
Kyösti Mälkkid7892bc2018-12-28 19:18:46 +0200104 _car_stack_start = .;
105 _car_stack_end = _car_region_end;
106#endif
Andrey Petrovdd56de92016-02-25 17:22:17 -0800107 _car_region_end = . + CONFIG_DCACHE_RAM_SIZE - (. - _car_region_start);
Aaron Durbin956c4f22015-09-05 13:31:14 -0500108}
109
110/* Global variables are not allowed in romstage
111 * This section is checked during stage creation to ensure
112 * that there are no global variables present
113 */
114
115. = 0xffffff00;
116.illegal_globals . : {
Nico Huber98fc4262016-01-23 01:24:33 +0100117 *(EXCLUDE_FILE ("*/libagesa.*.a:" "*/romstage*/buildOpts.o" "*/romstage*/agesawrapper.o" "*/vendorcode/amd/agesa/*" "*/vendorcode/amd/cimx/*") .data)
118 *(EXCLUDE_FILE ("*/libagesa.*.a:" "*/romstage*/buildOpts.o" "*/romstage*/agesawrapper.o" "*/vendorcode/amd/agesa/*" "*/vendorcode/amd/cimx/*") .data.*)
Julius Wernercd49cce2019-03-05 16:53:33 -0800119#if !CONFIG(NO_CAR_GLOBAL_MIGRATION)
Aaron Durbin956c4f22015-09-05 13:31:14 -0500120 *(.bss)
121 *(.bss.*)
122 *(.sbss)
123 *(.sbss.*)
Aaron Durbin76ab2b72018-10-30 12:15:10 -0600124#else
125 /* In case something sneaks through when it shouldn't. */
126 *(.car.global_data);
127#endif
Aaron Durbin956c4f22015-09-05 13:31:14 -0500128}
129
Aaron Durbindd6fa932015-09-24 12:18:07 -0500130_bogus = ASSERT((CONFIG_DCACHE_RAM_SIZE == 0) || (SIZEOF(.car.data) <= CONFIG_DCACHE_RAM_SIZE), "Cache as RAM area is too full");
Julius Wernercd49cce2019-03-05 16:53:33 -0800131#if CONFIG(PAGING_IN_CACHE_AS_RAM)
Aaron Durbin0f35af8f2018-04-18 01:00:27 -0600132_bogus2 = ASSERT(_pagetables == ALIGN(_pagetables, 4096), "_pagetables aren't 4KiB aligned");
133#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800134#if CONFIG(C_ENVIRONMENT_BOOTBLOCK)
Patrick Rudolphd72d52a2018-11-12 19:26:54 +0100135_bogus3 = ASSERT(CONFIG_DCACHE_BSP_STACK_SIZE > 0x0, "BSP stack size not configured");
136#endif