Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 8 | * This file contains the configuration parameters for qemu-mips target. |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 14 | #define CONFIG_QEMU_MIPS |
Daniel Schwierzeck | bdb53cf | 2014-11-15 23:30:01 +0100 | [diff] [blame] | 15 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 16 | #define CONFIG_TIMESTAMP /* Print image info with timestamp */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 17 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 18 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 19 | "addmisc=setenv bootargs ${bootargs} " \ |
| 20 | "console=ttyS0,${baudrate} " \ |
| 21 | "panic=1\0" \ |
| 22 | "bootfile=/tftpboot/vmlinux\0" \ |
| 23 | "load=tftp 80500000 ${u-boot}\0" \ |
| 24 | "" |
| 25 | |
| 26 | #define CONFIG_BOOTCOMMAND "bootp;bootelf" |
| 27 | |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 28 | /* |
| 29 | * BOOTP options |
| 30 | */ |
| 31 | #define CONFIG_BOOTP_BOOTFILESIZE |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 32 | |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 33 | #define CONFIG_DRIVER_NE2000 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 34 | #define CONFIG_DRIVER_NE2000_BASE 0xb4000300 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 35 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 36 | #define CONFIG_SYS_NS16550_SERIAL |
| 37 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 38 | #define CONFIG_SYS_NS16550_CLK 115200 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 39 | #define CONFIG_SYS_NS16550_COM1 0xb40003f8 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 40 | |
Stanislav Galabov | 713a9e1 | 2016-02-17 15:23:30 +0200 | [diff] [blame] | 41 | #ifdef CONFIG_SYS_BIG_ENDIAN |
| 42 | #define CONFIG_IDE_SWAP_IO |
| 43 | #endif |
| 44 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | #define CONFIG_SYS_IDE_MAXBUS 2 |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 46 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x1f0 |
| 47 | #define CONFIG_SYS_ATA_IDE1_OFFSET 0x170 |
| 48 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 |
| 49 | #define CONFIG_SYS_ATA_REG_OFFSET 0 |
| 50 | #define CONFIG_SYS_ATA_BASE_ADDR 0xb4000000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 51 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 52 | #define CONFIG_SYS_IDE_MAXDEVICE 4 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 53 | |
| 54 | /* |
| 55 | * Miscellaneous configurable options |
| 56 | */ |
Jean-Christophe PLAGNIOL-VILLARD | bed8ce8 | 2007-12-22 15:03:12 +0100 | [diff] [blame] | 57 | |
Kyle Edwards | 1967228 | 2017-04-12 22:42:32 -0400 | [diff] [blame] | 58 | #define CONFIG_SYS_MALLOC_LEN (256 << 10) |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 59 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | #define CONFIG_SYS_BOOTPARAMS_LEN 128*1024 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 61 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 62 | #define CONFIG_SYS_MHZ 132 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 63 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | #define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000) |
Shinya Kuribayashi | a55d481 | 2008-06-05 22:29:00 +0900 | [diff] [blame] | 65 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 66 | /* Cached addr */ |
| 67 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 68 | |
Daniel Schwierzeck | 6b2eba1 | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 69 | /* default load address */ |
| 70 | #define CONFIG_SYS_LOAD_ADDR 0x81000000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 71 | |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 72 | /*----------------------------------------------------------------------- |
| 73 | * FLASH and environment organization |
| 74 | */ |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 75 | /* The following #defines are needed to get flash environment right */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 76 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 77 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 79 | |
| 80 | /* We boot from this flash, selected with dip switch */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 81 | #define CONFIG_SYS_FLASH_BASE 0xbfc00000 |
| 82 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 83 | #define CONFIG_SYS_MAX_FLASH_SECT 128 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 84 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 85 | /* Address and size of Primary Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | b4aff1f | 2008-04-23 00:11:47 +0900 | [diff] [blame] | 86 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 87 | #define MEM_SIZE 128 |
Vlad Lungu | 0764c16 | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 88 | |
Shinya Kuribayashi | 8875e3a | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 89 | #endif /* __CONFIG_H */ |