1 /* 2 * Copyright (C) 2011-2012 3 * Gerald Kerma <dreagle@doukki.net> 4 * Luka Perkov <luka@openwrt.org> 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9 #ifndef _CONFIG_IB62x0_H 10 #define _CONFIG_IB62x0_H 11 12 13 /* 14 * Version number information 15 */ 16 #define CONFIG_IDENT_STRING " RaidSonic ICY BOX IB-NAS62x0" 17 18 /* 19 * High level configuration options 20 */ 21 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 22 #define CONFIG_KW88F6281 /* SOC Name */ 23 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 24 25 /* Add target to build it automatically upon "make" */ 26 #define CONFIG_BUILD_TARGET "u-boot.kwb" 27 28 /* 29 * Enable device tree support 30 */ 31 #define CONFIG_OF_LIBFDT 32 33 /* 34 * Compression configuration 35 */ 36 #define CONFIG_BZIP2 37 #define CONFIG_LZMA 38 #define CONFIG_LZO 39 40 /* 41 * Commands configuration 42 */ 43 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */ 44 #define CONFIG_SYS_MVFS 45 #define CONFIG_CMD_BOOTZ 46 #define CONFIG_CMD_IDE 47 #define CONFIG_CMD_MII 48 #define CONFIG_CMD_NAND 49 #define CONFIG_CMD_PING 50 #define CONFIG_CMD_USB 51 52 /* 53 * mv-common.h should be defined after CMD configs since it used them 54 * to enable certain macros 55 */ 56 #include "mv-common.h" 57 58 /* 59 * Environment variables configuration 60 */ 61 #ifdef CONFIG_CMD_NAND 62 #define CONFIG_ENV_IS_IN_NAND 63 #define CONFIG_ENV_SECT_SIZE 0x20000 64 #else 65 #define CONFIG_ENV_IS_NOWHERE 66 #endif 67 #define CONFIG_ENV_SIZE 0x20000 68 #define CONFIG_ENV_OFFSET 0xe0000 69 70 /* 71 * Default environment variables 72 */ 73 #define CONFIG_BOOTCOMMAND \ 74 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 75 "ubi part root; " \ 76 "ubifsmount ubi:rootfs; " \ 77 "ubifsload 0x800000 ${kernel}; " \ 78 "ubifsload 0x700000 ${fdt}; " \ 79 "ubifsumount; " \ 80 "fdt addr 0x700000; fdt resize; fdt chosen; " \ 81 "bootz 0x800000 - 0x700000" 82 83 #define CONFIG_MTDPARTS \ 84 "mtdparts=orion_nand:" \ 85 "0xe0000@0x0(uboot)," \ 86 "0x20000@0xe0000(uboot_env)," \ 87 "-@0x100000(root)\0" 88 89 #define CONFIG_EXTRA_ENV_SETTINGS \ 90 "console=console=ttyS0,115200\0" \ 91 "mtdids=nand0=orion_nand\0" \ 92 "mtdparts="CONFIG_MTDPARTS \ 93 "kernel=/boot/zImage\0" \ 94 "fdt=/boot/ib62x0.dtb\0" \ 95 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" 96 97 /* 98 * Ethernet driver configuration 99 */ 100 #ifdef CONFIG_CMD_NET 101 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 102 #define CONFIG_PHY_BASE_ADR 0 103 #undef CONFIG_RESET_PHY_R 104 #endif /* CONFIG_CMD_NET */ 105 106 /* 107 * SATA driver configuration 108 */ 109 #ifdef CONFIG_CMD_IDE 110 #define __io 111 #define CONFIG_IDE_PREINIT 112 #define CONFIG_DOS_PARTITION 113 #define CONFIG_MVSATA_IDE_USE_PORT0 114 #define CONFIG_MVSATA_IDE_USE_PORT1 115 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 116 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 117 #endif /* CONFIG_CMD_IDE */ 118 119 /* 120 * RTC driver configuration 121 */ 122 #ifdef CONFIG_CMD_DATE 123 #define CONFIG_RTC_MV 124 #endif /* CONFIG_CMD_DATE */ 125 126 /* 127 * File system 128 */ 129 #define CONFIG_CMD_EXT2 130 #define CONFIG_CMD_FAT 131 #define CONFIG_CMD_JFFS2 132 #define CONFIG_CMD_UBI 133 #define CONFIG_CMD_UBIFS 134 #define CONFIG_RBTREE 135 #define CONFIG_MTD_DEVICE 136 #define CONFIG_MTD_PARTITIONS 137 #define CONFIG_CMD_MTDPARTS 138 139 #endif /* _CONFIG_IB62x0_H */ 140