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