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#define CONFIG_SYS_GENERIC_BOARD
  16
  17/*
  18 * Version number information
  19 */
  20#define CONFIG_IDENT_STRING     "\nSeagate FreeAgent DockStar"
  21
  22/*
  23 * High Level Configuration Options (easy to change)
  24 */
  25#define CONFIG_FEROCEON_88FR131 1       /* CPU Core subversion */
  26#define CONFIG_KW88F6281        1       /* SOC Name */
  27#define CONFIG_MACH_DOCKSTAR    /* Machine type */
  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#define CONFIG_CMD_DHCP
  35#define CONFIG_CMD_ENV
  36#define CONFIG_CMD_MII
  37#define CONFIG_CMD_NAND
  38#define CONFIG_CMD_PING
  39#define CONFIG_CMD_USB
  40/*
  41 * mv-common.h should be defined after CMD configs since it used them
  42 * to enable certain macros
  43 */
  44#include "mv-common.h"
  45
  46/*
  47 *  Environment variables configurations
  48 */
  49#ifdef CONFIG_CMD_NAND
  50#define CONFIG_ENV_IS_IN_NAND           1
  51#define CONFIG_ENV_SECT_SIZE            0x20000 /* 128K */
  52#else
  53#define CONFIG_ENV_IS_NOWHERE           1       /* if env in SDRAM */
  54#endif
  55/*
  56 * max 4k env size is enough, but in case of nand
  57 * it has to be rounded to sector size
  58 */
  59#define CONFIG_ENV_SIZE                 0x20000 /* 128k */
  60#define CONFIG_ENV_ADDR                 0x80000
  61#define CONFIG_ENV_OFFSET               0x80000 /* env starts here */
  62
  63/*
  64 * Default environment variables
  65 */
  66#define CONFIG_BOOTCOMMAND \
  67        "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; "     \
  68        "ubi part root; " \
  69        "ubifsmount ubi:root; " \
  70        "ubifsload 0x800000 ${kernel}; " \
  71        "ubifsload 0x1100000 ${initrd}; " \
  72        "bootm 0x800000 0x1100000"
  73
  74#define CONFIG_MTDPARTS         "mtdparts=orion_nand:1m(uboot),-(root)\0"
  75
  76#define CONFIG_EXTRA_ENV_SETTINGS \
  77        "console=console=ttyS0,115200\0" \
  78        "mtdids=nand0=orion_nand\0" \
  79        "mtdparts="CONFIG_MTDPARTS \
  80        "kernel=/boot/uImage\0" \
  81        "initrd=/boot/uInitrd\0" \
  82        "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
  83
  84/*
  85 * Ethernet Driver configuration
  86 */
  87#ifdef CONFIG_CMD_NET
  88#define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
  89#define CONFIG_PHY_BASE_ADR     0
  90#endif /* CONFIG_CMD_NET */
  91
  92/*
  93 * File system
  94 */
  95#define CONFIG_CMD_EXT2
  96#define CONFIG_CMD_FAT
  97#define CONFIG_CMD_JFFS2
  98#define CONFIG_CMD_UBI
  99#define CONFIG_CMD_UBIFS
 100#define CONFIG_RBTREE
 101#define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
 102#define CONFIG_MTD_PARTITIONS
 103#define CONFIG_CMD_MTDPARTS
 104#define CONFIG_LZO
 105
 106#endif /* _CONFIG_DOCKSTAR_H */
 107