Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq
[platform/kernel/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
54 /*
55  * Default environment variables
56  */
57 #define CONFIG_BOOTCOMMAND ""
58
59 #define CONFIG_EXTRA_ENV_SETTINGS \
60         "bootargs=console=ttyS0,115200\0" \
61         "mtdparts=mtdparts=orion_nand:0xa0000@0x0(uboot),"\
62         "0x010000@0xa0000(env),"\
63         "0x500000@0xc0000(uimage),"\
64         "0x1a40000@0x5c0000(rootfs)\0" \
65         "mtdids=nand0=orion_nand\0"\
66         "autostart=no\0"\
67         "autoload=no\0"
68
69 /*
70  * Ethernet Driver configuration
71  */
72 #ifdef CONFIG_CMD_NET
73 #define CONFIG_MVGBE_PORTS {1, 0}       /* enable port 0 only */
74 #define CONFIG_PHY_BASE_ADR 8
75 #endif /* CONFIG_CMD_NET */
76
77 /*
78  * USB/EHCI
79  */
80 #ifdef CONFIG_CMD_USB
81 #define CONFIG_USB_EHCI_KIRKWOOD        /* on Kirkwood platform */
82 #define CONFIG_EHCI_IS_TDI
83 #endif /* CONFIG_CMD_USB */
84
85 /*
86  * File system
87  */
88 #define CONFIG_JFFS2_NAND
89 #define CONFIG_JFFS2_LZO
90
91 /*
92  * SATA
93  */
94 #ifdef CONFIG_MVSATA_IDE
95 #define CONFIG_SYS_ATA_IDE0_OFFSET      MV_SATA_PORT0_OFFSET
96 #define CONFIG_SYS_ATA_IDE1_OFFSET      MV_SATA_PORT1_OFFSET
97 #endif
98
99 /*
100  * EFI partition
101  */
102
103 #define CONFIG_KIRKWOOD_GPIO
104
105 #endif /* _CONFIG_NAS220_H */
106