mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 18:41:03 +00:00
6db1085623
The Gateworks imx8mp-venice-gw71xx-2x consists of a SOM + baseboard. The GW702x SOM contains the following: - i.MX8M Plus SoC - LPDDR4 memory - eMMC Boot device - Gateworks System Controller (GSC) with integrated EEPROM, button controller, and ADC's - PMIC - SOM connector providing: - eQoS GbE MII - 1x SPI - 2x I2C - 4x UART - 2x USB 3.0 - 1x PCI - 1x SDIO (4-bit 3.3V) - 1x SDIO (4-bit 3.3V/1.8V) - GPIO The GW71xx Baseboard contains the following: - 1x RJ45 GbE (eQoS from SOM) - off-board I/O connector with I2C, SPI, UART, and GPIO - Front Panel bi-color LED - re-chargeable battery (for RTC) - PCIe clock generator - 1x USB Type-C connector supporting USB 2.0 host mode with VBUS - 1x MiniPCIe socket with SIM, PCI/USB 3.0 (mux), and USB 2.0 - GPS - Accelerometer - EERPOM - Wide range DC input supply Signed-off-by: Tim Harvey <tharvey@gateworks.com>
54 lines
823 B
Text
54 lines
823 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2023 Gateworks Corporation
|
|
*/
|
|
#include "imx8mp-venice-gw702x-u-boot.dtsi"
|
|
|
|
&gpio4 {
|
|
dio_1 {
|
|
gpio-hog;
|
|
input;
|
|
gpios = <8 GPIO_ACTIVE_HIGH>;
|
|
line-name = "dio1";
|
|
};
|
|
|
|
dio_0 {
|
|
gpio-hog;
|
|
input;
|
|
gpios = <11 GPIO_ACTIVE_HIGH>;
|
|
line-name = "dio0";
|
|
};
|
|
|
|
pci_usb_sel {
|
|
gpio-hog;
|
|
output-low;
|
|
gpios = <14 GPIO_ACTIVE_HIGH>;
|
|
line-name = "pci_usb_sel";
|
|
};
|
|
|
|
dio_3 {
|
|
gpio-hog;
|
|
input;
|
|
gpios = <24 GPIO_ACTIVE_HIGH>;
|
|
line-name = "dio3";
|
|
};
|
|
|
|
dio_2 {
|
|
gpio-hog;
|
|
input;
|
|
gpios = <26 GPIO_ACTIVE_HIGH>;
|
|
line-name = "dio2";
|
|
};
|
|
|
|
pci_wdis {
|
|
gpio-hog;
|
|
output-high;
|
|
gpios = <28 GPIO_ACTIVE_HIGH>;
|
|
line-name = "pci_wdis#";
|
|
};
|
|
};
|
|
|
|
/* gpio-usb-con not supported yet in U-Boot so make this a host for now */
|
|
&usb_dwc3_0 {
|
|
dr_mode = "host";
|
|
};
|