]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/cm41xx.h
config: remove platform CONFIG_SYS_HZ definition part 2/2
[people/ms/u-boot.git] / include / configs / cm41xx.h
CommitLineData
16b013e7
WD
1/*
2 * (C) Copyright 2005
3 * Greg Ungerer <greg.ungerer@opengear.com>.
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
3765b3e7 6 * SPDX-License-Identifier: GPL-2.0+
16b013e7
WD
7 */
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/*
12 * High Level Configuration Options
13 * (easy to change)
14 */
15#define CONFIG_KS8695 1 /* it is a KS8695 CPU */
16#define CONFIG_CM41xx 1 /* it is an OpenGear CM41xx boad */
17
16b013e7
WD
18#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
19#define CONFIG_SETUP_MEMORY_TAGS 1
20#define CONFIG_INITRD_TAG 1
21
2eab48f5
WD
22#define CONFIG_DRIVER_KS8695ETH /* use KS8695 ethernet driver */
23
16b013e7
WD
24/*
25 * Size of malloc() pool
26 */
6d0f6bcf 27#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024)
16b013e7
WD
28
29/*
30 * Hardware drivers
31 */
32
33/*
34 * select serial console configuration
35 */
93f6d725 36#define CONFIG_ENV_IS_NOWHERE
176a600d 37#define CONFIG_KS8695_SERIAL
16b013e7
WD
38#define CONFIG_SERIAL1
39#define CONFIG_CONS_INDEX 1
40#define CONFIG_BAUDRATE 115200
37e4f24b 41
80ff4f99
JL
42/*
43 * BOOTP options
44 */
45#define CONFIG_BOOTP_BOOTFILESIZE
46#define CONFIG_BOOTP_BOOTPATH
47#define CONFIG_BOOTP_GATEWAY
48#define CONFIG_BOOTP_HOSTNAME
49
50
37e4f24b
JL
51/*
52 * Command line configuration.
53 */
54#include <config_cmd_default.h>
55
bdab39d3 56#undef CONFIG_CMD_SAVEENV
37e4f24b 57
16b013e7
WD
58
59#define CONFIG_BOOTDELAY 0
60#define CONFIG_BOOTARGS "mem=32M console=ttyAM0,115200"
61#define CONFIG_BOOTCOMMAND "gofsk 0x02200000"
62
63/*
64 * Miscellaneous configurable options
65 */
6d0f6bcf
JCPV
66#define CONFIG_SYS_LONGHELP /* undef to save memory */
67#define CONFIG_SYS_PROMPT "boot > " /* Monitor Command Prompt */
68#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
69#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
70#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
71#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
16b013e7 72
6d0f6bcf
JCPV
73#define CONFIG_SYS_MEMTEST_START 0x00800000 /* memtest works on */
74#define CONFIG_SYS_MEMTEST_END 0x01000000 /* 16 MB in DRAM */
16b013e7 75
6d0f6bcf 76#define CONFIG_SYS_LOAD_ADDR 0x00008000 /* default load address */
16b013e7 77
16b013e7
WD
78/*-----------------------------------------------------------------------
79 * Physical Memory Map
80 */
81#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
82#define PHYS_SDRAM_1 0x00000000 /* SDRAM Bank #1 */
83#define PHYS_SDRAM_1_SIZE 0x02000000 /* 32 MB */
a34ebbda
GU
84#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
85
86#define CONFIG_SYS_INIT_SP_ADDR 0x00020000 /* lowest 128k of RAM */
16b013e7
WD
87
88#define PHYS_FLASH_1 0x02000000 /* Flash Bank #1 */
89#define PHYS_FLASH_SECT_SIZE 0x00020000 /* 128 KB sectors (x1) */
6d0f6bcf 90#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
16b013e7
WD
91
92/*-----------------------------------------------------------------------
93 * FLASH and environment organization
94 */
6d0f6bcf
JCPV
95#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */
96#define CONFIG_SYS_MAX_FLASH_SECT (128) /* max number of sectors on one chip */
16b013e7
WD
97
98/* timeout values are in ticks */
6d0f6bcf
JCPV
99#define CONFIG_SYS_FLASH_ERASE_TOUT (20*CONFIG_SYS_HZ) /* Timeout for Flash Erase */
100#define CONFIG_SYS_FLASH_WRITE_TOUT (20*CONFIG_SYS_HZ) /* Timeout for Flash Write */
16b013e7 101
0e8d1586 102#define CONFIG_ENV_SIZE 0x20000 /* Total Size of Environment */
16b013e7
WD
103
104#endif /* __CONFIG_H */