1 /* 2 * (C) Copyright 2009 3 * Net Insight <www.netinsight.net> 4 * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 5 * 6 * Based on sheevaplug.h: 7 * (C) Copyright 2009 8 * Marvell Semiconductor <www.marvell.com> 9 * Written-by: Prafulla Wadaskar <prafulla@marvell.com> 10 * 11 * SPDX-License-Identifier: GPL-2.0+ 12 */ 13 14 #ifndef _CONFIG_OPENRD_H 15 #define _CONFIG_OPENRD_H 16 17 /* 18 * Version number information 19 */ 20 #ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE 21 # define CONFIG_IDENT_STRING "\nOpenRD-Ultimate" 22 #else 23 # ifdef CONFIG_BOARD_IS_OPENRD_CLIENT 24 # define CONFIG_IDENT_STRING "\nOpenRD-Client" 25 # else 26 # ifdef CONFIG_BOARD_IS_OPENRD_BASE 27 # define CONFIG_IDENT_STRING "\nOpenRD-Base" 28 # else 29 # error Unknown OpenRD board specified 30 # endif 31 # endif 32 #endif 33 34 /* 35 * High Level Configuration Options (easy to change) 36 */ 37 #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */ 38 #define CONFIG_KW88F6281 1 /* SOC Name */ 39 #define CONFIG_MACH_OPENRD_BASE /* Machine type */ 40 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 41 42 /* 43 * Commands configuration 44 */ 45 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 46 #define CONFIG_SYS_MVFS 47 #define CONFIG_CMD_DHCP 48 #define CONFIG_CMD_ENV 49 #define CONFIG_CMD_MII 50 #define CONFIG_CMD_MMC 51 #define CONFIG_CMD_NAND 52 #define CONFIG_CMD_PING 53 #define CONFIG_CMD_USB 54 #define CONFIG_CMD_IDE 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 /* 63 * Environment variables configurations 64 */ 65 #ifdef CONFIG_CMD_NAND 66 #define CONFIG_ENV_IS_IN_NAND 1 67 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ 68 #else 69 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 70 #endif 71 /* 72 * max 4k env size is enough, but in case of nand 73 * it has to be rounded to sector size 74 */ 75 #define CONFIG_ENV_SIZE 0x20000 /* 128k */ 76 #define CONFIG_ENV_ADDR 0x60000 77 #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */ 78 /* 79 * Environment is right behind U-Boot in flash. Make sure U-Boot 80 * doesn't grow into the environment area. 81 */ 82 #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET 83 84 /* 85 * Default environment variables 86 */ 87 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ 88 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ 89 "${x_bootcmd_usb}; bootm 0x6400000;" 90 91 #define MTDIDS_DEFAULT "nand0=nand_mtd" 92 #define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\ 93 "0x400000@0x100000(uImage),"\ 94 "0x1fb00000@0x500000(rootfs)" 95 96 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \ 97 "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \ 98 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \ 99 "x_bootcmd_usb=usb start\0" \ 100 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \ 101 "mtdids="MTDIDS_DEFAULT"\0" \ 102 "mtdparts="MTDPARTS_DEFAULT"\0" 103 104 /* 105 * Ethernet Driver configuration 106 */ 107 #ifdef CONFIG_CMD_NET 108 # ifdef CONFIG_BOARD_IS_OPENRD_BASE 109 # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 110 # else 111 # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ 112 # endif 113 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE 114 # define CONFIG_PHY_BASE_ADR 0x0 115 # define PHY_NO "88E1121" 116 # else 117 # define CONFIG_PHY_BASE_ADR 0x8 118 # define PHY_NO "88E1116" 119 # endif 120 #endif /* CONFIG_CMD_NET */ 121 122 /* 123 * SATA Driver configuration 124 */ 125 #ifdef CONFIG_MVSATA_IDE 126 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 127 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 128 #endif /*CONFIG_MVSATA_IDE*/ 129 130 #ifdef CONFIG_CMD_MMC 131 #define CONFIG_MMC 132 #define CONFIG_GENERIC_MMC 133 #define CONFIG_MVEBU_MMC 134 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE 135 #endif /* CONFIG_CMD_MMC */ 136 137 #endif /* _CONFIG_OPENRD_BASE_H */ 138