1 /* 2 * Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __CONFIG_H 8 #define __CONFIG_H 9 10 #define CONFIG_SYS_HZ 1000 11 #define CONFIG_SYS_MHZ 200 12 #define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000) 13 14 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE 15 16 #define CONFIG_SYS_MALLOC_LEN 0x40000 17 #define CONFIG_SYS_BOOTPARAMS_LEN 0x20000 18 19 #define CONFIG_SYS_SDRAM_BASE 0x80000000 20 #define CONFIG_SYS_LOAD_ADDR 0x81000000 21 22 #define CONFIG_SYS_INIT_RAM_ADDR 0xbd000000 23 #define CONFIG_SYS_INIT_RAM_SIZE 0x8000 24 #define CONFIG_SYS_INIT_SP_ADDR \ 25 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE - 1) 26 27 #define CONFIG_SYS_BAUDRATE_TABLE \ 28 {9600, 19200, 38400, 57600, 115200} 29 30 #define CONFIG_BOOTARGS "console=ttyS0,115200 " \ 31 "root=/dev/mtdblock2 " \ 32 "rootfstype=squashfs" 33 #define CONFIG_BOOTCOMMAND "sf probe;" \ 34 "mtdparts default;" \ 35 "bootm 0x9f650000" 36 37 #define MTDIDS_DEFAULT "nor0=spi-flash.0" 38 #define MTDPARTS_DEFAULT "mtdparts=spi-flash.0:" \ 39 "256k(u-boot),64k(u-boot-env)," \ 40 "6144k(rootfs),1600k(uImage)," \ 41 "64k(NVRAM),64k(ART)" 42 43 #define CONFIG_ENV_SPI_MAX_HZ 25000000 44 #define CONFIG_ENV_IS_IN_SPI_FLASH 45 #define CONFIG_ENV_OFFSET 0x40000 46 #define CONFIG_ENV_SECT_SIZE 0x10000 47 #define CONFIG_ENV_SIZE 0x10000 48 49 /* 50 * Command 51 */ 52 #define CONFIG_CMD_MTDPARTS 53 54 /* Miscellaneous configurable options */ 55 #define CONFIG_SYS_CBSIZE 256 56 #define CONFIG_SYS_MAXARGS 16 57 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ 58 sizeof(CONFIG_SYS_PROMPT) + 16) 59 #define CONFIG_SYS_LONGHELP 60 #define CONFIG_CMDLINE_EDITING 61 #define CONFIG_AUTO_COMPLETE 62 63 /* 64 * Diagnostics 65 */ 66 #define CONFIG_SYS_MEMTEST_START 0x80100000 67 #define CONFIG_SYS_MEMTEST_END 0x83f00000 68 #define CONFIG_CMD_MEMTEST 69 70 #endif /* __CONFIG_H */ 71