Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu> |
| 4 | * |
| 5 | * Based on sheevaplug.h originally written by |
| 6 | * Prafulla Wadaskar <prafulla@marvell.com> |
| 7 | * (C) Copyright 2009 |
| 8 | * Marvell Semiconductor <www.marvell.com> |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef _CONFIG_DOCKSTAR_H |
| 12 | #define _CONFIG_DOCKSTAR_H |
| 13 | |
| 14 | /* |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 15 | * High Level Configuration Options (easy to change) |
| 16 | */ |
| 17 | #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 18 | #define CONFIG_KW88F6281 1 /* SOC Name */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 19 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 20 | |
| 21 | /* |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 22 | * mv-common.h should be defined after CMD configs since it used them |
| 23 | * to enable certain macros |
| 24 | */ |
| 25 | #include "mv-common.h" |
| 26 | |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 27 | /* |
| 28 | * Environment variables configurations |
| 29 | */ |
| 30 | #ifdef CONFIG_CMD_NAND |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 31 | #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 32 | #endif |
| 33 | /* |
| 34 | * max 4k env size is enough, but in case of nand |
| 35 | * it has to be rounded to sector size |
| 36 | */ |
| 37 | #define CONFIG_ENV_SIZE 0x20000 /* 128k */ |
Eric Cooper | d1a2f32 | 2015-10-12 19:18:52 -0400 | [diff] [blame] | 38 | #define CONFIG_ENV_ADDR 0x80000 |
| 39 | #define CONFIG_ENV_OFFSET 0x80000 /* env starts here */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * Default environment variables |
| 43 | */ |
| 44 | #define CONFIG_BOOTCOMMAND \ |
| 45 | "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ |
| 46 | "ubi part root; " \ |
Joe Hershberger | 949a771 | 2012-11-01 16:54:18 +0000 | [diff] [blame] | 47 | "ubifsmount ubi:root; " \ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 48 | "ubifsload 0x800000 ${kernel}; " \ |
| 49 | "ubifsload 0x1100000 ${initrd}; " \ |
| 50 | "bootm 0x800000 0x1100000" |
| 51 | |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 52 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 53 | "console=console=ttyS0,115200\0" \ |
| 54 | "mtdids=nand0=orion_nand\0" \ |
Tom Rini | 43ede0b | 2017-10-22 17:55:07 -0400 | [diff] [blame] | 55 | "mtdparts="CONFIG_MTDPARTS_DEFAULT \ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 56 | "kernel=/boot/uImage\0" \ |
| 57 | "initrd=/boot/uInitrd\0" \ |
| 58 | "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0" |
| 59 | |
| 60 | /* |
| 61 | * Ethernet Driver configuration |
| 62 | */ |
| 63 | #ifdef CONFIG_CMD_NET |
| 64 | #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ |
| 65 | #define CONFIG_PHY_BASE_ADR 0 |
| 66 | #endif /* CONFIG_CMD_NET */ |
| 67 | |
| 68 | /* |
| 69 | * File system |
| 70 | */ |
Eric Cooper | 38041db | 2010-11-24 17:11:32 +0530 | [diff] [blame] | 71 | |
| 72 | #endif /* _CONFIG_DOCKSTAR_H */ |