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 * High level configuration options 14 */ 15 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 16 #define CONFIG_KW88F6281 /* SOC Name */ 17 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 18 19 /* 20 * Machine type 21 */ 22 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT 23 24 /* 25 * Compression configuration 26 */ 27 #define CONFIG_BZIP2 28 #define CONFIG_LZMA 29 #define CONFIG_LZO 30 31 /* 32 * Commands configuration 33 */ 34 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */ 35 #define CONFIG_SYS_MVFS 36 #define CONFIG_CMD_ENV 37 #define CONFIG_CMD_NAND 38 39 /* 40 * mv-common.h should be defined after CMD configs since it used them 41 * to enable certain macros 42 */ 43 #include "mv-common.h" 44 45 /* 46 * Environment variables configuration 47 */ 48 #ifdef CONFIG_CMD_NAND 49 #define CONFIG_ENV_IS_IN_NAND 50 #define CONFIG_ENV_SECT_SIZE 0x20000 51 #else 52 #define CONFIG_ENV_IS_NOWHERE 53 #endif 54 #define CONFIG_ENV_SIZE 0x20000 55 #define CONFIG_ENV_OFFSET 0x80000 56 57 /* 58 * Default environment variables 59 */ 60 #define CONFIG_BOOTCOMMAND \ 61 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 62 "ubi part rootfs; " \ 63 "ubifsmount ubi:rootfs; " \ 64 "ubifsload 0x800000 ${kernel}; " \ 65 "bootm 0x800000" 66 67 #define CONFIG_MTDPARTS \ 68 "mtdparts=orion_nand:" \ 69 "0x80000@0x0(uboot)," \ 70 "0x20000@0x80000(uboot_env)," \ 71 "-@0xa0000(rootfs)\0" 72 73 #define CONFIG_EXTRA_ENV_SETTINGS \ 74 "console=console=ttyS0,115200\0" \ 75 "mtdids=nand0=orion_nand\0" \ 76 "mtdparts="CONFIG_MTDPARTS \ 77 "kernel=/boot/uImage\0" \ 78 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0" 79 80 /* 81 * Ethernet driver configuration 82 */ 83 #ifdef CONFIG_CMD_NET 84 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 85 #define CONFIG_PHY_BASE_ADR 11 86 #undef CONFIG_RESET_PHY_R 87 #endif /* CONFIG_CMD_NET */ 88 89 /* 90 * File system 91 */ 92 #define CONFIG_CMD_JFFS2 93 #define CONFIG_CMD_UBIFS 94 #define CONFIG_RBTREE 95 #define CONFIG_MTD_DEVICE 96 #define CONFIG_MTD_PARTITIONS 97 #define CONFIG_CMD_MTDPARTS 98 99 #endif /* _CONFIG_ICONNECT_H */ 100