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