xref: /openbmc/u-boot/include/configs/qemu-mips.h (revision 17aa548c)
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 /*
9  * This file contains the configuration parameters for qemu-mips target.
10  */
11 
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14 
15 #define CONFIG_QEMU_MIPS
16 
17 #define CONFIG_DISPLAY_BOARDINFO
18 #define CONFIG_MISC_INIT_R
19 
20 #define CONFIG_BOOTDELAY	10	/* autoboot after 10 seconds */
21 
22 #define CONFIG_BAUDRATE		115200
23 
24 #define CONFIG_TIMESTAMP		/* Print image info with timestamp */
25 #undef CONFIG_BOOTARGS
26 
27 #define CONFIG_EXTRA_ENV_SETTINGS					\
28 	"addmisc=setenv bootargs ${bootargs} "				\
29 		"console=ttyS0,${baudrate} "				\
30 		"panic=1\0"						\
31 	"bootfile=/tftpboot/vmlinux\0"				\
32 	"load=tftp 80500000 ${u-boot}\0"				\
33 	""
34 
35 #define CONFIG_BOOTCOMMAND	"bootp;bootelf"
36 
37 /*
38  * BOOTP options
39  */
40 #define CONFIG_BOOTP_BOOTFILESIZE
41 #define CONFIG_BOOTP_BOOTPATH
42 #define CONFIG_BOOTP_GATEWAY
43 #define CONFIG_BOOTP_HOSTNAME
44 
45 /*
46  * Command line configuration.
47  */
48 #define CONFIG_CMD_ELF
49 #define CONFIG_CMD_FAT
50 #define CONFIG_CMD_EXT2
51 #define CONFIG_CMD_DHCP
52 
53 #define CONFIG_DRIVER_NE2000
54 #define CONFIG_DRIVER_NE2000_BASE	0xb4000300
55 
56 #define CONFIG_SYS_NS16550
57 #define CONFIG_SYS_NS16550_SERIAL
58 #define CONFIG_SYS_NS16550_REG_SIZE	1
59 #define CONFIG_SYS_NS16550_CLK		115200
60 #define CONFIG_SYS_NS16550_COM1		0xb40003f8
61 #define CONFIG_CONS_INDEX		1
62 
63 #define CONFIG_CMD_IDE
64 #define CONFIG_DOS_PARTITION
65 
66 #define CONFIG_SYS_IDE_MAXBUS		2
67 #define CONFIG_SYS_ATA_IDE0_OFFSET	0x1f0
68 #define CONFIG_SYS_ATA_IDE1_OFFSET	0x170
69 #define CONFIG_SYS_ATA_DATA_OFFSET	0
70 #define CONFIG_SYS_ATA_REG_OFFSET	0
71 #define CONFIG_SYS_ATA_BASE_ADDR	0xb4000000
72 
73 #define CONFIG_SYS_IDE_MAXDEVICE	4
74 
75 /*
76  * Miscellaneous configurable options
77  */
78 #define CONFIG_SYS_LONGHELP		/* undef to save memory */
79 
80 /* Monitor Command Prompt */
81 #undef CONFIG_SYS_PROMPT
82 #if defined(CONFIG_SYS_LITTLE_ENDIAN)
83 #define CONFIG_SYS_PROMPT		"qemu-mipsel # "
84 #else
85 #define CONFIG_SYS_PROMPT		"qemu-mips # "
86 #endif
87 
88 #define CONFIG_AUTO_COMPLETE
89 #define CONFIG_CMDLINE_EDITING
90 #define CONFIG_SYS_HUSH_PARSER
91 
92 /* Console I/O Buffer Size */
93 #define CONFIG_SYS_CBSIZE		256
94 /* Print Buffer Size */
95 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
96 /* max number of command args */
97 #define CONFIG_SYS_MAXARGS		16
98 
99 #define CONFIG_SYS_MALLOC_LEN		128*1024
100 
101 #define CONFIG_SYS_BOOTPARAMS_LEN	128*1024
102 
103 #define CONFIG_SYS_MHZ			132
104 
105 #define CONFIG_SYS_MIPS_TIMER_FREQ	(CONFIG_SYS_MHZ * 1000000)
106 
107 /* Cached addr */
108 #define CONFIG_SYS_SDRAM_BASE		0x80000000
109 
110 /* default load address */
111 #define CONFIG_SYS_LOAD_ADDR		0x81000000
112 
113 #define CONFIG_SYS_MEMTEST_START	0x80100000
114 #define CONFIG_SYS_MEMTEST_END		0x80800000
115 
116 /*-----------------------------------------------------------------------
117  * FLASH and environment organization
118  */
119 /* The following #defines are needed to get flash environment right */
120 #define CONFIG_SYS_TEXT_BASE		0xbfc00000 /* Rom version */
121 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE
122 #define CONFIG_SYS_MONITOR_LEN		(192 << 10)
123 
124 #define CONFIG_SYS_INIT_SP_OFFSET	0x400000
125 
126 /* We boot from this flash, selected with dip switch */
127 #define CONFIG_SYS_FLASH_BASE		0xbfc00000
128 #define CONFIG_SYS_MAX_FLASH_BANKS	1
129 #define CONFIG_SYS_MAX_FLASH_SECT	128
130 #define CONFIG_SYS_FLASH_CFI
131 #define CONFIG_FLASH_CFI_DRIVER
132 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
133 
134 #define CONFIG_ENV_IS_IN_FLASH
135 #define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
136 
137 /* Address and size of Primary Environment Sector */
138 #define CONFIG_ENV_SIZE		0x8000
139 
140 #define CONFIG_ENV_OVERWRITE	1
141 
142 #define MEM_SIZE		128
143 
144 #define CONFIG_LZMA
145 
146 /*-----------------------------------------------------------------------
147  * Cache Configuration
148  */
149 #define CONFIG_SYS_DCACHE_SIZE		16384
150 #define CONFIG_SYS_ICACHE_SIZE		16384
151 #define CONFIG_SYS_CACHELINE_SIZE	32
152 
153 #endif /* __CONFIG_H */
154