1 /* 2 * (C) Copyright 2009-2012 3 * Wojciech Dubowik <wojciech.dubowik@neratec.com> 4 * Luka Perkov <luka@openwrt.org> 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9 #ifndef _CONFIG_ICONNECT_H 10 #define _CONFIG_ICONNECT_H 11 12 13 /* 14 * Version number information 15 */ 16 #define CONFIG_IDENT_STRING " Iomega iConnect" 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 /* 26 * Machine type 27 */ 28 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT 29 30 /* 31 * Compression configuration 32 */ 33 #define CONFIG_BZIP2 34 #define CONFIG_LZMA 35 #define CONFIG_LZO 36 37 /* 38 * Commands configuration 39 */ 40 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */ 41 #define CONFIG_SYS_MVFS 42 #define CONFIG_CMD_ENV 43 #define CONFIG_CMD_MII 44 #define CONFIG_CMD_NAND 45 #define CONFIG_CMD_PING 46 #define CONFIG_CMD_USB 47 48 /* 49 * mv-common.h should be defined after CMD configs since it used them 50 * to enable certain macros 51 */ 52 #include "mv-common.h" 53 54 /* 55 * Environment variables configuration 56 */ 57 #ifdef CONFIG_CMD_NAND 58 #define CONFIG_ENV_IS_IN_NAND 59 #define CONFIG_ENV_SECT_SIZE 0x20000 60 #else 61 #define CONFIG_ENV_IS_NOWHERE 62 #endif 63 #define CONFIG_ENV_SIZE 0x20000 64 #define CONFIG_ENV_OFFSET 0x80000 65 66 /* 67 * Default environment variables 68 */ 69 #define CONFIG_BOOTCOMMAND \ 70 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 71 "ubi part rootfs; " \ 72 "ubifsmount ubi:rootfs; " \ 73 "ubifsload 0x800000 ${kernel}; " \ 74 "bootm 0x800000" 75 76 #define CONFIG_MTDPARTS \ 77 "mtdparts=orion_nand:" \ 78 "0x80000@0x0(uboot)," \ 79 "0x20000@0x80000(uboot_env)," \ 80 "-@0xa0000(rootfs)\0" 81 82 #define CONFIG_EXTRA_ENV_SETTINGS \ 83 "console=console=ttyS0,115200\0" \ 84 "mtdids=nand0=orion_nand\0" \ 85 "mtdparts="CONFIG_MTDPARTS \ 86 "kernel=/boot/uImage\0" \ 87 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0" 88 89 /* 90 * Ethernet driver configuration 91 */ 92 #ifdef CONFIG_CMD_NET 93 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 94 #define CONFIG_PHY_BASE_ADR 11 95 #undef CONFIG_RESET_PHY_R 96 #endif /* CONFIG_CMD_NET */ 97 98 /* 99 * File system 100 */ 101 #define CONFIG_CMD_EXT2 102 #define CONFIG_CMD_FAT 103 #define CONFIG_CMD_JFFS2 104 #define CONFIG_CMD_UBI 105 #define CONFIG_CMD_UBIFS 106 #define CONFIG_RBTREE 107 #define CONFIG_MTD_DEVICE 108 #define CONFIG_MTD_PARTITIONS 109 #define CONFIG_CMD_MTDPARTS 110 111 #endif /* _CONFIG_ICONNECT_H */ 112