Merge tag 'tpm-030822' of https://source.denx.de/u-boot/custodians/u-boot-tpm
[platform/kernel/u-boot.git] / include / configs / km_kirkwood.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009
4  * Marvell Semiconductor <www.marvell.com>
5  * Prafulla Wadaskar <prafulla@marvell.com>
6  *
7  * (C) Copyright 2009
8  * Stefan Roese, DENX Software Engineering, sr@denx.de.
9  *
10  * (C) Copyright 2011-2012
11  * Holger Brunck, Keymile GmbH Hannover, holger.brunck@keymile.com
12  * Valentin Longchamp, Keymile AG, valentin.longchamp@keymile.com
13  */
14
15 /*
16  * for linking errors see
17  * http://lists.denx.de/pipermail/u-boot/2009-July/057350.html
18  */
19
20 #ifndef _CONFIG_KM_KIRKWOOD_H
21 #define _CONFIG_KM_KIRKWOOD_H
22
23 /* KM_KIRKWOOD */
24 #if defined(CONFIG_KM_KIRKWOOD)
25 #define CONFIG_HOSTNAME                 "km_kirkwood"
26
27 /* KM_KIRKWOOD_PCI */
28 #elif defined(CONFIG_KM_KIRKWOOD_PCI)
29 #define CONFIG_HOSTNAME                 "km_kirkwood_pci"
30 #define CONFIG_KM_UBI_PART_BOOT_OPTS            ",2048"
31 #define CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
32
33 /* KM_KIRKWOOD_128M16 */
34 #elif defined(CONFIG_KM_KIRKWOOD_128M16)
35 #define CONFIG_HOSTNAME                 "km_kirkwood_128m16"
36
37 /* KM_NUSA */
38 #elif defined(CONFIG_KM_NUSA)
39
40 #define CONFIG_HOSTNAME                 "kmnusa"
41
42 /* KMCOGE5UN */
43 #elif defined(CONFIG_KM_COGE5UN)
44 #define CONFIG_HOSTNAME                 "kmcoge5un"
45
46 /* KM_SUSE2 */
47 #elif defined(CONFIG_KM_SUSE2)
48 #define CONFIG_HOSTNAME                 "kmsuse2"
49 #define CONFIG_KM_UBI_PART_BOOT_OPTS            ",2048"
50 #define CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
51 #else
52 #error ("Board unsupported")
53 #endif
54
55 /* include common defines/options for all arm based Keymile boards */
56 #include "km/km_arm.h"
57
58 #if defined(CONFIG_KM_PIGGY4_88E6352)
59 /*
60  * Some keymile boards like mgcoge5un & nusa1 have their PIGGY4 connected via
61  * an Marvell 88E6352 simple switch.
62  * In this case we have to change the default settings for the etherent mac.
63  * There is NO ethernet phy. The ARM and Switch are conencted directly over
64  * RGMII in MAC-MAC mode
65  * In this case 1GBit full duplex and autoneg off
66  */
67 #define PORT_SERIAL_CONTROL_VALUE               ( \
68         MVGBE_FORCE_LINK_PASS                       | \
69         MVGBE_DIS_AUTO_NEG_FOR_DUPLX            | \
70         MVGBE_DIS_AUTO_NEG_FOR_FLOW_CTRL        | \
71         MVGBE_ADV_NO_FLOW_CTRL                      | \
72         MVGBE_FORCE_FC_MODE_NO_PAUSE_DIS_TX     | \
73         MVGBE_FORCE_BP_MODE_NO_JAM                  | \
74         (1 << 9) /* Reserved bit has to be 1 */ | \
75         MVGBE_DO_NOT_FORCE_LINK_FAIL            | \
76         MVGBE_DIS_AUTO_NEG_SPEED_GMII           | \
77         MVGBE_DTE_ADV_0                                 | \
78         MVGBE_MIIPHY_MAC_MODE                       | \
79         MVGBE_AUTO_NEG_NO_CHANGE                    | \
80         MVGBE_MAX_RX_PACKET_1552BYTE            | \
81         MVGBE_CLR_EXT_LOOPBACK                      | \
82         MVGBE_SET_FULL_DUPLEX_MODE                  | \
83         MVGBE_EN_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX |\
84         MVGBE_SET_GMII_SPEED_TO_1000        |\
85         MVGBE_SET_MII_SPEED_TO_100)
86
87 #endif
88
89 #ifdef CONFIG_KM_PIGGY4_88E6061
90 /*
91  * Some keymile boards like mgcoge5un have their PIGGY4 connected via
92  * an Marvell 88E6061 simple switch.
93  * In this case we have to change the default settings for the
94  * ethernet phy connected to the kirkwood.
95  * In this case 100MB full duplex and autoneg off
96  */
97 #define PORT_SERIAL_CONTROL_VALUE               ( \
98         MVGBE_FORCE_LINK_PASS                   | \
99         MVGBE_DIS_AUTO_NEG_FOR_DUPLX            | \
100         MVGBE_DIS_AUTO_NEG_FOR_FLOW_CTRL        | \
101         MVGBE_ADV_NO_FLOW_CTRL                  | \
102         MVGBE_FORCE_FC_MODE_NO_PAUSE_DIS_TX     | \
103         MVGBE_FORCE_BP_MODE_NO_JAM              | \
104         (1 << 9) /* Reserved bit has to be 1 */ | \
105         MVGBE_DO_NOT_FORCE_LINK_FAIL            | \
106         MVGBE_DIS_AUTO_NEG_SPEED_GMII           | \
107         MVGBE_DTE_ADV_0                         | \
108         MVGBE_MIIPHY_MAC_MODE                   | \
109         MVGBE_AUTO_NEG_NO_CHANGE                | \
110         MVGBE_MAX_RX_PACKET_1552BYTE            | \
111         MVGBE_CLR_EXT_LOOPBACK                  | \
112         MVGBE_SET_FULL_DUPLEX_MODE              | \
113         MVGBE_DIS_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX        |\
114         MVGBE_SET_GMII_SPEED_TO_10_100  |\
115         MVGBE_SET_MII_SPEED_TO_100)
116 #endif
117
118 #endif /* _CONFIG_KM_KIRKWOOD */