-
Notifications
You must be signed in to change notification settings - Fork 0
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-20220523' of https://gitlab.denx.de/u-boot/cust…
…odians/u-boot-imx u-boot-imx-20220523 ------------------- CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/12087 Additionally to u-boot-imx20200520: - DH MX8MP - i.MX GPIO: reading GPIO when direction is output - Menlo i.MX53: switch to DM And from u-boot-imx20200520: - fix Verdin hang - add pca9450 regulator - conversion to DM_SERIAL - NAND block handling - fix crypto - enable cache on some boards - add ACC board (MX6)
- Loading branch information
Showing
149 changed files
with
7,063 additions
and
956 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
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,10 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+) | ||
/* | ||
* Copyright (C) 2022 Philip Oberfichtner <[email protected]> | ||
*/ | ||
|
||
#include "imx6qdl-dhcom-u-boot.dtsi" | ||
|
||
&fec { | ||
phy-reset-gpios = <&gpio5 0 GPIO_ACTIVE_LOW>; | ||
}; |
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,20 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* Copyright (C) 2021 DH electronics GmbH | ||
* | ||
* DHCOM iMX6 variant: | ||
* DHCM-iMX6DL-C0800-R102-F0819-E-SD-RTC-T-HS-I-01D2 | ||
* DHCOM PCB number: 493-300 or newer | ||
* PicoITX PCB number: 487-600 or newer | ||
*/ | ||
/dts-v1/; | ||
|
||
#include "imx6dl.dtsi" | ||
#include "imx6qdl-dhcom-som.dtsi" | ||
#include "imx6qdl-dhcom-picoitx.dtsi" | ||
|
||
/ { | ||
model = "DH electronics i.MX6DL DHCOM on PicoITX"; | ||
compatible = "dh,imx6dl-dhcom-picoitx", "dh,imx6dl-dhcom-som", | ||
"fsl,imx6dl"; | ||
}; |
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,80 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
|
||
/* Copyright (C) 2022 Denx Software Engineering GmbH | ||
* Philip Oberfichtner <[email protected]> | ||
*/ | ||
|
||
/ { | ||
chosen { | ||
stdout-path = &uart2; | ||
}; | ||
|
||
soc { | ||
u-boot,dm-spl; | ||
|
||
bus@2000000 { | ||
u-boot,dm-spl; | ||
|
||
spba-bus@2000000 { | ||
u-boot,dm-spl; | ||
}; | ||
}; | ||
|
||
bus@2100000 { | ||
u-boot,dm-spl; | ||
}; | ||
}; | ||
|
||
bootcount { | ||
compatible = "u-boot,bootcount-pmic"; | ||
pmic = <&pmic>; | ||
}; | ||
}; | ||
|
||
&uart1 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&uart2 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&usdhc2 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&usdhc4 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio1 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio2 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio3 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio4 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio5 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio6 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gpio7 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&wdog1 { | ||
u-boot,dm-spl; | ||
}; |
Oops, something went wrong.