Merge tag 'u-boot-atmel-fixes-2019.07-a' of git://git.denx.de/u-boot-atmel
[oweals/u-boot.git] / include / configs / nas220.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Evgeni Dobrev <evgeni@studio-punkt.com>
4  *
5  * based on work from:
6  * (C) Copyright 2009
7  * Marvell Semiconductor <www.marvell.com>
8  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
9  */
10
11 #ifndef _CONFIG_NAS220_H
12 #define _CONFIG_NAS220_H
13
14 /*
15  * Machine type ID
16  */
17 #define CONFIG_MACH_TYPE                MACH_TYPE_RD88F6192_NAS
18
19 /*
20  * High Level Configuration Options (easy to change)
21  */
22 #define CONFIG_FEROCEON_88FR131         /* #define CPU Core subversion */
23 #define CONFIG_KW88F6192                /* SOC Name */
24 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
25
26 /* power-on led, regulator, sata0, sata1 */
27 #define NAS220_GE_OE_VAL_LOW ((1 << 12)|(1 << 14)|(1 << 24)|(1 << 28))
28 #define NAS220_GE_OE_VAL_HIGH (0)
29 #define NAS220_GE_OE_LOW (~((1 << 12)|(1 << 14)|(1 << 24)|(1 << 28)))
30 #define NAS220_GE_OE_HIGH (~(0))
31
32 /* PHY related */
33 #define MV88E1116_LED_FCTRL_REG         10
34 #define MV88E1116_CPRSP_CR3_REG         21
35 #define MV88E1116_MAC_CTRL_REG          21
36 #define MV88E1116_PGADR_REG             22
37 #define MV88E1116_RGMII_TXTM_CTRL       (1 << 4)
38 #define MV88E1116_RGMII_RXTM_CTRL       (1 << 5)
39
40 /*
41  * Commands configuration
42  */
43
44 /*
45  * mv-common.h should be defined after CMD configs since it used them
46  * to enable certain macros
47  */
48 #include "mv-common.h"
49
50 /*
51  *  Environment variables configurations
52  */
53 #ifdef CONFIG_CMD_NAND
54 #define CONFIG_ENV_SECT_SIZE 0x10000
55 #endif
56
57 #define CONFIG_ENV_SIZE 0x10000
58 #define CONFIG_ENV_OFFSET 0xa0000
59
60 /*
61  * Default environment variables
62  */
63 #define CONFIG_BOOTCOMMAND ""
64
65 #define CONFIG_EXTRA_ENV_SETTINGS \
66         "bootargs=console=ttyS0,115200\0" \
67         "mtdparts=mtdparts=orion_nand:0xa0000@0x0(uboot),"\
68         "0x010000@0xa0000(env),"\
69         "0x500000@0xc0000(uimage),"\
70         "0x1a40000@0x5c0000(rootfs)\0" \
71         "mtdids=nand0=orion_nand\0"\
72         "autostart=no\0"\
73         "autoload=no\0"
74
75 /*
76  * Ethernet Driver configuration
77  */
78 #ifdef CONFIG_CMD_NET
79 #define CONFIG_MVGBE_PORTS {1, 0}       /* enable port 0 only */
80 #define CONFIG_PHY_BASE_ADR 8
81 #endif /* CONFIG_CMD_NET */
82
83 /*
84  * USB/EHCI
85  */
86 #ifdef CONFIG_CMD_USB
87 #define CONFIG_USB_EHCI_KIRKWOOD        /* on Kirkwood platform */
88 #define CONFIG_EHCI_IS_TDI
89 #endif /* CONFIG_CMD_USB */
90
91 /*
92  * File system
93  */
94 #define CONFIG_JFFS2_NAND
95 #define CONFIG_JFFS2_LZO
96
97 /*
98  * SATA
99  */
100 #ifdef CONFIG_MVSATA_IDE
101 #define CONFIG_SYS_ATA_IDE0_OFFSET      MV_SATA_PORT0_OFFSET
102 #define CONFIG_SYS_ATA_IDE1_OFFSET      MV_SATA_PORT1_OFFSET
103 #endif
104
105 /*
106  * EFI partition
107  */
108
109 #define CONFIG_KIRKWOOD_GPIO
110
111 #endif /* _CONFIG_NAS220_H */
112