1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2009-2012 4 * Wojciech Dubowik <wojciech.dubowik@neratec.com> 5 * Luka Perkov <luka@openwrt.org> 6 */ 7 8 #ifndef _CONFIG_ICONNECT_H 9 #define _CONFIG_ICONNECT_H 10 11 /* 12 * High level configuration options 13 */ 14 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 15 #define CONFIG_KW88F6281 /* SOC Name */ 16 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 17 18 /* 19 * Machine type 20 */ 21 #define CONFIG_MACH_TYPE MACH_TYPE_ICONNECT 22 23 /* 24 * Compression configuration 25 */ 26 #define CONFIG_BZIP2 27 28 /* 29 * Commands configuration 30 */ 31 #define CONFIG_SYS_MVFS 32 33 /* 34 * mv-common.h should be defined after CMD configs since it used them 35 * to enable certain macros 36 */ 37 #include "mv-common.h" 38 39 /* 40 * Environment variables configuration 41 */ 42 #ifdef CONFIG_CMD_NAND 43 #define CONFIG_ENV_SECT_SIZE 0x20000 44 #endif 45 #define CONFIG_ENV_SIZE 0x20000 46 #define CONFIG_ENV_OFFSET 0x80000 47 48 /* 49 * Default environment variables 50 */ 51 #define CONFIG_BOOTCOMMAND \ 52 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 53 "ubi part rootfs; " \ 54 "ubifsmount ubi:rootfs; " \ 55 "ubifsload 0x800000 ${kernel}; " \ 56 "bootm 0x800000" 57 58 #define CONFIG_EXTRA_ENV_SETTINGS \ 59 "console=console=ttyS0,115200\0" \ 60 "mtdids=nand0=orion_nand\0" \ 61 "mtdparts="CONFIG_MTDPARTS_DEFAULT \ 62 "kernel=/boot/uImage\0" \ 63 "bootargs_root=noinitrd ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs\0" 64 65 /* 66 * Ethernet driver configuration 67 */ 68 #ifdef CONFIG_CMD_NET 69 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 70 #define CONFIG_PHY_BASE_ADR 11 71 #undef CONFIG_RESET_PHY_R 72 #endif /* CONFIG_CMD_NET */ 73 74 /* 75 * File system 76 */ 77 #define CONFIG_MTD_DEVICE 78 #define CONFIG_MTD_PARTITIONS 79 80 #endif /* _CONFIG_ICONNECT_H */ 81