Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 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 | * See file CREDITS for list of people who contributed to this |
| 12 | * project. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License as |
| 16 | * published by the Free Software Foundation; either version 2 of |
| 17 | * the License, or (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 27 | * MA 02110-1301 USA |
| 28 | */ |
| 29 | |
Clint Adams | f846604 | 2011-05-06 22:06:47 +0530 | [diff] [blame] | 30 | #ifndef _CONFIG_OPENRD_H |
| 31 | #define _CONFIG_OPENRD_H |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * Version number information |
| 35 | */ |
Clint Adams | 21861f2 | 2011-05-06 22:06:47 +0530 | [diff] [blame] | 36 | #ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE |
| 37 | # define CONFIG_IDENT_STRING "\nOpenRD-Ultimate" |
| 38 | #else |
| 39 | # ifdef CONFIG_BOARD_IS_OPENRD_CLIENT |
| 40 | # define CONFIG_IDENT_STRING "\nOpenRD-Client" |
| 41 | # else |
| 42 | # ifdef CONFIG_BOARD_IS_OPENRD_BASE |
| 43 | # define CONFIG_IDENT_STRING "\nOpenRD-Base" |
| 44 | # else |
| 45 | # error Unknown OpenRD board specified |
| 46 | # endif |
| 47 | # endif |
| 48 | #endif |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 49 | |
| 50 | /* |
| 51 | * High Level Configuration Options (easy to change) |
| 52 | */ |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 53 | #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */ |
| 54 | #define CONFIG_KIRKWOOD 1 /* SOC Family Name */ |
| 55 | #define CONFIG_KW88F6281 1 /* SOC Name */ |
| 56 | #define CONFIG_MACH_OPENRD_BASE /* Machine type */ |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 57 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 58 | |
| 59 | /* |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 60 | * Commands configuration |
| 61 | */ |
| 62 | #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ |
Clint Adams | 2e73808 | 2011-05-06 22:06:47 +0530 | [diff] [blame] | 63 | #define CONFIG_SYS_MVFS |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 64 | #include <config_cmd_default.h> |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 65 | #define CONFIG_CMD_DHCP |
| 66 | #define CONFIG_CMD_ENV |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 67 | #define CONFIG_CMD_MII |
Frans Meulenbroeks | 1c9d91a | 2010-04-06 19:06:11 +0530 | [diff] [blame] | 68 | #define CONFIG_CMD_NAND |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 69 | #define CONFIG_CMD_PING |
| 70 | #define CONFIG_CMD_USB |
Prafulla Wadaskar | 86cf2ae | 2010-08-07 17:44:25 +0530 | [diff] [blame] | 71 | #define CONFIG_CMD_IDE |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 72 | |
| 73 | /* |
Prafulla Wadaskar | 54e999a | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 74 | * mv-common.h should be defined after CMD configs since it used them |
| 75 | * to enable certain macros |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 76 | */ |
Prafulla Wadaskar | 54e999a | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 77 | #include "mv-common.h" |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 78 | |
| 79 | /* |
| 80 | * Environment variables configurations |
| 81 | */ |
| 82 | #ifdef CONFIG_CMD_NAND |
| 83 | #define CONFIG_ENV_IS_IN_NAND 1 |
| 84 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ |
| 85 | #else |
| 86 | #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */ |
| 87 | #endif |
| 88 | /* |
| 89 | * max 4k env size is enough, but in case of nand |
| 90 | * it has to be rounded to sector size |
| 91 | */ |
| 92 | #define CONFIG_ENV_SIZE 0x20000 /* 128k */ |
| 93 | #define CONFIG_ENV_ADDR 0x60000 |
| 94 | #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */ |
| 95 | |
| 96 | /* |
| 97 | * Default environment variables |
| 98 | */ |
| 99 | #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ |
| 100 | "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ |
| 101 | "${x_bootcmd_usb}; bootm 0x6400000;" |
| 102 | |
| 103 | #define MTDIDS_DEFAULT "nand0=nand_mtd" |
| 104 | #define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\ |
| 105 | "0x400000@0x100000(uImage),"\ |
| 106 | "0x1fb00000@0x500000(rootfs)" |
| 107 | |
| 108 | #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \ |
| 109 | "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \ |
| 110 | "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \ |
| 111 | "x_bootcmd_usb=usb start\0" \ |
| 112 | "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \ |
| 113 | "mtdids="MTDIDS_DEFAULT"\0" \ |
| 114 | "mtdparts="MTDPARTS_DEFAULT"\0" |
| 115 | |
| 116 | /* |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 117 | * Ethernet Driver configuration |
| 118 | */ |
| 119 | #ifdef CONFIG_CMD_NET |
Clint Adams | 1615db3 | 2011-05-06 22:06:47 +0530 | [diff] [blame] | 120 | # ifdef CONFIG_BOARD_IS_OPENRD_BASE |
| 121 | # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ |
| 122 | # else |
| 123 | # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ |
| 124 | # endif |
| 125 | # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE |
| 126 | # define CONFIG_PHY_BASE_ADR 0x0 |
| 127 | # define PHY_NO "88E1121" |
| 128 | # else |
| 129 | # define CONFIG_PHY_BASE_ADR 0x8 |
| 130 | # define PHY_NO "88E1116" |
| 131 | # endif |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 132 | #endif /* CONFIG_CMD_NET */ |
| 133 | |
| 134 | /* |
Prafulla Wadaskar | 54e999a | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 135 | * SATA Driver configuration |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 136 | */ |
Prafulla Wadaskar | 54e999a | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 137 | #ifdef CONFIG_MVSATA_IDE |
| 138 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET |
| 139 | #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET |
| 140 | #endif /*CONFIG_MVSATA_IDE*/ |
Simon Kagstrom | e92daeb | 2009-09-22 04:01:01 +0530 | [diff] [blame] | 141 | |
| 142 | #endif /* _CONFIG_OPENRD_BASE_H */ |