1 /* 2 * Copyright (C) 2011-2012 3 * Gerald Kerma <dreagle@doukki.net> 4 * Luka Perkov <luka@openwrt.org> 5 * 6 * SPDX-License-Identifier: GPL-2.0+ 7 */ 8 9 #ifndef _CONFIG_IB62x0_H 10 #define _CONFIG_IB62x0_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 /* Add target to build it automatically upon "make" */ 20 #define CONFIG_BUILD_TARGET "u-boot.kwb" 21 22 /* 23 * Compression configuration 24 */ 25 #define CONFIG_BZIP2 26 #define CONFIG_LZMA 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_IS_IN_NAND 44 #define CONFIG_ENV_SECT_SIZE 0x20000 45 #else 46 #define CONFIG_ENV_IS_NOWHERE 47 #endif 48 #define CONFIG_ENV_SIZE 0x20000 49 #define CONFIG_ENV_OFFSET 0xe0000 50 51 /* 52 * Default environment variables 53 */ 54 #define CONFIG_BOOTCOMMAND \ 55 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 56 "ubi part root; " \ 57 "ubifsmount ubi:rootfs; " \ 58 "ubifsload 0x800000 ${kernel}; " \ 59 "ubifsload 0x700000 ${fdt}; " \ 60 "ubifsumount; " \ 61 "fdt addr 0x700000; fdt resize; fdt chosen; " \ 62 "bootz 0x800000 - 0x700000" 63 64 #define CONFIG_MTDPARTS \ 65 "mtdparts=orion_nand:" \ 66 "0xe0000@0x0(uboot)," \ 67 "0x20000@0xe0000(uboot_env)," \ 68 "-@0x100000(root)\0" 69 70 #define CONFIG_EXTRA_ENV_SETTINGS \ 71 "console=console=ttyS0,115200\0" \ 72 "mtdids=nand0=orion_nand\0" \ 73 "mtdparts="CONFIG_MTDPARTS \ 74 "kernel=/boot/zImage\0" \ 75 "fdt=/boot/ib62x0.dtb\0" \ 76 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" 77 78 /* 79 * Ethernet driver configuration 80 */ 81 #ifdef CONFIG_CMD_NET 82 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 83 #define CONFIG_PHY_BASE_ADR 0 84 #undef CONFIG_RESET_PHY_R 85 #endif /* CONFIG_CMD_NET */ 86 87 /* 88 * SATA driver configuration 89 */ 90 #ifdef CONFIG_CMD_IDE 91 #define __io 92 #define CONFIG_IDE_PREINIT 93 #define CONFIG_MVSATA_IDE_USE_PORT0 94 #define CONFIG_MVSATA_IDE_USE_PORT1 95 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 96 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 97 #endif /* CONFIG_CMD_IDE */ 98 99 /* 100 * RTC driver configuration 101 */ 102 #ifdef CONFIG_CMD_DATE 103 #define CONFIG_RTC_MV 104 #endif /* CONFIG_CMD_DATE */ 105 106 #endif /* _CONFIG_IB62x0_H */ 107