blob: 35b58d823b778446b6a8a13864cfbcead498a095 [file] [log] [blame]
Tom Warren4e16a2e2014-03-19 14:19:09 -07001/*
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.
Tom Warren4e16a2e2014-03-19 14:19:09 -070014 */
15
16#include <arch/cache.h>
Tom Warren4e16a2e2014-03-19 14:19:09 -070017#include <arch/exception.h>
Tom Warren4e16a2e2014-03-19 14:19:09 -070018#include <cbmem.h>
19#include <console/console.h>
Daisuke Nojiri512bfbc2014-08-15 17:07:39 -070020#include <reset.h>
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050021#include <program_loading.h>
Gabe Black4a12cfe2014-03-24 21:24:24 -070022#include <soc/addressmap.h>
Julius Wernerf0d21ff32014-10-20 13:24:14 -070023#include <soc/cache.h>
24#include <soc/clk_rst.h>
Gabe Black4a12cfe2014-03-24 21:24:24 -070025#include <soc/clock.h>
Tom Warren4e16a2e2014-03-19 14:19:09 -070026#include <soc/display.h>
Julius Wernerf0d21ff32014-10-20 13:24:14 -070027#include <soc/early_configs.h>
28#include <soc/nvidia/tegra/i2c.h>
29#include <soc/nvidia/tegra124/chip.h>
30#include <soc/power.h>
31#include <soc/sdram.h>
Julius Wernerec5e5e02014-08-20 15:29:56 -070032#include <symbols.h>
Tom Warren4e16a2e2014-03-19 14:19:09 -070033#include <timestamp.h>
Julius Wernerf0d21ff32014-10-20 13:24:14 -070034#include <vendorcode/google/chromeos/chromeos.h>
35
36#include "sdram_configs.h"
Tom Warren4e16a2e2014-03-19 14:19:09 -070037
Tom Warren4e16a2e2014-03-19 14:19:09 -070038static void __attribute__((noinline)) romstage(void)
39{
Kyösti Mälkkif48b38b2014-12-31 08:50:36 +020040 timestamp_init(0);
41 timestamp_add_now(TS_START_ROMSTAGE);
Tom Warren4e16a2e2014-03-19 14:19:09 -070042
Tom Warren4e16a2e2014-03-19 14:19:09 -070043 console_init();
44 exception_init();
45
46 sdram_init(get_sdram_config());
47
48 /* used for MMU and CBMEM setup, in MB */
Julius Wernerec5e5e02014-08-20 15:29:56 -070049 u32 dram_start_mb = (uintptr_t)_dram/MiB;
50 u32 dram_end_mb = sdram_max_addressable_mb();
51 u32 dram_size_mb = dram_end_mb - dram_start_mb;
Tom Warren4e16a2e2014-03-19 14:19:09 -070052
Martin Roth356b5192017-06-24 21:53:37 -060053#if !IS_ENABLED(CONFIG_VBOOT)
Daisuke Nojiriefddcfb2014-09-04 09:55:34 -070054 configure_l2_cache();
Tom Warren4e16a2e2014-03-19 14:19:09 -070055 mmu_init();
56 /* Device memory below DRAM is uncached. */
Julius Wernerec5e5e02014-08-20 15:29:56 -070057 mmu_config_range(0, dram_start_mb, DCACHE_OFF);
58 /* SRAM is cached. MMU code will round size up to page size. */
Julius Werner7e0dea62019-02-20 18:39:22 -080059 mmu_config_range((uintptr_t)_sram/MiB,
60 DIV_ROUND_UP(REGION_SIZE(sram), MiB),
Julius Wernerec5e5e02014-08-20 15:29:56 -070061 DCACHE_WRITEBACK);
Tom Warren4e16a2e2014-03-19 14:19:09 -070062 /* The space above DRAM is uncached. */
Julius Wernerec5e5e02014-08-20 15:29:56 -070063 if (dram_end_mb < 4096)
64 mmu_config_range(dram_end_mb, 4096 - dram_end_mb, DCACHE_OFF);
Tom Warren4e16a2e2014-03-19 14:19:09 -070065 mmu_disable_range(0, 1);
66 dcache_mmu_enable();
Daisuke Nojiriefddcfb2014-09-04 09:55:34 -070067#endif
68
69 /* DRAM is cached. */
Julius Wernerec5e5e02014-08-20 15:29:56 -070070 mmu_config_range(dram_start_mb, dram_size_mb, DCACHE_WRITEBACK);
Daisuke Nojiriefddcfb2014-09-04 09:55:34 -070071 /* A window for DMA is uncached. */
Julius Wernerec5e5e02014-08-20 15:29:56 -070072 mmu_config_range((uintptr_t)_dma_coherent/MiB,
Julius Werner7e0dea62019-02-20 18:39:22 -080073 REGION_SIZE(dma_coherent)/MiB, DCACHE_OFF);
Tom Warren4e16a2e2014-03-19 14:19:09 -070074
Gabe Blackc8522062014-05-06 15:44:14 -070075 /*
76 * A watchdog reset only resets part of the system so it ends up in
77 * a funny state. If that happens, we need to reset the whole machine.
78 */
79 if (power_reset_status() == POWER_RESET_WATCHDOG) {
80 printk(BIOS_INFO, "Watchdog reset detected, rebooting.\n");
Nico Hubere8791362018-10-06 17:53:14 +020081 board_reset();
Gabe Blackc8522062014-05-06 15:44:14 -070082 }
83
Patrick Georgi3756de02015-06-30 14:32:15 +020084 /* FIXME: this may require coordination with moving timestamps */
Tom Warren4e16a2e2014-03-19 14:19:09 -070085 cbmem_initialize_empty();
86
Paul Kocialkowski7b0e0d92016-06-27 18:17:14 +020087 /* This was already called from verstage in vboot context. */
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070088 if (!IS_ENABLED(CONFIG_VBOOT))
Paul Kocialkowski7b0e0d92016-06-27 18:17:14 +020089 early_mainboard_init();
Gabe Black4a12cfe2014-03-24 21:24:24 -070090
Aaron Durbine4f3e7a2015-03-17 13:25:19 -050091 run_ramstage();
Tom Warren4e16a2e2014-03-19 14:19:09 -070092}
93
94/* Stub to force arm_init_caches to the top, before any stack/memory accesses */
95void main(void)
96{
Martin Roth356b5192017-06-24 21:53:37 -060097#if !IS_ENABLED(CONFIG_VBOOT)
Tom Warren4e16a2e2014-03-19 14:19:09 -070098 asm volatile ("bl arm_init_caches"
99 ::: "r0","r1","r2","r3","r4","r5","ip");
Daisuke Nojiriefddcfb2014-09-04 09:55:34 -0700100#endif
Tom Warren4e16a2e2014-03-19 14:19:09 -0700101 romstage();
102}