Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2009 |
| 4 | * Net Insight <www.netinsight.net> |
| 5 | * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net> |
| 6 | * |
| 7 | * Based on sheevaplug.h: |
| 8 | * (C) Copyright 2009 |
| 9 | * Marvell Semiconductor <www.marvell.com> |
| 10 | * Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef _CONFIG_OPENRD_H |
| 14 | #define _CONFIG_OPENRD_H |
| 15 | |
| 16 | /* |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 17 | * High Level Configuration Options (easy to change) |
| 18 | */ |
| 19 | #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */ |
| 20 | #define CONFIG_KW88F6281 1 /* SOC Name */ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 21 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | * Commands configuration |
| 25 | */ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * mv-common.h should be defined after CMD configs since it used them |
| 29 | * to enable certain macros |
| 30 | */ |
| 31 | #include "mv-common.h" |
| 32 | |
| 33 | /* |
| 34 | * Environment variables configurations |
| 35 | */ |
| 36 | #ifdef CONFIG_CMD_NAND |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 37 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 38 | #endif |
| 39 | /* |
| 40 | * max 4k env size is enough, but in case of nand |
| 41 | * it has to be rounded to sector size |
| 42 | */ |
| 43 | #define CONFIG_ENV_SIZE 0x20000 /* 128k */ |
Stefan Roese | 5039aae | 2019-04-11 12:33:36 +0200 | [diff] [blame] | 44 | #define CONFIG_ENV_OFFSET 0x80000 /* env starts here */ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 45 | /* |
| 46 | * Environment is right behind U-Boot in flash. Make sure U-Boot |
| 47 | * doesn't grow into the environment area. |
| 48 | */ |
| 49 | #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET |
| 50 | |
| 51 | /* |
| 52 | * Default environment variables |
| 53 | */ |
| 54 | #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \ |
| 55 | "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \ |
| 56 | "${x_bootcmd_usb}; bootm 0x6400000;" |
| 57 | |
Tom Rini | 43ede0b | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 58 | #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console=ttyS0,115200 " \ |
| 59 | CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \ |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 60 | "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \ |
| 61 | "x_bootcmd_usb=usb start\0" \ |
Tom Rini | 11e4092 | 2018-07-27 07:56:59 -0400 | [diff] [blame] | 62 | "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * Ethernet Driver configuration |
| 66 | */ |
| 67 | #ifdef CONFIG_CMD_NET |
| 68 | # ifdef CONFIG_BOARD_IS_OPENRD_BASE |
| 69 | # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ |
| 70 | # else |
| 71 | # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ |
| 72 | # endif |
| 73 | # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE |
| 74 | # define CONFIG_PHY_BASE_ADR 0x0 |
| 75 | # define PHY_NO "88E1121" |
| 76 | # else |
| 77 | # define CONFIG_PHY_BASE_ADR 0x8 |
| 78 | # define PHY_NO "88E1116" |
| 79 | # endif |
| 80 | #endif /* CONFIG_CMD_NET */ |
| 81 | |
| 82 | /* |
| 83 | * SATA Driver configuration |
| 84 | */ |
| 85 | #ifdef CONFIG_MVSATA_IDE |
| 86 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET |
| 87 | #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET |
| 88 | #endif /*CONFIG_MVSATA_IDE*/ |
| 89 | |
| 90 | #ifdef CONFIG_CMD_MMC |
Albert ARIBAUD | 3562936 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 91 | #define CONFIG_MVEBU_MMC |
| 92 | #define CONFIG_SYS_MMC_BASE KW_SDIO_BASE |
| 93 | #endif /* CONFIG_CMD_MMC */ |
| 94 | |
| 95 | #endif /* _CONFIG_OPENRD_BASE_H */ |