blob: eba78d3894c890353667deea91b653721dd1316b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
angelo@sysam.itf11cf752015-02-12 01:39:40 +01002/*
3 * Sysam AMCORE board configuration
4 *
Angelo Dureghello3b0d5702016-09-20 17:40:03 +02005 * (C) Copyright 2016 Angelo Dureghello <angelo@sysam.it>
angelo@sysam.itf11cf752015-02-12 01:39:40 +01006 */
7
8#ifndef __AMCORE_CONFIG_H
9#define __AMCORE_CONFIG_H
10
Mario Six790d8442018-03-28 14:38:20 +020011#define CONFIG_HOSTNAME "AMCORE"
angelo@sysam.itf11cf752015-02-12 01:39:40 +010012
angelo@sysam.itf11cf752015-02-12 01:39:40 +010013#define CONFIG_SYS_UART_PORT 0
angelo@sysam.itf11cf752015-02-12 01:39:40 +010014
Angelo Dureghello3b0d5702016-09-20 17:40:03 +020015#define CONFIG_EXTRA_ENV_SETTINGS \
16 "upgrade_uboot=loady; " \
17 "protect off 0xffc00000 0xffc1ffff; " \
18 "erase 0xffc00000 0xffc1ffff; " \
19 "cp.b 0x20000 0xffc00000 ${filesize}\0" \
20 "upgrade_kernel=loady; " \
21 "erase 0xffc20000 0xffefffff; " \
22 "cp.b 0x20000 0xffc20000 ${filesize}\0" \
23 "upgrade_jffs2=loady; " \
24 "erase 0xfff00000 0xffffffff; " \
25 "cp.b 0x20000 0xfff00000 ${filesize}\0"
angelo@sysam.itf11cf752015-02-12 01:39:40 +010026
angelo@sysam.itf11cf752015-02-12 01:39:40 +010027#define CONFIG_SYS_CLK 45000000
28#define CONFIG_SYS_CPU_CLK (CONFIG_SYS_CLK * 2)
29/* Register Base Addrs */
30#define CONFIG_SYS_MBAR 0x10000000
31/* Definitions for initial stack pointer and data area (in DPRAM) */
32#define CONFIG_SYS_INIT_RAM_ADDR 0x20000000
33/* size of internal SRAM */
34#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
angelo@sysam.itf11cf752015-02-12 01:39:40 +010035
Tom Rinibb4dd962022-11-16 13:10:37 -050036#define CFG_SYS_SDRAM_BASE 0x00000000
37#define CFG_SYS_SDRAM_SIZE 0x1000000
angelo@sysam.itf11cf752015-02-12 01:39:40 +010038#define CONFIG_SYS_FLASH_BASE 0xffc00000
angelo@sysam.itf11cf752015-02-12 01:39:40 +010039
angelo@sysam.itf11cf752015-02-12 01:39:40 +010040/* amcore design has flash data bytes wired swapped */
41#define CONFIG_SYS_WRITE_SWAPPED_DATA
42/* reserve 128-4KB */
angelo@sysam.itf11cf752015-02-12 01:39:40 +010043
angelo@sysam.it6312a952015-03-29 22:54:16 +020044#define LDS_BOARD_TEXT \
Simon Glass547cb402017-08-03 12:21:49 -060045 . = DEFINED(env_offset) ? env_offset : .; \
46 env/embedded.o(.text*);
angelo@sysam.it6312a952015-03-29 22:54:16 +020047
angelo@sysam.itf11cf752015-02-12 01:39:40 +010048/* memory map space for linux boot data */
49#define CONFIG_SYS_BOOTMAPSZ (8 << 20)
50
51/*
52 * Cache Configuration
53 *
54 * Special 8K version 3 core cache.
55 * This is a single unified instruction/data cache.
56 * sdram - single region - no masks
57 */
angelo@sysam.itf11cf752015-02-12 01:39:40 +010058
59#define ICACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
60 CONFIG_SYS_INIT_RAM_SIZE - 8)
61#define DCACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
62 CONFIG_SYS_INIT_RAM_SIZE - 4)
63#define CONFIG_SYS_ICACHE_INV (CF_CACR_CINVA)
64#define CONFIG_SYS_CACHE_ACR0 (CF_ACR_CM_WT | CF_ACR_SM_ALL | \
65 CF_ACR_EN)
66#define CONFIG_SYS_CACHE_ICACR (CF_CACR_DCM_P | CF_CACR_ESB | \
67 CF_CACR_EC)
68
69/* CS0 - AMD Flash, address 0xffc00000 */
70#define CONFIG_SYS_CS0_BASE (CONFIG_SYS_FLASH_BASE>>16)
71/* 4MB, AA=0,V=1 C/I BIT for errata */
72#define CONFIG_SYS_CS0_MASK 0x003f0001
73/* WS=10, AA=1, PS=16bit (10) */
74#define CONFIG_SYS_CS0_CTRL 0x1980
75/* CS1 - DM9000 Ethernet Controller, address 0x30000000 */
76#define CONFIG_SYS_CS1_BASE 0x3000
77#define CONFIG_SYS_CS1_MASK 0x00070001
78#define CONFIG_SYS_CS1_CTRL 0x0100
79
80#endif /* __AMCORE_CONFIG_H */