blob: adccad8032f7c52f2b8ee1968907043eefcc7b10 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tim Harvey552c3582014-03-06 07:46:30 -08002/*
3 * Copyright (C) 2013 Gateworks Corporation
4 *
5 * Author: Tim Harvey <tharvey@gateworks.com>
Tim Harvey552c3582014-03-06 07:46:30 -08006 */
7
8#include <common.h>
Tim Harvey552c3582014-03-06 07:46:30 -08009#include <asm/arch/clock.h>
Tim Harvey0cee2242015-05-08 18:28:35 -070010#include <asm/arch/crm_regs.h>
Tim Harvey552c3582014-03-06 07:46:30 -080011#include <asm/arch/iomux.h>
12#include <asm/arch/mx6-pins.h>
Tim Harveyfb64cc72014-04-25 15:39:07 -070013#include <asm/arch/mxc_hdmi.h>
Tim Harvey552c3582014-03-06 07:46:30 -080014#include <asm/arch/sys_proto.h>
15#include <asm/gpio.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020016#include <asm/mach-imx/boot_mode.h>
17#include <asm/mach-imx/sata.h>
18#include <asm/mach-imx/spi.h>
19#include <asm/mach-imx/video.h>
Tim Harvey0cee2242015-05-08 18:28:35 -070020#include <asm/io.h>
Simon Glassd9a766f2017-05-17 08:23:00 -060021#include <asm/setup.h>
Tim Harvey0cee2242015-05-08 18:28:35 -070022#include <dm.h>
Tim Harvey67ed7922015-05-08 18:28:29 -070023#include <dm/platform_data/serial_mxc.h>
Alex Kiernan9c215492018-04-01 09:22:38 +000024#include <environment.h>
Tim Harvey8d2d8df2016-05-24 11:03:55 -070025#include <hwconfig.h>
Tim Harvey552c3582014-03-06 07:46:30 -080026#include <i2c.h>
Tim Harvey552c3582014-03-06 07:46:30 -080027#include <fdt_support.h>
28#include <fsl_esdhc.h>
Tim Harvey0cee2242015-05-08 18:28:35 -070029#include <jffs2/load_kernel.h>
30#include <linux/ctype.h>
Tim Harvey552c3582014-03-06 07:46:30 -080031#include <miiphy.h>
Tim Harvey552c3582014-03-06 07:46:30 -080032#include <mtd_node.h>
33#include <netdev.h>
Tim Harvey33791d52014-08-07 22:49:57 -070034#include <pci.h>
Tim Harvey552c3582014-03-06 07:46:30 -080035#include <power/pmic.h>
Tim Harvey0dff16f2014-05-05 08:22:25 -070036#include <power/ltc3676_pmic.h>
Tim Harvey552c3582014-03-06 07:46:30 -080037#include <power/pfuze100_pmic.h>
Tim Harvey552c3582014-03-06 07:46:30 -080038#include <fdt_support.h>
39#include <jffs2/load_kernel.h>
40#include <spi_flash.h>
41
42#include "gsc.h"
Tim Harvey0cee2242015-05-08 18:28:35 -070043#include "common.h"
Tim Harvey552c3582014-03-06 07:46:30 -080044
45DECLARE_GLOBAL_DATA_PTR;
46
Tim Harvey26993362014-08-07 22:35:49 -070047
Tim Harvey552c3582014-03-06 07:46:30 -080048/*
49 * EEPROM board info struct populated by read_eeprom so that we only have to
50 * read it once.
51 */
Tim Harvey0da2c522014-08-07 22:35:45 -070052struct ventana_board_info ventana_info;
Tim Harvey552c3582014-03-06 07:46:30 -080053
Tim Harvey8b92bdf2015-04-08 12:54:43 -070054static int board_type;
Tim Harvey552c3582014-03-06 07:46:30 -080055
Tim Harvey552c3582014-03-06 07:46:30 -080056/* ENET */
Tim Harvey8b92bdf2015-04-08 12:54:43 -070057static iomux_v3_cfg_t const enet_pads[] = {
Tim Harvey02fb5922014-06-02 16:13:26 -070058 IOMUX_PADS(PAD_ENET_MDIO__ENET_MDIO | MUX_PAD_CTRL(ENET_PAD_CTRL)),
59 IOMUX_PADS(PAD_ENET_MDC__ENET_MDC | MUX_PAD_CTRL(ENET_PAD_CTRL)),
60 IOMUX_PADS(PAD_RGMII_TXC__RGMII_TXC | MUX_PAD_CTRL(ENET_PAD_CTRL)),
61 IOMUX_PADS(PAD_RGMII_TD0__RGMII_TD0 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
62 IOMUX_PADS(PAD_RGMII_TD1__RGMII_TD1 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
63 IOMUX_PADS(PAD_RGMII_TD2__RGMII_TD2 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
64 IOMUX_PADS(PAD_RGMII_TD3__RGMII_TD3 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
65 IOMUX_PADS(PAD_RGMII_TX_CTL__RGMII_TX_CTL |
66 MUX_PAD_CTRL(ENET_PAD_CTRL)),
67 IOMUX_PADS(PAD_ENET_REF_CLK__ENET_TX_CLK |
68 MUX_PAD_CTRL(ENET_PAD_CTRL)),
69 IOMUX_PADS(PAD_RGMII_RXC__RGMII_RXC | MUX_PAD_CTRL(ENET_PAD_CTRL)),
70 IOMUX_PADS(PAD_RGMII_RD0__RGMII_RD0 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
71 IOMUX_PADS(PAD_RGMII_RD1__RGMII_RD1 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
72 IOMUX_PADS(PAD_RGMII_RD2__RGMII_RD2 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
73 IOMUX_PADS(PAD_RGMII_RD3__RGMII_RD3 | MUX_PAD_CTRL(ENET_PAD_CTRL)),
74 IOMUX_PADS(PAD_RGMII_RX_CTL__RGMII_RX_CTL |
75 MUX_PAD_CTRL(ENET_PAD_CTRL)),
Tim Harvey552c3582014-03-06 07:46:30 -080076 /* PHY nRST */
Tim Harvey26993362014-08-07 22:35:49 -070077 IOMUX_PADS(PAD_ENET_TXD0__GPIO1_IO30 | DIO_PAD_CFG),
Tim Harvey552c3582014-03-06 07:46:30 -080078};
79
Tom Rini52a132c2017-05-08 22:14:25 -040080#ifdef CONFIG_CMD_NAND
Tim Harvey8b92bdf2015-04-08 12:54:43 -070081static iomux_v3_cfg_t const nfc_pads[] = {
Tim Harvey02fb5922014-06-02 16:13:26 -070082 IOMUX_PADS(PAD_NANDF_CLE__NAND_CLE | MUX_PAD_CTRL(NO_PAD_CTRL)),
83 IOMUX_PADS(PAD_NANDF_ALE__NAND_ALE | MUX_PAD_CTRL(NO_PAD_CTRL)),
84 IOMUX_PADS(PAD_NANDF_WP_B__NAND_WP_B | MUX_PAD_CTRL(NO_PAD_CTRL)),
85 IOMUX_PADS(PAD_NANDF_RB0__NAND_READY_B | MUX_PAD_CTRL(NO_PAD_CTRL)),
86 IOMUX_PADS(PAD_NANDF_CS0__NAND_CE0_B | MUX_PAD_CTRL(NO_PAD_CTRL)),
87 IOMUX_PADS(PAD_SD4_CMD__NAND_RE_B | MUX_PAD_CTRL(NO_PAD_CTRL)),
88 IOMUX_PADS(PAD_SD4_CLK__NAND_WE_B | MUX_PAD_CTRL(NO_PAD_CTRL)),
89 IOMUX_PADS(PAD_NANDF_D0__NAND_DATA00 | MUX_PAD_CTRL(NO_PAD_CTRL)),
90 IOMUX_PADS(PAD_NANDF_D1__NAND_DATA01 | MUX_PAD_CTRL(NO_PAD_CTRL)),
91 IOMUX_PADS(PAD_NANDF_D2__NAND_DATA02 | MUX_PAD_CTRL(NO_PAD_CTRL)),
92 IOMUX_PADS(PAD_NANDF_D3__NAND_DATA03 | MUX_PAD_CTRL(NO_PAD_CTRL)),
93 IOMUX_PADS(PAD_NANDF_D4__NAND_DATA04 | MUX_PAD_CTRL(NO_PAD_CTRL)),
94 IOMUX_PADS(PAD_NANDF_D5__NAND_DATA05 | MUX_PAD_CTRL(NO_PAD_CTRL)),
95 IOMUX_PADS(PAD_NANDF_D6__NAND_DATA06 | MUX_PAD_CTRL(NO_PAD_CTRL)),
96 IOMUX_PADS(PAD_NANDF_D7__NAND_DATA07 | MUX_PAD_CTRL(NO_PAD_CTRL)),
Tim Harvey552c3582014-03-06 07:46:30 -080097};
98
Tim Harvey552c3582014-03-06 07:46:30 -080099static void setup_gpmi_nand(void)
100{
101 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
102
103 /* config gpmi nand iomux */
Tim Harvey02fb5922014-06-02 16:13:26 -0700104 SETUP_IOMUX_PADS(nfc_pads);
Tim Harvey552c3582014-03-06 07:46:30 -0800105
106 /* config gpmi and bch clock to 100 MHz */
107 clrsetbits_le32(&mxc_ccm->cs2cdr,
108 MXC_CCM_CS2CDR_ENFC_CLK_PODF_MASK |
109 MXC_CCM_CS2CDR_ENFC_CLK_PRED_MASK |
110 MXC_CCM_CS2CDR_ENFC_CLK_SEL_MASK,
111 MXC_CCM_CS2CDR_ENFC_CLK_PODF(0) |
112 MXC_CCM_CS2CDR_ENFC_CLK_PRED(3) |
113 MXC_CCM_CS2CDR_ENFC_CLK_SEL(3));
114
115 /* enable gpmi and bch clock gating */
116 setbits_le32(&mxc_ccm->CCGR4,
117 MXC_CCM_CCGR4_RAWNAND_U_BCH_INPUT_APB_MASK |
118 MXC_CCM_CCGR4_RAWNAND_U_GPMI_BCH_INPUT_BCH_MASK |
119 MXC_CCM_CCGR4_RAWNAND_U_GPMI_BCH_INPUT_GPMI_IO_MASK |
120 MXC_CCM_CCGR4_RAWNAND_U_GPMI_INPUT_APB_MASK |
121 MXC_CCM_CCGR4_PL301_MX6QPER1_BCH_OFFSET);
122
123 /* enable apbh clock gating */
124 setbits_le32(&mxc_ccm->CCGR0, MXC_CCM_CCGR0_APBHDMA_MASK);
125}
126#endif
127
Tim Harveyf1f41db2015-05-08 18:28:28 -0700128static void setup_iomux_enet(int gpio)
Tim Harvey552c3582014-03-06 07:46:30 -0800129{
Tim Harvey02fb5922014-06-02 16:13:26 -0700130 SETUP_IOMUX_PADS(enet_pads);
Tim Harvey552c3582014-03-06 07:46:30 -0800131
132 /* toggle PHY_RST# */
Tim Harveyf1f41db2015-05-08 18:28:28 -0700133 gpio_request(gpio, "phy_rst#");
134 gpio_direction_output(gpio, 0);
Tim Harvey63537792017-03-17 07:30:38 -0700135 mdelay(10);
Tim Harveyf1f41db2015-05-08 18:28:28 -0700136 gpio_set_value(gpio, 1);
Tim Harvey63537792017-03-17 07:30:38 -0700137 mdelay(100);
Tim Harvey552c3582014-03-06 07:46:30 -0800138}
139
Tim Harvey552c3582014-03-06 07:46:30 -0800140#ifdef CONFIG_USB_EHCI_MX6
Tim Harvey8b92bdf2015-04-08 12:54:43 -0700141static iomux_v3_cfg_t const usb_pads[] = {
Tim Harvey26993362014-08-07 22:35:49 -0700142 IOMUX_PADS(PAD_GPIO_1__USB_OTG_ID | DIO_PAD_CFG),
143 IOMUX_PADS(PAD_KEY_COL4__USB_OTG_OC | DIO_PAD_CFG),
Tim Harvey02fb5922014-06-02 16:13:26 -0700144 /* OTG PWR */
Tim Harvey26993362014-08-07 22:35:49 -0700145 IOMUX_PADS(PAD_EIM_D22__GPIO3_IO22 | DIO_PAD_CFG),
Tim Harvey552c3582014-03-06 07:46:30 -0800146};
147
148int board_ehci_hcd_init(int port)
149{
Tim Harveyf1f41db2015-05-08 18:28:28 -0700150 int gpio;
Tim Harvey552c3582014-03-06 07:46:30 -0800151
Tim Harvey02fb5922014-06-02 16:13:26 -0700152 SETUP_IOMUX_PADS(usb_pads);
Tim Harvey552c3582014-03-06 07:46:30 -0800153
Tim Harveydb7edfa2015-05-26 11:04:54 -0700154 /* Reset USB HUB */
155 switch (board_type) {
156 case GW53xx:
157 case GW552x:
Tim Harveyf1f41db2015-05-08 18:28:28 -0700158 gpio = (IMX_GPIO_NR(1, 9));
Tim Harvey552c3582014-03-06 07:46:30 -0800159 break;
Tim Harveydb7edfa2015-05-26 11:04:54 -0700160 case GW54proto:
161 case GW54xx:
Tim Harveyf1f41db2015-05-08 18:28:28 -0700162 gpio = (IMX_GPIO_NR(1, 16));
Tim Harvey552c3582014-03-06 07:46:30 -0800163 break;
Tim Harveyf1f41db2015-05-08 18:28:28 -0700164 default:
165 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -0800166 }
167
Tim Harveyf1f41db2015-05-08 18:28:28 -0700168 /* request and toggle hub rst */
169 gpio_request(gpio, "usb_hub_rst#");
170 gpio_direction_output(gpio, 0);
171 mdelay(2);
172 gpio_set_value(gpio, 1);
173
Tim Harvey552c3582014-03-06 07:46:30 -0800174 return 0;
175}
176
177int board_ehci_power(int port, int on)
178{
Tim Harvey9b9e75f2017-03-13 08:51:07 -0700179 /* enable OTG VBUS */
180 if (!port && board_type < GW_UNKNOWN) {
181 if (gpio_cfg[board_type].otgpwr_en)
182 gpio_set_value(gpio_cfg[board_type].otgpwr_en, on);
183 }
Tim Harvey552c3582014-03-06 07:46:30 -0800184 return 0;
185}
186#endif /* CONFIG_USB_EHCI_MX6 */
187
Tim Harvey552c3582014-03-06 07:46:30 -0800188#ifdef CONFIG_MXC_SPI
189iomux_v3_cfg_t const ecspi1_pads[] = {
190 /* SS1 */
Tim Harvey02fb5922014-06-02 16:13:26 -0700191 IOMUX_PADS(PAD_EIM_D19__GPIO3_IO19 | MUX_PAD_CTRL(SPI_PAD_CTRL)),
192 IOMUX_PADS(PAD_EIM_D17__ECSPI1_MISO | MUX_PAD_CTRL(SPI_PAD_CTRL)),
193 IOMUX_PADS(PAD_EIM_D18__ECSPI1_MOSI | MUX_PAD_CTRL(SPI_PAD_CTRL)),
194 IOMUX_PADS(PAD_EIM_D16__ECSPI1_SCLK | MUX_PAD_CTRL(SPI_PAD_CTRL)),
Tim Harvey552c3582014-03-06 07:46:30 -0800195};
196
Nikita Kiryanov00cd7382014-08-20 15:08:50 +0300197int board_spi_cs_gpio(unsigned bus, unsigned cs)
198{
199 return (bus == 0 && cs == 0) ? (IMX_GPIO_NR(3, 19)) : -1;
200}
201
Tim Harvey552c3582014-03-06 07:46:30 -0800202static void setup_spi(void)
203{
Tim Harveyf1f41db2015-05-08 18:28:28 -0700204 gpio_request(IMX_GPIO_NR(3, 19), "spi_cs");
Nikita Kiryanov00cd7382014-08-20 15:08:50 +0300205 gpio_direction_output(IMX_GPIO_NR(3, 19), 1);
Tim Harvey02fb5922014-06-02 16:13:26 -0700206 SETUP_IOMUX_PADS(ecspi1_pads);
Tim Harvey552c3582014-03-06 07:46:30 -0800207}
208#endif
209
210/* configure eth0 PHY board-specific LED behavior */
211int board_phy_config(struct phy_device *phydev)
212{
213 unsigned short val;
214
215 /* Marvel 88E1510 */
216 if (phydev->phy_id == 0x1410dd1) {
217 /*
218 * Page 3, Register 16: LED[2:0] Function Control Register
219 * LED[0] (SPD:Amber) R16_3.3:0 to 0111: on-GbE link
220 * LED[1] (LNK:Green) R16_3.7:4 to 0001: on-link, blink-activity
221 */
222 phy_write(phydev, MDIO_DEVAD_NONE, 22, 3);
223 val = phy_read(phydev, MDIO_DEVAD_NONE, 16);
224 val &= 0xff00;
225 val |= 0x0017;
226 phy_write(phydev, MDIO_DEVAD_NONE, 16, val);
227 phy_write(phydev, MDIO_DEVAD_NONE, 22, 0);
228 }
229
Tim Harvey4533c902017-03-17 07:32:21 -0700230 /* TI DP83867 */
231 else if (phydev->phy_id == 0x2000a231) {
232 /* configure register 0x170 for ref CLKOUT */
233 phy_write(phydev, MDIO_DEVAD_NONE, 13, 0x001f);
234 phy_write(phydev, MDIO_DEVAD_NONE, 14, 0x0170);
235 phy_write(phydev, MDIO_DEVAD_NONE, 13, 0x401f);
236 val = phy_read(phydev, MDIO_DEVAD_NONE, 14);
237 val &= ~0x1f00;
238 val |= 0x0b00; /* chD tx clock*/
239 phy_write(phydev, MDIO_DEVAD_NONE, 14, val);
240 }
241
Tim Harvey552c3582014-03-06 07:46:30 -0800242 if (phydev->drv->config)
243 phydev->drv->config(phydev);
244
245 return 0;
246}
Tim Harvey63537792017-03-17 07:30:38 -0700247
248#ifdef CONFIG_MV88E61XX_SWITCH
249int mv88e61xx_hw_reset(struct phy_device *phydev)
250{
251 struct mii_dev *bus = phydev->bus;
252
253 /* GPIO[0] output, CLK125 */
254 debug("enabling RGMII_REFCLK\n");
255 bus->write(bus, 0x1c /*MV_GLOBAL2*/, 0,
256 0x1a /*MV_SCRATCH_MISC*/,
257 (1 << 15) | (0x62 /*MV_GPIO_DIR*/ << 8) | 0xfe);
258 bus->write(bus, 0x1c /*MV_GLOBAL2*/, 0,
259 0x1a /*MV_SCRATCH_MISC*/,
260 (1 << 15) | (0x68 /*MV_GPIO01_CNTL*/ << 8) | 7);
261
262 /* RGMII delay - Physical Control register bit[15:14] */
263 debug("setting port%d RGMII rx/tx delay\n", CONFIG_MV88E61XX_CPU_PORT);
264 /* forced 1000mbps full-duplex link */
265 bus->write(bus, 0x10 + CONFIG_MV88E61XX_CPU_PORT, 0, 1, 0xc0fe);
266 phydev->autoneg = AUTONEG_DISABLE;
267 phydev->speed = SPEED_1000;
268 phydev->duplex = DUPLEX_FULL;
269
Tim Harvey8c9d3932019-02-04 13:10:47 -0800270 /* LED configuration: 7:4-green (8=Activity) 3:0 amber (8=Link) */
271 bus->write(bus, 0x10, 0, 0x16, 0x8088);
272 bus->write(bus, 0x11, 0, 0x16, 0x8088);
273 bus->write(bus, 0x12, 0, 0x16, 0x8088);
274 bus->write(bus, 0x13, 0, 0x16, 0x8088);
Tim Harvey63537792017-03-17 07:30:38 -0700275
276 return 0;
277}
278#endif // CONFIG_MV88E61XX_SWITCH
Tim Harvey552c3582014-03-06 07:46:30 -0800279
280int board_eth_init(bd_t *bis)
281{
Tim Harvey552c3582014-03-06 07:46:30 -0800282#ifdef CONFIG_FEC_MXC
Tim Harvey892068c2016-05-24 11:03:58 -0700283 struct ventana_board_info *info = &ventana_info;
284
285 if (test_bit(EECONFIG_ETH0, info->config)) {
Tim Harveyf1f41db2015-05-08 18:28:28 -0700286 setup_iomux_enet(GP_PHY_RST);
Tim Harvey50581832014-08-20 23:35:14 -0700287 cpu_eth_init(bis);
Tim Harvey85331822015-04-08 12:54:48 -0700288 }
Tim Harvey552c3582014-03-06 07:46:30 -0800289#endif
290
Tim Harvey472884d2015-04-08 12:54:32 -0700291#ifdef CONFIG_E1000
292 e1000_initialize(bis);
293#endif
294
Tim Harvey552c3582014-03-06 07:46:30 -0800295#ifdef CONFIG_CI_UDC
296 /* For otg ethernet*/
297 usb_eth_initialize(bis);
298#endif
299
Tim Harveyfc5ff942015-04-08 12:54:33 -0700300 /* default to the first detected enet dev */
Simon Glass64b723f2017-08-03 12:22:12 -0600301 if (!env_get("ethprime")) {
Tim Harveyfc5ff942015-04-08 12:54:33 -0700302 struct eth_device *dev = eth_get_dev_by_index(0);
303 if (dev) {
Simon Glass6a38e412017-08-03 12:22:09 -0600304 env_set("ethprime", dev->name);
Simon Glass64b723f2017-08-03 12:22:12 -0600305 printf("set ethprime to %s\n", env_get("ethprime"));
Tim Harveyfc5ff942015-04-08 12:54:33 -0700306 }
307 }
308
Tim Harvey552c3582014-03-06 07:46:30 -0800309 return 0;
310}
311
Tim Harveyfb64cc72014-04-25 15:39:07 -0700312#if defined(CONFIG_VIDEO_IPUV3)
313
314static void enable_hdmi(struct display_info_t const *dev)
315{
316 imx_enable_hdmi_phy();
317}
318
319static int detect_i2c(struct display_info_t const *dev)
320{
321 return i2c_set_bus_num(dev->bus) == 0 &&
322 i2c_probe(dev->addr) == 0;
323}
324
325static void enable_lvds(struct display_info_t const *dev)
326{
327 struct iomuxc *iomux = (struct iomuxc *)
328 IOMUXC_BASE_ADDR;
329
330 /* set CH0 data width to 24bit (IOMUXC_GPR2:5 0=18bit, 1=24bit) */
331 u32 reg = readl(&iomux->gpr[2]);
332 reg |= IOMUXC_GPR2_DATA_WIDTH_CH0_24BIT;
333 writel(reg, &iomux->gpr[2]);
334
335 /* Enable Backlight */
Tim Harveya67e07f2016-05-24 11:03:53 -0700336 gpio_request(IMX_GPIO_NR(1, 10), "bklt_gpio");
337 gpio_direction_output(IMX_GPIO_NR(1, 10), 0);
Tim Harveyf1f41db2015-05-08 18:28:28 -0700338 gpio_request(IMX_GPIO_NR(1, 18), "bklt_en");
Tim Harvey26993362014-08-07 22:35:49 -0700339 SETUP_IOMUX_PAD(PAD_SD1_CMD__GPIO1_IO18 | DIO_PAD_CFG);
Tim Harveyfb64cc72014-04-25 15:39:07 -0700340 gpio_direction_output(IMX_GPIO_NR(1, 18), 1);
341}
342
343struct display_info_t const displays[] = {{
344 /* HDMI Output */
345 .bus = -1,
346 .addr = 0,
347 .pixfmt = IPU_PIX_FMT_RGB24,
348 .detect = detect_hdmi,
349 .enable = enable_hdmi,
350 .mode = {
351 .name = "HDMI",
352 .refresh = 60,
353 .xres = 1024,
354 .yres = 768,
355 .pixclock = 15385,
356 .left_margin = 220,
357 .right_margin = 40,
358 .upper_margin = 21,
359 .lower_margin = 7,
360 .hsync_len = 60,
361 .vsync_len = 10,
362 .sync = FB_SYNC_EXT,
363 .vmode = FB_VMODE_NONINTERLACED
364} }, {
365 /* Freescale MXC-LVDS1: HannStar HSD100PXN1-A00 w/ egalx_ts cont */
366 .bus = 2,
367 .addr = 0x4,
368 .pixfmt = IPU_PIX_FMT_LVDS666,
369 .detect = detect_i2c,
370 .enable = enable_lvds,
371 .mode = {
372 .name = "Hannstar-XGA",
373 .refresh = 60,
374 .xres = 1024,
375 .yres = 768,
376 .pixclock = 15385,
377 .left_margin = 220,
378 .right_margin = 40,
379 .upper_margin = 21,
380 .lower_margin = 7,
381 .hsync_len = 60,
382 .vsync_len = 10,
383 .sync = FB_SYNC_EXT,
384 .vmode = FB_VMODE_NONINTERLACED
Tim Harveya20bd632015-04-08 12:54:57 -0700385} }, {
386 /* DLC700JMG-T-4 */
387 .bus = 0,
388 .addr = 0,
389 .detect = NULL,
390 .enable = enable_lvds,
391 .pixfmt = IPU_PIX_FMT_LVDS666,
392 .mode = {
393 .name = "DLC700JMGT4",
394 .refresh = 60,
395 .xres = 1024, /* 1024x600active pixels */
396 .yres = 600,
397 .pixclock = 15385, /* 64MHz */
398 .left_margin = 220,
399 .right_margin = 40,
400 .upper_margin = 21,
401 .lower_margin = 7,
402 .hsync_len = 60,
403 .vsync_len = 10,
404 .sync = FB_SYNC_EXT,
405 .vmode = FB_VMODE_NONINTERLACED
406} }, {
407 /* DLC800FIG-T-3 */
408 .bus = 0,
409 .addr = 0,
410 .detect = NULL,
411 .enable = enable_lvds,
412 .pixfmt = IPU_PIX_FMT_LVDS666,
413 .mode = {
414 .name = "DLC800FIGT3",
415 .refresh = 60,
416 .xres = 1024, /* 1024x768 active pixels */
417 .yres = 768,
418 .pixclock = 15385, /* 64MHz */
419 .left_margin = 220,
420 .right_margin = 40,
421 .upper_margin = 21,
422 .lower_margin = 7,
423 .hsync_len = 60,
424 .vsync_len = 10,
425 .sync = FB_SYNC_EXT,
426 .vmode = FB_VMODE_NONINTERLACED
Tim Harveyc34e59e2019-02-04 13:10:51 -0800427} }, {
428 .bus = 2,
429 .addr = 0x5d,
430 .detect = detect_i2c,
431 .enable = enable_lvds,
432 .pixfmt = IPU_PIX_FMT_LVDS666,
433 .mode = {
434 .name = "Z101WX01",
435 .refresh = 60,
436 .xres = 1280,
437 .yres = 800,
438 .pixclock = 15385, /* 64MHz */
439 .left_margin = 220,
440 .right_margin = 40,
441 .upper_margin = 21,
442 .lower_margin = 7,
443 .hsync_len = 60,
444 .vsync_len = 10,
445 .sync = FB_SYNC_EXT,
446 .vmode = FB_VMODE_NONINTERLACED
447 }
448},
449};
Tim Harveyfb64cc72014-04-25 15:39:07 -0700450size_t display_count = ARRAY_SIZE(displays);
451
452static void setup_display(void)
453{
454 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
455 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
456 int reg;
457
458 enable_ipu_clock();
459 imx_setup_hdmi();
460 /* Turn on LDB0,IPU,IPU DI0 clocks */
461 reg = __raw_readl(&mxc_ccm->CCGR3);
462 reg |= MXC_CCM_CCGR3_LDB_DI0_MASK;
463 writel(reg, &mxc_ccm->CCGR3);
464
465 /* set LDB0, LDB1 clk select to 011/011 */
466 reg = readl(&mxc_ccm->cs2cdr);
467 reg &= ~(MXC_CCM_CS2CDR_LDB_DI0_CLK_SEL_MASK
468 |MXC_CCM_CS2CDR_LDB_DI1_CLK_SEL_MASK);
469 reg |= (3<<MXC_CCM_CS2CDR_LDB_DI0_CLK_SEL_OFFSET)
470 |(3<<MXC_CCM_CS2CDR_LDB_DI1_CLK_SEL_OFFSET);
471 writel(reg, &mxc_ccm->cs2cdr);
472
473 reg = readl(&mxc_ccm->cscmr2);
474 reg |= MXC_CCM_CSCMR2_LDB_DI0_IPU_DIV;
475 writel(reg, &mxc_ccm->cscmr2);
476
477 reg = readl(&mxc_ccm->chsccdr);
478 reg |= (CHSCCDR_CLK_SEL_LDB_DI0
479 <<MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_OFFSET);
480 writel(reg, &mxc_ccm->chsccdr);
481
482 reg = IOMUXC_GPR2_BGREF_RRMODE_EXTERNAL_RES
483 |IOMUXC_GPR2_DI1_VS_POLARITY_ACTIVE_HIGH
484 |IOMUXC_GPR2_DI0_VS_POLARITY_ACTIVE_LOW
485 |IOMUXC_GPR2_BIT_MAPPING_CH1_SPWG
486 |IOMUXC_GPR2_DATA_WIDTH_CH1_18BIT
487 |IOMUXC_GPR2_BIT_MAPPING_CH0_SPWG
488 |IOMUXC_GPR2_DATA_WIDTH_CH0_18BIT
489 |IOMUXC_GPR2_LVDS_CH1_MODE_DISABLED
490 |IOMUXC_GPR2_LVDS_CH0_MODE_ENABLED_DI0;
491 writel(reg, &iomux->gpr[2]);
492
493 reg = readl(&iomux->gpr[3]);
494 reg = (reg & ~IOMUXC_GPR3_LVDS0_MUX_CTL_MASK)
495 | (IOMUXC_GPR3_MUX_SRC_IPU1_DI0
496 <<IOMUXC_GPR3_LVDS0_MUX_CTL_OFFSET);
497 writel(reg, &iomux->gpr[3]);
498
Tim Harveya67e07f2016-05-24 11:03:53 -0700499 /* LVDS Backlight GPIO on LVDS connector - output low */
Tim Harvey26993362014-08-07 22:35:49 -0700500 SETUP_IOMUX_PAD(PAD_SD2_CLK__GPIO1_IO10 | DIO_PAD_CFG);
Tim Harveyfb64cc72014-04-25 15:39:07 -0700501 gpio_direction_output(IMX_GPIO_NR(1, 10), 0);
502}
503#endif /* CONFIG_VIDEO_IPUV3 */
504
Tim Harvey0dff16f2014-05-05 08:22:25 -0700505/* setup board specific PMIC */
506int power_init_board(void)
507{
Tim Harvey195bc972015-05-08 18:28:37 -0700508 setup_pmic();
Tim Harvey0dff16f2014-05-05 08:22:25 -0700509 return 0;
510}
511
Tim Harvey552c3582014-03-06 07:46:30 -0800512#if defined(CONFIG_CMD_PCI)
513int imx6_pcie_toggle_reset(void)
514{
515 if (board_type < GW_UNKNOWN) {
Tim Harvey02fb5922014-06-02 16:13:26 -0700516 uint pin = gpio_cfg[board_type].pcie_rst;
Tim Harveyf1f41db2015-05-08 18:28:28 -0700517 gpio_request(pin, "pci_rst#");
Tim Harvey02fb5922014-06-02 16:13:26 -0700518 gpio_direction_output(pin, 0);
Tim Harvey552c3582014-03-06 07:46:30 -0800519 mdelay(50);
Tim Harvey02fb5922014-06-02 16:13:26 -0700520 gpio_direction_output(pin, 1);
Tim Harvey552c3582014-03-06 07:46:30 -0800521 }
522 return 0;
523}
Tim Harvey33791d52014-08-07 22:49:57 -0700524
525/*
526 * Most Ventana boards have a PLX PEX860x PCIe switch onboard and use its
527 * GPIO's as PERST# signals for its downstream ports - configure the GPIO's
528 * properly and assert reset for 100ms.
529 */
Tim Harveybfb240a2016-06-17 06:10:41 -0700530#define MAX_PCI_DEVS 32
531struct pci_dev {
532 pci_dev_t devfn;
533 unsigned short vendor;
534 unsigned short device;
535 unsigned short class;
536 unsigned short busno; /* subbordinate busno */
537 struct pci_dev *ppar;
538};
539struct pci_dev pci_devs[MAX_PCI_DEVS];
540int pci_devno;
541int pci_bridgeno;
542
Tim Harvey33791d52014-08-07 22:49:57 -0700543void board_pci_fixup_dev(struct pci_controller *hose, pci_dev_t dev,
544 unsigned short vendor, unsigned short device,
545 unsigned short class)
546{
Tim Harveybfb240a2016-06-17 06:10:41 -0700547 int i;
Tim Harvey33791d52014-08-07 22:49:57 -0700548 u32 dw;
Tim Harveybfb240a2016-06-17 06:10:41 -0700549 struct pci_dev *pdev = &pci_devs[pci_devno++];
Tim Harvey33791d52014-08-07 22:49:57 -0700550
551 debug("%s: %02d:%02d.%02d: %04x:%04x\n", __func__,
552 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev), vendor, device);
Tim Harveybfb240a2016-06-17 06:10:41 -0700553
554 /* store array of devs for later use in device-tree fixup */
555 pdev->devfn = dev;
556 pdev->vendor = vendor;
557 pdev->device = device;
558 pdev->class = class;
559 pdev->ppar = NULL;
560 if (class == PCI_CLASS_BRIDGE_PCI)
561 pdev->busno = ++pci_bridgeno;
562 else
563 pdev->busno = 0;
564
565 /* fixup RC - it should be 00:00.0 not 00:01.0 */
566 if (PCI_BUS(dev) == 0)
567 pdev->devfn = 0;
568
569 /* find dev's parent */
570 for (i = 0; i < pci_devno; i++) {
571 if (pci_devs[i].busno == PCI_BUS(pdev->devfn)) {
572 pdev->ppar = &pci_devs[i];
573 break;
574 }
575 }
576
577 /* assert downstream PERST# */
Tim Harvey33791d52014-08-07 22:49:57 -0700578 if (vendor == PCI_VENDOR_ID_PLX &&
579 (device & 0xfff0) == 0x8600 &&
580 PCI_DEV(dev) == 0 && PCI_FUNC(dev) == 0) {
581 debug("configuring PLX 860X downstream PERST#\n");
582 pci_hose_read_config_dword(hose, dev, 0x62c, &dw);
583 dw |= 0xaaa8; /* GPIO1-7 outputs */
584 pci_hose_write_config_dword(hose, dev, 0x62c, dw);
585
586 pci_hose_read_config_dword(hose, dev, 0x644, &dw);
587 dw |= 0xfe; /* GPIO1-7 output high */
588 pci_hose_write_config_dword(hose, dev, 0x644, dw);
589
590 mdelay(100);
591 }
592}
Tim Harvey552c3582014-03-06 07:46:30 -0800593#endif /* CONFIG_CMD_PCI */
594
595#ifdef CONFIG_SERIAL_TAG
596/*
597 * called when setting up ATAGS before booting kernel
598 * populate serialnum from the following (in order of priority):
599 * serial# env var
600 * eeprom
601 */
602void get_board_serial(struct tag_serialnr *serialnr)
603{
Simon Glass64b723f2017-08-03 12:22:12 -0600604 char *serial = env_get("serial#");
Tim Harvey552c3582014-03-06 07:46:30 -0800605
606 if (serial) {
607 serialnr->high = 0;
608 serialnr->low = simple_strtoul(serial, NULL, 10);
609 } else if (ventana_info.model[0]) {
610 serialnr->high = 0;
611 serialnr->low = ventana_info.serial;
612 } else {
613 serialnr->high = 0;
614 serialnr->low = 0;
615 }
616}
617#endif
618
619/*
620 * Board Support
621 */
622
623int board_early_init_f(void)
624{
625 setup_iomux_uart();
Tim Harveyf1f41db2015-05-08 18:28:28 -0700626
Tim Harveyfb64cc72014-04-25 15:39:07 -0700627#if defined(CONFIG_VIDEO_IPUV3)
628 setup_display();
629#endif
Tim Harvey552c3582014-03-06 07:46:30 -0800630 return 0;
631}
632
633int dram_init(void)
634{
Tim Harveybfa2dae2014-06-02 16:13:27 -0700635 gd->ram_size = imx_ddr_size();
Tim Harvey552c3582014-03-06 07:46:30 -0800636 return 0;
637}
638
639int board_init(void)
640{
Fabio Estevamceb74c42014-07-09 17:59:54 -0300641 struct iomuxc *const iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR;
Tim Harvey552c3582014-03-06 07:46:30 -0800642
643 clrsetbits_le32(&iomuxc_regs->gpr[1],
644 IOMUXC_GPR1_OTG_ID_MASK,
645 IOMUXC_GPR1_OTG_ID_GPIO1);
646
647 /* address of linux boot parameters */
648 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
649
650#ifdef CONFIG_CMD_NAND
651 setup_gpmi_nand();
652#endif
653#ifdef CONFIG_MXC_SPI
654 setup_spi();
655#endif
Tim Harveyd04dc812019-02-04 13:10:49 -0800656 setup_ventana_i2c(0);
657 setup_ventana_i2c(1);
658 setup_ventana_i2c(2);
Tim Harvey552c3582014-03-06 07:46:30 -0800659
Simon Glassab3055a2017-06-14 21:28:25 -0600660#ifdef CONFIG_SATA
Tim Harvey552c3582014-03-06 07:46:30 -0800661 setup_sata();
662#endif
663 /* read Gateworks EEPROM into global struct (used later) */
Tim Harvey0da2c522014-08-07 22:35:45 -0700664 board_type = read_eeprom(CONFIG_I2C_GSC, &ventana_info);
Tim Harvey552c3582014-03-06 07:46:30 -0800665
Tim Harvey0cee2242015-05-08 18:28:35 -0700666 setup_iomux_gpio(board_type, &ventana_info);
Tim Harvey552c3582014-03-06 07:46:30 -0800667
668 return 0;
669}
670
671#if defined(CONFIG_DISPLAY_BOARDINFO_LATE)
672/*
673 * called during late init (after relocation and after board_init())
674 * by virtue of CONFIG_DISPLAY_BOARDINFO_LATE as we needed i2c initialized and
675 * EEPROM read.
676 */
677int checkboard(void)
678{
679 struct ventana_board_info *info = &ventana_info;
680 unsigned char buf[4];
681 const char *p;
682 int quiet; /* Quiet or minimal output mode */
683
684 quiet = 0;
Simon Glass64b723f2017-08-03 12:22:12 -0600685 p = env_get("quiet");
Tim Harvey552c3582014-03-06 07:46:30 -0800686 if (p)
687 quiet = simple_strtol(p, NULL, 10);
688 else
Simon Glass6a38e412017-08-03 12:22:09 -0600689 env_set("quiet", "0");
Tim Harvey552c3582014-03-06 07:46:30 -0800690
691 puts("\nGateworks Corporation Copyright 2014\n");
692 if (info->model[0]) {
693 printf("Model: %s\n", info->model);
694 printf("MFGDate: %02x-%02x-%02x%02x\n",
695 info->mfgdate[0], info->mfgdate[1],
696 info->mfgdate[2], info->mfgdate[3]);
697 printf("Serial:%d\n", info->serial);
698 } else {
699 puts("Invalid EEPROM - board will not function fully\n");
700 }
701 if (quiet)
702 return 0;
703
704 /* Display GSC firmware revision/CRC/status */
Tim Harvey92e3d842015-04-08 12:54:59 -0700705 gsc_info(0);
706
Tim Harvey552c3582014-03-06 07:46:30 -0800707 /* Display RTC */
708 if (!gsc_i2c_read(GSC_RTC_ADDR, 0x00, 1, buf, 4)) {
709 printf("RTC: %d\n",
710 buf[0] | buf[1]<<8 | buf[2]<<16 | buf[3]<<24);
711 }
712
713 return 0;
714}
715#endif
716
717#ifdef CONFIG_CMD_BMODE
718/*
719 * BOOT_CFG1, BOOT_CFG2, BOOT_CFG3, BOOT_CFG4
720 * see Table 8-11 and Table 5-9
721 * BOOT_CFG1[7] = 1 (boot from NAND)
722 * BOOT_CFG1[5] = 0 - raw NAND
723 * BOOT_CFG1[4] = 0 - default pad settings
724 * BOOT_CFG1[3:2] = 00 - devices = 1
725 * BOOT_CFG1[1:0] = 00 - Row Address Cycles = 3
726 * BOOT_CFG2[4:3] = 00 - Boot Search Count = 2
727 * BOOT_CFG2[2:1] = 01 - Pages In Block = 64
728 * BOOT_CFG2[0] = 0 - Reset time 12ms
729 */
730static const struct boot_mode board_boot_modes[] = {
731 /* NAND: 64pages per block, 3 row addr cycles, 2 copies of FCB/DBBT */
732 { "nand", MAKE_CFGVAL(0x80, 0x02, 0x00, 0x00) },
Tim Harvey659441b2017-03-17 07:31:02 -0700733 { "emmc2", MAKE_CFGVAL(0x60, 0x48, 0x00, 0x00) }, /* GW5600 */
Tim Harveya2d24c92019-02-04 13:10:50 -0800734 { "emmc3", MAKE_CFGVAL(0x60, 0x50, 0x00, 0x00) }, /* GW5903/4/5 */
Tim Harvey552c3582014-03-06 07:46:30 -0800735 { NULL, 0 },
736};
737#endif
738
739/* late init */
740int misc_init_r(void)
741{
742 struct ventana_board_info *info = &ventana_info;
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700743 char buf[256];
744 int i;
Tim Harvey552c3582014-03-06 07:46:30 -0800745
746 /* set env vars based on EEPROM data */
747 if (ventana_info.model[0]) {
748 char str[16], fdt[36];
749 char *p;
750 const char *cputype = "";
Tim Harvey552c3582014-03-06 07:46:30 -0800751
752 /*
753 * FDT name will be prefixed with CPU type. Three versions
754 * will be created each increasingly generic and bootloader
755 * env scripts will try loading each from most specific to
756 * least.
757 */
Tim Harveybfa2dae2014-06-02 16:13:27 -0700758 if (is_cpu_type(MXC_CPU_MX6Q) ||
759 is_cpu_type(MXC_CPU_MX6D))
Tim Harvey552c3582014-03-06 07:46:30 -0800760 cputype = "imx6q";
Tim Harveybfa2dae2014-06-02 16:13:27 -0700761 else if (is_cpu_type(MXC_CPU_MX6DL) ||
762 is_cpu_type(MXC_CPU_MX6SOLO))
Tim Harvey552c3582014-03-06 07:46:30 -0800763 cputype = "imx6dl";
Simon Glass6a38e412017-08-03 12:22:09 -0600764 env_set("soctype", cputype);
Tim Harvey06d87432014-08-07 22:35:41 -0700765 if (8 << (ventana_info.nand_flash_size-1) >= 2048)
Simon Glass6a38e412017-08-03 12:22:09 -0600766 env_set("flash_layout", "large");
Tim Harvey06d87432014-08-07 22:35:41 -0700767 else
Simon Glass6a38e412017-08-03 12:22:09 -0600768 env_set("flash_layout", "normal");
Tim Harvey552c3582014-03-06 07:46:30 -0800769 memset(str, 0, sizeof(str));
770 for (i = 0; i < (sizeof(str)-1) && info->model[i]; i++)
771 str[i] = tolower(info->model[i]);
Simon Glass6a38e412017-08-03 12:22:09 -0600772 env_set("model", str);
Simon Glass64b723f2017-08-03 12:22:12 -0600773 if (!env_get("fdt_file")) {
Tim Harvey552c3582014-03-06 07:46:30 -0800774 sprintf(fdt, "%s-%s.dtb", cputype, str);
Simon Glass6a38e412017-08-03 12:22:09 -0600775 env_set("fdt_file", fdt);
Tim Harvey552c3582014-03-06 07:46:30 -0800776 }
777 p = strchr(str, '-');
778 if (p) {
779 *p++ = 0;
780
Simon Glass6a38e412017-08-03 12:22:09 -0600781 env_set("model_base", str);
Tim Harveyf6db79a2015-05-26 11:04:56 -0700782 sprintf(fdt, "%s-%s.dtb", cputype, str);
Simon Glass6a38e412017-08-03 12:22:09 -0600783 env_set("fdt_file1", fdt);
Tim Harvey892068c2016-05-24 11:03:58 -0700784 if (board_type != GW551x &&
785 board_type != GW552x &&
Tim Harvey659441b2017-03-17 07:31:02 -0700786 board_type != GW553x &&
787 board_type != GW560x)
Tim Harvey50581832014-08-20 23:35:14 -0700788 str[4] = 'x';
Tim Harvey552c3582014-03-06 07:46:30 -0800789 str[5] = 'x';
790 str[6] = 0;
Tim Harveyf6db79a2015-05-26 11:04:56 -0700791 sprintf(fdt, "%s-%s.dtb", cputype, str);
Simon Glass6a38e412017-08-03 12:22:09 -0600792 env_set("fdt_file2", fdt);
Tim Harvey552c3582014-03-06 07:46:30 -0800793 }
794
795 /* initialize env from EEPROM */
796 if (test_bit(EECONFIG_ETH0, info->config) &&
Simon Glass64b723f2017-08-03 12:22:12 -0600797 !env_get("ethaddr")) {
Simon Glass8551d552017-08-03 12:22:11 -0600798 eth_env_set_enetaddr("ethaddr", info->mac0);
Tim Harvey552c3582014-03-06 07:46:30 -0800799 }
800 if (test_bit(EECONFIG_ETH1, info->config) &&
Simon Glass64b723f2017-08-03 12:22:12 -0600801 !env_get("eth1addr")) {
Simon Glass8551d552017-08-03 12:22:11 -0600802 eth_env_set_enetaddr("eth1addr", info->mac1);
Tim Harvey552c3582014-03-06 07:46:30 -0800803 }
804
805 /* board serial-number */
806 sprintf(str, "%6d", info->serial);
Simon Glass6a38e412017-08-03 12:22:09 -0600807 env_set("serial#", str);
Tim Harvey27770822015-04-08 12:54:51 -0700808
809 /* memory MB */
810 sprintf(str, "%d", (int) (gd->ram_size >> 20));
Simon Glass6a38e412017-08-03 12:22:09 -0600811 env_set("mem_mb", str);
Tim Harvey552c3582014-03-06 07:46:30 -0800812 }
813
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700814 /* Set a non-initialized hwconfig based on board configuration */
Simon Glass64b723f2017-08-03 12:22:12 -0600815 if (!strcmp(env_get("hwconfig"), "_UNKNOWN_")) {
Tim Harveyfd6f2392017-03-13 08:51:06 -0700816 buf[0] = 0;
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700817 if (gpio_cfg[board_type].rs232_en)
818 strcat(buf, "rs232;");
819 for (i = 0; i < gpio_cfg[board_type].dio_num; i++) {
820 char buf1[32];
821 sprintf(buf1, "dio%d:mode=gpio;", i);
822 if (strlen(buf) + strlen(buf1) < sizeof(buf))
823 strcat(buf, buf1);
824 }
Simon Glass6a38e412017-08-03 12:22:09 -0600825 env_set("hwconfig", buf);
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700826 }
Tim Harvey552c3582014-03-06 07:46:30 -0800827
Tim Harvey0cee2242015-05-08 18:28:35 -0700828 /* setup baseboard specific GPIO based on board and env */
829 setup_board_gpio(board_type, info);
Tim Harvey552c3582014-03-06 07:46:30 -0800830
831#ifdef CONFIG_CMD_BMODE
832 add_board_boot_modes(board_boot_modes);
833#endif
834
Tim Harvey40feabb2015-05-08 18:28:36 -0700835 /* disable boot watchdog */
836 gsc_boot_wd_disable();
Tim Harvey552c3582014-03-06 07:46:30 -0800837
838 return 0;
839}
840
Robert P. J. Day3c757002016-05-19 15:23:12 -0400841#ifdef CONFIG_OF_BOARD_SETUP
Tim Harvey552c3582014-03-06 07:46:30 -0800842
Tim Harveycf20e552015-04-08 12:55:01 -0700843static int ft_sethdmiinfmt(void *blob, char *mode)
844{
845 int off;
846
847 if (!mode)
848 return -EINVAL;
849
850 off = fdt_node_offset_by_compatible(blob, -1, "nxp,tda1997x");
851 if (off < 0)
852 return off;
853
854 if (0 == strcasecmp(mode, "yuv422bt656")) {
855 u8 cfg[] = { 0x00, 0x00, 0x00, 0x82, 0x81, 0x00,
856 0x00, 0x00, 0x00 };
857 mode = "422_ccir";
858 fdt_setprop(blob, off, "vidout_fmt", mode, strlen(mode) + 1);
859 fdt_setprop_u32(blob, off, "vidout_trc", 1);
860 fdt_setprop_u32(blob, off, "vidout_blc", 1);
861 fdt_setprop(blob, off, "vidout_portcfg", cfg, sizeof(cfg));
862 printf(" set HDMI input mode to %s\n", mode);
863 } else if (0 == strcasecmp(mode, "yuv422smp")) {
864 u8 cfg[] = { 0x00, 0x00, 0x00, 0x88, 0x87, 0x00,
865 0x82, 0x81, 0x00 };
866 mode = "422_smp";
867 fdt_setprop(blob, off, "vidout_fmt", mode, strlen(mode) + 1);
868 fdt_setprop_u32(blob, off, "vidout_trc", 0);
869 fdt_setprop_u32(blob, off, "vidout_blc", 0);
870 fdt_setprop(blob, off, "vidout_portcfg", cfg, sizeof(cfg));
871 printf(" set HDMI input mode to %s\n", mode);
872 } else {
873 return -EINVAL;
874 }
875
876 return 0;
877}
878
Tim Harvey8d2d8df2016-05-24 11:03:55 -0700879/* enable a property of a node if the node is found */
880static inline void ft_enable_path(void *blob, const char *path)
881{
882 int i = fdt_path_offset(blob, path);
883 if (i >= 0) {
884 debug("enabling %s\n", path);
885 fdt_status_okay(blob, i);
886 }
887}
888
Tim Harvey147b5762016-05-24 11:03:59 -0700889/* remove a property of a node if the node is found */
890static inline void ft_delprop_path(void *blob, const char *path,
891 const char *name)
892{
893 int i = fdt_path_offset(blob, path);
894 if (i) {
895 debug("removing %s/%s\n", path, name);
896 fdt_delprop(blob, i, name);
897 }
898}
Tim Harveybfb240a2016-06-17 06:10:41 -0700899
900#if defined(CONFIG_CMD_PCI)
901#define PCI_ID(x) ( \
902 (PCI_BUS(x->devfn)<<16)| \
903 (PCI_DEV(x->devfn)<<11)| \
904 (PCI_FUNC(x->devfn)<<8) \
905 )
906#define PCIE_PATH "/soc/pcie@0x01000000"
907int fdt_add_pci_node(void *blob, int par, struct pci_dev *dev)
908{
909 uint32_t reg[5];
910 char node[32];
911 int np;
912
913 sprintf(node, "pcie@%d,%d,%d", PCI_BUS(dev->devfn),
914 PCI_DEV(dev->devfn), PCI_FUNC(dev->devfn));
915
916 np = fdt_subnode_offset(blob, par, node);
917 if (np >= 0)
918 return np;
919 np = fdt_add_subnode(blob, par, node);
920 if (np < 0) {
921 printf(" %s failed: no space\n", __func__);
922 return np;
923 }
924
925 memset(reg, 0, sizeof(reg));
926 reg[0] = cpu_to_fdt32(PCI_ID(dev));
927 fdt_setprop(blob, np, "reg", reg, sizeof(reg));
928
929 return np;
930}
931
932/* build a path of nested PCI devs for all bridges passed through */
933int fdt_add_pci_path(void *blob, struct pci_dev *dev)
934{
935 struct pci_dev *bridges[MAX_PCI_DEVS];
936 int k, np;
937
938 /* build list of parents */
939 np = fdt_path_offset(blob, PCIE_PATH);
940 if (np < 0)
941 return np;
942
943 k = 0;
944 while (dev) {
945 bridges[k++] = dev;
946 dev = dev->ppar;
947 };
948
949 /* now add them the to DT in reverse order */
950 while (k--) {
951 np = fdt_add_pci_node(blob, np, bridges[k]);
952 if (np < 0)
953 break;
954 }
955
956 return np;
957}
958
959/*
960 * The GW16082 has a hardware errata errata such that it's
961 * INTA/B/C/D are mis-mapped to its four slots (slot12-15). Because
962 * of this normal PCI interrupt swizzling will not work so we will
963 * provide an irq-map via device-tree.
964 */
965int fdt_fixup_gw16082(void *blob, int np, struct pci_dev *dev)
966{
967 int len;
968 int host;
969 uint32_t imap_new[8*4*4];
970 const uint32_t *imap;
971 uint32_t irq[4];
972 uint32_t reg[4];
973 int i;
974
975 /* build irq-map based on host controllers map */
976 host = fdt_path_offset(blob, PCIE_PATH);
977 if (host < 0) {
978 printf(" %s failed: missing host\n", __func__);
979 return host;
980 }
981
982 /* use interrupt data from root complex's node */
983 imap = fdt_getprop(blob, host, "interrupt-map", &len);
984 if (!imap || len != 128) {
985 printf(" %s failed: invalid interrupt-map\n",
986 __func__);
987 return -FDT_ERR_NOTFOUND;
988 }
989
990 /* obtain irq's of host controller in pin order */
991 for (i = 0; i < 4; i++)
992 irq[(fdt32_to_cpu(imap[(i*8)+3])-1)%4] = imap[(i*8)+6];
993
994 /*
995 * determine number of swizzles necessary:
996 * For each bridge we pass through we need to swizzle
997 * the number of the slot we are on.
998 */
999 struct pci_dev *d;
1000 int b;
1001 b = 0;
1002 d = dev->ppar;
1003 while(d && d->ppar) {
1004 b += PCI_DEV(d->devfn);
1005 d = d->ppar;
1006 }
1007
1008 /* create new irq mappings for slots12-15
1009 * <skt> <idsel> <slot> <skt-inta> <skt-intb>
1010 * J3 AD28 12 INTD INTA
1011 * J4 AD29 13 INTC INTD
1012 * J5 AD30 14 INTB INTC
1013 * J2 AD31 15 INTA INTB
1014 */
1015 for (i = 0; i < 4; i++) {
1016 /* addr matches bus:dev:func */
1017 u32 addr = dev->busno << 16 | (12+i) << 11;
1018
1019 /* default cells from root complex */
1020 memcpy(&imap_new[i*32], imap, 128);
1021 /* first cell is PCI device address (BDF) */
1022 imap_new[(i*32)+(0*8)+0] = cpu_to_fdt32(addr);
1023 imap_new[(i*32)+(1*8)+0] = cpu_to_fdt32(addr);
1024 imap_new[(i*32)+(2*8)+0] = cpu_to_fdt32(addr);
1025 imap_new[(i*32)+(3*8)+0] = cpu_to_fdt32(addr);
1026 /* third cell is pin */
1027 imap_new[(i*32)+(0*8)+3] = cpu_to_fdt32(1);
1028 imap_new[(i*32)+(1*8)+3] = cpu_to_fdt32(2);
1029 imap_new[(i*32)+(2*8)+3] = cpu_to_fdt32(3);
1030 imap_new[(i*32)+(3*8)+3] = cpu_to_fdt32(4);
1031 /* sixth cell is relative interrupt */
1032 imap_new[(i*32)+(0*8)+6] = irq[(15-(12+i)+b+0)%4];
1033 imap_new[(i*32)+(1*8)+6] = irq[(15-(12+i)+b+1)%4];
1034 imap_new[(i*32)+(2*8)+6] = irq[(15-(12+i)+b+2)%4];
1035 imap_new[(i*32)+(3*8)+6] = irq[(15-(12+i)+b+3)%4];
1036 }
1037 fdt_setprop(blob, np, "interrupt-map", imap_new,
1038 sizeof(imap_new));
1039 reg[0] = cpu_to_fdt32(0xfff00);
1040 reg[1] = 0;
1041 reg[2] = 0;
1042 reg[3] = cpu_to_fdt32(0x7);
1043 fdt_setprop(blob, np, "interrupt-map-mask", reg, sizeof(reg));
1044 fdt_setprop_cell(blob, np, "#interrupt-cells", 1);
1045 fdt_setprop_string(blob, np, "device_type", "pci");
1046 fdt_setprop_cell(blob, np, "#address-cells", 3);
1047 fdt_setprop_cell(blob, np, "#size-cells", 2);
1048 printf(" Added custom interrupt-map for GW16082\n");
1049
1050 return 0;
1051}
1052
Tim Harvey77b82a12016-06-17 06:10:42 -07001053/* The sky2 GigE MAC obtains it's MAC addr from device-tree by default */
1054int fdt_fixup_sky2(void *blob, int np, struct pci_dev *dev)
1055{
1056 char *tmp, *end;
1057 char mac[16];
1058 unsigned char mac_addr[6];
1059 int j;
1060
1061 sprintf(mac, "eth1addr");
Simon Glass64b723f2017-08-03 12:22:12 -06001062 tmp = env_get(mac);
Tim Harvey77b82a12016-06-17 06:10:42 -07001063 if (tmp) {
1064 for (j = 0; j < 6; j++) {
1065 mac_addr[j] = tmp ?
1066 simple_strtoul(tmp, &end,16) : 0;
1067 if (tmp)
1068 tmp = (*end) ? end+1 : end;
1069 }
1070 fdt_setprop(blob, np, "local-mac-address", mac_addr,
1071 sizeof(mac_addr));
1072 printf(" Added mac addr for eth1\n");
1073 return 0;
1074 }
1075
1076 return -1;
1077}
1078
Tim Harveybfb240a2016-06-17 06:10:41 -07001079/*
1080 * PCI DT nodes must be nested therefore if we need to apply a DT fixup
1081 * we will walk the PCI bus and add bridge nodes up to the device receiving
1082 * the fixup.
1083 */
1084void ft_board_pci_fixup(void *blob, bd_t *bd)
1085{
1086 int i, np;
1087 struct pci_dev *dev;
1088
1089 for (i = 0; i < pci_devno; i++) {
1090 dev = &pci_devs[i];
1091
1092 /*
1093 * The GW16082 consists of a TI XIO2001 PCIe-to-PCI bridge and
1094 * an EEPROM at i2c1-0x50.
1095 */
1096 if ((dev->vendor == PCI_VENDOR_ID_TI) &&
1097 (dev->device == 0x8240) &&
1098 (i2c_set_bus_num(1) == 0) &&
1099 (i2c_probe(0x50) == 0))
1100 {
1101 np = fdt_add_pci_path(blob, dev);
1102 if (np > 0)
1103 fdt_fixup_gw16082(blob, np, dev);
1104 }
Tim Harvey77b82a12016-06-17 06:10:42 -07001105
1106 /* ethernet1 mac address */
1107 else if ((dev->vendor == PCI_VENDOR_ID_MARVELL) &&
1108 (dev->device == 0x4380))
1109 {
1110 np = fdt_add_pci_path(blob, dev);
1111 if (np > 0)
1112 fdt_fixup_sky2(blob, np, dev);
1113 }
Tim Harveybfb240a2016-06-17 06:10:41 -07001114 }
1115}
1116#endif /* if defined(CONFIG_CMD_PCI) */
Tim Harvey147b5762016-05-24 11:03:59 -07001117
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001118void ft_board_wdog_fixup(void *blob, const char *path)
1119{
1120 ft_delprop_path(blob, path, "ext-reset-output");
1121 ft_delprop_path(blob, path, "fsl,ext-reset-output");
1122}
1123
Tim Harvey552c3582014-03-06 07:46:30 -08001124/*
1125 * called prior to booting kernel or by 'fdt boardsetup' command
1126 *
1127 * unless 'fdt_noauto' env var is set we will update the following in the DTB:
1128 * - mtd partitions based on mtdparts/mtdids env
1129 * - system-serial (board serial num from EEPROM)
1130 * - board (full model from EEPROM)
1131 * - peripherals removed from DTB if not loaded on board (per EEPROM config)
1132 */
Tim Harveya1d32222016-07-15 07:16:28 -07001133#define UART1_PATH "/soc/aips-bus@02100000/serial@021ec000"
1134#define WDOG1_PATH "/soc/aips-bus@02000000/wdog@020bc000"
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001135#define WDOG2_PATH "/soc/aips-bus@02000000/wdog@020c0000"
Tim Harveya1d32222016-07-15 07:16:28 -07001136#define GPIO3_PATH "/soc/aips-bus@02000000/gpio@020a4000"
Simon Glass2aec3cc2014-10-23 18:58:47 -06001137int ft_board_setup(void *blob, bd_t *bd)
Tim Harvey552c3582014-03-06 07:46:30 -08001138{
Tim Harvey552c3582014-03-06 07:46:30 -08001139 struct ventana_board_info *info = &ventana_info;
Tim Harvey0da2c522014-08-07 22:35:45 -07001140 struct ventana_eeprom_config *cfg;
Masahiro Yamada20ead6f2018-07-19 16:28:23 +09001141 static const struct node_info nodes[] = {
Tim Harvey552c3582014-03-06 07:46:30 -08001142 { "sst,w25q256", MTD_DEV_TYPE_NOR, }, /* SPI flash */
1143 { "fsl,imx6q-gpmi-nand", MTD_DEV_TYPE_NAND, }, /* NAND flash */
1144 };
Simon Glass64b723f2017-08-03 12:22:12 -06001145 const char *model = env_get("model");
1146 const char *display = env_get("display");
Tim Harvey16e0eae2015-04-08 12:54:44 -07001147 int i;
1148 char rev = 0;
1149
1150 /* determine board revision */
1151 for (i = sizeof(ventana_info.model) - 1; i > 0; i--) {
1152 if (ventana_info.model[i] >= 'A') {
1153 rev = ventana_info.model[i];
1154 break;
1155 }
1156 }
Tim Harvey552c3582014-03-06 07:46:30 -08001157
Simon Glass64b723f2017-08-03 12:22:12 -06001158 if (env_get("fdt_noauto")) {
Tim Harvey552c3582014-03-06 07:46:30 -08001159 puts(" Skiping ft_board_setup (fdt_noauto defined)\n");
Simon Glass2aec3cc2014-10-23 18:58:47 -06001160 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -08001161 }
1162
Tim Harveyc9e43e02015-05-26 11:04:58 -07001163 if (test_bit(EECONFIG_NAND, info->config)) {
1164 /* Update partition nodes using info from mtdparts env var */
1165 puts(" Updating MTD partitions...\n");
1166 fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
1167 }
Tim Harvey552c3582014-03-06 07:46:30 -08001168
Tim Harveye4af5d32015-04-08 12:54:58 -07001169 /* Update display timings from display env var */
1170 if (display) {
1171 if (fdt_fixup_display(blob, fdt_get_alias(blob, "lvds0"),
1172 display) >= 0)
1173 printf(" Set display timings for %s...\n", display);
1174 }
1175
Tim Harvey552c3582014-03-06 07:46:30 -08001176 printf(" Adjusting FDT per EEPROM for %s...\n", model);
1177
1178 /* board serial number */
Simon Glass64b723f2017-08-03 12:22:12 -06001179 fdt_setprop(blob, 0, "system-serial", env_get("serial#"),
1180 strlen(env_get("serial#")) + 1);
Tim Harvey552c3582014-03-06 07:46:30 -08001181
1182 /* board (model contains model from device-tree) */
1183 fdt_setprop(blob, 0, "board", info->model,
1184 strlen((const char *)info->model) + 1);
1185
Tim Harveycf20e552015-04-08 12:55:01 -07001186 /* set desired digital video capture format */
Simon Glass64b723f2017-08-03 12:22:12 -06001187 ft_sethdmiinfmt(blob, env_get("hdmiinfmt"));
Tim Harveycf20e552015-04-08 12:55:01 -07001188
Tim Harvey552c3582014-03-06 07:46:30 -08001189 /*
Tim Harveya1d32222016-07-15 07:16:28 -07001190 * Board model specific fixups
Tim Harvey865dc9c2015-04-08 12:54:56 -07001191 */
Tim Harveya1d32222016-07-15 07:16:28 -07001192 switch (board_type) {
1193 case GW51xx:
1194 /*
1195 * disable wdog node for GW51xx-A/B to work around
1196 * errata causing wdog timer to be unreliable.
1197 */
1198 if (rev >= 'A' && rev < 'C') {
1199 i = fdt_path_offset(blob, WDOG1_PATH);
1200 if (i)
1201 fdt_status_disabled(blob, i);
1202 }
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001203
1204 /* GW51xx-E adds WDOG1_B external reset */
1205 if (rev < 'E')
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001206 ft_board_wdog_fixup(blob, WDOG1_PATH);
Tim Harveya1d32222016-07-15 07:16:28 -07001207 break;
Pushpal Sidhud1100562015-04-08 12:55:00 -07001208
Tim Harveya1d32222016-07-15 07:16:28 -07001209 case GW52xx:
1210 /* GW522x Uses GPIO3_IO23 instead of GPIO1_IO29 */
1211 if (info->model[4] == '2') {
1212 u32 handle = 0;
1213 u32 *range = NULL;
Pushpal Sidhud1100562015-04-08 12:55:00 -07001214
Tim Harveya1d32222016-07-15 07:16:28 -07001215 i = fdt_node_offset_by_compatible(blob, -1,
1216 "fsl,imx6q-pcie");
Pushpal Sidhud1100562015-04-08 12:55:00 -07001217 if (i)
Tim Harveya1d32222016-07-15 07:16:28 -07001218 range = (u32 *)fdt_getprop(blob, i,
1219 "reset-gpio", NULL);
1220
1221 if (range) {
1222 i = fdt_path_offset(blob, GPIO3_PATH);
1223 if (i)
1224 handle = fdt_get_phandle(blob, i);
1225 if (handle) {
1226 range[0] = cpu_to_fdt32(handle);
1227 range[1] = cpu_to_fdt32(23);
1228 }
Pushpal Sidhud1100562015-04-08 12:55:00 -07001229 }
Tim Harveya1d32222016-07-15 07:16:28 -07001230
1231 /* these have broken usd_vsel */
1232 if (strstr((const char *)info->model, "SP318-B") ||
1233 strstr((const char *)info->model, "SP331-B"))
1234 gpio_cfg[board_type].usd_vsel = 0;
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001235
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001236 /* GW522x-B adds WDOG1_B external reset */
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001237 ft_board_wdog_fixup(blob, WDOG1_PATH);
Pushpal Sidhud1100562015-04-08 12:55:00 -07001238 }
Tim Harveydc5996a2017-05-15 10:05:06 -07001239
1240 /* GW520x-E adds WDOG1_B external reset */
1241 else if (info->model[4] == '0' && rev < 'E')
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001242 ft_board_wdog_fixup(blob, WDOG1_PATH);
Tim Harveya1d32222016-07-15 07:16:28 -07001243 break;
Tim Harvey147b5762016-05-24 11:03:59 -07001244
Tim Harveya1d32222016-07-15 07:16:28 -07001245 case GW53xx:
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001246 /* GW53xx-E adds WDOG1_B external reset */
1247 if (rev < 'E')
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001248 ft_board_wdog_fixup(blob, WDOG1_PATH);
Tim Harveya1d32222016-07-15 07:16:28 -07001249 break;
Pushpal Sidhud1100562015-04-08 12:55:00 -07001250
Tim Harveya1d32222016-07-15 07:16:28 -07001251 case GW54xx:
1252 /*
1253 * disable serial2 node for GW54xx for compatibility with older
1254 * 3.10.x kernel that improperly had this node enabled in the DT
1255 */
1256 i = fdt_path_offset(blob, UART1_PATH);
Tim Harvey6944ccf2015-04-08 12:54:53 -07001257 if (i)
Tim Harveya1d32222016-07-15 07:16:28 -07001258 fdt_del_node(blob, i);
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001259
1260 /* GW54xx-E adds WDOG2_B external reset */
1261 if (rev < 'E')
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001262 ft_board_wdog_fixup(blob, WDOG2_PATH);
Tim Harveya1d32222016-07-15 07:16:28 -07001263 break;
1264
1265 case GW551x:
1266 /*
1267 * isolate CSI0_DATA_EN for GW551x-A to work around errata
1268 * causing non functional digital video in (it is not hooked up)
1269 */
1270 if (rev == 'A') {
1271 u32 *range = NULL;
1272 int len;
1273 const u32 *handle = NULL;
1274
1275 i = fdt_node_offset_by_compatible(blob, -1,
1276 "fsl,imx-tda1997x-video");
1277 if (i)
1278 handle = fdt_getprop(blob, i, "pinctrl-0",
1279 NULL);
1280 if (handle)
1281 i = fdt_node_offset_by_phandle(blob,
1282 fdt32_to_cpu(*handle));
1283 if (i)
1284 range = (u32 *)fdt_getprop(blob, i, "fsl,pins",
1285 &len);
1286 if (range) {
1287 len /= sizeof(u32);
1288 for (i = 0; i < len; i += 6) {
1289 u32 mux_reg = fdt32_to_cpu(range[i+0]);
1290 u32 conf_reg = fdt32_to_cpu(range[i+1]);
1291 /* mux PAD_CSI0_DATA_EN to GPIO */
1292 if (is_cpu_type(MXC_CPU_MX6Q) &&
1293 mux_reg == 0x260 &&
1294 conf_reg == 0x630)
1295 range[i+3] = cpu_to_fdt32(0x5);
1296 else if (!is_cpu_type(MXC_CPU_MX6Q) &&
1297 mux_reg == 0x08c &&
1298 conf_reg == 0x3a0)
1299 range[i+3] = cpu_to_fdt32(0x5);
1300 }
1301 fdt_setprop_inplace(blob, i, "fsl,pins", range,
1302 len);
Tim Harvey6944ccf2015-04-08 12:54:53 -07001303 }
Tim Harveydc8b5e62015-04-08 12:55:02 -07001304
Tim Harveya1d32222016-07-15 07:16:28 -07001305 /* set BT656 video format */
1306 ft_sethdmiinfmt(blob, "yuv422bt656");
1307 }
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001308
1309 /* GW551x-C adds WDOG1_B external reset */
1310 if (rev < 'C')
Tim Harveyfcabb0b2017-05-15 10:05:07 -07001311 ft_board_wdog_fixup(blob, WDOG1_PATH);
Tim Harveya1d32222016-07-15 07:16:28 -07001312 break;
Tim Harvey6944ccf2015-04-08 12:54:53 -07001313 }
1314
Tim Harvey8d2d8df2016-05-24 11:03:55 -07001315 /* Configure DIO */
Tim Harvey41595b52016-07-15 07:14:23 -07001316 for (i = 0; i < gpio_cfg[board_type].dio_num; i++) {
Tim Harvey8d2d8df2016-05-24 11:03:55 -07001317 struct dio_cfg *cfg = &gpio_cfg[board_type].dio_cfg[i];
1318 char arg[10];
1319
1320 sprintf(arg, "dio%d", i);
1321 if (!hwconfig(arg))
1322 continue;
1323 if (hwconfig_subarg_cmp(arg, "mode", "pwm") && cfg->pwm_param)
1324 {
1325 char path[48];
1326 sprintf(path, "/soc/aips-bus@02000000/pwm@%08x",
1327 0x02080000 + (0x4000 * (cfg->pwm_param - 1)));
1328 printf(" Enabling pwm%d for DIO%d\n",
1329 cfg->pwm_param, i);
1330 ft_enable_path(blob, path);
1331 }
1332 }
1333
Tim Harvey147b5762016-05-24 11:03:59 -07001334 /* remove no-1-8-v if UHS-I support is present */
1335 if (gpio_cfg[board_type].usd_vsel) {
1336 debug("Enabling UHS-I support\n");
1337 ft_delprop_path(blob, "/soc/aips-bus@02100000/usdhc@02198000",
1338 "no-1-8-v");
1339 }
1340
Tim Harveybfb240a2016-06-17 06:10:41 -07001341#if defined(CONFIG_CMD_PCI)
Simon Glass64b723f2017-08-03 12:22:12 -06001342 if (!env_get("nopcifixup"))
Tim Harveybfb240a2016-06-17 06:10:41 -07001343 ft_board_pci_fixup(blob, bd);
1344#endif
1345
Tim Harvey6944ccf2015-04-08 12:54:53 -07001346 /*
Tim Harvey552c3582014-03-06 07:46:30 -08001347 * Peripheral Config:
1348 * remove nodes by alias path if EEPROM config tells us the
1349 * peripheral is not loaded on the board.
1350 */
Simon Glass64b723f2017-08-03 12:22:12 -06001351 if (env_get("fdt_noconfig")) {
Tim Harvey0da2c522014-08-07 22:35:45 -07001352 puts(" Skiping periperhal config (fdt_noconfig defined)\n");
Simon Glass2aec3cc2014-10-23 18:58:47 -06001353 return 0;
Tim Harvey0da2c522014-08-07 22:35:45 -07001354 }
1355 cfg = econfig;
1356 while (cfg->name) {
1357 if (!test_bit(cfg->bit, info->config)) {
1358 fdt_del_node_and_alias(blob, cfg->dtalias ?
1359 cfg->dtalias : cfg->name);
1360 }
1361 cfg++;
Tim Harvey552c3582014-03-06 07:46:30 -08001362 }
Simon Glass2aec3cc2014-10-23 18:58:47 -06001363
1364 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -08001365}
Robert P. J. Day3c757002016-05-19 15:23:12 -04001366#endif /* CONFIG_OF_BOARD_SETUP */
Tim Harvey552c3582014-03-06 07:46:30 -08001367
Tim Harvey67ed7922015-05-08 18:28:29 -07001368static struct mxc_serial_platdata ventana_mxc_serial_plat = {
1369 .reg = (struct mxc_uart *)UART2_BASE,
1370};
1371
1372U_BOOT_DEVICE(ventana_serial) = {
1373 .name = "serial_mxc",
1374 .platdata = &ventana_mxc_serial_plat,
1375};