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