Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Heiko Schocher | 6030119 | 2010-02-22 16:43:02 +0530 | [diff] [blame] | 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 | * |
Holger Brunck | 2ef4295 | 2012-07-05 05:37:46 +0000 | [diff] [blame] | 10 | * (C) Copyright 2011-2012 |
| 11 | * Holger Brunck, Keymile GmbH Hannover, holger.brunck@keymile.com |
| 12 | * Valentin Longchamp, Keymile AG, valentin.longchamp@keymile.com |
Heiko Schocher | 6030119 | 2010-02-22 16:43:02 +0530 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | /* |
| 16 | * for linking errors see |
| 17 | * http://lists.denx.de/pipermail/u-boot/2009-July/057350.html |
| 18 | */ |
| 19 | |
Holger Brunck | 1f974e9 | 2011-06-16 18:11:15 +0530 | [diff] [blame] | 20 | #ifndef _CONFIG_KM_KIRKWOOD_H |
| 21 | #define _CONFIG_KM_KIRKWOOD_H |
Heiko Schocher | 6030119 | 2010-02-22 16:43:02 +0530 | [diff] [blame] | 22 | |
Holger Brunck | b693ce8 | 2012-07-05 05:05:06 +0000 | [diff] [blame] | 23 | /* KM_KIRKWOOD */ |
Holger Brunck | 9f03a38 | 2012-05-25 01:57:13 +0000 | [diff] [blame] | 24 | #if defined(CONFIG_KM_KIRKWOOD) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 25 | #define CONFIG_HOSTNAME "km_kirkwood" |
Holger Brunck | b693ce8 | 2012-07-05 05:05:06 +0000 | [diff] [blame] | 26 | #define CONFIG_KM_DISABLE_PCIE |
Holger Brunck | b693ce8 | 2012-07-05 05:05:06 +0000 | [diff] [blame] | 27 | |
| 28 | /* KM_KIRKWOOD_PCI */ |
Holger Brunck | 9f03a38 | 2012-05-25 01:57:13 +0000 | [diff] [blame] | 29 | #elif defined(CONFIG_KM_KIRKWOOD_PCI) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 30 | #define CONFIG_HOSTNAME "km_kirkwood_pci" |
Holger Brunck | 4dd3bcf | 2014-08-15 10:51:48 +0200 | [diff] [blame] | 31 | #define CONFIG_KM_UBI_PART_BOOT_OPTS ",2048" |
| 32 | #define CONFIG_SYS_NAND_NO_SUBPAGE_WRITE |
Holger Brunck | b693ce8 | 2012-07-05 05:05:06 +0000 | [diff] [blame] | 33 | |
Karlheinz Jerg | 34544ea | 2013-09-18 09:32:48 +0200 | [diff] [blame] | 34 | /* KM_KIRKWOOD_128M16 */ |
| 35 | #elif defined(CONFIG_KM_KIRKWOOD_128M16) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 36 | #define CONFIG_HOSTNAME "km_kirkwood_128m16" |
Karlheinz Jerg | 34544ea | 2013-09-18 09:32:48 +0200 | [diff] [blame] | 37 | #undef CONFIG_SYS_KWD_CONFIG |
Masahiro Yamada | d6acdf2 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 38 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage_128M16_1.cfg |
Karlheinz Jerg | 34544ea | 2013-09-18 09:32:48 +0200 | [diff] [blame] | 39 | #define CONFIG_KM_DISABLE_PCIE |
Karlheinz Jerg | 34544ea | 2013-09-18 09:32:48 +0200 | [diff] [blame] | 40 | |
Gerlando Falauto | 29ff59a | 2014-02-13 16:43:00 +0100 | [diff] [blame] | 41 | /* KM_NUSA / KM_SUGP1 */ |
| 42 | #elif defined(CONFIG_KM_NUSA) || defined(CONFIG_KM_SUGP1) |
Gerlando Falauto | 29ff59a | 2014-02-13 16:43:00 +0100 | [diff] [blame] | 43 | |
| 44 | # if defined(CONFIG_KM_NUSA) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 45 | #define CONFIG_HOSTNAME "kmnusa" |
Gerlando Falauto | 29ff59a | 2014-02-13 16:43:00 +0100 | [diff] [blame] | 46 | # elif defined(CONFIG_KM_SUGP1) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 47 | #define CONFIG_HOSTNAME "kmsugp1" |
Gerlando Falauto | 29ff59a | 2014-02-13 16:43:00 +0100 | [diff] [blame] | 48 | #define KM_PCIE_RESET_MPP7 |
| 49 | #endif |
| 50 | |
Holger Brunck | 2ef4295 | 2012-07-05 05:37:46 +0000 | [diff] [blame] | 51 | #undef CONFIG_SYS_KWD_CONFIG |
Masahiro Yamada | d6acdf2 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 52 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage_128M16_1.cfg |
Holger Brunck | 2ef4295 | 2012-07-05 05:37:46 +0000 | [diff] [blame] | 53 | |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 54 | /* KM_MGCOGE3UN */ |
| 55 | #elif defined(CONFIG_KM_MGCOGE3UN) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 56 | #define CONFIG_HOSTNAME "mgcoge3un" |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 57 | #undef CONFIG_SYS_KWD_CONFIG |
Masahiro Yamada | d6acdf2 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 58 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-memphis.cfg |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 59 | #define CONFIG_KM_BOARD_EXTRA_ENV "waitforne=true\0" |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 60 | #define CONFIG_KM_DISABLE_PCIE |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 61 | |
| 62 | /* KMCOGE5UN */ |
Holger Brunck | f065ce0 | 2012-07-05 05:05:02 +0000 | [diff] [blame] | 63 | #elif defined(CONFIG_KM_COGE5UN) |
Holger Brunck | f065ce0 | 2012-07-05 05:05:02 +0000 | [diff] [blame] | 64 | #undef CONFIG_SYS_KWD_CONFIG |
Masahiro Yamada | d6acdf2 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 65 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage_256M8_1.cfg |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 66 | #define CONFIG_HOSTNAME "kmcoge5un" |
Holger Brunck | f065ce0 | 2012-07-05 05:05:02 +0000 | [diff] [blame] | 67 | #define CONFIG_KM_DISABLE_PCIE |
Holger Brunck | c9caa7f | 2012-07-05 05:05:04 +0000 | [diff] [blame] | 68 | |
| 69 | /* KM_PORTL2 */ |
| 70 | #elif defined(CONFIG_KM_PORTL2) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 71 | #define CONFIG_HOSTNAME "portl2" |
Holger Brunck | c9caa7f | 2012-07-05 05:05:04 +0000 | [diff] [blame] | 72 | |
Holger Brunck | ac552d5 | 2013-01-15 22:51:22 +0000 | [diff] [blame] | 73 | /* KM_SUV31 */ |
| 74 | #elif defined(CONFIG_KM_SUV31) |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 75 | #define CONFIG_HOSTNAME "kmsuv31" |
Holger Brunck | 7bffb3f | 2014-01-27 16:58:24 +0100 | [diff] [blame] | 76 | #undef CONFIG_SYS_KWD_CONFIG |
Masahiro Yamada | d6acdf2 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 77 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage_128M16_1.cfg |
Holger Brunck | 4dd3bcf | 2014-08-15 10:51:48 +0200 | [diff] [blame] | 78 | #define CONFIG_KM_UBI_PART_BOOT_OPTS ",2048" |
| 79 | #define CONFIG_SYS_NAND_NO_SUBPAGE_WRITE |
Holger Brunck | 2ef4295 | 2012-07-05 05:37:46 +0000 | [diff] [blame] | 80 | #else |
| 81 | #error ("Board unsupported") |
Holger Brunck | 1f974e9 | 2011-06-16 18:11:15 +0530 | [diff] [blame] | 82 | #endif |
Heiko Schocher | 6030119 | 2010-02-22 16:43:02 +0530 | [diff] [blame] | 83 | |
Holger Brunck | 2ef4295 | 2012-07-05 05:37:46 +0000 | [diff] [blame] | 84 | /* include common defines/options for all arm based Keymile boards */ |
| 85 | #include "km/km_arm.h" |
| 86 | |
Holger Brunck | 2ef4295 | 2012-07-05 05:37:46 +0000 | [diff] [blame] | 87 | #if defined(CONFIG_KM_PIGGY4_88E6352) |
| 88 | /* |
| 89 | * Some keymile boards like mgcoge5un & nusa1 have their PIGGY4 connected via |
| 90 | * an Marvell 88E6352 simple switch. |
| 91 | * In this case we have to change the default settings for the etherent mac. |
| 92 | * There is NO ethernet phy. The ARM and Switch are conencted directly over |
| 93 | * RGMII in MAC-MAC mode |
| 94 | * In this case 1GBit full duplex and autoneg off |
| 95 | */ |
| 96 | #define PORT_SERIAL_CONTROL_VALUE ( \ |
| 97 | MVGBE_FORCE_LINK_PASS | \ |
| 98 | MVGBE_DIS_AUTO_NEG_FOR_DUPLX | \ |
| 99 | MVGBE_DIS_AUTO_NEG_FOR_FLOW_CTRL | \ |
| 100 | MVGBE_ADV_NO_FLOW_CTRL | \ |
| 101 | MVGBE_FORCE_FC_MODE_NO_PAUSE_DIS_TX | \ |
| 102 | MVGBE_FORCE_BP_MODE_NO_JAM | \ |
| 103 | (1 << 9) /* Reserved bit has to be 1 */ | \ |
| 104 | MVGBE_DO_NOT_FORCE_LINK_FAIL | \ |
| 105 | MVGBE_DIS_AUTO_NEG_SPEED_GMII | \ |
| 106 | MVGBE_DTE_ADV_0 | \ |
| 107 | MVGBE_MIIPHY_MAC_MODE | \ |
| 108 | MVGBE_AUTO_NEG_NO_CHANGE | \ |
| 109 | MVGBE_MAX_RX_PACKET_1552BYTE | \ |
| 110 | MVGBE_CLR_EXT_LOOPBACK | \ |
| 111 | MVGBE_SET_FULL_DUPLEX_MODE | \ |
| 112 | MVGBE_EN_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX |\ |
| 113 | MVGBE_SET_GMII_SPEED_TO_1000 |\ |
| 114 | MVGBE_SET_MII_SPEED_TO_100) |
| 115 | |
| 116 | #endif |
Heiko Schocher | e4533af | 2011-03-08 10:53:51 +0100 | [diff] [blame] | 117 | |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 118 | #ifdef CONFIG_KM_PIGGY4_88E6061 |
| 119 | /* |
| 120 | * Some keymile boards like mgcoge3un have their PIGGY4 connected via |
| 121 | * an Marvell 88E6061 simple switch. |
| 122 | * In this case we have to change the default settings for the |
| 123 | * ethernet phy connected to the kirkwood. |
| 124 | * In this case 100MB full duplex and autoneg off |
| 125 | */ |
| 126 | #define PORT_SERIAL_CONTROL_VALUE ( \ |
| 127 | MVGBE_FORCE_LINK_PASS | \ |
| 128 | MVGBE_DIS_AUTO_NEG_FOR_DUPLX | \ |
| 129 | MVGBE_DIS_AUTO_NEG_FOR_FLOW_CTRL | \ |
| 130 | MVGBE_ADV_NO_FLOW_CTRL | \ |
| 131 | MVGBE_FORCE_FC_MODE_NO_PAUSE_DIS_TX | \ |
| 132 | MVGBE_FORCE_BP_MODE_NO_JAM | \ |
| 133 | (1 << 9) /* Reserved bit has to be 1 */ | \ |
| 134 | MVGBE_DO_NOT_FORCE_LINK_FAIL | \ |
| 135 | MVGBE_DIS_AUTO_NEG_SPEED_GMII | \ |
| 136 | MVGBE_DTE_ADV_0 | \ |
| 137 | MVGBE_MIIPHY_MAC_MODE | \ |
| 138 | MVGBE_AUTO_NEG_NO_CHANGE | \ |
| 139 | MVGBE_MAX_RX_PACKET_1552BYTE | \ |
| 140 | MVGBE_CLR_EXT_LOOPBACK | \ |
| 141 | MVGBE_SET_FULL_DUPLEX_MODE | \ |
| 142 | MVGBE_DIS_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX |\ |
| 143 | MVGBE_SET_GMII_SPEED_TO_10_100 |\ |
| 144 | MVGBE_SET_MII_SPEED_TO_100) |
| 145 | #endif |
| 146 | |
Pascal Linder | 9da11de | 2019-07-09 09:28:23 +0200 | [diff] [blame^] | 147 | #ifdef CONFIG_KM_DISABLE_PCIE |
Holger Brunck | d896d0d | 2012-07-05 05:05:03 +0000 | [diff] [blame] | 148 | #undef CONFIG_KIRKWOOD_PCIE_INIT |
| 149 | #endif |
Valentin Longchamp | 6633fed | 2012-07-05 05:05:05 +0000 | [diff] [blame] | 150 | |
Holger Brunck | 1f974e9 | 2011-06-16 18:11:15 +0530 | [diff] [blame] | 151 | #endif /* _CONFIG_KM_KIRKWOOD */ |