uboot/include/configs/mv88f6281gtw_ge.h
<<
>>
Prefs
   1/*
   2 * (C) Copyright 2009
   3 * Marvell Semiconductor <www.marvell.com>
   4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
   5 *
   6 * SPDX-License-Identifier:     GPL-2.0+
   7 */
   8
   9#ifndef _CONFIG_MV88F6281GTW_GE_H
  10#define _CONFIG_MV88F6281GTW_GE_H
  11
  12/*
  13 * Version number information
  14 */
  15#define CONFIG_IDENT_STRING     "\nMarvell-MV88F6281GTW_GE"
  16
  17/*
  18 * High Level Configuration Options (easy to change)
  19 */
  20#define CONFIG_FEROCEON_88FR131 1       /* CPU Core subversion */
  21#define CONFIG_KIRKWOOD         1       /* SOC Family Name */
  22#define CONFIG_KW88F6281        1       /* SOC Name */
  23#define CONFIG_MACH_MV88F6281GTW_GE     /* Machine type */
  24#define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
  25
  26/*
  27 * Commands configuration
  28 */
  29#define CONFIG_SYS_NO_FLASH             /* Declare no flash (NOR/SPI) */
  30#include <config_cmd_default.h>
  31#define CONFIG_CMD_DHCP
  32#define CONFIG_CMD_PING
  33#define CONFIG_CMD_ENV
  34#define CONFIG_CMD_FAT
  35#define CONFIG_CMD_PING
  36#define CONFIG_CMD_SF
  37#define CONFIG_CMD_USB
  38
  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/* Unwanted stuffs from mv-common.h */
  46#undef  CONFIG_CMD_EXT2
  47#undef  CONFIG_CMD_JFFS2
  48#undef  CONFIG_CMD_FAT
  49#undef  CONFIG_CMD_UBI
  50#undef  CONFIG_CMD_UBIFS
  51#undef  CONFIG_RBTREE
  52
  53/*
  54 *  Environment variables configurations
  55 */
  56#ifdef CONFIG_SPI_FLASH
  57#define CONFIG_ENV_IS_IN_SPI_FLASH      1
  58#define CONFIG_ENV_SECT_SIZE            0x10000 /* 64K */
  59#else
  60#define CONFIG_ENV_IS_NOWHERE           1       /* if env in SDRAM */
  61#endif
  62#define CONFIG_ENV_SIZE                 0x1000  /* 4k */
  63#define CONFIG_ENV_ADDR                 0x30000
  64#define CONFIG_ENV_OFFSET               0x30000 /* env starts here */
  65
  66/*
  67 * Default environment variables
  68 */
  69#define CONFIG_BOOTCOMMAND              "${x_bootcmd_kernel}; " \
  70        "setenv bootargs ${x_bootargs} ${x_bootargs_root}; "    \
  71        "${x_bootcmd_usb}; bootm 0x6400000;"
  72
  73#define CONFIG_MTDPARTS                 "spi0.0:512k(uboot),"   \
  74        "512k@512k(psm),2m@1m(kernel),13m@3m(rootfs)\0"
  75
  76#define CONFIG_EXTRA_ENV_SETTINGS       "x_bootargs=console"    \
  77        "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS        \
  78        "x_bootcmd_kernel=cp.b 0xE8100000 0x6400000 0x200000\0" \
  79        "x_bootcmd_usb=usb start\0" \
  80        "x_bootargs_root=root=/dev/mtdblock3 ro rootfstype=squashfs\0"
  81
  82/*
  83 * Ethernet Driver configuration
  84 */
  85#ifdef CONFIG_CMD_NET
  86#define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
  87#define CONFIG_MV88E61XX_SWITCH /* Enable mv88e61xx switch driver */
  88#endif /* CONFIG_CMD_NET */
  89
  90#endif /* _CONFIG_MV88F6281GTW_GE_H */
  91