blob: fffe0de282de7369f805ac96d904f8de9af75836 [file] [log] [blame]
Gabe Black5c8d3d22014-01-17 22:11:35 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <arch/cache.h>
21#include <arch/cpu.h>
22#include <arch/exception.h>
Gabe Black4a12cfe2014-03-24 21:24:24 -070023#include <arch/io.h>
Gabe Black5c8d3d22014-01-17 22:11:35 -080024#include <cbfs.h>
25#include <cbmem.h>
26#include <console/console.h>
Gabe Blackc8522062014-05-06 15:44:14 -070027#include <mainboard/google/nyan/reset.h>
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050028#include <program_loading.h>
Aaron Durbincad7c4e2014-03-20 15:08:54 -050029#include <romstage_handoff.h>
30#include <vendorcode/google/chromeos/chromeos.h>
Tom Warren64982c502014-01-23 13:37:50 -070031#include "sdram_configs.h"
Gabe Black4a12cfe2014-03-24 21:24:24 -070032#include <soc/nvidia/tegra/i2c.h>
Daisuke Nojiri1b05d882014-08-27 11:48:03 -070033#include <soc/nvidia/tegra124/cache.h>
Gabe Black4a12cfe2014-03-24 21:24:24 -070034#include <soc/nvidia/tegra124/chip.h>
35#include <soc/nvidia/tegra124/clk_rst.h>
Daisuke Nojiri1b05d882014-08-27 11:48:03 -070036#include <soc/nvidia/tegra124/early_configs.h>
Gabe Blackc8522062014-05-06 15:44:14 -070037#include <soc/nvidia/tegra124/power.h>
Gabe Black4a12cfe2014-03-24 21:24:24 -070038#include <soc/nvidia/tegra124/sdram.h>
39#include <soc/addressmap.h>
40#include <soc/clock.h>
Gabe Black5c8d3d22014-01-17 22:11:35 -080041#include <soc/display.h>
42#include <timestamp.h>
43
Julius Wernerfd9defc2014-01-21 20:11:22 -080044static void __attribute__((noinline)) romstage(void)
Gabe Black5c8d3d22014-01-17 22:11:35 -080045{
Kyösti Mälkkif48b38b2014-12-31 08:50:36 +020046 timestamp_init(0);
47 timestamp_add_now(TS_START_ROMSTAGE);
Gabe Black5c8d3d22014-01-17 22:11:35 -080048
Gabe Black5c8d3d22014-01-17 22:11:35 -080049 console_init();
50 exception_init();
51
Tom Warren64982c502014-01-23 13:37:50 -070052 sdram_init(get_sdram_config());
53
Gabe Black5cbbc702014-02-08 05:17:38 -080054 /* used for MMU and CBMEM setup, in MB */
Tom Warren64982c502014-01-23 13:37:50 -070055 u32 dram_start = (CONFIG_SYS_SDRAM_BASE >> 20);
Gabe Black5cbbc702014-02-08 05:17:38 -080056 u32 dram_end = sdram_max_addressable_mb(); /* plus one... */
57 u32 dram_size = dram_end - dram_start;
Tom Warren64982c502014-01-23 13:37:50 -070058
Daisuke Nojiriefddcfb2014-09-04 09:55:34 -070059 configure_l2_cache();
Gabe Black5c8d3d22014-01-17 22:11:35 -080060 mmu_init();
Gabe Blackb9a4b712014-03-01 03:27:00 -080061 /* Device memory below DRAM is uncached. */
Tom Warren64982c502014-01-23 13:37:50 -070062 mmu_config_range(0, dram_start, DCACHE_OFF);
Gabe Blackb9a4b712014-03-01 03:27:00 -080063 /* SRAM is cached. Round the size up to 2MB, the LPAE page size. */
64 mmu_config_range(0x40000000 >> 20, 2, DCACHE_WRITEBACK);
65 /* DRAM is cached. */
Gabe Black5cbbc702014-02-08 05:17:38 -080066 mmu_config_range(dram_start, dram_size, DCACHE_WRITEBACK);
Gabe Blackb9a4b712014-03-01 03:27:00 -080067 /* A window for DMA is uncached. */
Gabe Black5c8d3d22014-01-17 22:11:35 -080068 mmu_config_range(CONFIG_DRAM_DMA_START >> 20,
69 CONFIG_DRAM_DMA_SIZE >> 20, DCACHE_OFF);
Gabe Blackb9a4b712014-03-01 03:27:00 -080070 /* The space above DRAM is uncached. */
Gabe Black83ed8052014-02-15 00:05:03 -080071 if (dram_end < 4096)
72 mmu_config_range(dram_end, 4096 - dram_end, DCACHE_OFF);
Gabe Black5c8d3d22014-01-17 22:11:35 -080073 mmu_disable_range(0, 1);
Gabe Black5c8d3d22014-01-17 22:11:35 -080074 dcache_mmu_enable();
75
Gabe Blackc8522062014-05-06 15:44:14 -070076 /*
77 * A watchdog reset only resets part of the system so it ends up in
78 * a funny state. If that happens, we need to reset the whole machine.
79 */
80 if (power_reset_status() == POWER_RESET_WATCHDOG) {
81 printk(BIOS_INFO, "Watchdog reset detected, rebooting.\n");
82 cpu_reset();
83 }
84
Gabe Black5c8d3d22014-01-17 22:11:35 -080085 cbmem_initialize_empty();
86
Daisuke Nojiri1b05d882014-08-27 11:48:03 -070087 timestamp_init(0);
88 timestamp_add(TS_START_ROMSTAGE, romstage_start_time);
Gabe Black4a12cfe2014-03-24 21:24:24 -070089
Daisuke Nojiri1b05d882014-08-27 11:48:03 -070090 early_mainboard_init();
Gabe Black4a12cfe2014-03-24 21:24:24 -070091
Aaron Durbincad7c4e2014-03-20 15:08:54 -050092 vboot_verify_firmware(romstage_handoff_find_or_add());
93
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050094 run_ramstage();
Gabe Black5c8d3d22014-01-17 22:11:35 -080095}
Julius Wernerfd9defc2014-01-21 20:11:22 -080096
97/* Stub to force arm_init_caches to the top, before any stack/memory accesses */
98void main(void)
99{
Gabe Blackf220df62014-02-08 05:01:06 -0800100 asm volatile ("bl arm_init_caches"
101 ::: "r0","r1","r2","r3","r4","r5","ip");
Julius Wernerfd9defc2014-01-21 20:11:22 -0800102 romstage();
103}