-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'u-boot-imx-20210616' of https://gitlab.denx.de/u-boot/cust…
…odians/u-boot-imx u-boot-imx-20210616 ------------------- - imxrt : fixes, USB, imxrt1020-evk - imx8m: fix for verdin-imx8mm Add conga-QMX8 board - imx6 : documentation for pico-imx6: Add SeeedStudio NPI-IMX6ULL Support ventana: DM PCI - imx7d: added SMEGW01 board CI : https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/7765
- Loading branch information
Showing
94 changed files
with
4,448 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -919,6 +919,18 @@ S: Orphaned (Since 2017-01) | |
T: git https://source.denx.de/u-boot/custodians/u-boot-onenand.git | ||
F: drivers/mtd/onenand/ | ||
|
||
OUT4-IMX6ULL-NANO BOARD | ||
M: Oleh Kravchenko <[email protected]> | ||
S: Maintained | ||
T: git https://github.com/Oleh-Kravchenko/u-boot-out4.git | ||
F: arch/arm/dts/ev-imx280-nano-x-mb.dts | ||
F: arch/arm/dts/o4-imx-nano.dts | ||
F: arch/arm/dts/o4-imx6ull-nano.dtsi | ||
F: board/out4 | ||
F: configs/ev-imx280-nano-x-mb_defconfig | ||
F: configs/o4-imx6ull-nano_defconfig | ||
F: include/configs/o4-imx6ull-nano.h | ||
|
||
PATMAN | ||
M: Simon Glass <[email protected]> | ||
S: Maintained | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
// Copyright (C) 2021 Oleh Kravchenko <[email protected]> | ||
|
||
/dts-v1/; | ||
|
||
#include "o4-imx6ull-nano.dtsi" | ||
|
||
/ { | ||
model = "EV-iMX280-NANO-X-MB"; | ||
compatible = "evodbg,ev-imx280-nano-x-mb", | ||
"out4,o4-imx6ull-nano", | ||
"fsl,imx6ull"; | ||
|
||
aliases { | ||
mmc1 = &usdhc1; | ||
}; | ||
|
||
chosen { | ||
stdout-path = &uart1; | ||
}; | ||
}; | ||
|
||
&iomuxc { | ||
pinctrl_uart1: uart1grp { | ||
fsl,pins = < | ||
MX6UL_PAD_UART1_RX_DATA__UART1_DCE_RX 0x1b0b1 | ||
MX6UL_PAD_UART1_TX_DATA__UART1_DCE_TX 0x1b0b1 | ||
>; | ||
}; | ||
|
||
pinctrl_usdhc1: usdhc1grp { | ||
fsl,pins = < | ||
MX6UL_PAD_SD1_CLK__USDHC1_CLK 0x10069 | ||
MX6UL_PAD_SD1_CMD__USDHC1_CMD 0x17059 | ||
MX6UL_PAD_SD1_DATA0__USDHC1_DATA0 0x17059 | ||
MX6UL_PAD_SD1_DATA1__USDHC1_DATA1 0x17059 | ||
MX6UL_PAD_SD1_DATA2__USDHC1_DATA2 0x17059 | ||
MX6UL_PAD_SD1_DATA3__USDHC1_DATA3 0x17059 | ||
MX6UL_PAD_UART1_RTS_B__USDHC1_CD_B 0x03029 | ||
>; | ||
}; | ||
|
||
pinctrl_mdio: mdiogrp { | ||
fsl,pins = < | ||
MX6UL_PAD_GPIO1_IO06__ENET1_MDIO 0x1b0b0 | ||
MX6UL_PAD_GPIO1_IO07__ENET1_MDC 0x1b0b0 | ||
MX6UL_PAD_SNVS_TAMPER1__GPIO5_IO01 0xb0b0 /* RST */ | ||
>; | ||
}; | ||
|
||
pinctrl_usb_otg1_id: usbotg1idgrp { | ||
fsl,pins = < | ||
MX6UL_PAD_GPIO1_IO00__ANATOP_OTG1_ID 0x17059 | ||
>; | ||
}; | ||
}; | ||
|
||
&uart1 { | ||
pinctrl-0 = <&pinctrl_uart1>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
}; | ||
|
||
&usdhc1 { | ||
bus-width = <4>; | ||
no-1-8-v; | ||
pinctrl-0 = <&pinctrl_usdhc1>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
wakeup-source; | ||
}; | ||
|
||
&fec1 { | ||
phy-handle = <&phy0>; | ||
phy-mode = "rmii"; | ||
phy-reset-duration = <250>; | ||
phy-reset-post-delay = <100>; | ||
phy-reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>; | ||
pinctrl-0 = <&pinctrl_fec1 &pinctrl_mdio>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
|
||
mdio { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
phy0: ethernet-phy@0 { | ||
clocks = <&clks IMX6UL_CLK_ENET_REF>; | ||
clock-names = "rmii-ref"; | ||
interrupt-parent = <&gpio5>; | ||
interrupts = <7 IRQ_TYPE_EDGE_FALLING>; | ||
pinctrl-0 = <&pinctrl_phy0_irq>; | ||
pinctrl-names = "default"; | ||
reg = <0>; | ||
}; | ||
}; | ||
}; | ||
|
||
&usbotg1 { | ||
dr_mode = "otg"; | ||
pinctrl-0 = <&pinctrl_usb_otg1_id>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
}; | ||
|
||
&usbotg2 { | ||
dr_mode = "host"; | ||
status = "okay"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Copyright (c) 2021 Linumiz | ||
* Author: Navin Sankar Velliangiri <[email protected]> | ||
*/ | ||
|
||
/dts-v1/; | ||
#include "imx6ull.dtsi" | ||
#include "imx6ull-seeed-npi-imx6ull.dtsi" | ||
#include "imx6ull-seeed-npi-imx6ull-u-boot.dtsi" | ||
|
||
/ { | ||
model = "Seeed NPi iMX6ULL Dev Board with NAND"; | ||
compatible = "seeed,imx6ull-seeed-npi-imx6ull", "fsl,imx6ull"; | ||
}; | ||
|
||
&gpmi { | ||
status = "okay"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* Copyright (c) 2021 Linumiz | ||
* Author: Navin Sankar Velliangiri <[email protected]> | ||
*/ | ||
|
||
&pinctrl_uart1 { | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
&gpmi { | ||
u-boot,dm-spl; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
&usdhc1 { | ||
u-boot,dm-spl; | ||
u-boot,dm-pre-reloc; | ||
}; | ||
|
||
&usdhc2 { | ||
u-boot,dm-spl; | ||
u-boot,dm-pre-reloc; | ||
}; |
Oops, something went wrong.