]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/mv88f6281gtw_ge.h
karo: tx6: increase SYS_BOOTM_LEN to 32MiB
[karo-tx-uboot.git] / include / configs / mv88f6281gtw_ge.h
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_KW88F6281        1       /* SOC Name */
22 #define CONFIG_MACH_MV88F6281GTW_GE     /* Machine type */
23 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
24
25 /*
26  * Commands configuration
27  */
28 #define CONFIG_SYS_NO_FLASH             /* Declare no flash (NOR/SPI) */
29 #define CONFIG_CMD_DHCP
30 #define CONFIG_CMD_PING
31 #define CONFIG_CMD_ENV
32 #define CONFIG_CMD_FAT
33 #define CONFIG_CMD_PING
34 #define CONFIG_CMD_SF
35 #define CONFIG_CMD_USB
36
37 /*
38  * mv-common.h should be defined after CMD configs since it used them
39  * to enable certain macros
40  */
41 #include "mv-common.h"
42
43 /* Unwanted stuffs from mv-common.h */
44 #undef  CONFIG_CMD_EXT2
45 #undef  CONFIG_CMD_JFFS2
46 #undef  CONFIG_CMD_FAT
47 #undef  CONFIG_CMD_UBI
48 #undef  CONFIG_CMD_UBIFS
49 #undef  CONFIG_RBTREE
50
51 /*
52  *  Environment variables configurations
53  */
54 #ifdef CONFIG_SPI_FLASH
55 #define CONFIG_ENV_IS_IN_SPI_FLASH      1
56 #define CONFIG_ENV_SECT_SIZE            0x10000 /* 64K */
57 #else
58 #define CONFIG_ENV_IS_NOWHERE           1       /* if env in SDRAM */
59 #endif
60 #define CONFIG_ENV_SIZE                 0x1000  /* 4k */
61 #define CONFIG_ENV_ADDR                 0x30000
62 #define CONFIG_ENV_OFFSET               0x30000 /* env starts here */
63
64 /*
65  * Default environment variables
66  */
67 #define CONFIG_BOOTCOMMAND              "${x_bootcmd_kernel}; " \
68         "setenv bootargs ${x_bootargs} ${x_bootargs_root}; "    \
69         "${x_bootcmd_usb}; bootm 0x6400000;"
70
71 #define CONFIG_MTDPARTS                 "spi0.0:512k(uboot),"   \
72         "512k@512k(psm),2m@1m(kernel),13m@3m(rootfs)\0"
73
74 #define CONFIG_EXTRA_ENV_SETTINGS       "x_bootargs=console"    \
75         "=ttyS0,115200 mtdparts="CONFIG_MTDPARTS        \
76         "x_bootcmd_kernel=cp.b 0xE8100000 0x6400000 0x200000\0" \
77         "x_bootcmd_usb=usb start\0" \
78         "x_bootargs_root=root=/dev/mtdblock3 ro rootfstype=squashfs\0"
79
80 /*
81  * Ethernet Driver configuration
82  */
83 #ifdef CONFIG_CMD_NET
84 #define CONFIG_MVGBE_PORTS      {1, 0}  /* enable port 0 only */
85 #define CONFIG_MV88E61XX_SWITCH /* Enable mv88e61xx switch driver */
86 #endif /* CONFIG_CMD_NET */
87
88 #endif /* _CONFIG_MV88F6281GTW_GE_H */