mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
fed814c088
The gpio node names are made generic, but without gpio bank ID. Add gpio-ranges to rk3066a-u-boot.dtsi for now till a better method is found. Disable gpio6 as the driver gives an error code on return as status. Signed-off-by: Johan Jonker <jbx6244@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
29 lines
376 B
Text
29 lines
376 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#include "rockchip-u-boot.dtsi"
|
|
#include "rk3xxx-u-boot.dtsi"
|
|
|
|
&gpio0 {
|
|
gpio-ranges = <&pinctrl 0 0 32>;
|
|
};
|
|
|
|
&gpio1 {
|
|
gpio-ranges = <&pinctrl 0 32 32>;
|
|
};
|
|
|
|
&gpio2 {
|
|
gpio-ranges = <&pinctrl 0 64 32>;
|
|
};
|
|
|
|
&gpio3 {
|
|
gpio-ranges = <&pinctrl 0 96 32>;
|
|
};
|
|
|
|
&gpio4 {
|
|
gpio-ranges = <&pinctrl 0 128 32>;
|
|
};
|
|
|
|
&gpio6 {
|
|
status = "disabled";
|
|
};
|
|
|