Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Vlad Lungu | 635e76c | 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 | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 8 | * This file contains the configuration parameters for qemu-mips target. |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 14 | #define CONFIG_QEMU_MIPS |
Daniel Schwierzeck | ac25adf | 2014-11-15 23:30:01 +0100 | [diff] [blame] | 15 | |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 16 | #define CONFIG_MISC_INIT_R |
| 17 | |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 18 | #define CONFIG_TIMESTAMP /* Print image info with timestamp */ |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 19 | |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 20 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 21 | "addmisc=setenv bootargs ${bootargs} " \ |
| 22 | "console=ttyS0,${baudrate} " \ |
| 23 | "panic=1\0" \ |
| 24 | "bootfile=/tftpboot/vmlinux\0" \ |
| 25 | "load=tftp 80500000 ${u-boot}\0" \ |
| 26 | "" |
| 27 | |
| 28 | #define CONFIG_BOOTCOMMAND "bootp;bootelf" |
| 29 | |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 30 | /* |
| 31 | * BOOTP options |
| 32 | */ |
| 33 | #define CONFIG_BOOTP_BOOTFILESIZE |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 34 | |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 35 | /* |
| 36 | * Command line configuration. |
| 37 | */ |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 38 | |
| 39 | #define CONFIG_DRIVER_NE2000 |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 40 | #define CONFIG_DRIVER_NE2000_BASE 0xb4000300 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 41 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | #define CONFIG_SYS_NS16550_SERIAL |
| 43 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| 44 | #define CONFIG_SYS_NS16550_CLK 115200 |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 45 | #define CONFIG_SYS_NS16550_COM1 0xb40003f8 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 46 | |
Stanislav Galabov | 19030fd | 2016-02-17 15:23:30 +0200 | [diff] [blame] | 47 | #ifdef CONFIG_SYS_BIG_ENDIAN |
| 48 | #define CONFIG_IDE_SWAP_IO |
| 49 | #endif |
| 50 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | #define CONFIG_SYS_IDE_MAXBUS 2 |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 52 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x1f0 |
| 53 | #define CONFIG_SYS_ATA_IDE1_OFFSET 0x170 |
| 54 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 |
| 55 | #define CONFIG_SYS_ATA_REG_OFFSET 0 |
| 56 | #define CONFIG_SYS_ATA_BASE_ADDR 0xb4000000 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 57 | |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 58 | #define CONFIG_SYS_IDE_MAXDEVICE 4 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * Miscellaneous configurable options |
| 62 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 2c18c27 | 2007-12-22 15:03:12 +0100 | [diff] [blame] | 63 | |
Kyle Edwards | 27e5e13 | 2017-04-12 22:42:32 -0400 | [diff] [blame] | 64 | #define CONFIG_SYS_MALLOC_LEN (256 << 10) |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 65 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 66 | #define CONFIG_SYS_BOOTPARAMS_LEN 128*1024 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 67 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 68 | #define CONFIG_SYS_MHZ 132 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 69 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 70 | #define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000) |
Shinya Kuribayashi | 5d374e0 | 2008-06-05 22:29:00 +0900 | [diff] [blame] | 71 | |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 72 | /* Cached addr */ |
| 73 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 74 | |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 75 | /* default load address */ |
| 76 | #define CONFIG_SYS_LOAD_ADDR 0x81000000 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 77 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | #define CONFIG_SYS_MEMTEST_START 0x80100000 |
| 79 | #define CONFIG_SYS_MEMTEST_END 0x80800000 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 80 | |
| 81 | /*----------------------------------------------------------------------- |
| 82 | * FLASH and environment organization |
| 83 | */ |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 84 | /* The following #defines are needed to get flash environment right */ |
Wolfgang Denk | 0708bc6 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 85 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 86 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 88 | |
| 89 | /* We boot from this flash, selected with dip switch */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 90 | #define CONFIG_SYS_FLASH_BASE 0xbfc00000 |
| 91 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 92 | #define CONFIG_SYS_MAX_FLASH_SECT 128 |
Daniel Schwierzeck | 42a0ecb | 2012-10-16 15:02:08 +0200 | [diff] [blame] | 93 | #define CONFIG_SYS_FLASH_CFI |
| 94 | #define CONFIG_FLASH_CFI_DRIVER |
| 95 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 96 | |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 97 | /* Address and size of Primary Environment Sector */ |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 98 | #define CONFIG_ENV_SIZE 0x8000 |
Kyle Edwards | 07531c1 | 2017-04-12 22:42:31 -0400 | [diff] [blame] | 99 | #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + (4 << 20) - CONFIG_ENV_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | e3eb15b | 2008-04-23 00:11:47 +0900 | [diff] [blame] | 100 | |
| 101 | #define CONFIG_ENV_OVERWRITE 1 |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 102 | |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 103 | #define MEM_SIZE 128 |
Vlad Lungu | 635e76c | 2008-01-16 19:27:51 +0200 | [diff] [blame] | 104 | |
Shinya Kuribayashi | e747e03 | 2008-04-23 11:02:12 +0900 | [diff] [blame] | 105 | #endif /* __CONFIG_H */ |