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