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 /* 14 * Version number information 15 */ 16 #define CONFIG_IDENT_STRING " RaidSonic ICY BOX IB-NAS62x0" 17 18 /* 19 * High level configuration options 20 */ 21 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 22 #define CONFIG_KW88F6281 /* SOC Name */ 23 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 24 25 /* Add target to build it automatically upon "make" */ 26 #define CONFIG_BUILD_TARGET "u-boot.kwb" 27 28 /* 29 * Enable device tree support 30 */ 31 #define CONFIG_OF_LIBFDT 32 33 /* 34 * Compression configuration 35 */ 36 #define CONFIG_BZIP2 37 #define CONFIG_LZMA 38 #define CONFIG_LZO 39 40 /* 41 * Commands configuration 42 */ 43 #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */ 44 #define CONFIG_SYS_MVFS 45 #define CONFIG_CMD_BOOTZ 46 #define CONFIG_CMD_IDE 47 #define CONFIG_CMD_MII 48 49 /* 50 * mv-common.h should be defined after CMD configs since it used them 51 * to enable certain macros 52 */ 53 #include "mv-common.h" 54 55 /* 56 * Environment variables configuration 57 */ 58 #ifdef CONFIG_CMD_NAND 59 #define CONFIG_ENV_IS_IN_NAND 60 #define CONFIG_ENV_SECT_SIZE 0x20000 61 #else 62 #define CONFIG_ENV_IS_NOWHERE 63 #endif 64 #define CONFIG_ENV_SIZE 0x20000 65 #define CONFIG_ENV_OFFSET 0xe0000 66 67 /* 68 * Default environment variables 69 */ 70 #define CONFIG_BOOTCOMMAND \ 71 "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 72 "ubi part root; " \ 73 "ubifsmount ubi:rootfs; " \ 74 "ubifsload 0x800000 ${kernel}; " \ 75 "ubifsload 0x700000 ${fdt}; " \ 76 "ubifsumount; " \ 77 "fdt addr 0x700000; fdt resize; fdt chosen; " \ 78 "bootz 0x800000 - 0x700000" 79 80 #define CONFIG_MTDPARTS \ 81 "mtdparts=orion_nand:" \ 82 "0xe0000@0x0(uboot)," \ 83 "0x20000@0xe0000(uboot_env)," \ 84 "-@0x100000(root)\0" 85 86 #define CONFIG_EXTRA_ENV_SETTINGS \ 87 "console=console=ttyS0,115200\0" \ 88 "mtdids=nand0=orion_nand\0" \ 89 "mtdparts="CONFIG_MTDPARTS \ 90 "kernel=/boot/zImage\0" \ 91 "fdt=/boot/ib62x0.dtb\0" \ 92 "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\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 0 100 #undef CONFIG_RESET_PHY_R 101 #endif /* CONFIG_CMD_NET */ 102 103 /* 104 * SATA driver configuration 105 */ 106 #ifdef CONFIG_CMD_IDE 107 #define __io 108 #define CONFIG_IDE_PREINIT 109 #define CONFIG_DOS_PARTITION 110 #define CONFIG_MVSATA_IDE_USE_PORT0 111 #define CONFIG_MVSATA_IDE_USE_PORT1 112 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 113 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 114 #endif /* CONFIG_CMD_IDE */ 115 116 /* 117 * RTC driver configuration 118 */ 119 #ifdef CONFIG_CMD_DATE 120 #define CONFIG_RTC_MV 121 #endif /* CONFIG_CMD_DATE */ 122 123 /* 124 * File system 125 */ 126 #define CONFIG_CMD_EXT2 127 #define CONFIG_CMD_FAT 128 #define CONFIG_CMD_JFFS2 129 #define CONFIG_CMD_UBI 130 #define CONFIG_CMD_UBIFS 131 #define CONFIG_RBTREE 132 #define CONFIG_MTD_DEVICE 133 #define CONFIG_MTD_PARTITIONS 134 #define CONFIG_CMD_MTDPARTS 135 136 #endif /* _CONFIG_IB62x0_H */ 137