Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Albert ARIBAUD | f02c254 | 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 | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef _CONFIG_OPENRD_H |
| 14 | #define _CONFIG_OPENRD_H |
| 15 | |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 16 | #include "mv-common.h" |
| 17 | |
| 18 | /* |
| 19 | * Environment variables configurations |
| 20 | */ |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 21 | /* |
| 22 | * max 4k env size is enough, but in case of nand |
| 23 | * it has to be rounded to sector size |
| 24 | */ |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * Default environment variables |
| 28 | */ |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 29 | |
Tom Rini | 5ad8e11 | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 30 | #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console=ttyS0,115200 " \ |
| 31 | CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \ |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 32 | "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \ |
| 33 | "x_bootcmd_usb=usb start\0" \ |
Tom Rini | 56ac833 | 2018-07-27 07:56:59 -0400 | [diff] [blame] | 34 | "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * Ethernet Driver configuration |
| 38 | */ |
| 39 | #ifdef CONFIG_CMD_NET |
| 40 | # ifdef CONFIG_BOARD_IS_OPENRD_BASE |
| 41 | # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ |
| 42 | # else |
| 43 | # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ |
| 44 | # endif |
| 45 | # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE |
| 46 | # define CONFIG_PHY_BASE_ADR 0x0 |
| 47 | # define PHY_NO "88E1121" |
| 48 | # else |
| 49 | # define CONFIG_PHY_BASE_ADR 0x8 |
| 50 | # define PHY_NO "88E1116" |
| 51 | # endif |
| 52 | #endif /* CONFIG_CMD_NET */ |
| 53 | |
| 54 | /* |
| 55 | * SATA Driver configuration |
| 56 | */ |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 57 | |
Albert ARIBAUD | f02c254 | 2015-10-23 18:06:43 +0200 | [diff] [blame] | 58 | #endif /* _CONFIG_OPENRD_BASE_H */ |