uboot/include/configs/dockstar.h
<<
>>
Prefs
   1/*
   2 * Copyright (C) 2010  Eric C. Cooper <ecc@cmu.edu>
   3 *
   4 * Based on sheevaplug.h originally written by
   5 * Prafulla Wadaskar <prafulla@marvell.com>
   6 * (C) Copyright 2009
   7 * Marvell Semiconductor <www.marvell.com>
   8 *
   9 * SPDX-License-Identifier:     GPL-2.0+
  10 */
  11
  12#ifndef _CONFIG_DOCKSTAR_H
  13#define _CONFIG_DOCKSTAR_H
  14
  15/*
  16 * Version number information
  17 */
  18#define CONFIG_IDENT_STRING     "\nSeagate FreeAgent DockStar"
  19
  20/*
  21 * High Level Configuration Options (easy to change)
  22 */
  23#define CONFIG_FEROCEON_88FR131 1       /* CPU Core subversion */
  24#define CONFIG_KW88F6281        1       /* SOC Name */
  25#define CONFIG_MACH_DOCKSTAR    /* Machine type */
  26#define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
  27
  28/*
  29 * Commands configuration
  30 */
  31#define CONFIG_SYS_NO_FLASH             /* Declare no flash (NOR/SPI) */
  32#include <config_cmd_default.h>
  33#define CONFIG_CMD_DHCP
  34#define CONFIG_CMD_ENV
  35#define CONFIG_CMD_MII
  36#define CONFIG_CMD_NAND
  37#define CONFIG_CMD_PING
  38#define CONFIG_CMD_USB
  39/*
  40 * mv-common.h should be defined after CMD configs since it used them
  41 * to enable certain macros
  42 */
  43#include "mv-common.h"
  44
  45#undef CONFIG_SYS_PROMPT        /* previously defined in mv-common.h */
  46#define CONFIG_SYS_PROMPT       "DockStar> "    /* Command Prompt */
  47
  48/*
  49 *  Environment variables configurations
  50 */
  51#ifdef CONFIG_CMD_NAND
  52#define CONFIG_ENV_IS_IN_NAND           1
  53#define CONFIG_ENV_SECT_SIZE            0x20000 /* 128K */
  54#else
  55#define CONFIG_ENV_IS_NOWHERE           1       /* if env in SDRAM */
  56#endif
  57/*
  58 * max 4k env size is enough, but in case of nand
  59 * it has to be rounded to sector size
  60 */
  61#define CONFIG_ENV_SIZE                 0x20000 /* 128k */
  62#define CONFIG_ENV_ADDR                 0x60000
  63#define CONFIG_ENV_OFFSET               0x60000 /* env starts here */
  64
  65/*
  66 * Default environment variables
  67 */
  68#define CONFIG_BOOTCOMMAND \
  69        "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "     \
  70        "ubi part root; " \
  71        "ubifsmount ubi:root; " \
  72        "ubifsload 0x800000 ${kernel}; " \
  73        "ubifsload 0x1100000 ${initrd}; " \
  74        "bootm 0x800000 0x1100000"
  75
  76#define CONFIG_MTDPARTS         "mtdparts=orion_nand:1m(uboot),-(root)\0"
  77
  78#define CONFIG_EXTRA_ENV_SETTINGS \
  79        "console=console=ttyS0,115200\0" \
  80        "mtdids=nand0=orion_nand\0" \
  81        "mtdparts="CONFIG_MTDPARTS \
  82        "kernel=/boot/uImage\0" \
  83        "initrd=/boot/uInitrd\0" \
  84        "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
  85
  86/*
  87 * Ethernet Driver configuration
  88 */
  89#ifdef CONFIG_CMD_NET
  90#define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
  91#define CONFIG_PHY_BASE_ADR     0
  92#endif /* CONFIG_CMD_NET */
  93
  94/*
  95 * File system
  96 */
  97#define CONFIG_CMD_EXT2
  98#define CONFIG_CMD_FAT
  99#define CONFIG_CMD_JFFS2
 100#define CONFIG_CMD_UBI
 101#define CONFIG_CMD_UBIFS
 102#define CONFIG_RBTREE
 103#define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
 104#define CONFIG_MTD_PARTITIONS
 105#define CONFIG_CMD_MTDPARTS
 106#define CONFIG_LZO
 107
 108#endif /* _CONFIG_DOCKSTAR_H */
 109