Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012-2020 ASPEED Technology Inc. |
| 4 | * Ryan Chen <ryan_chen@aspeedtech.com> |
| 5 | * |
| 6 | * Copyright 2016 IBM Corporation |
| 7 | * (C) Copyright 2016 Google, Inc |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 8 | */ |
| 9 | |
Chia-Wei, Wang | 98ef128 | 2020-08-03 17:36:08 +0800 | [diff] [blame] | 10 | #ifndef _ASPEED_COMMON_CONFIG_H |
| 11 | #define _ASPEED_COMMON_CONFIG_H |
| 12 | |
| 13 | #include <asm/arch/platform.h> |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 14 | |
| 15 | /* Misc CPU related */ |
| 16 | #define CONFIG_CMDLINE_TAG |
| 17 | #define CONFIG_SETUP_MEMORY_TAGS |
| 18 | #define CONFIG_INITRD_TAG |
| 19 | |
Chia-Wei, Wang | 98ef128 | 2020-08-03 17:36:08 +0800 | [diff] [blame] | 20 | #define CONFIG_SYS_SDRAM_BASE ASPEED_DRAM_BASE |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 21 | |
| 22 | #ifdef CONFIG_PRE_CON_BUF_SZ |
Chia-Wei, Wang | 98ef128 | 2020-08-03 17:36:08 +0800 | [diff] [blame] | 23 | #define CONFIG_SYS_INIT_RAM_ADDR (ASPEED_SRAM_BASE + CONFIG_PRE_CON_BUF_SZ) |
| 24 | #define CONFIG_SYS_INIT_RAM_SIZE (ASPEED_SRAM_SIZE - CONFIG_PRE_CON_BUF_SZ) |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 25 | #else |
Chia-Wei, Wang | 98ef128 | 2020-08-03 17:36:08 +0800 | [diff] [blame] | 26 | #define CONFIG_SYS_INIT_RAM_ADDR (ASPEED_SRAM_BASE) |
| 27 | #define CONFIG_SYS_INIT_RAM_SIZE (ASPEED_SRAM_SIZE) |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 28 | #endif |
| 29 | |
| 30 | #define SYS_INIT_RAM_END (CONFIG_SYS_INIT_RAM_ADDR \ |
| 31 | + CONFIG_SYS_INIT_RAM_SIZE) |
| 32 | #define CONFIG_SYS_INIT_SP_ADDR (SYS_INIT_RAM_END \ |
| 33 | - GENERATED_GBL_DATA_SIZE) |
| 34 | |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 35 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) |
| 36 | |
| 37 | /* |
| 38 | * NS16550 Configuration |
| 39 | */ |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * BOOTP options |
| 43 | */ |
| 44 | #define CONFIG_BOOTP_BOOTFILESIZE |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * Miscellaneous configurable options |
| 48 | */ |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 49 | |
maxims@google.com | f6a6a9f | 2017-01-18 13:44:57 -0800 | [diff] [blame] | 50 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 51 | "verify=yes\0" \ |
| 52 | "spi_dma=yes\0" \ |
| 53 | "" |
| 54 | |
| 55 | #endif /* __AST_COMMON_CONFIG_H */ |