1 /* 2 * Copyright (C) 2011 3 * Stefan Herbrechtsmeier <stefan@code.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 MACH_TYPE_DNS325 3800 20 #define CONFIG_MACH_TYPE MACH_TYPE_DNS325 21 #define CONFIG_IDENT_STRING "\nD-Link DNS-325" 22 23 /* 24 * High Level Configuration Options (easy to change) 25 */ 26 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 27 #define CONFIG_KW88F6281 /* SOC Name */ 28 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 29 30 /* 31 * Commands configuration 32 */ 33 #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */ 34 #include <config_cmd_default.h> 35 #define CONFIG_CMD_DHCP 36 #define CONFIG_CMD_ENV 37 #define CONFIG_CMD_NAND 38 #define CONFIG_CMD_PING 39 #define CONFIG_CMD_USB 40 #define CONFIG_CMD_IDE 41 #define CONFIG_CMD_DATE 42 #define CONFIG_SYS_MVFS 43 44 #define CONFIG_NR_DRAM_BANKS 1 45 46 /* 47 * mv-common.h should be defined after CMD configs since it used them 48 * to enable certain macros 49 */ 50 #include "mv-common.h" 51 52 /* Remove or override few declarations from mv-common.h */ 53 #undef CONFIG_SYS_PROMPT 54 55 /* 56 * Ethernet Driver configuration 57 */ 58 #ifdef CONFIG_CMD_NET 59 #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 60 #define CONFIG_NETCONSOLE 61 #endif 62 63 /* 64 * SATA Driver configuration 65 */ 66 #ifdef CONFIG_MVSATA_IDE 67 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 68 #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET 69 #endif 70 71 /* 72 * RTC driver configuration 73 */ 74 #ifdef CONFIG_CMD_DATE 75 #define CONFIG_RTC_MV 76 #endif 77 78 /* 79 * Enable GPI0 support 80 */ 81 #define CONFIG_KIRKWOOD_GPIO 82 83 /* 84 * Use the HUSH parser 85 */ 86 #define CONFIG_SYS_HUSH_PARSER 87 88 /* 89 * Console configuration 90 */ 91 #define CONFIG_CONSOLE_MUX 92 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 93 94 /* 95 * Enable device tree support 96 */ 97 #define CONFIG_OF_LIBFDT 98 99 /* 100 * Display cpu info at boot 101 */ 102 #define CONFIG_DISPLAY_CPUINFO 103 104 /* 105 * Environment variables configurations 106 */ 107 #ifdef CONFIG_CMD_NAND 108 #define CONFIG_ENV_IS_IN_NAND 109 #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128KB */ 110 #else 111 #define CONFIG_ENV_IS_NOWHERE 112 #endif 113 114 #define CONFIG_ENV_SIZE 0x20000 /* 128KB */ 115 #define CONFIG_ENV_ADDR 0xe0000 116 #define CONFIG_ENV_OFFSET 0xe0000 /* env starts here */ 117 118 /* 119 * Default environment variables 120 */ 121 #define MTDIDS_DEFAULT "nand0=orion_nand" 122 123 #define MTDPARTS_DEFAULT "mtdparts=orion_nand:" \ 124 "896k(u-boot),128k(u-boot-env),5m(kernel),-(rootfs)\0" 125 126 #define CONFIG_EXTRA_ENV_SETTINGS \ 127 "stdin=serial\0" \ 128 "stdout=serial\0" \ 129 "stderr=serial\0" \ 130 "loadaddr=0x800000\0" \ 131 "autoload=no\0" \ 132 "console=ttyS0,115200\0" \ 133 "mtdparts="MTDPARTS_DEFAULT \ 134 "optargs=\0" \ 135 "bootenv=uEnv.txt\0" \ 136 "importbootenv=echo Importing environment ...; " \ 137 "env import -t ${loadaddr} ${filesize}\0" \ 138 "loadbootenv=fatload usb 0 ${loadaddr} ${bootenv}\0" \ 139 "setbootargs=setenv bootargs console=${console} " \ 140 "${optargs} " \ 141 "${mtdparts} " \ 142 "root=${bootenvroot} " \ 143 "rootfstype=${bootenvrootfstype}\0" \ 144 "subbootcmd=run setbootargs; " \ 145 "if run bootenvloadimage; then " \ 146 "bootm ${loadaddr};" \ 147 "fi;\0" \ 148 "nandroot=ubi0:rootfs ubi.mtd=rootfs\0" \ 149 "nandrootfstype=ubifs\0" \ 150 "nandloadimage=nand read ${loadaddr} kernel\0" \ 151 "setnandbootenv=echo Booting from nand ...; " \ 152 "setenv bootenvroot ${nandroot}; " \ 153 "setenv bootenvrootfstype ${nandrootfstype}; " \ 154 "setenv bootenvloadimage ${nandloadimage}\0" 155 156 #define CONFIG_BOOTCOMMAND \ 157 "if test -n ${bootenv} && usb start; then " \ 158 "if run loadbootenv; then " \ 159 "echo Loaded environment ${bootenv} from usb;" \ 160 "run importbootenv;" \ 161 "fi;" \ 162 "if test -n ${bootenvcmd}; then " \ 163 "echo Running bootenvcmd ...;" \ 164 "run bootenvcmd;" \ 165 "fi;" \ 166 "fi;" \ 167 "run setnandbootenv subbootcmd;" 168 169 #endif /* _CONFIG_DNS325_H */ 170