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