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_QEMU_MIPS |
Daniel Schwierzeck | bdb53cf | 2014-11-15 23:30:01 +0100 | [diff] [blame] | 16 | |
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_TIMESTAMP /* Print image info with timestamp */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 20 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 21 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 22 | "addmisc=setenv bootargs ${bootargs} " \ |
| 23 | "console=ttyS0,${baudrate} " \ |
| 24 | "panic=1\0" \ |
| 25 | "bootfile=/tftpboot/vmlinux\0" \ |
| 26 | "load=tftp 80500000 ${u-boot}\0" \ |
| 27 | "" |
| 28 | |
| 29 | #define CONFIG_BOOTCOMMAND "bootp;bootelf" |
| 30 | |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 31 | /* |
| 32 | * BOOTP options |
| 33 | */ |
| 34 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 35 | #define CONFIG_BOOTP_BOOTPATH |
| 36 | #define CONFIG_BOOTP_GATEWAY |
| 37 | #define CONFIG_BOOTP_HOSTNAME |
| 38 | |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 39 | /* |
| 40 | * Command line configuration. |
| 41 | */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 42 | |
| 43 | #define CONFIG_DRIVER_NE2000 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 44 | #define CONFIG_DRIVER_NE2000_BASE 0xb4000300 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 45 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | #define CONFIG_SYS_NS16550_SERIAL |
| 47 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 48 | #define CONFIG_SYS_NS16550_CLK 115200 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_NS16550_COM1 0xb40003f8 |
| 50 | #define CONFIG_CONS_INDEX 1 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 51 | |
Stanislav Galabov | 713a9e1 | 2016-02-17 15:23:30 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_SYS_BIG_ENDIAN |
| 53 | #define CONFIG_IDE_SWAP_IO |
| 54 | #endif |
| 55 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 56 | #define CONFIG_SYS_IDE_MAXBUS 2 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 57 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x1f0 |
| 58 | #define CONFIG_SYS_ATA_IDE1_OFFSET 0x170 |
| 59 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 |
| 60 | #define CONFIG_SYS_ATA_REG_OFFSET 0 |
| 61 | #define CONFIG_SYS_ATA_BASE_ADDR 0xb4000000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 62 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 63 | #define CONFIG_SYS_IDE_MAXDEVICE 4 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 64 | |
| 65 | /* |
| 66 | * Miscellaneous configurable options |
| 67 | */ |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 68 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 69 | |
Jean-Christophe PLAGNIOL-VILLARD | bed8ce8 | 2007-12-22 15:03:12 +0100 | [diff] [blame] | 70 | #define CONFIG_AUTO_COMPLETE |
| 71 | #define CONFIG_CMDLINE_EDITING |
Jean-Christophe PLAGNIOL-VILLARD | bed8ce8 | 2007-12-22 15:03:12 +0100 | [diff] [blame] | 72 | |
Kyle Edwards | 1967228 | 2017-04-12 22:42:32 -0400 | [diff] [blame] | 73 | #define CONFIG_SYS_MALLOC_LEN (256 << 10) |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 74 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 75 | #define CONFIG_SYS_BOOTPARAMS_LEN 128*1024 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 76 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | #define CONFIG_SYS_MHZ 132 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 78 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 79 | #define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000) |
Shinya Kuribayashi | a55d481 | 2008-06-05 22:29:00 +0900 | [diff] [blame] | 80 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 81 | /* Cached addr */ |
| 82 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 83 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 84 | /* default load address */ |
| 85 | #define CONFIG_SYS_LOAD_ADDR 0x81000000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 86 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | #define CONFIG_SYS_MEMTEST_START 0x80100000 |
| 88 | #define CONFIG_SYS_MEMTEST_END 0x80800000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 89 | |
| 90 | /*----------------------------------------------------------------------- |
| 91 | * FLASH and environment organization |
| 92 | */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 93 | /* The following #defines are needed to get flash environment right */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 94 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 95 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 96 | #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 97 | |
| 98 | /* We boot from this flash, selected with dip switch */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 99 | #define CONFIG_SYS_FLASH_BASE 0xbfc00000 |
| 100 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 101 | #define CONFIG_SYS_MAX_FLASH_SECT 128 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 102 | #define CONFIG_SYS_FLASH_CFI |
| 103 | #define CONFIG_FLASH_CFI_DRIVER |
| 104 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 105 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 106 | /* Address and size of Primary Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 107 | #define CONFIG_ENV_SIZE 0x8000 |
Kyle Edwards | 9828d05 | 2017-04-12 22:42:31 -0400 | [diff] [blame] | 108 | #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + (4 << 20) - CONFIG_ENV_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | b4aff1f | 2008-04-23 00:11:47 +0900 | [diff] [blame] | 109 | |
| 110 | #define CONFIG_ENV_OVERWRITE 1 |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 111 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 112 | #define MEM_SIZE 128 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 113 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 114 | #endif /* __CONFIG_H */ |