Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Sysam AMCORE board configuration |
| 4 | * |
Angelo Dureghello | 3b0d570 | 2016-09-20 17:40:03 +0200 | [diff] [blame] | 5 | * (C) Copyright 2016 Angelo Dureghello <angelo@sysam.it> |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __AMCORE_CONFIG_H |
| 9 | #define __AMCORE_CONFIG_H |
| 10 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 11 | #define CFG_SYS_UART_PORT 0 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 12 | |
Angelo Dureghello | 07b3da9 | 2023-02-24 01:42:39 +0100 | [diff] [blame^] | 13 | #define CONFIG_MCFTMR |
| 14 | #define CONFIG_MCFUART |
| 15 | #define CONFIG_SYS_UART_PORT 0 |
| 16 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
| 17 | |
| 18 | #define CONFIG_BOOTCOMMAND "bootm ffc30000" |
| 19 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Angelo Dureghello | 3b0d570 | 2016-09-20 17:40:03 +0200 | [diff] [blame] | 20 | "upgrade_uboot=loady; " \ |
Angelo Dureghello | 07b3da9 | 2023-02-24 01:42:39 +0100 | [diff] [blame^] | 21 | "protect off 0xffc00000 0xffc2ffff; " \ |
| 22 | "erase 0xffc00000 0xffc2ffff; " \ |
Angelo Dureghello | 3b0d570 | 2016-09-20 17:40:03 +0200 | [diff] [blame] | 23 | "cp.b 0x20000 0xffc00000 ${filesize}\0" \ |
| 24 | "upgrade_kernel=loady; " \ |
Angelo Dureghello | 07b3da9 | 2023-02-24 01:42:39 +0100 | [diff] [blame^] | 25 | "erase 0xffc30000 0xffefffff; " \ |
| 26 | "cp.b 0x20000 0xffc30000 ${filesize}\0" \ |
Angelo Dureghello | 3b0d570 | 2016-09-20 17:40:03 +0200 | [diff] [blame] | 27 | "upgrade_jffs2=loady; " \ |
| 28 | "erase 0xfff00000 0xffffffff; " \ |
| 29 | "cp.b 0x20000 0xfff00000 ${filesize}\0" |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 30 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 31 | #define CFG_SYS_CLK 45000000 |
| 32 | #define CFG_SYS_CPU_CLK (CFG_SYS_CLK * 2) |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 33 | /* Register Base Addrs */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 34 | #define CFG_SYS_MBAR 0x10000000 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 35 | /* Definitions for initial stack pointer and data area (in DPRAM) */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 36 | #define CFG_SYS_INIT_RAM_ADDR 0x20000000 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 37 | /* size of internal SRAM */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 38 | #define CFG_SYS_INIT_RAM_SIZE 0x1000 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 39 | |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 40 | #define CFG_SYS_SDRAM_BASE 0x00000000 |
| 41 | #define CFG_SYS_SDRAM_SIZE 0x1000000 |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 42 | #define CFG_SYS_FLASH_BASE 0xffc00000 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 43 | |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 44 | /* amcore design has flash data bytes wired swapped */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 45 | #define CFG_SYS_WRITE_SWAPPED_DATA |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 46 | /* reserve 128-4KB */ |
Angelo Dureghello | 07b3da9 | 2023-02-24 01:42:39 +0100 | [diff] [blame^] | 47 | #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE + 0x400) |
| 48 | #define CONFIG_SYS_MONITOR_LEN ((192 - 4) * 1024) |
| 49 | #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) |
| 50 | #define CONFIG_SYS_BOOTPARAMS_LEN (64 * 1024) |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 51 | |
angelo@sysam.it | 6312a95 | 2015-03-29 22:54:16 +0200 | [diff] [blame] | 52 | #define LDS_BOARD_TEXT \ |
Simon Glass | 547cb40 | 2017-08-03 12:21:49 -0600 | [diff] [blame] | 53 | . = DEFINED(env_offset) ? env_offset : .; \ |
| 54 | env/embedded.o(.text*); |
angelo@sysam.it | 6312a95 | 2015-03-29 22:54:16 +0200 | [diff] [blame] | 55 | |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 56 | /* memory map space for linux boot data */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 57 | #define CFG_SYS_BOOTMAPSZ (8 << 20) |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * Cache Configuration |
| 61 | * |
| 62 | * Special 8K version 3 core cache. |
| 63 | * This is a single unified instruction/data cache. |
| 64 | * sdram - single region - no masks |
| 65 | */ |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 66 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 67 | #define ICACHE_STATUS (CFG_SYS_INIT_RAM_ADDR + \ |
| 68 | CFG_SYS_INIT_RAM_SIZE - 8) |
| 69 | #define DCACHE_STATUS (CFG_SYS_INIT_RAM_ADDR + \ |
| 70 | CFG_SYS_INIT_RAM_SIZE - 4) |
| 71 | #define CFG_SYS_ICACHE_INV (CF_CACR_CINVA) |
| 72 | #define CFG_SYS_CACHE_ACR0 (CF_ACR_CM_WT | CF_ACR_SM_ALL | \ |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 73 | CF_ACR_EN) |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 74 | #define CFG_SYS_CACHE_ICACR (CF_CACR_DCM_P | CF_CACR_ESB | \ |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 75 | CF_CACR_EC) |
| 76 | |
| 77 | /* CS0 - AMD Flash, address 0xffc00000 */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 78 | #define CFG_SYS_CS0_BASE (CFG_SYS_FLASH_BASE>>16) |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 79 | /* 4MB, AA=0,V=1 C/I BIT for errata */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 80 | #define CFG_SYS_CS0_MASK 0x003f0001 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 81 | /* WS=10, AA=1, PS=16bit (10) */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 82 | #define CFG_SYS_CS0_CTRL 0x1980 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 83 | /* CS1 - DM9000 Ethernet Controller, address 0x30000000 */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 84 | #define CFG_SYS_CS1_BASE 0x3000 |
| 85 | #define CFG_SYS_CS1_MASK 0x00070001 |
| 86 | #define CFG_SYS_CS1_CTRL 0x0100 |
angelo@sysam.it | f11cf75 | 2015-02-12 01:39:40 +0100 | [diff] [blame] | 87 | |
| 88 | #endif /* __AMCORE_CONFIG_H */ |