blob: a1b772079622120eb4a0a2dc642942bfd7d5d89c [file] [log] [blame]
wdenkf4863a72004-02-07 01:27:10 +00001/*
2 * (C) Copyright 2003
3 * Masami Komiya <mkomiya@sonare.it>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkf4863a72004-02-07 01:27:10 +00006 */
7
8/*
9 * Config header file for TANBAC TB0229 board using an VR4131 CPU module
10 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
14
15#define CONFIG_MIPS32 1 /* MIPS 4Kc CPU core */
16#define CONFIG_TB0229 1 /* on a TB0229 Board */
17
18#ifndef CPU_CLOCK_RATE
19#define CPU_CLOCK_RATE 200000000 /* 200 MHz clock for the MIPS core */
20#endif
21#define CPU_TCLOCK_RATE 16588800 /* 16.5888 MHz for TClock */
22
23#define CONFIG_CONS_INDEX 1
24#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
25
26#define CONFIG_BAUDRATE 115200
27
wdenkf4863a72004-02-07 01:27:10 +000028#define CONFIG_TIMESTAMP /* Print image info with timestamp */
29
30#define CONFIG_PREBOOT "echo;" \
Wolfgang Denk32bf3d12008-03-03 12:16:44 +010031 "echo Type \\\"boot\\\" for the network boot using DHCP, TFTP and NFS;" \
32 "echo Type \\\"run netboot_initrd\\\" for the network boot with initrd;" \
33 "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
34 "echo Type \\\"run flash_local\\\" to mount local root filesystem;" \
wdenkf4863a72004-02-07 01:27:10 +000035 "echo"
36
37#undef CONFIG_BOOTARGS
38
39#define CONFIG_EXTRA_ENV_SETTINGS \
40 "netboot=dhcp;tftp;run netargs; bootm\0" \
41 "nfsargs=setenv bootargs root=/dev/nfs ip=dhcp\0" \
42 "localargs=setenv bootargs root=1F02 ip=dhcp\0" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010043 "addmisc=setenv bootargs ${bootargs} " \
44 "console=ttyS0,${baudrate} " \
wdenkf4863a72004-02-07 01:27:10 +000045 "read-only=readonly\0" \
46 "netargs=run nfsargs addmisc\0" \
47 "flash_nfs=run nfsargs addmisc;" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010048 "bootm ${kernel_addr}\0" \
wdenkf4863a72004-02-07 01:27:10 +000049 "flash_local=run localargs addmisc;" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010050 "bootm ${kernel_addr}\0" \
wdenkf4863a72004-02-07 01:27:10 +000051 "netboot_initrd=dhcp;tftp;tftp 80600000 initrd;" \
52 "setenv bootargs root=/dev/ram ramdisk_size=8192 ip=dhcp;"\
53 "run addmisc;" \
54 "bootm 80400000 80600000\0" \
55 "rootpath=/export/miniroot-mipsel\0" \
56 "autoload=no\0" \
57 "kernel_addr=BFC60000\0" \
58 "ramdisk_addr=B0100000\0" \
59 "u-boot=u-boot.bin\0" \
60 "bootfile=uImage\0" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010061 "load=dhcp;tftp 80400000 ${u-boot}\0" \
62 "load_kernel=dhcp;tftp 80400000 ${bootfile}\0" \
wdenkf4863a72004-02-07 01:27:10 +000063 "update_uboot=run load;" \
64 "protect off BFC00000 BFC3FFFF;" \
65 "erase BFC00000 BFC3FFFF;" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010066 "cp.b 80400000 BFC00000 ${filesize}\0" \
wdenkf4863a72004-02-07 01:27:10 +000067 "update_kernel=run load_kernel;" \
68 "erase BFC60000 BFD5FFFF;" \
Wolfgang Denkfe126d82005-11-20 21:40:11 +010069 "cp.b 80400000 BFC60000 ${filesize}\0" \
wdenkf4863a72004-02-07 01:27:10 +000070 "initenv=erase bfc40000 bfc5ffff\0" \
71 ""
wdenkcd37d9e2004-02-10 00:03:41 +000072/*#define CONFIG_BOOTCOMMAND "run flash_local" */
wdenkf4863a72004-02-07 01:27:10 +000073#define CONFIG_BOOTCOMMAND "run netboot"
74
Jon Loeliger6c18eb92007-07-04 22:33:38 -050075
76/*
Jon Loeliger079a1362007-07-10 10:12:10 -050077 * BOOTP options
78 */
79#define CONFIG_BOOTP_BOOTFILESIZE
80#define CONFIG_BOOTP_BOOTPATH
81#define CONFIG_BOOTP_GATEWAY
82#define CONFIG_BOOTP_HOSTNAME
83
84
85/*
Jon Loeliger6c18eb92007-07-04 22:33:38 -050086 * Command line configuration.
87 */
88#include <config_cmd_default.h>
89
90#define CONFIG_CMD_ASKENV
91#define CONFIG_CMD_DHCP
92#define CONFIG_CMD_PING
93#define CONFIG_CMD_PCI
94#define CONFIG_CMD_ELF
95
wdenkf4863a72004-02-07 01:27:10 +000096
97/*
98 * Miscellaneous configurable options
99 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100#define CONFIG_SYS_LONGHELP /* undef to save memory */
101#define CONFIG_SYS_PROMPT "# " /* Monitor Command Prompt */
102#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
103#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
104#define CONFIG_SYS_MAXARGS 16 /* max number of command args*/
wdenkf4863a72004-02-07 01:27:10 +0000105
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106#define CONFIG_SYS_MALLOC_LEN 128*1024
wdenkf4863a72004-02-07 01:27:10 +0000107
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108#define CONFIG_SYS_BOOTPARAMS_LEN 128*1024
wdenkf4863a72004-02-07 01:27:10 +0000109
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110#define CONFIG_SYS_MIPS_TIMER_FREQ (CPU_TCLOCK_RATE/4)
Shinya Kuribayashia55d4812008-06-05 22:29:00 +0900111
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112#define CONFIG_SYS_HZ 1000
wdenkf4863a72004-02-07 01:27:10 +0000113
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114#define CONFIG_SYS_SDRAM_BASE 0x80000000
wdenkf4863a72004-02-07 01:27:10 +0000115
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116#define CONFIG_SYS_LOAD_ADDR 0x80400000 /* default load address */
wdenkf4863a72004-02-07 01:27:10 +0000117
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118#define CONFIG_SYS_MEMTEST_START 0x80000000
119#define CONFIG_SYS_MEMTEST_END 0x80800000
wdenkf4863a72004-02-07 01:27:10 +0000120
121/*-----------------------------------------------------------------------
122 * FLASH and environment organization
123 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200124#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
125#define CONFIG_SYS_MAX_FLASH_SECT (128) /* max number of sectors on one chip */
wdenkf4863a72004-02-07 01:27:10 +0000126
127#define PHYS_FLASH_1 0xbfc00000 /* Flash Bank #1 */
128
129/* The following #defines are needed to get flash environment right */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200130#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131#define CONFIG_SYS_MONITOR_LEN (192 << 10)
wdenkf4863a72004-02-07 01:27:10 +0000132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133#define CONFIG_SYS_INIT_SP_OFFSET 0x400000
wdenkf4863a72004-02-07 01:27:10 +0000134
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200135#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
wdenkf4863a72004-02-07 01:27:10 +0000136
137/* timeout values are in ticks */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138#define CONFIG_SYS_FLASH_ERASE_TOUT (20 * CONFIG_SYS_HZ) /* Timeout for Flash Erase */
139#define CONFIG_SYS_FLASH_WRITE_TOUT (2 * CONFIG_SYS_HZ) /* Timeout for Flash Write */
wdenkf4863a72004-02-07 01:27:10 +0000140
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200141#define CONFIG_ENV_IS_IN_FLASH 1
wdenkf4863a72004-02-07 01:27:10 +0000142
143/* Address and size of Primary Environment Sector */
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200144#define CONFIG_ENV_ADDR 0xBFC40000
145#define CONFIG_ENV_SIZE 0x20000
wdenkf4863a72004-02-07 01:27:10 +0000146
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200147#define CONFIG_SYS_DIRECT_FLASH_TFTP
wdenkf4863a72004-02-07 01:27:10 +0000148
149#define CONFIG_NR_DRAM_BANKS 1
150
151/*-----------------------------------------------------------------------
152 * Cache Configuration
153 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154#define CONFIG_SYS_DCACHE_SIZE 16384
155#define CONFIG_SYS_ICACHE_SIZE 16384
156#define CONFIG_SYS_CACHELINE_SIZE 16
wdenkf4863a72004-02-07 01:27:10 +0000157
158/*-----------------------------------------------------------------------
159 * Serial Configuration
160 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161#define CONFIG_SYS_NS16550
162#define CONFIG_SYS_NS16550_SERIAL
163#define CONFIG_SYS_NS16550_REG_SIZE 1
164#define CONFIG_SYS_NS16550_CLK 18432000
165#define CONFIG_SYS_NS16550_COM1 0xaf000800
wdenkf4863a72004-02-07 01:27:10 +0000166
167/*-----------------------------------------------------------------------
168 * PCI stuff
169 */
170#define CONFIG_PCI
171#define CONFIG_PCI_PNP
wdenkf4863a72004-02-07 01:27:10 +0000172#define CONFIG_EEPRO100
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173#define CONFIG_SYS_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */
wdenkf4863a72004-02-07 01:27:10 +0000174
175#define CONFIG_RTL8139
176
177#endif /* __CONFIG_H */