Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 2 | /* |
Gerald Kerma | 4658f45 | 2014-12-19 08:13:09 +0100 | [diff] [blame] | 3 | * (C) Copyright 2009-2014 |
| 4 | * Gerald Kerma <dreagle@doukki.net> |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 5 | * Marvell Semiconductor <www.marvell.com> |
| 6 | * Written-by: Siddarth Gore <gores@marvell.com> |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _CONFIG_GURUPLUG_H |
| 10 | #define _CONFIG_GURUPLUG_H |
| 11 | |
| 12 | /* |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 13 | * High Level Configuration Options (easy to change) |
| 14 | */ |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 15 | #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */ |
Quentin Armitage | c8d39da | 2015-10-28 00:47:15 +0000 | [diff] [blame] | 16 | |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 17 | /* |
Quentin Armitage | bb7f728 | 2015-10-28 00:47:18 +0000 | [diff] [blame] | 18 | * Standard filesystems |
| 19 | */ |
Chris Packham | 273a134 | 2018-05-26 22:32:29 +1200 | [diff] [blame] | 20 | #define CONFIG_BZIP2 |
Quentin Armitage | bb7f728 | 2015-10-28 00:47:18 +0000 | [diff] [blame] | 21 | |
| 22 | /* |
Quentin Armitage | a99ac8a | 2015-10-28 00:47:21 +0000 | [diff] [blame] | 23 | * mv-plug-common.h should be defined after CMD configs since it used them |
Prafulla Wadaskar | 3268629 | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 24 | * to enable certain macros |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 25 | */ |
Quentin Armitage | a99ac8a | 2015-10-28 00:47:21 +0000 | [diff] [blame] | 26 | #include "mv-plug-common.h" |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Environment variables configurations |
| 30 | */ |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 31 | /* |
| 32 | * max 4k env size is enough, but in case of nand |
| 33 | * it has to be rounded to sector size |
| 34 | */ |
Chris Packham | 47a4782 | 2018-06-04 19:51:50 +1200 | [diff] [blame] | 35 | /* |
| 36 | * Environment is right behind U-Boot in flash. Make sure U-Boot |
| 37 | * doesn't grow into the environment area. |
| 38 | */ |
| 39 | #define CONFIG_BOARD_SIZE_LIMIT CONFIG_ENV_OFFSET |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Default environment variables |
| 43 | */ |
Gerald Kerma | 4658f45 | 2014-12-19 08:13:09 +0100 | [diff] [blame] | 44 | #define CONFIG_BOOTCOMMAND \ |
| 45 | "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ |
| 46 | "ubi part root; " \ |
| 47 | "ubifsmount ubi:rootfs; " \ |
| 48 | "ubifsload 0x800000 ${kernel}; " \ |
| 49 | "ubifsload 0x700000 ${fdt}; " \ |
| 50 | "ubifsumount; " \ |
| 51 | "fdt addr 0x700000; fdt resize; fdt chosen; " \ |
| 52 | "bootz 0x800000 - 0x700000" |
| 53 | |
Gerald Kerma | 4658f45 | 2014-12-19 08:13:09 +0100 | [diff] [blame] | 54 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 55 | "console=console=ttyS0,115200\0" \ |
| 56 | "mtdids=nand0=orion_nand\0" \ |
Tom Rini | 5ad8e11 | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 57 | "mtdparts="CONFIG_MTDPARTS_DEFAULT \ |
Gerald Kerma | 4658f45 | 2014-12-19 08:13:09 +0100 | [diff] [blame] | 58 | "kernel=/boot/zImage\0" \ |
| 59 | "fdt=/boot/guruplug-server-plus.dtb\0" \ |
| 60 | "bootargs_root=ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw\0" |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 61 | |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 62 | /* |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 63 | * Ethernet Driver configuration |
| 64 | */ |
| 65 | #ifdef CONFIG_CMD_NET |
Albert Aribaud | e91d7d3 | 2010-07-12 22:24:28 +0200 | [diff] [blame] | 66 | #define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */ |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 67 | #define CONFIG_PHY_BASE_ADR 0 |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 68 | #endif /* CONFIG_CMD_NET */ |
| 69 | |
| 70 | /* |
Prafulla Wadaskar | 3268629 | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 71 | * SATA Driver configuration |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 72 | */ |
Prafulla Wadaskar | 3268629 | 2010-09-30 22:53:43 +0530 | [diff] [blame] | 73 | #ifdef CONFIG_MVSATA_IDE |
| 74 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET |
| 75 | #endif /*CONFIG_MVSATA_IDE*/ |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 76 | |
Siddarth Gore | 11b10b0 | 2010-03-18 20:25:40 +0530 | [diff] [blame] | 77 | #endif /* _CONFIG_GURUPLUG_H */ |