1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2011-2012 4 * Gerald Kerma <dreagle@doukki.net> 5 * Luka Perkov <luka@openwrt.org> 6 */ 7 8 #ifndef _CONFIG_IB62x0_H 9 #define _CONFIG_IB62x0_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 * Compression configuration 20 */ 21 #define CONFIG_BZIP2 22 23 /* 24 * Commands configuration 25 */ 26 27 /* 28 * mv-common.h should be defined after CMD configs since it used them 29 * to enable certain macros 30 */ 31 #include "mv-common.h" 32 33 /* 34 * Environment variables configuration 35 */ 36 #ifdef CONFIG_CMD_NAND 37 #define CONFIG_ENV_SECT_SIZE 0x20000 38 #endif 39 #define CONFIG_ENV_SIZE 0x20000 40 #define CONFIG_ENV_OFFSET 0xe0000 41 42 /* 43 * Default environment variables 44 */ 45 #define CONFIG_BOOTCOMMAND \ 46 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 47 "ubi part root; " \ 48 "ubifsmount ubi:rootfs; " \ 49 "ubifsload 0x800000 ${kernel}; " \ 50 "ubifsload 0x700000 ${fdt}; " \ 51 "ubifsumount; " \ 52 "fdt addr 0x700000; fdt resize; fdt chosen; " \ 53 "bootz 0x800000 - 0x700000" 54 55 #define CONFIG_EXTRA_ENV_SETTINGS \ 56 "console=console=ttyS0,115200\0" \ 57 "mtdids=nand0=orion_nand\0" \ 58 "mtdparts="CONFIG_MTDPARTS_DEFAULT \ 59 "kernel=/boot/zImage\0" \ 60 "fdt=/boot/ib62x0.dtb\0" \ 61 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" 62 63 /* 64 * Ethernet driver configuration 65 */ 66 #ifdef CONFIG_CMD_NET 67 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 68 #define CONFIG_PHY_BASE_ADR 0 69 #undef CONFIG_RESET_PHY_R 70 #endif /* CONFIG_CMD_NET */ 71 72 /* 73 * SATA driver configuration 74 */ 75 #ifdef CONFIG_IDE 76 #define __io 77 #define CONFIG_IDE_PREINIT 78 #define CONFIG_MVSATA_IDE_USE_PORT0 79 #define CONFIG_MVSATA_IDE_USE_PORT1 80 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 81 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 82 #endif /* CONFIG_IDE */ 83 84 /* 85 * RTC driver configuration 86 */ 87 #ifdef CONFIG_CMD_DATE 88 #define CONFIG_RTC_MV 89 #endif /* CONFIG_CMD_DATE */ 90 91 #endif /* _CONFIG_IB62x0_H */ 92