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-mips64 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 ffffffff80500000 ${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 #include <config_cmd_default.h>
49 
50 #define CONFIG_CMD_ELF
51 #define CONFIG_CMD_FAT
52 #define CONFIG_CMD_EXT2
53 #undef CONFIG_CMD_LOADB
54 #undef CONFIG_CMD_LOADS
55 #define CONFIG_CMD_DHCP
56 
57 #define CONFIG_DRIVER_NE2000
58 #define CONFIG_DRIVER_NE2000_BASE	0xffffffffb4000300
59 
60 #define CONFIG_SYS_NS16550
61 #define CONFIG_SYS_NS16550_SERIAL
62 #define CONFIG_SYS_NS16550_REG_SIZE	1
63 #define CONFIG_SYS_NS16550_CLK		115200
64 #define CONFIG_SYS_NS16550_COM1		0xffffffffb40003f8
65 #define CONFIG_CONS_INDEX		1
66 
67 #define CONFIG_CMD_IDE
68 #define CONFIG_DOS_PARTITION
69 
70 #define CONFIG_SYS_IDE_MAXBUS		2
71 #define CONFIG_SYS_ATA_IDE0_OFFSET	0x1f0
72 #define CONFIG_SYS_ATA_IDE1_OFFSET	0x170
73 #define CONFIG_SYS_ATA_DATA_OFFSET	0
74 #define CONFIG_SYS_ATA_REG_OFFSET	0
75 #define CONFIG_SYS_ATA_BASE_ADDR	0xffffffffb4000000
76 
77 #define CONFIG_SYS_IDE_MAXDEVICE	4
78 
79 #define CONFIG_CMD_RARP
80 
81 /*
82  * Miscellaneous configurable options
83  */
84 #define CONFIG_SYS_LONGHELP		/* undef to save memory */
85 
86 /* Monitor Command Prompt */
87 #if defined(CONFIG_SYS_LITTLE_ENDIAN)
88 #define CONFIG_SYS_PROMPT		"qemu-mips64el # "
89 #else
90 #define CONFIG_SYS_PROMPT		"qemu-mips64 # "
91 #endif
92 
93 #define CONFIG_AUTO_COMPLETE
94 #define CONFIG_CMDLINE_EDITING
95 #define CONFIG_SYS_HUSH_PARSER
96 
97 /* Console I/O Buffer Size */
98 #define CONFIG_SYS_CBSIZE		256
99 /* Print Buffer Size */
100 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
101 /* max number of command args */
102 #define CONFIG_SYS_MAXARGS		16
103 
104 #define CONFIG_SYS_MALLOC_LEN		128*1024
105 
106 #define CONFIG_SYS_BOOTPARAMS_LEN	128*1024
107 
108 #define CONFIG_SYS_MHZ			132
109 
110 #define CONFIG_SYS_MIPS_TIMER_FREQ	(CONFIG_SYS_MHZ * 1000000)
111 
112 /* Cached addr */
113 #define CONFIG_SYS_SDRAM_BASE		0xffffffff80000000
114 
115 /* default load address */
116 #define CONFIG_SYS_LOAD_ADDR		0xffffffff81000000
117 
118 #define CONFIG_SYS_MEMTEST_START	0xffffffff80100000
119 #define CONFIG_SYS_MEMTEST_END		0xffffffff80800000
120 
121 /*-----------------------------------------------------------------------
122  * FLASH and environment organization
123  */
124 /* The following #defines are needed to get flash environment right */
125 #define CONFIG_SYS_TEXT_BASE		0xffffffffbfc00000 /* Rom version */
126 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE
127 #define CONFIG_SYS_MONITOR_LEN		(192 << 10)
128 
129 #define CONFIG_SYS_INIT_SP_OFFSET	0x400000
130 
131 /* We boot from this flash, selected with dip switch */
132 #define CONFIG_SYS_FLASH_BASE		0xffffffffbfc00000
133 #define CONFIG_SYS_MAX_FLASH_BANKS	1
134 #define CONFIG_SYS_MAX_FLASH_SECT	128
135 #define CONFIG_SYS_FLASH_CFI
136 #define CONFIG_FLASH_CFI_DRIVER
137 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
138 
139 #define CONFIG_ENV_IS_IN_FLASH
140 #define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
141 
142 /* Address and size of Primary Environment Sector */
143 #define CONFIG_ENV_SIZE		0x8000
144 
145 #define CONFIG_ENV_OVERWRITE	1
146 
147 #define MEM_SIZE		128
148 
149 #define CONFIG_LZMA
150 
151 /*-----------------------------------------------------------------------
152  * Cache Configuration
153  */
154 #define CONFIG_SYS_DCACHE_SIZE		16384
155 #define CONFIG_SYS_ICACHE_SIZE		16384
156 #define CONFIG_SYS_CACHELINE_SIZE	32
157 
158 #endif /* __CONFIG_H */
159