blob: 4a6b1dc461d2edd0da0eb27eae0ece3b81c9f359 [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/mx6-pins.h>
Tim Harveyfb64cc72014-04-25 15:39:07 -070012#include <asm/arch/mxc_hdmi.h>
Tim Harvey552c3582014-03-06 07:46:30 -080013#include <asm/arch/sys_proto.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Tim Harvey552c3582014-03-06 07:46:30 -080015#include <asm/gpio.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020016#include <asm/mach-imx/boot_mode.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020017#include <asm/mach-imx/video.h>
Simon Glassd9a766f2017-05-17 08:23:00 -060018#include <asm/setup.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060019#include <env.h>
Tim Harvey8d2d8df2016-05-24 11:03:55 -070020#include <hwconfig.h>
Tim Harvey0cee2242015-05-08 18:28:35 -070021#include <linux/ctype.h>
Tim Harvey552c3582014-03-06 07:46:30 -080022#include <miiphy.h>
Tim Harvey552c3582014-03-06 07:46:30 -080023#include <mtd_node.h>
Simon Glassdbd79542020-05-10 11:40:11 -060024#include <linux/delay.h>
Tim Harvey552c3582014-03-06 07:46:30 -080025#include <power/pmic.h>
Tim Harvey552c3582014-03-06 07:46:30 -080026#include <fdt_support.h>
27#include <jffs2/load_kernel.h>
Tim Harvey552c3582014-03-06 07:46:30 -080028
29#include "gsc.h"
Tim Harvey0cee2242015-05-08 18:28:35 -070030#include "common.h"
Tim Harvey552c3582014-03-06 07:46:30 -080031
32DECLARE_GLOBAL_DATA_PTR;
33
Tim Harvey26993362014-08-07 22:35:49 -070034
Tim Harvey552c3582014-03-06 07:46:30 -080035/*
36 * EEPROM board info struct populated by read_eeprom so that we only have to
37 * read it once.
38 */
Tim Harvey0da2c522014-08-07 22:35:45 -070039struct ventana_board_info ventana_info;
Tim Harvey8b92bdf2015-04-08 12:54:43 -070040static int board_type;
Tim Harvey552c3582014-03-06 07:46:30 -080041
Tim Harvey552c3582014-03-06 07:46:30 -080042#ifdef CONFIG_USB_EHCI_MX6
Tim Harvey1112b4e2021-03-01 14:33:34 -080043/* toggle USB_HUB_RST# for boards that have it; it is not defined in dt */
Tim Harvey552c3582014-03-06 07:46:30 -080044int board_ehci_hcd_init(int port)
45{
Tim Harveyf1f41db2015-05-08 18:28:28 -070046 int gpio;
Tim Harvey552c3582014-03-06 07:46:30 -080047
Tim Harvey1112b4e2021-03-01 14:33:34 -080048 /* USB HUB is always on P1 */
49 if (port == 0)
50 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -080051
Tim Harveydb7edfa2015-05-26 11:04:54 -070052 /* Reset USB HUB */
53 switch (board_type) {
54 case GW53xx:
55 case GW552x:
Tim Harveyb7c48a92019-02-04 13:10:54 -080056 case GW5906:
Tim Harveyf1f41db2015-05-08 18:28:28 -070057 gpio = (IMX_GPIO_NR(1, 9));
Tim Harvey552c3582014-03-06 07:46:30 -080058 break;
Tim Harveydb7edfa2015-05-26 11:04:54 -070059 case GW54proto:
60 case GW54xx:
Tim Harveyf1f41db2015-05-08 18:28:28 -070061 gpio = (IMX_GPIO_NR(1, 16));
Tim Harvey552c3582014-03-06 07:46:30 -080062 break;
Tim Harveyf1f41db2015-05-08 18:28:28 -070063 default:
64 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -080065 }
66
Tim Harveyf1f41db2015-05-08 18:28:28 -070067 /* request and toggle hub rst */
68 gpio_request(gpio, "usb_hub_rst#");
69 gpio_direction_output(gpio, 0);
70 mdelay(2);
71 gpio_set_value(gpio, 1);
72
Tim Harvey552c3582014-03-06 07:46:30 -080073 return 0;
74}
Tim Harvey552c3582014-03-06 07:46:30 -080075#endif /* CONFIG_USB_EHCI_MX6 */
76
Tim Harvey552c3582014-03-06 07:46:30 -080077/* configure eth0 PHY board-specific LED behavior */
78int board_phy_config(struct phy_device *phydev)
79{
80 unsigned short val;
81
82 /* Marvel 88E1510 */
83 if (phydev->phy_id == 0x1410dd1) {
84 /*
85 * Page 3, Register 16: LED[2:0] Function Control Register
86 * LED[0] (SPD:Amber) R16_3.3:0 to 0111: on-GbE link
87 * LED[1] (LNK:Green) R16_3.7:4 to 0001: on-link, blink-activity
88 */
89 phy_write(phydev, MDIO_DEVAD_NONE, 22, 3);
90 val = phy_read(phydev, MDIO_DEVAD_NONE, 16);
91 val &= 0xff00;
92 val |= 0x0017;
93 phy_write(phydev, MDIO_DEVAD_NONE, 16, val);
94 phy_write(phydev, MDIO_DEVAD_NONE, 22, 0);
95 }
96
Tim Harvey4533c902017-03-17 07:32:21 -070097 /* TI DP83867 */
98 else if (phydev->phy_id == 0x2000a231) {
99 /* configure register 0x170 for ref CLKOUT */
100 phy_write(phydev, MDIO_DEVAD_NONE, 13, 0x001f);
101 phy_write(phydev, MDIO_DEVAD_NONE, 14, 0x0170);
102 phy_write(phydev, MDIO_DEVAD_NONE, 13, 0x401f);
103 val = phy_read(phydev, MDIO_DEVAD_NONE, 14);
104 val &= ~0x1f00;
105 val |= 0x0b00; /* chD tx clock*/
106 phy_write(phydev, MDIO_DEVAD_NONE, 14, val);
107 }
108
Tim Harvey552c3582014-03-06 07:46:30 -0800109 if (phydev->drv->config)
110 phydev->drv->config(phydev);
111
112 return 0;
113}
Tim Harvey63537792017-03-17 07:30:38 -0700114
115#ifdef CONFIG_MV88E61XX_SWITCH
116int mv88e61xx_hw_reset(struct phy_device *phydev)
117{
118 struct mii_dev *bus = phydev->bus;
119
120 /* GPIO[0] output, CLK125 */
121 debug("enabling RGMII_REFCLK\n");
122 bus->write(bus, 0x1c /*MV_GLOBAL2*/, 0,
123 0x1a /*MV_SCRATCH_MISC*/,
124 (1 << 15) | (0x62 /*MV_GPIO_DIR*/ << 8) | 0xfe);
125 bus->write(bus, 0x1c /*MV_GLOBAL2*/, 0,
126 0x1a /*MV_SCRATCH_MISC*/,
127 (1 << 15) | (0x68 /*MV_GPIO01_CNTL*/ << 8) | 7);
128
129 /* RGMII delay - Physical Control register bit[15:14] */
130 debug("setting port%d RGMII rx/tx delay\n", CONFIG_MV88E61XX_CPU_PORT);
131 /* forced 1000mbps full-duplex link */
132 bus->write(bus, 0x10 + CONFIG_MV88E61XX_CPU_PORT, 0, 1, 0xc0fe);
133 phydev->autoneg = AUTONEG_DISABLE;
134 phydev->speed = SPEED_1000;
135 phydev->duplex = DUPLEX_FULL;
136
Tim Harvey8c9d3932019-02-04 13:10:47 -0800137 /* LED configuration: 7:4-green (8=Activity) 3:0 amber (8=Link) */
138 bus->write(bus, 0x10, 0, 0x16, 0x8088);
139 bus->write(bus, 0x11, 0, 0x16, 0x8088);
140 bus->write(bus, 0x12, 0, 0x16, 0x8088);
141 bus->write(bus, 0x13, 0, 0x16, 0x8088);
Tim Harvey63537792017-03-17 07:30:38 -0700142
143 return 0;
144}
145#endif // CONFIG_MV88E61XX_SWITCH
Tim Harvey552c3582014-03-06 07:46:30 -0800146
Tim Harveyfb64cc72014-04-25 15:39:07 -0700147#if defined(CONFIG_VIDEO_IPUV3)
Tim Harveyfb64cc72014-04-25 15:39:07 -0700148static void enable_hdmi(struct display_info_t const *dev)
149{
150 imx_enable_hdmi_phy();
151}
152
153static int detect_i2c(struct display_info_t const *dev)
154{
155 return i2c_set_bus_num(dev->bus) == 0 &&
156 i2c_probe(dev->addr) == 0;
157}
158
159static void enable_lvds(struct display_info_t const *dev)
160{
161 struct iomuxc *iomux = (struct iomuxc *)
162 IOMUXC_BASE_ADDR;
163
164 /* set CH0 data width to 24bit (IOMUXC_GPR2:5 0=18bit, 1=24bit) */
165 u32 reg = readl(&iomux->gpr[2]);
166 reg |= IOMUXC_GPR2_DATA_WIDTH_CH0_24BIT;
167 writel(reg, &iomux->gpr[2]);
168
169 /* Enable Backlight */
Tim Harveya67e07f2016-05-24 11:03:53 -0700170 gpio_request(IMX_GPIO_NR(1, 10), "bklt_gpio");
171 gpio_direction_output(IMX_GPIO_NR(1, 10), 0);
Tim Harveyf1f41db2015-05-08 18:28:28 -0700172 gpio_request(IMX_GPIO_NR(1, 18), "bklt_en");
Tim Harvey26993362014-08-07 22:35:49 -0700173 SETUP_IOMUX_PAD(PAD_SD1_CMD__GPIO1_IO18 | DIO_PAD_CFG);
Tim Harveyfb64cc72014-04-25 15:39:07 -0700174 gpio_direction_output(IMX_GPIO_NR(1, 18), 1);
175}
176
177struct display_info_t const displays[] = {{
178 /* HDMI Output */
179 .bus = -1,
180 .addr = 0,
181 .pixfmt = IPU_PIX_FMT_RGB24,
182 .detect = detect_hdmi,
183 .enable = enable_hdmi,
184 .mode = {
185 .name = "HDMI",
186 .refresh = 60,
187 .xres = 1024,
188 .yres = 768,
189 .pixclock = 15385,
190 .left_margin = 220,
191 .right_margin = 40,
192 .upper_margin = 21,
193 .lower_margin = 7,
194 .hsync_len = 60,
195 .vsync_len = 10,
196 .sync = FB_SYNC_EXT,
197 .vmode = FB_VMODE_NONINTERLACED
198} }, {
199 /* Freescale MXC-LVDS1: HannStar HSD100PXN1-A00 w/ egalx_ts cont */
200 .bus = 2,
201 .addr = 0x4,
202 .pixfmt = IPU_PIX_FMT_LVDS666,
203 .detect = detect_i2c,
204 .enable = enable_lvds,
205 .mode = {
206 .name = "Hannstar-XGA",
207 .refresh = 60,
208 .xres = 1024,
209 .yres = 768,
210 .pixclock = 15385,
211 .left_margin = 220,
212 .right_margin = 40,
213 .upper_margin = 21,
214 .lower_margin = 7,
215 .hsync_len = 60,
216 .vsync_len = 10,
217 .sync = FB_SYNC_EXT,
218 .vmode = FB_VMODE_NONINTERLACED
Tim Harveya20bd632015-04-08 12:54:57 -0700219} }, {
220 /* DLC700JMG-T-4 */
Tim Harveybe786e72019-02-04 13:10:53 -0800221 .bus = 2,
222 .addr = 0x38,
Tim Harveya20bd632015-04-08 12:54:57 -0700223 .detect = NULL,
224 .enable = enable_lvds,
225 .pixfmt = IPU_PIX_FMT_LVDS666,
226 .mode = {
227 .name = "DLC700JMGT4",
228 .refresh = 60,
229 .xres = 1024, /* 1024x600active pixels */
230 .yres = 600,
231 .pixclock = 15385, /* 64MHz */
232 .left_margin = 220,
233 .right_margin = 40,
234 .upper_margin = 21,
235 .lower_margin = 7,
236 .hsync_len = 60,
237 .vsync_len = 10,
238 .sync = FB_SYNC_EXT,
239 .vmode = FB_VMODE_NONINTERLACED
240} }, {
241 /* DLC800FIG-T-3 */
Tim Harveybe786e72019-02-04 13:10:53 -0800242 .bus = 2,
243 .addr = 0x14,
Tim Harveya20bd632015-04-08 12:54:57 -0700244 .detect = NULL,
245 .enable = enable_lvds,
246 .pixfmt = IPU_PIX_FMT_LVDS666,
247 .mode = {
248 .name = "DLC800FIGT3",
249 .refresh = 60,
250 .xres = 1024, /* 1024x768 active pixels */
251 .yres = 768,
252 .pixclock = 15385, /* 64MHz */
253 .left_margin = 220,
254 .right_margin = 40,
255 .upper_margin = 21,
256 .lower_margin = 7,
257 .hsync_len = 60,
258 .vsync_len = 10,
259 .sync = FB_SYNC_EXT,
260 .vmode = FB_VMODE_NONINTERLACED
Tim Harveyc34e59e2019-02-04 13:10:51 -0800261} }, {
262 .bus = 2,
263 .addr = 0x5d,
264 .detect = detect_i2c,
265 .enable = enable_lvds,
266 .pixfmt = IPU_PIX_FMT_LVDS666,
267 .mode = {
268 .name = "Z101WX01",
269 .refresh = 60,
270 .xres = 1280,
271 .yres = 800,
272 .pixclock = 15385, /* 64MHz */
273 .left_margin = 220,
274 .right_margin = 40,
275 .upper_margin = 21,
276 .lower_margin = 7,
277 .hsync_len = 60,
278 .vsync_len = 10,
279 .sync = FB_SYNC_EXT,
280 .vmode = FB_VMODE_NONINTERLACED
281 }
282},
283};
Tim Harveyfb64cc72014-04-25 15:39:07 -0700284size_t display_count = ARRAY_SIZE(displays);
285
286static void setup_display(void)
287{
288 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
289 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
290 int reg;
291
292 enable_ipu_clock();
293 imx_setup_hdmi();
294 /* Turn on LDB0,IPU,IPU DI0 clocks */
295 reg = __raw_readl(&mxc_ccm->CCGR3);
296 reg |= MXC_CCM_CCGR3_LDB_DI0_MASK;
297 writel(reg, &mxc_ccm->CCGR3);
298
299 /* set LDB0, LDB1 clk select to 011/011 */
300 reg = readl(&mxc_ccm->cs2cdr);
301 reg &= ~(MXC_CCM_CS2CDR_LDB_DI0_CLK_SEL_MASK
302 |MXC_CCM_CS2CDR_LDB_DI1_CLK_SEL_MASK);
303 reg |= (3<<MXC_CCM_CS2CDR_LDB_DI0_CLK_SEL_OFFSET)
304 |(3<<MXC_CCM_CS2CDR_LDB_DI1_CLK_SEL_OFFSET);
305 writel(reg, &mxc_ccm->cs2cdr);
306
307 reg = readl(&mxc_ccm->cscmr2);
308 reg |= MXC_CCM_CSCMR2_LDB_DI0_IPU_DIV;
309 writel(reg, &mxc_ccm->cscmr2);
310
311 reg = readl(&mxc_ccm->chsccdr);
312 reg |= (CHSCCDR_CLK_SEL_LDB_DI0
313 <<MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_OFFSET);
314 writel(reg, &mxc_ccm->chsccdr);
315
316 reg = IOMUXC_GPR2_BGREF_RRMODE_EXTERNAL_RES
317 |IOMUXC_GPR2_DI1_VS_POLARITY_ACTIVE_HIGH
318 |IOMUXC_GPR2_DI0_VS_POLARITY_ACTIVE_LOW
319 |IOMUXC_GPR2_BIT_MAPPING_CH1_SPWG
320 |IOMUXC_GPR2_DATA_WIDTH_CH1_18BIT
321 |IOMUXC_GPR2_BIT_MAPPING_CH0_SPWG
322 |IOMUXC_GPR2_DATA_WIDTH_CH0_18BIT
323 |IOMUXC_GPR2_LVDS_CH1_MODE_DISABLED
324 |IOMUXC_GPR2_LVDS_CH0_MODE_ENABLED_DI0;
325 writel(reg, &iomux->gpr[2]);
326
327 reg = readl(&iomux->gpr[3]);
328 reg = (reg & ~IOMUXC_GPR3_LVDS0_MUX_CTL_MASK)
329 | (IOMUXC_GPR3_MUX_SRC_IPU1_DI0
330 <<IOMUXC_GPR3_LVDS0_MUX_CTL_OFFSET);
331 writel(reg, &iomux->gpr[3]);
332
Tim Harveya67e07f2016-05-24 11:03:53 -0700333 /* LVDS Backlight GPIO on LVDS connector - output low */
Tim Harvey26993362014-08-07 22:35:49 -0700334 SETUP_IOMUX_PAD(PAD_SD2_CLK__GPIO1_IO10 | DIO_PAD_CFG);
Tim Harveyfb64cc72014-04-25 15:39:07 -0700335 gpio_direction_output(IMX_GPIO_NR(1, 10), 0);
336}
337#endif /* CONFIG_VIDEO_IPUV3 */
338
Tim Harvey0dff16f2014-05-05 08:22:25 -0700339/* setup board specific PMIC */
340int power_init_board(void)
341{
Tim Harvey195bc972015-05-08 18:28:37 -0700342 setup_pmic();
Tim Harvey0dff16f2014-05-05 08:22:25 -0700343 return 0;
344}
345
Tim Harvey552c3582014-03-06 07:46:30 -0800346int imx6_pcie_toggle_reset(void)
347{
348 if (board_type < GW_UNKNOWN) {
Tim Harvey02fb5922014-06-02 16:13:26 -0700349 uint pin = gpio_cfg[board_type].pcie_rst;
Tim Harveyf1f41db2015-05-08 18:28:28 -0700350 gpio_request(pin, "pci_rst#");
Tim Harvey02fb5922014-06-02 16:13:26 -0700351 gpio_direction_output(pin, 0);
Tim Harvey552c3582014-03-06 07:46:30 -0800352 mdelay(50);
Tim Harvey02fb5922014-06-02 16:13:26 -0700353 gpio_direction_output(pin, 1);
Tim Harvey552c3582014-03-06 07:46:30 -0800354 }
355 return 0;
356}
Tim Harvey33791d52014-08-07 22:49:57 -0700357
358/*
359 * Most Ventana boards have a PLX PEX860x PCIe switch onboard and use its
360 * GPIO's as PERST# signals for its downstream ports - configure the GPIO's
361 * properly and assert reset for 100ms.
362 */
Tim Harveybfb240a2016-06-17 06:10:41 -0700363#define MAX_PCI_DEVS 32
364struct pci_dev {
365 pci_dev_t devfn;
Tim Harvey6ce10d52021-05-03 11:21:27 -0700366 struct udevice *dev;
Tim Harveybfb240a2016-06-17 06:10:41 -0700367 unsigned short vendor;
368 unsigned short device;
369 unsigned short class;
370 unsigned short busno; /* subbordinate busno */
371 struct pci_dev *ppar;
372};
373struct pci_dev pci_devs[MAX_PCI_DEVS];
374int pci_devno;
375int pci_bridgeno;
376
Tim Harvey6ce10d52021-05-03 11:21:27 -0700377void board_pci_fixup_dev(struct udevice *bus, struct udevice *udev)
Tim Harvey33791d52014-08-07 22:49:57 -0700378{
Tim Harvey6ce10d52021-05-03 11:21:27 -0700379 struct pci_child_plat *pdata = dev_get_parent_plat(udev);
Tim Harveybfb240a2016-06-17 06:10:41 -0700380 struct pci_dev *pdev = &pci_devs[pci_devno++];
Tim Harvey6ce10d52021-05-03 11:21:27 -0700381 unsigned short vendor = pdata->vendor;
382 unsigned short device = pdata->device;
383 unsigned int class = pdata->class;
384 pci_dev_t dev = dm_pci_get_bdf(udev);
385 int i;
Tim Harvey33791d52014-08-07 22:49:57 -0700386
387 debug("%s: %02d:%02d.%02d: %04x:%04x\n", __func__,
388 PCI_BUS(dev), PCI_DEV(dev), PCI_FUNC(dev), vendor, device);
Tim Harveybfb240a2016-06-17 06:10:41 -0700389
390 /* store array of devs for later use in device-tree fixup */
Tim Harvey6ce10d52021-05-03 11:21:27 -0700391 pdev->dev = udev;
Tim Harveybfb240a2016-06-17 06:10:41 -0700392 pdev->devfn = dev;
393 pdev->vendor = vendor;
394 pdev->device = device;
395 pdev->class = class;
396 pdev->ppar = NULL;
397 if (class == PCI_CLASS_BRIDGE_PCI)
398 pdev->busno = ++pci_bridgeno;
399 else
400 pdev->busno = 0;
401
402 /* fixup RC - it should be 00:00.0 not 00:01.0 */
403 if (PCI_BUS(dev) == 0)
404 pdev->devfn = 0;
405
406 /* find dev's parent */
407 for (i = 0; i < pci_devno; i++) {
408 if (pci_devs[i].busno == PCI_BUS(pdev->devfn)) {
409 pdev->ppar = &pci_devs[i];
410 break;
411 }
412 }
413
414 /* assert downstream PERST# */
Tim Harvey33791d52014-08-07 22:49:57 -0700415 if (vendor == PCI_VENDOR_ID_PLX &&
416 (device & 0xfff0) == 0x8600 &&
417 PCI_DEV(dev) == 0 && PCI_FUNC(dev) == 0) {
Tim Harvey6ce10d52021-05-03 11:21:27 -0700418 ulong val;
Tim Harvey33791d52014-08-07 22:49:57 -0700419 debug("configuring PLX 860X downstream PERST#\n");
Tim Harvey6ce10d52021-05-03 11:21:27 -0700420 pci_bus_read_config(bus, dev, 0x62c, &val, PCI_SIZE_32);
421 val |= 0xaaa8; /* GPIO1-7 outputs */
422 pci_bus_write_config(bus, dev, 0x62c, val, PCI_SIZE_32);
Tim Harvey33791d52014-08-07 22:49:57 -0700423
Tim Harvey6ce10d52021-05-03 11:21:27 -0700424 pci_bus_read_config(bus, dev, 0x644, &val, PCI_SIZE_32);
425 val |= 0xfe; /* GPIO1-7 output high */
426 pci_bus_write_config(bus, dev, 0x644, val, PCI_SIZE_32);
Tim Harvey33791d52014-08-07 22:49:57 -0700427
428 mdelay(100);
429 }
430}
Tim Harvey552c3582014-03-06 07:46:30 -0800431
432#ifdef CONFIG_SERIAL_TAG
433/*
434 * called when setting up ATAGS before booting kernel
435 * populate serialnum from the following (in order of priority):
436 * serial# env var
437 * eeprom
438 */
439void get_board_serial(struct tag_serialnr *serialnr)
440{
Simon Glass64b723f2017-08-03 12:22:12 -0600441 char *serial = env_get("serial#");
Tim Harvey552c3582014-03-06 07:46:30 -0800442
443 if (serial) {
444 serialnr->high = 0;
445 serialnr->low = simple_strtoul(serial, NULL, 10);
446 } else if (ventana_info.model[0]) {
447 serialnr->high = 0;
448 serialnr->low = ventana_info.serial;
449 } else {
450 serialnr->high = 0;
451 serialnr->low = 0;
452 }
453}
454#endif
455
456/*
457 * Board Support
458 */
459
460int board_early_init_f(void)
461{
Tim Harveyfb64cc72014-04-25 15:39:07 -0700462#if defined(CONFIG_VIDEO_IPUV3)
463 setup_display();
464#endif
Tim Harvey552c3582014-03-06 07:46:30 -0800465 return 0;
466}
467
468int dram_init(void)
469{
Tim Harveybfa2dae2014-06-02 16:13:27 -0700470 gd->ram_size = imx_ddr_size();
Tim Harvey552c3582014-03-06 07:46:30 -0800471 return 0;
472}
473
474int board_init(void)
475{
Fabio Estevamceb74c42014-07-09 17:59:54 -0300476 struct iomuxc *const iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR;
Tim Harvey552c3582014-03-06 07:46:30 -0800477
478 clrsetbits_le32(&iomuxc_regs->gpr[1],
479 IOMUXC_GPR1_OTG_ID_MASK,
480 IOMUXC_GPR1_OTG_ID_GPIO1);
481
482 /* address of linux boot parameters */
483 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
484
Tim Harveyba9f2342019-02-04 13:10:52 -0800485 /* read Gateworks EEPROM into global struct (used later) */
486 setup_ventana_i2c(0);
487 board_type = read_eeprom(CONFIG_I2C_GSC, &ventana_info);
488
Tim Harveyd04dc812019-02-04 13:10:49 -0800489 setup_ventana_i2c(1);
490 setup_ventana_i2c(2);
Tim Harvey552c3582014-03-06 07:46:30 -0800491
Tim Harvey0cee2242015-05-08 18:28:35 -0700492 setup_iomux_gpio(board_type, &ventana_info);
Tim Harvey552c3582014-03-06 07:46:30 -0800493
494 return 0;
495}
496
Tim Harvey948202c2021-03-01 14:33:32 -0800497int board_fit_config_name_match(const char *name)
498{
499 static char init;
500 const char *dtb;
501 char buf[32];
502 int i = 0;
503
504 do {
505 dtb = gsc_get_dtb_name(i++, buf, sizeof(buf));
506 if (dtb && !strcmp(dtb, name)) {
507 if (!init++)
508 printf("DTB: %s\n", name);
509 return 0;
510 }
511 } while (dtb);
512
513 return -1;
514}
515
Tim Harvey552c3582014-03-06 07:46:30 -0800516#if defined(CONFIG_DISPLAY_BOARDINFO_LATE)
517/*
518 * called during late init (after relocation and after board_init())
519 * by virtue of CONFIG_DISPLAY_BOARDINFO_LATE as we needed i2c initialized and
520 * EEPROM read.
521 */
522int checkboard(void)
523{
524 struct ventana_board_info *info = &ventana_info;
525 unsigned char buf[4];
526 const char *p;
527 int quiet; /* Quiet or minimal output mode */
528
529 quiet = 0;
Simon Glass64b723f2017-08-03 12:22:12 -0600530 p = env_get("quiet");
Tim Harvey552c3582014-03-06 07:46:30 -0800531 if (p)
532 quiet = simple_strtol(p, NULL, 10);
533 else
Simon Glass6a38e412017-08-03 12:22:09 -0600534 env_set("quiet", "0");
Tim Harvey552c3582014-03-06 07:46:30 -0800535
536 puts("\nGateworks Corporation Copyright 2014\n");
537 if (info->model[0]) {
538 printf("Model: %s\n", info->model);
539 printf("MFGDate: %02x-%02x-%02x%02x\n",
540 info->mfgdate[0], info->mfgdate[1],
541 info->mfgdate[2], info->mfgdate[3]);
542 printf("Serial:%d\n", info->serial);
543 } else {
544 puts("Invalid EEPROM - board will not function fully\n");
545 }
546 if (quiet)
547 return 0;
548
549 /* Display GSC firmware revision/CRC/status */
Tim Harvey92e3d842015-04-08 12:54:59 -0700550 gsc_info(0);
551
Tim Harvey552c3582014-03-06 07:46:30 -0800552 /* Display RTC */
553 if (!gsc_i2c_read(GSC_RTC_ADDR, 0x00, 1, buf, 4)) {
554 printf("RTC: %d\n",
555 buf[0] | buf[1]<<8 | buf[2]<<16 | buf[3]<<24);
556 }
557
558 return 0;
559}
560#endif
561
562#ifdef CONFIG_CMD_BMODE
563/*
564 * BOOT_CFG1, BOOT_CFG2, BOOT_CFG3, BOOT_CFG4
565 * see Table 8-11 and Table 5-9
566 * BOOT_CFG1[7] = 1 (boot from NAND)
567 * BOOT_CFG1[5] = 0 - raw NAND
568 * BOOT_CFG1[4] = 0 - default pad settings
569 * BOOT_CFG1[3:2] = 00 - devices = 1
570 * BOOT_CFG1[1:0] = 00 - Row Address Cycles = 3
571 * BOOT_CFG2[4:3] = 00 - Boot Search Count = 2
572 * BOOT_CFG2[2:1] = 01 - Pages In Block = 64
573 * BOOT_CFG2[0] = 0 - Reset time 12ms
574 */
575static const struct boot_mode board_boot_modes[] = {
576 /* NAND: 64pages per block, 3 row addr cycles, 2 copies of FCB/DBBT */
577 { "nand", MAKE_CFGVAL(0x80, 0x02, 0x00, 0x00) },
Tim Harvey659441b2017-03-17 07:31:02 -0700578 { "emmc2", MAKE_CFGVAL(0x60, 0x48, 0x00, 0x00) }, /* GW5600 */
Tim Harveya2d24c92019-02-04 13:10:50 -0800579 { "emmc3", MAKE_CFGVAL(0x60, 0x50, 0x00, 0x00) }, /* GW5903/4/5 */
Tim Harvey552c3582014-03-06 07:46:30 -0800580 { NULL, 0 },
581};
582#endif
583
584/* late init */
585int misc_init_r(void)
586{
587 struct ventana_board_info *info = &ventana_info;
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700588 char buf[256];
589 int i;
Tim Harvey552c3582014-03-06 07:46:30 -0800590
591 /* set env vars based on EEPROM data */
592 if (ventana_info.model[0]) {
593 char str[16], fdt[36];
594 char *p;
595 const char *cputype = "";
Tim Harvey552c3582014-03-06 07:46:30 -0800596
597 /*
598 * FDT name will be prefixed with CPU type. Three versions
599 * will be created each increasingly generic and bootloader
600 * env scripts will try loading each from most specific to
601 * least.
602 */
Tim Harveybfa2dae2014-06-02 16:13:27 -0700603 if (is_cpu_type(MXC_CPU_MX6Q) ||
604 is_cpu_type(MXC_CPU_MX6D))
Tim Harvey552c3582014-03-06 07:46:30 -0800605 cputype = "imx6q";
Tim Harveybfa2dae2014-06-02 16:13:27 -0700606 else if (is_cpu_type(MXC_CPU_MX6DL) ||
607 is_cpu_type(MXC_CPU_MX6SOLO))
Tim Harvey552c3582014-03-06 07:46:30 -0800608 cputype = "imx6dl";
Simon Glass6a38e412017-08-03 12:22:09 -0600609 env_set("soctype", cputype);
Tim Harvey06d87432014-08-07 22:35:41 -0700610 if (8 << (ventana_info.nand_flash_size-1) >= 2048)
Simon Glass6a38e412017-08-03 12:22:09 -0600611 env_set("flash_layout", "large");
Tim Harvey06d87432014-08-07 22:35:41 -0700612 else
Simon Glass6a38e412017-08-03 12:22:09 -0600613 env_set("flash_layout", "normal");
Tim Harvey552c3582014-03-06 07:46:30 -0800614 memset(str, 0, sizeof(str));
615 for (i = 0; i < (sizeof(str)-1) && info->model[i]; i++)
616 str[i] = tolower(info->model[i]);
Simon Glass6a38e412017-08-03 12:22:09 -0600617 env_set("model", str);
Simon Glass64b723f2017-08-03 12:22:12 -0600618 if (!env_get("fdt_file")) {
Tim Harvey552c3582014-03-06 07:46:30 -0800619 sprintf(fdt, "%s-%s.dtb", cputype, str);
Simon Glass6a38e412017-08-03 12:22:09 -0600620 env_set("fdt_file", fdt);
Tim Harvey552c3582014-03-06 07:46:30 -0800621 }
622 p = strchr(str, '-');
623 if (p) {
624 *p++ = 0;
625
Simon Glass6a38e412017-08-03 12:22:09 -0600626 env_set("model_base", str);
Tim Harveyf6db79a2015-05-26 11:04:56 -0700627 sprintf(fdt, "%s-%s.dtb", cputype, str);
Simon Glass6a38e412017-08-03 12:22:09 -0600628 env_set("fdt_file1", fdt);
Tim Harvey892068c2016-05-24 11:03:58 -0700629 if (board_type != GW551x &&
630 board_type != GW552x &&
Tim Harvey659441b2017-03-17 07:31:02 -0700631 board_type != GW553x &&
632 board_type != GW560x)
Tim Harvey50581832014-08-20 23:35:14 -0700633 str[4] = 'x';
Tim Harvey552c3582014-03-06 07:46:30 -0800634 str[5] = 'x';
635 str[6] = 0;
Tim Harveyf6db79a2015-05-26 11:04:56 -0700636 sprintf(fdt, "%s-%s.dtb", cputype, str);
Simon Glass6a38e412017-08-03 12:22:09 -0600637 env_set("fdt_file2", fdt);
Tim Harvey552c3582014-03-06 07:46:30 -0800638 }
639
640 /* initialize env from EEPROM */
641 if (test_bit(EECONFIG_ETH0, info->config) &&
Simon Glass64b723f2017-08-03 12:22:12 -0600642 !env_get("ethaddr")) {
Simon Glass8551d552017-08-03 12:22:11 -0600643 eth_env_set_enetaddr("ethaddr", info->mac0);
Tim Harvey552c3582014-03-06 07:46:30 -0800644 }
645 if (test_bit(EECONFIG_ETH1, info->config) &&
Simon Glass64b723f2017-08-03 12:22:12 -0600646 !env_get("eth1addr")) {
Simon Glass8551d552017-08-03 12:22:11 -0600647 eth_env_set_enetaddr("eth1addr", info->mac1);
Tim Harvey552c3582014-03-06 07:46:30 -0800648 }
649
650 /* board serial-number */
651 sprintf(str, "%6d", info->serial);
Simon Glass6a38e412017-08-03 12:22:09 -0600652 env_set("serial#", str);
Tim Harvey27770822015-04-08 12:54:51 -0700653
654 /* memory MB */
655 sprintf(str, "%d", (int) (gd->ram_size >> 20));
Simon Glass6a38e412017-08-03 12:22:09 -0600656 env_set("mem_mb", str);
Tim Harvey552c3582014-03-06 07:46:30 -0800657 }
658
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700659 /* Set a non-initialized hwconfig based on board configuration */
Simon Glass64b723f2017-08-03 12:22:12 -0600660 if (!strcmp(env_get("hwconfig"), "_UNKNOWN_")) {
Tim Harveyfd6f2392017-03-13 08:51:06 -0700661 buf[0] = 0;
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700662 if (gpio_cfg[board_type].rs232_en)
663 strcat(buf, "rs232;");
664 for (i = 0; i < gpio_cfg[board_type].dio_num; i++) {
665 char buf1[32];
666 sprintf(buf1, "dio%d:mode=gpio;", i);
667 if (strlen(buf) + strlen(buf1) < sizeof(buf))
668 strcat(buf, buf1);
669 }
Simon Glass6a38e412017-08-03 12:22:09 -0600670 env_set("hwconfig", buf);
Tim Harvey71dbb2c2016-07-15 07:14:25 -0700671 }
Tim Harvey552c3582014-03-06 07:46:30 -0800672
Tim Harvey0cee2242015-05-08 18:28:35 -0700673 /* setup baseboard specific GPIO based on board and env */
674 setup_board_gpio(board_type, info);
Tim Harvey552c3582014-03-06 07:46:30 -0800675
676#ifdef CONFIG_CMD_BMODE
677 add_board_boot_modes(board_boot_modes);
678#endif
679
Tim Harvey40feabb2015-05-08 18:28:36 -0700680 /* disable boot watchdog */
681 gsc_boot_wd_disable();
Tim Harvey552c3582014-03-06 07:46:30 -0800682
683 return 0;
684}
685
Robert P. J. Day3c757002016-05-19 15:23:12 -0400686#ifdef CONFIG_OF_BOARD_SETUP
Tim Harvey552c3582014-03-06 07:46:30 -0800687
Tim Harveycf20e552015-04-08 12:55:01 -0700688static int ft_sethdmiinfmt(void *blob, char *mode)
689{
690 int off;
691
692 if (!mode)
693 return -EINVAL;
694
695 off = fdt_node_offset_by_compatible(blob, -1, "nxp,tda1997x");
696 if (off < 0)
697 return off;
698
699 if (0 == strcasecmp(mode, "yuv422bt656")) {
700 u8 cfg[] = { 0x00, 0x00, 0x00, 0x82, 0x81, 0x00,
701 0x00, 0x00, 0x00 };
702 mode = "422_ccir";
703 fdt_setprop(blob, off, "vidout_fmt", mode, strlen(mode) + 1);
704 fdt_setprop_u32(blob, off, "vidout_trc", 1);
705 fdt_setprop_u32(blob, off, "vidout_blc", 1);
706 fdt_setprop(blob, off, "vidout_portcfg", cfg, sizeof(cfg));
707 printf(" set HDMI input mode to %s\n", mode);
708 } else if (0 == strcasecmp(mode, "yuv422smp")) {
709 u8 cfg[] = { 0x00, 0x00, 0x00, 0x88, 0x87, 0x00,
710 0x82, 0x81, 0x00 };
711 mode = "422_smp";
712 fdt_setprop(blob, off, "vidout_fmt", mode, strlen(mode) + 1);
713 fdt_setprop_u32(blob, off, "vidout_trc", 0);
714 fdt_setprop_u32(blob, off, "vidout_blc", 0);
715 fdt_setprop(blob, off, "vidout_portcfg", cfg, sizeof(cfg));
716 printf(" set HDMI input mode to %s\n", mode);
717 } else {
718 return -EINVAL;
719 }
720
721 return 0;
722}
723
Tim Harveybfb240a2016-06-17 06:10:41 -0700724#if defined(CONFIG_CMD_PCI)
725#define PCI_ID(x) ( \
726 (PCI_BUS(x->devfn)<<16)| \
727 (PCI_DEV(x->devfn)<<11)| \
728 (PCI_FUNC(x->devfn)<<8) \
729 )
Tim Harveybfb240a2016-06-17 06:10:41 -0700730int fdt_add_pci_node(void *blob, int par, struct pci_dev *dev)
731{
732 uint32_t reg[5];
733 char node[32];
734 int np;
735
736 sprintf(node, "pcie@%d,%d,%d", PCI_BUS(dev->devfn),
737 PCI_DEV(dev->devfn), PCI_FUNC(dev->devfn));
738
739 np = fdt_subnode_offset(blob, par, node);
740 if (np >= 0)
741 return np;
742 np = fdt_add_subnode(blob, par, node);
743 if (np < 0) {
744 printf(" %s failed: no space\n", __func__);
745 return np;
746 }
747
748 memset(reg, 0, sizeof(reg));
749 reg[0] = cpu_to_fdt32(PCI_ID(dev));
750 fdt_setprop(blob, np, "reg", reg, sizeof(reg));
751
752 return np;
753}
754
755/* build a path of nested PCI devs for all bridges passed through */
756int fdt_add_pci_path(void *blob, struct pci_dev *dev)
757{
758 struct pci_dev *bridges[MAX_PCI_DEVS];
759 int k, np;
760
761 /* build list of parents */
Tim Harvey984aa0d2019-02-04 13:11:00 -0800762 np = fdt_node_offset_by_compatible(blob, -1, "fsl,imx6q-pcie");
Tim Harveybfb240a2016-06-17 06:10:41 -0700763 if (np < 0)
764 return np;
765
766 k = 0;
767 while (dev) {
768 bridges[k++] = dev;
769 dev = dev->ppar;
770 };
771
772 /* now add them the to DT in reverse order */
773 while (k--) {
774 np = fdt_add_pci_node(blob, np, bridges[k]);
775 if (np < 0)
776 break;
777 }
778
779 return np;
780}
781
782/*
783 * The GW16082 has a hardware errata errata such that it's
784 * INTA/B/C/D are mis-mapped to its four slots (slot12-15). Because
785 * of this normal PCI interrupt swizzling will not work so we will
786 * provide an irq-map via device-tree.
787 */
788int fdt_fixup_gw16082(void *blob, int np, struct pci_dev *dev)
789{
790 int len;
791 int host;
792 uint32_t imap_new[8*4*4];
793 const uint32_t *imap;
794 uint32_t irq[4];
795 uint32_t reg[4];
796 int i;
797
798 /* build irq-map based on host controllers map */
Tim Harvey984aa0d2019-02-04 13:11:00 -0800799 host = fdt_node_offset_by_compatible(blob, -1, "fsl,imx6q-pcie");
Tim Harveybfb240a2016-06-17 06:10:41 -0700800 if (host < 0) {
801 printf(" %s failed: missing host\n", __func__);
802 return host;
803 }
804
805 /* use interrupt data from root complex's node */
806 imap = fdt_getprop(blob, host, "interrupt-map", &len);
807 if (!imap || len != 128) {
808 printf(" %s failed: invalid interrupt-map\n",
809 __func__);
810 return -FDT_ERR_NOTFOUND;
811 }
812
813 /* obtain irq's of host controller in pin order */
814 for (i = 0; i < 4; i++)
815 irq[(fdt32_to_cpu(imap[(i*8)+3])-1)%4] = imap[(i*8)+6];
816
817 /*
818 * determine number of swizzles necessary:
819 * For each bridge we pass through we need to swizzle
820 * the number of the slot we are on.
821 */
822 struct pci_dev *d;
823 int b;
824 b = 0;
825 d = dev->ppar;
826 while(d && d->ppar) {
827 b += PCI_DEV(d->devfn);
828 d = d->ppar;
829 }
830
831 /* create new irq mappings for slots12-15
832 * <skt> <idsel> <slot> <skt-inta> <skt-intb>
833 * J3 AD28 12 INTD INTA
834 * J4 AD29 13 INTC INTD
835 * J5 AD30 14 INTB INTC
836 * J2 AD31 15 INTA INTB
837 */
838 for (i = 0; i < 4; i++) {
839 /* addr matches bus:dev:func */
840 u32 addr = dev->busno << 16 | (12+i) << 11;
841
842 /* default cells from root complex */
843 memcpy(&imap_new[i*32], imap, 128);
844 /* first cell is PCI device address (BDF) */
845 imap_new[(i*32)+(0*8)+0] = cpu_to_fdt32(addr);
846 imap_new[(i*32)+(1*8)+0] = cpu_to_fdt32(addr);
847 imap_new[(i*32)+(2*8)+0] = cpu_to_fdt32(addr);
848 imap_new[(i*32)+(3*8)+0] = cpu_to_fdt32(addr);
849 /* third cell is pin */
850 imap_new[(i*32)+(0*8)+3] = cpu_to_fdt32(1);
851 imap_new[(i*32)+(1*8)+3] = cpu_to_fdt32(2);
852 imap_new[(i*32)+(2*8)+3] = cpu_to_fdt32(3);
853 imap_new[(i*32)+(3*8)+3] = cpu_to_fdt32(4);
854 /* sixth cell is relative interrupt */
855 imap_new[(i*32)+(0*8)+6] = irq[(15-(12+i)+b+0)%4];
856 imap_new[(i*32)+(1*8)+6] = irq[(15-(12+i)+b+1)%4];
857 imap_new[(i*32)+(2*8)+6] = irq[(15-(12+i)+b+2)%4];
858 imap_new[(i*32)+(3*8)+6] = irq[(15-(12+i)+b+3)%4];
859 }
860 fdt_setprop(blob, np, "interrupt-map", imap_new,
861 sizeof(imap_new));
862 reg[0] = cpu_to_fdt32(0xfff00);
863 reg[1] = 0;
864 reg[2] = 0;
865 reg[3] = cpu_to_fdt32(0x7);
866 fdt_setprop(blob, np, "interrupt-map-mask", reg, sizeof(reg));
867 fdt_setprop_cell(blob, np, "#interrupt-cells", 1);
868 fdt_setprop_string(blob, np, "device_type", "pci");
869 fdt_setprop_cell(blob, np, "#address-cells", 3);
870 fdt_setprop_cell(blob, np, "#size-cells", 2);
871 printf(" Added custom interrupt-map for GW16082\n");
872
873 return 0;
874}
875
Tim Harvey77b82a12016-06-17 06:10:42 -0700876/* The sky2 GigE MAC obtains it's MAC addr from device-tree by default */
877int fdt_fixup_sky2(void *blob, int np, struct pci_dev *dev)
878{
879 char *tmp, *end;
880 char mac[16];
881 unsigned char mac_addr[6];
882 int j;
883
884 sprintf(mac, "eth1addr");
Simon Glass64b723f2017-08-03 12:22:12 -0600885 tmp = env_get(mac);
Tim Harvey77b82a12016-06-17 06:10:42 -0700886 if (tmp) {
887 for (j = 0; j < 6; j++) {
888 mac_addr[j] = tmp ?
889 simple_strtoul(tmp, &end,16) : 0;
890 if (tmp)
891 tmp = (*end) ? end+1 : end;
892 }
893 fdt_setprop(blob, np, "local-mac-address", mac_addr,
894 sizeof(mac_addr));
895 printf(" Added mac addr for eth1\n");
896 return 0;
897 }
898
899 return -1;
900}
901
Tim Harveybfb240a2016-06-17 06:10:41 -0700902/*
903 * PCI DT nodes must be nested therefore if we need to apply a DT fixup
904 * we will walk the PCI bus and add bridge nodes up to the device receiving
905 * the fixup.
906 */
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900907void ft_board_pci_fixup(void *blob, struct bd_info *bd)
Tim Harveybfb240a2016-06-17 06:10:41 -0700908{
909 int i, np;
910 struct pci_dev *dev;
911
912 for (i = 0; i < pci_devno; i++) {
913 dev = &pci_devs[i];
914
915 /*
916 * The GW16082 consists of a TI XIO2001 PCIe-to-PCI bridge and
917 * an EEPROM at i2c1-0x50.
918 */
919 if ((dev->vendor == PCI_VENDOR_ID_TI) &&
920 (dev->device == 0x8240) &&
921 (i2c_set_bus_num(1) == 0) &&
922 (i2c_probe(0x50) == 0))
923 {
924 np = fdt_add_pci_path(blob, dev);
925 if (np > 0)
926 fdt_fixup_gw16082(blob, np, dev);
927 }
Tim Harvey77b82a12016-06-17 06:10:42 -0700928
929 /* ethernet1 mac address */
930 else if ((dev->vendor == PCI_VENDOR_ID_MARVELL) &&
931 (dev->device == 0x4380))
932 {
933 np = fdt_add_pci_path(blob, dev);
934 if (np > 0)
935 fdt_fixup_sky2(blob, np, dev);
936 }
Tim Harveybfb240a2016-06-17 06:10:41 -0700937 }
938}
939#endif /* if defined(CONFIG_CMD_PCI) */
Tim Harvey147b5762016-05-24 11:03:59 -0700940
Tim Harvey984aa0d2019-02-04 13:11:00 -0800941void ft_board_wdog_fixup(void *blob, phys_addr_t addr)
Tim Harveyfcabb0b2017-05-15 10:05:07 -0700942{
Tim Harvey984aa0d2019-02-04 13:11:00 -0800943 int off = fdt_node_offset_by_compat_reg(blob, "fsl,imx6q-wdt", addr);
944
945 if (off) {
946 fdt_delprop(blob, off, "ext-reset-output");
947 fdt_delprop(blob, off, "fsl,ext-reset-output");
948 }
Tim Harveyfcabb0b2017-05-15 10:05:07 -0700949}
950
Tim Harvey552c3582014-03-06 07:46:30 -0800951/*
952 * called prior to booting kernel or by 'fdt boardsetup' command
953 *
954 * unless 'fdt_noauto' env var is set we will update the following in the DTB:
955 * - mtd partitions based on mtdparts/mtdids env
956 * - system-serial (board serial num from EEPROM)
957 * - board (full model from EEPROM)
958 * - peripherals removed from DTB if not loaded on board (per EEPROM config)
959 */
Tim Harvey984aa0d2019-02-04 13:11:00 -0800960#define WDOG1_ADDR 0x20bc000
961#define WDOG2_ADDR 0x20c0000
962#define GPIO3_ADDR 0x20a4000
963#define USDHC3_ADDR 0x2198000
964#define PWM0_ADDR 0x2080000
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900965int ft_board_setup(void *blob, struct bd_info *bd)
Tim Harvey552c3582014-03-06 07:46:30 -0800966{
Tim Harvey552c3582014-03-06 07:46:30 -0800967 struct ventana_board_info *info = &ventana_info;
Tim Harvey0da2c522014-08-07 22:35:45 -0700968 struct ventana_eeprom_config *cfg;
Masahiro Yamada20ead6f2018-07-19 16:28:23 +0900969 static const struct node_info nodes[] = {
Tim Harvey552c3582014-03-06 07:46:30 -0800970 { "sst,w25q256", MTD_DEV_TYPE_NOR, }, /* SPI flash */
971 { "fsl,imx6q-gpmi-nand", MTD_DEV_TYPE_NAND, }, /* NAND flash */
972 };
Simon Glass64b723f2017-08-03 12:22:12 -0600973 const char *model = env_get("model");
974 const char *display = env_get("display");
Tim Harvey16e0eae2015-04-08 12:54:44 -0700975 int i;
976 char rev = 0;
977
978 /* determine board revision */
979 for (i = sizeof(ventana_info.model) - 1; i > 0; i--) {
980 if (ventana_info.model[i] >= 'A') {
981 rev = ventana_info.model[i];
982 break;
983 }
984 }
Tim Harvey552c3582014-03-06 07:46:30 -0800985
Simon Glass64b723f2017-08-03 12:22:12 -0600986 if (env_get("fdt_noauto")) {
Tim Harvey552c3582014-03-06 07:46:30 -0800987 puts(" Skiping ft_board_setup (fdt_noauto defined)\n");
Simon Glass2aec3cc2014-10-23 18:58:47 -0600988 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -0800989 }
990
Tim Harveyc9e43e02015-05-26 11:04:58 -0700991 if (test_bit(EECONFIG_NAND, info->config)) {
992 /* Update partition nodes using info from mtdparts env var */
993 puts(" Updating MTD partitions...\n");
994 fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
995 }
Tim Harvey552c3582014-03-06 07:46:30 -0800996
Tim Harveye4af5d32015-04-08 12:54:58 -0700997 /* Update display timings from display env var */
998 if (display) {
999 if (fdt_fixup_display(blob, fdt_get_alias(blob, "lvds0"),
1000 display) >= 0)
1001 printf(" Set display timings for %s...\n", display);
1002 }
1003
Tim Harvey552c3582014-03-06 07:46:30 -08001004 printf(" Adjusting FDT per EEPROM for %s...\n", model);
1005
1006 /* board serial number */
Simon Glass64b723f2017-08-03 12:22:12 -06001007 fdt_setprop(blob, 0, "system-serial", env_get("serial#"),
1008 strlen(env_get("serial#")) + 1);
Tim Harvey552c3582014-03-06 07:46:30 -08001009
1010 /* board (model contains model from device-tree) */
1011 fdt_setprop(blob, 0, "board", info->model,
1012 strlen((const char *)info->model) + 1);
1013
Tim Harveycf20e552015-04-08 12:55:01 -07001014 /* set desired digital video capture format */
Simon Glass64b723f2017-08-03 12:22:12 -06001015 ft_sethdmiinfmt(blob, env_get("hdmiinfmt"));
Tim Harveycf20e552015-04-08 12:55:01 -07001016
Tim Harvey552c3582014-03-06 07:46:30 -08001017 /*
Tim Harveya1d32222016-07-15 07:16:28 -07001018 * Board model specific fixups
Tim Harvey865dc9c2015-04-08 12:54:56 -07001019 */
Tim Harveya1d32222016-07-15 07:16:28 -07001020 switch (board_type) {
1021 case GW51xx:
1022 /*
1023 * disable wdog node for GW51xx-A/B to work around
1024 * errata causing wdog timer to be unreliable.
1025 */
1026 if (rev >= 'A' && rev < 'C') {
Tim Harvey984aa0d2019-02-04 13:11:00 -08001027 i = fdt_node_offset_by_compat_reg(blob, "fsl,imx6q-wdt",
1028 WDOG1_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001029 if (i)
1030 fdt_status_disabled(blob, i);
1031 }
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001032
1033 /* GW51xx-E adds WDOG1_B external reset */
1034 if (rev < 'E')
Tim Harvey984aa0d2019-02-04 13:11:00 -08001035 ft_board_wdog_fixup(blob, WDOG1_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001036 break;
Pushpal Sidhud1100562015-04-08 12:55:00 -07001037
Tim Harveya1d32222016-07-15 07:16:28 -07001038 case GW52xx:
1039 /* GW522x Uses GPIO3_IO23 instead of GPIO1_IO29 */
1040 if (info->model[4] == '2') {
1041 u32 handle = 0;
1042 u32 *range = NULL;
Pushpal Sidhud1100562015-04-08 12:55:00 -07001043
Tim Harveya1d32222016-07-15 07:16:28 -07001044 i = fdt_node_offset_by_compatible(blob, -1,
1045 "fsl,imx6q-pcie");
Pushpal Sidhud1100562015-04-08 12:55:00 -07001046 if (i)
Tim Harveya1d32222016-07-15 07:16:28 -07001047 range = (u32 *)fdt_getprop(blob, i,
1048 "reset-gpio", NULL);
1049
1050 if (range) {
Tim Harvey984aa0d2019-02-04 13:11:00 -08001051 i = fdt_node_offset_by_compat_reg(blob,
1052 "fsl,imx6q-gpio", GPIO3_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001053 if (i)
1054 handle = fdt_get_phandle(blob, i);
1055 if (handle) {
1056 range[0] = cpu_to_fdt32(handle);
1057 range[1] = cpu_to_fdt32(23);
1058 }
Pushpal Sidhud1100562015-04-08 12:55:00 -07001059 }
Tim Harveya1d32222016-07-15 07:16:28 -07001060
1061 /* these have broken usd_vsel */
1062 if (strstr((const char *)info->model, "SP318-B") ||
1063 strstr((const char *)info->model, "SP331-B"))
1064 gpio_cfg[board_type].usd_vsel = 0;
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001065
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001066 /* GW522x-B adds WDOG1_B external reset */
Tim Harvey984aa0d2019-02-04 13:11:00 -08001067 if (rev < 'B')
1068 ft_board_wdog_fixup(blob, WDOG1_ADDR);
Pushpal Sidhud1100562015-04-08 12:55:00 -07001069 }
Tim Harveydc5996a2017-05-15 10:05:06 -07001070
1071 /* GW520x-E adds WDOG1_B external reset */
1072 else if (info->model[4] == '0' && rev < 'E')
Tim Harvey984aa0d2019-02-04 13:11:00 -08001073 ft_board_wdog_fixup(blob, WDOG1_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001074 break;
Tim Harvey147b5762016-05-24 11:03:59 -07001075
Tim Harveya1d32222016-07-15 07:16:28 -07001076 case GW53xx:
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001077 /* GW53xx-E adds WDOG1_B external reset */
1078 if (rev < 'E')
Tim Harvey984aa0d2019-02-04 13:11:00 -08001079 ft_board_wdog_fixup(blob, WDOG1_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001080 break;
Pushpal Sidhud1100562015-04-08 12:55:00 -07001081
Tim Harveya1d32222016-07-15 07:16:28 -07001082 case GW54xx:
1083 /*
1084 * disable serial2 node for GW54xx for compatibility with older
1085 * 3.10.x kernel that improperly had this node enabled in the DT
1086 */
Tim Harvey984aa0d2019-02-04 13:11:00 -08001087 fdt_set_status_by_alias(blob, "serial2", FDT_STATUS_DISABLED,
1088 0);
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001089
1090 /* GW54xx-E adds WDOG2_B external reset */
1091 if (rev < 'E')
Tim Harvey984aa0d2019-02-04 13:11:00 -08001092 ft_board_wdog_fixup(blob, WDOG2_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001093 break;
1094
1095 case GW551x:
1096 /*
1097 * isolate CSI0_DATA_EN for GW551x-A to work around errata
1098 * causing non functional digital video in (it is not hooked up)
1099 */
1100 if (rev == 'A') {
1101 u32 *range = NULL;
1102 int len;
1103 const u32 *handle = NULL;
1104
1105 i = fdt_node_offset_by_compatible(blob, -1,
1106 "fsl,imx-tda1997x-video");
1107 if (i)
1108 handle = fdt_getprop(blob, i, "pinctrl-0",
1109 NULL);
1110 if (handle)
1111 i = fdt_node_offset_by_phandle(blob,
1112 fdt32_to_cpu(*handle));
1113 if (i)
1114 range = (u32 *)fdt_getprop(blob, i, "fsl,pins",
1115 &len);
1116 if (range) {
1117 len /= sizeof(u32);
1118 for (i = 0; i < len; i += 6) {
1119 u32 mux_reg = fdt32_to_cpu(range[i+0]);
1120 u32 conf_reg = fdt32_to_cpu(range[i+1]);
1121 /* mux PAD_CSI0_DATA_EN to GPIO */
1122 if (is_cpu_type(MXC_CPU_MX6Q) &&
1123 mux_reg == 0x260 &&
1124 conf_reg == 0x630)
1125 range[i+3] = cpu_to_fdt32(0x5);
1126 else if (!is_cpu_type(MXC_CPU_MX6Q) &&
1127 mux_reg == 0x08c &&
1128 conf_reg == 0x3a0)
1129 range[i+3] = cpu_to_fdt32(0x5);
1130 }
1131 fdt_setprop_inplace(blob, i, "fsl,pins", range,
1132 len);
Tim Harvey6944ccf2015-04-08 12:54:53 -07001133 }
Tim Harveydc8b5e62015-04-08 12:55:02 -07001134
Tim Harveya1d32222016-07-15 07:16:28 -07001135 /* set BT656 video format */
1136 ft_sethdmiinfmt(blob, "yuv422bt656");
1137 }
Tim Harvey8d76d0d2016-07-15 07:16:29 -07001138
1139 /* GW551x-C adds WDOG1_B external reset */
1140 if (rev < 'C')
Tim Harvey984aa0d2019-02-04 13:11:00 -08001141 ft_board_wdog_fixup(blob, WDOG1_ADDR);
Tim Harveya1d32222016-07-15 07:16:28 -07001142 break;
Tim Harvey5852a332019-02-04 13:10:58 -08001143 case GW5901:
1144 case GW5902:
1145 /* GW5901/GW5901 revB adds WDOG1_B as an external reset */
1146 if (rev < 'B')
Tim Harvey984aa0d2019-02-04 13:11:00 -08001147 ft_board_wdog_fixup(blob, WDOG1_ADDR);
Tim Harvey5852a332019-02-04 13:10:58 -08001148 break;
Tim Harvey6944ccf2015-04-08 12:54:53 -07001149 }
1150
Tim Harvey8d2d8df2016-05-24 11:03:55 -07001151 /* Configure DIO */
Tim Harvey41595b52016-07-15 07:14:23 -07001152 for (i = 0; i < gpio_cfg[board_type].dio_num; i++) {
Tim Harvey8d2d8df2016-05-24 11:03:55 -07001153 struct dio_cfg *cfg = &gpio_cfg[board_type].dio_cfg[i];
1154 char arg[10];
1155
1156 sprintf(arg, "dio%d", i);
1157 if (!hwconfig(arg))
1158 continue;
1159 if (hwconfig_subarg_cmp(arg, "mode", "pwm") && cfg->pwm_param)
1160 {
Tim Harvey984aa0d2019-02-04 13:11:00 -08001161 phys_addr_t addr;
1162 int off;
1163
Tim Harvey8d2d8df2016-05-24 11:03:55 -07001164 printf(" Enabling pwm%d for DIO%d\n",
1165 cfg->pwm_param, i);
Tim Harvey984aa0d2019-02-04 13:11:00 -08001166 addr = PWM0_ADDR + (0x4000 * (cfg->pwm_param - 1));
1167 off = fdt_node_offset_by_compat_reg(blob,
1168 "fsl,imx6q-pwm",
1169 addr);
1170 if (off)
1171 fdt_status_okay(blob, off);
Tim Harvey8d2d8df2016-05-24 11:03:55 -07001172 }
1173 }
1174
Tim Harvey147b5762016-05-24 11:03:59 -07001175 /* remove no-1-8-v if UHS-I support is present */
1176 if (gpio_cfg[board_type].usd_vsel) {
1177 debug("Enabling UHS-I support\n");
Tim Harvey984aa0d2019-02-04 13:11:00 -08001178 i = fdt_node_offset_by_compat_reg(blob, "fsl,imx6q-usdhc",
1179 USDHC3_ADDR);
1180 if (i)
1181 fdt_delprop(blob, i, "no-1-8-v");
Tim Harvey147b5762016-05-24 11:03:59 -07001182 }
1183
Tim Harveybfb240a2016-06-17 06:10:41 -07001184#if defined(CONFIG_CMD_PCI)
Simon Glass64b723f2017-08-03 12:22:12 -06001185 if (!env_get("nopcifixup"))
Tim Harveybfb240a2016-06-17 06:10:41 -07001186 ft_board_pci_fixup(blob, bd);
1187#endif
1188
Tim Harvey6944ccf2015-04-08 12:54:53 -07001189 /*
Tim Harvey552c3582014-03-06 07:46:30 -08001190 * Peripheral Config:
1191 * remove nodes by alias path if EEPROM config tells us the
1192 * peripheral is not loaded on the board.
1193 */
Simon Glass64b723f2017-08-03 12:22:12 -06001194 if (env_get("fdt_noconfig")) {
Tim Harvey0da2c522014-08-07 22:35:45 -07001195 puts(" Skiping periperhal config (fdt_noconfig defined)\n");
Simon Glass2aec3cc2014-10-23 18:58:47 -06001196 return 0;
Tim Harvey0da2c522014-08-07 22:35:45 -07001197 }
1198 cfg = econfig;
1199 while (cfg->name) {
1200 if (!test_bit(cfg->bit, info->config)) {
1201 fdt_del_node_and_alias(blob, cfg->dtalias ?
1202 cfg->dtalias : cfg->name);
1203 }
1204 cfg++;
Tim Harvey552c3582014-03-06 07:46:30 -08001205 }
Simon Glass2aec3cc2014-10-23 18:58:47 -06001206
1207 return 0;
Tim Harvey552c3582014-03-06 07:46:30 -08001208}
Robert P. J. Day3c757002016-05-19 15:23:12 -04001209#endif /* CONFIG_OF_BOARD_SETUP */