blob: a8bd8e259ccc7e98a385237f0b4f614c96d31f91 [file] [log] [blame]
Usama Arif9218a112020-08-12 16:12:53 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Configuration for Total Compute platform. Parts were derived from other ARM
4 * configurations.
annsai0157de82d2023-03-13 14:27:15 +05305 * (C) Copyright 2020-2023 Arm Limited
Usama Arif9218a112020-08-12 16:12:53 +01006 * Usama Arif <usama.arif@arm.com>
7 */
8
9#ifndef __TOTAL_COMPUTE_H
10#define __TOTAL_COMPUTE_H
11
Usama Arif9218a112020-08-12 16:12:53 +010012/* Link Definitions */
Usama Arif9218a112020-08-12 16:12:53 +010013
annsai0157de82d2023-03-13 14:27:15 +053014/* AP non-secure UART base address */
15#define UART0_BASE 0x2A400000
Usama Arif9218a112020-08-12 16:12:53 +010016
Usama Arif9218a112020-08-12 16:12:53 +010017/* PL011 Serial Configuration */
Tom Rini5c896ae2022-12-04 10:13:30 -050018#define CFG_PL011_CLOCK 7372800
Usama Arif9218a112020-08-12 16:12:53 +010019
20/* Miscellaneous configurable options */
Usama Arif9218a112020-08-12 16:12:53 +010021
22/* Physical Memory Map */
23#define PHYS_SDRAM_1 0x80000000
24/* Top 48MB reserved for secure world use */
25#define DRAM_SEC_SIZE 0x03000000
26#define PHYS_SDRAM_1_SIZE 0x80000000 - DRAM_SEC_SIZE
Tom Rinibb4dd962022-11-16 13:10:37 -050027#define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1
Usama Arif9218a112020-08-12 16:12:53 +010028
Usama Arif3e44c082021-10-12 13:43:16 +010029#define PHYS_SDRAM_2 0x8080000000
30#define PHYS_SDRAM_2_SIZE 0x180000000
31
Tom Rinic9edebe2022-12-04 10:03:50 -050032#define CFG_EXTRA_ENV_SETTINGS \
Usama Arif9218a112020-08-12 16:12:53 +010033 "bootm_size=0x20000000\0" \
34 "load_addr=0xa0000000\0" \
35 "kernel_addr_r=0x80080000\0" \
36 "initrd_addr_r=0x88000000\0" \
37 "fdt_addr_r=0x83000000\0"
38/*
39 * If vbmeta partition is present, boot Android with verification using AVB.
40 * Else if system partition is present (no vbmeta partition), boot Android
41 * without verification (for development purposes).
42 * Else boot FIT image.
43 */
Usama Arif9218a112020-08-12 16:12:53 +010044
Tom Rini6a5dccc2022-11-16 13:10:41 -050045#define CFG_SYS_FLASH_BASE 0x0C000000
Usama Arif9218a112020-08-12 16:12:53 +010046
47#endif /* __TOTAL_COMPUTE_H */