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_KIRKWOOD 1 /* SOC Family Name */ 39 #define CONFIG_KW88F6281 1 /* SOC Name */ 40 #define CONFIG_MACH_OPENRD_BASE /* Machine type */ 41 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 42 43 /* 44 * Commands configuration 45 */ 46 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 47 #define CONFIG_SYS_MVFS 48 #include <config_cmd_default.h> 49 #define CONFIG_CMD_DHCP 50 #define CONFIG_CMD_ENV 51 #define CONFIG_CMD_MII 52 #define CONFIG_CMD_MMC 53 #define CONFIG_CMD_NAND 54 #define CONFIG_CMD_PING 55 #define CONFIG_CMD_USB 56 #define CONFIG_CMD_IDE 57 58 /* 59 * mv-common.h should be defined after CMD configs since it used them 60 * to enable certain macros 61 */ 62 #include "mv-common.h" 63 64 /* 65 * Environment variables configurations 66 */ 67 #ifdef CONFIG_CMD_NAND 68 #define CONFIG_ENV_IS_IN_NAND 1 69 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ 70 #else 71 #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ 72 #endif 73 /* 74 * max 4k env size is enough, but in case of nand 75 * it has to be rounded to sector size 76 */ 77 #define CONFIG_ENV_SIZE 0x20000 /* 128k */ 78 #define CONFIG_ENV_ADDR 0x60000 79 #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */ 80 81 /* 82 * Default environment variables 83 */ 84 #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ 85 "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ 86 "${x_bootcmd_usb}; bootm 0x6400000;" 87 88 #define MTDIDS_DEFAULT "nand0=nand_mtd" 89 #define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\ 90 "0x400000@0x100000(uImage),"\ 91 "0x1fb00000@0x500000(rootfs)" 92 93 #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \ 94 "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \ 95 "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \ 96 "x_bootcmd_usb=usb start\0" \ 97 "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \ 98 "mtdids="MTDIDS_DEFAULT"\0" \ 99 "mtdparts="MTDPARTS_DEFAULT"\0" 100 101 /* 102 * Ethernet Driver configuration 103 */ 104 #ifdef CONFIG_CMD_NET 105 # ifdef CONFIG_BOARD_IS_OPENRD_BASE 106 # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 107 # else 108 # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ 109 # endif 110 # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE 111 # define CONFIG_PHY_BASE_ADR 0x0 112 # define PHY_NO "88E1121" 113 # else 114 # define CONFIG_PHY_BASE_ADR 0x8 115 # define PHY_NO "88E1116" 116 # endif 117 #endif /* CONFIG_CMD_NET */ 118 119 /* 120 * SATA Driver configuration 121 */ 122 #ifdef CONFIG_MVSATA_IDE 123 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 124 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 125 #endif /*CONFIG_MVSATA_IDE*/ 126 127 #ifdef CONFIG_CMD_MMC 128 #define CONFIG_MMC 129 #define CONFIG_GENERIC_MMC 130 #define CONFIG_MVEBU_MMC 131 #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE 132 #endif /* CONFIG_CMD_MMC */ 133 134 #endif /* _CONFIG_OPENRD_BASE_H */ 135