]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/nas220.h
configs: Re-sync almost all of cmd/Kconfig
[karo-tx-uboot.git] / include / configs / nas220.h
1 /*
2  * Copyright (C) 2014 Evgeni Dobrev <evgeni@studio-punkt.com>
3  *
4  * based on work from:
5  * (C) Copyright 2009
6  * Marvell Semiconductor <www.marvell.com>
7  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
8  *
9  * SPDX-License-Identifier:     GPL-2.0+
10  */
11
12 #ifndef _CONFIG_NAS220_H
13 #define _CONFIG_NAS220_H
14
15 /*
16  * Machine type definition and ID
17  */
18 #define MACH_TYPE_NAS220                MACH_TYPE_RD88F6192_NAS
19 #define CONFIG_MACH_TYPE                MACH_TYPE_NAS220
20 #define CONFIG_IDENT_STRING             "\nNAS 220"
21
22 /*
23  * High Level Configuration Options (easy to change)
24  */
25 #define CONFIG_FEROCEON_88FR131         /* #define CPU Core subversion */
26 #define CONFIG_KW88F6192                /* SOC Name */
27 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
28
29 /* power-on led, regulator, sata0, sata1 */
30 #define NAS220_GE_OE_VAL_LOW ((1 << 12)|(1 << 14)|(1 << 24)|(1 << 28))
31 #define NAS220_GE_OE_VAL_HIGH (0)
32 #define NAS220_GE_OE_LOW (~((1 << 12)|(1 << 14)|(1 << 24)|(1 << 28)))
33 #define NAS220_GE_OE_HIGH (~(0))
34
35 /* PHY related */
36 #define MV88E1116_LED_FCTRL_REG         10
37 #define MV88E1116_CPRSP_CR3_REG         21
38 #define MV88E1116_MAC_CTRL_REG          21
39 #define MV88E1116_PGADR_REG             22
40 #define MV88E1116_RGMII_TXTM_CTRL       (1 << 4)
41 #define MV88E1116_RGMII_RXTM_CTRL       (1 << 5)
42
43 /*
44  * Commands configuration
45  */
46 #define CONFIG_SYS_NO_FLASH             /* Declare no flash (NOR/SPI) */
47 #define CONFIG_CMD_MII
48 #define CONFIG_CMD_NAND
49 #define CONFIG_CMD_DATE
50 #define CONFIG_CMD_IDE
51 #define CONFIG_SYS_LONGHELP
52 #define CONFIG_AUTO_COMPLETE
53 #define CONFIG_CMDLINE_EDITING
54
55 /*
56  * mv-common.h should be defined after CMD configs since it used them
57  * to enable certain macros
58  */
59 #include "mv-common.h"
60
61 /*
62  *  Environment variables configurations
63  */
64 #ifdef CONFIG_CMD_NAND
65 #define CONFIG_ENV_IS_IN_NAND
66 #define CONFIG_ENV_SECT_SIZE 0x10000
67 #else
68 #define CONFIG_ENV_IS_NOWHERE
69 #endif
70
71 #define CONFIG_ENV_SIZE 0x10000
72 #define CONFIG_ENV_OFFSET 0xa0000
73
74 /*
75  * Default environment variables
76  */
77 #define CONFIG_BOOTCOMMAND ""
78
79 #define CONFIG_EXTRA_ENV_SETTINGS \
80         "bootargs=console=ttyS0,115200\0" \
81         "mtdparts=mtdparts=orion_nand:0xa0000@0x0(uboot),"\
82         "0x010000@0xa0000(env),"\
83         "0x500000@0xc0000(uimage),"\
84         "0x1a40000@0x5c0000(rootfs)\0" \
85         "mtdids=nand0=orion_nand\0"\
86         "bootdelay=-1\0"\
87         "autostart=no\0"\
88         "autoload=no\0"
89
90 /*
91  * Ethernet Driver configuration
92  */
93 #ifdef CONFIG_CMD_NET
94 #define CONFIG_MVGBE_PORTS {1, 0}       /* enable port 0 only */
95 #define CONFIG_PHY_BASE_ADR 8
96 #endif /* CONFIG_CMD_NET */
97
98 /*
99  * USB/EHCI
100  */
101 #ifdef CONFIG_CMD_USB
102 #define CONFIG_USB_EHCI                 /* Enable EHCI USB support */
103 #define CONFIG_USB_EHCI_KIRKWOOD        /* on Kirkwood platform */
104 #define CONFIG_EHCI_IS_TDI
105 #define CONFIG_USB_STORAGE
106 #define CONFIG_DOS_PARTITION
107 #define CONFIG_SUPPORT_VFAT
108 #endif /* CONFIG_CMD_USB */
109
110 /*
111  * File system
112  */
113 #define CONFIG_CMD_EXT2
114 #define CONFIG_CMD_EXT4
115 #define CONFIG_CMD_FAT
116 #define CONFIG_CMD_JFFS2
117 #define CONFIG_JFFS2_NAND
118 #define CONFIG_JFFS2_LZO
119 #define CONFIG_CMD_UBI
120 #define CONFIG_CMD_UBIFS
121 #define CONFIG_RBTREE
122 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
123 #define CONFIG_MTD_PARTITIONS
124 #define CONFIG_CMD_MTDPARTS
125 #define CONFIG_LZO
126
127 /*
128  * SATA
129  */
130 #ifdef CONFIG_MVSATA_IDE
131 #define CONFIG_SYS_ATA_IDE0_OFFSET      MV_SATA_PORT0_OFFSET
132 #define CONFIG_SYS_ATA_IDE1_OFFSET      MV_SATA_PORT1_OFFSET
133 #endif
134
135 /*
136  * EFI partition
137  */
138 #define CONFIG_EFI_PARTITION
139
140 /*
141  *  Date Time
142  */
143 #ifdef CONFIG_CMD_DATE
144 #define CONFIG_RTC_MV
145 #endif /* CONFIG_CMD_DATE */
146
147 #define CONFIG_KIRKWOOD_GPIO
148
149 #endif /* _CONFIG_NAS220_H */
150