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 46 /* 47 * mv-common.h should be defined after CMD configs since it used them 48 * to enable certain macros 49 */ 50 #include "mv-common.h" 51 52 /* 53 * Environment variables configuration 54 */ 55 #ifdef CONFIG_CMD_NAND 56 #define CONFIG_ENV_IS_IN_NAND 57 #define CONFIG_ENV_SECT_SIZE 0x20000 58 #else 59 #define CONFIG_ENV_IS_NOWHERE 60 #endif 61 #define CONFIG_ENV_SIZE 0x20000 62 #define CONFIG_ENV_OFFSET 0x80000 63 64 /* 65 * Default environment variables 66 */ 67 #define CONFIG_BOOTCOMMAND \ 68 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 69 "ubi part rootfs; " \ 70 "ubifsmount ubi:rootfs; " \ 71 "ubifsload 0x800000 ${kernel}; " \ 72 "bootm 0x800000" 73 74 #define CONFIG_MTDPARTS \ 75 "mtdparts=orion_nand:" \ 76 "0x80000@0x0(uboot)," \ 77 "0x20000@0x80000(uboot_env)," \ 78 "-@0xa0000(rootfs)\0" 79 80 #define CONFIG_EXTRA_ENV_SETTINGS \ 81 "console=console=ttyS0,115200\0" \ 82 "mtdids=nand0=orion_nand\0" \ 83 "mtdparts="CONFIG_MTDPARTS \ 84 "kernel=/boot/uImage\0" \ 85 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0" 86 87 /* 88 * Ethernet driver configuration 89 */ 90 #ifdef CONFIG_CMD_NET 91 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 92 #define CONFIG_PHY_BASE_ADR 11 93 #undef CONFIG_RESET_PHY_R 94 #endif /* CONFIG_CMD_NET */ 95 96 /* 97 * File system 98 */ 99 #define CONFIG_CMD_EXT2 100 #define CONFIG_CMD_FAT 101 #define CONFIG_CMD_JFFS2 102 #define CONFIG_CMD_UBI 103 #define CONFIG_CMD_UBIFS 104 #define CONFIG_RBTREE 105 #define CONFIG_MTD_DEVICE 106 #define CONFIG_MTD_PARTITIONS 107 #define CONFIG_CMD_MTDPARTS 108 109 #endif /* _CONFIG_ICONNECT_H */ 110