1 /* 2 * Copyright (C) 2011 3 * Stefan Herbrechtsmeier <stefan@herbrechtsmeier.net> 4 * 5 * Based on Kirkwood support: 6 * (C) Copyright 2009 7 * Marvell Semiconductor <www.marvell.com> 8 * Written-by: Prafulla Wadaskar <prafulla@marvell.com> 9 * 10 * SPDX-License-Identifier: GPL-2.0+ 11 */ 12 13 #ifndef _CONFIG_DNS325_H 14 #define _CONFIG_DNS325_H 15 16 /* 17 * Machine number definition 18 */ 19 #define CONFIG_MACH_TYPE MACH_TYPE_DNS325 20 21 /* 22 * High Level Configuration Options (easy to change) 23 */ 24 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 25 #define CONFIG_KW88F6281 /* SOC Name */ 26 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 27 28 /* 29 * Commands configuration 30 */ 31 #define CONFIG_SYS_MVFS 32 33 #define CONFIG_NR_DRAM_BANKS 1 34 35 /* 36 * mv-common.h should be defined after CMD configs since it used them 37 * to enable certain macros 38 */ 39 #include "mv-common.h" 40 41 /* Remove or override few declarations from mv-common.h */ 42 43 /* 44 * Ethernet Driver configuration 45 */ 46 #ifdef CONFIG_CMD_NET 47 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 48 #define CONFIG_NETCONSOLE 49 #endif 50 51 /* 52 * SATA Driver configuration 53 */ 54 #ifdef CONFIG_MVSATA_IDE 55 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 56 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 57 #endif 58 59 /* 60 * RTC driver configuration 61 */ 62 #ifdef CONFIG_CMD_DATE 63 #define CONFIG_RTC_MV 64 #endif 65 66 /* 67 * Enable GPI0 support 68 */ 69 #define CONFIG_KIRKWOOD_GPIO 70 71 /* 72 * Environment variables configurations 73 */ 74 #ifdef CONFIG_CMD_NAND 75 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128KB */ 76 #endif 77 78 #define CONFIG_ENV_SIZE 0x20000 /* 128KB */ 79 #define CONFIG_ENV_ADDR 0xe0000 80 #define CONFIG_ENV_OFFSET 0xe0000 /* env starts here */ 81 82 /* 83 * Default environment variables 84 */ 85 #define MTDIDS_DEFAULT "nand0=orion_nand" 86 87 #define MTDPARTS_DEFAULT "mtdparts=orion_nand:" \ 88 "896k(u-boot),128k(u-boot-env),5m(kernel),-(rootfs)\0" 89 90 #define CONFIG_EXTRA_ENV_SETTINGS \ 91 "stdin=serial\0" \ 92 "stdout=serial\0" \ 93 "stderr=serial\0" \ 94 "loadaddr=0x800000\0" \ 95 "autoload=no\0" \ 96 "console=ttyS0,115200\0" \ 97 "mtdparts="MTDPARTS_DEFAULT \ 98 "optargs=\0" \ 99 "bootenv=uEnv.txt\0" \ 100 "importbootenv=echo Importing environment ...; " \ 101 "env import -t ${loadaddr} ${filesize}\0" \ 102 "loadbootenv=fatload usb 0 ${loadaddr} ${bootenv}\0" \ 103 "setbootargs=setenv bootargs console=${console} " \ 104 "${optargs} " \ 105 "${mtdparts} " \ 106 "root=${bootenvroot} " \ 107 "rootfstype=${bootenvrootfstype}\0" \ 108 "subbootcmd=run setbootargs; " \ 109 "if run bootenvloadimage; then " \ 110 "bootm ${loadaddr};" \ 111 "fi;\0" \ 112 "nandroot=ubi0:rootfs ubi.mtd=rootfs\0" \ 113 "nandrootfstype=ubifs\0" \ 114 "nandloadimage=nand read ${loadaddr} kernel\0" \ 115 "setnandbootenv=echo Booting from nand ...; " \ 116 "setenv bootenvroot ${nandroot}; " \ 117 "setenv bootenvrootfstype ${nandrootfstype}; " \ 118 "setenv bootenvloadimage ${nandloadimage}\0" 119 120 #define CONFIG_BOOTCOMMAND \ 121 "if test -n ${bootenv} && usb start; then " \ 122 "if run loadbootenv; then " \ 123 "echo Loaded environment ${bootenv} from usb;" \ 124 "run importbootenv;" \ 125 "fi;" \ 126 "if test -n ${bootenvcmd}; then " \ 127 "echo Running bootenvcmd ...;" \ 128 "run bootenvcmd;" \ 129 "fi;" \ 130 "fi;" \ 131 "run setnandbootenv subbootcmd;" 132 133 #endif /* _CONFIG_DNS325_H */ 134