mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
f1e323a0a5
After this change it is possible to use imx28-<board>-u-boot.dtsi with the imx28-u-boot.dtsi explicitly included without breaking setup from imx28-<board>.dts file. The problem is that the imx28.dtsi included in a wrong place overrides the changes made in imx28-<board>.dts. As a result some devices are "disabled" in the final DTB. Signed-off-by: Lukasz Majewski <lukma@denx.de>
27 lines
414 B
Text
27 lines
414 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2019
|
|
* Lukasz Majewski, DENX Software Engineering, lukma@denx.de
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+ or X11
|
|
*/
|
|
|
|
&gpio0 {
|
|
gpio-ranges = <&pinctrl 0 0 29>;
|
|
};
|
|
|
|
&gpio1 {
|
|
gpio-ranges = <&pinctrl 0 29 32>;
|
|
};
|
|
|
|
&gpio2 {
|
|
gpio-ranges = <&pinctrl 0 61 28>;
|
|
};
|
|
|
|
&gpio3 {
|
|
gpio-ranges = <&pinctrl 0 89 31>;
|
|
};
|
|
|
|
&gpio4 {
|
|
gpio-ranges = <&pinctrl 0 120 21>;
|
|
};
|