mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 23:23:55 +08:00
b725e262ba
Four packages exist for stm32mp157 die. As ball-out is different between them, this patch covers those differences by creating dedicated pinctrl dtsi files. Each dtsi pinctrl package file describes the package ball-out through gpio-ranges. stm32mp157a-dk1 / dk2 boards embed a STM32MP_PKG_AC (TFBGA361 (12*12)) package. stm32mp157c-ed1 / ev1 boards embed a STM32MP_PKG_AA (LFBGA448 (18*18)) package. Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Alexandre Torgue <alexandre.torgue@st.com>
63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (C) STMicroelectronics 2019 - All Rights Reserved
|
|
* Author: Alexandre Torgue <alexandre.torgue@st.com>
|
|
*/
|
|
|
|
#include "stm32mp157-pinctrl.dtsi"
|
|
/ {
|
|
soc {
|
|
pinctrl: pin-controller@50002000 {
|
|
st,package = <STM32MP_PKG_AB>;
|
|
|
|
gpioa: gpio@50002000 {
|
|
status = "okay";
|
|
ngpios = <16>;
|
|
gpio-ranges = <&pinctrl 0 0 16>;
|
|
};
|
|
|
|
gpiob: gpio@50003000 {
|
|
status = "okay";
|
|
ngpios = <16>;
|
|
gpio-ranges = <&pinctrl 0 16 16>;
|
|
};
|
|
|
|
gpioc: gpio@50004000 {
|
|
status = "okay";
|
|
ngpios = <16>;
|
|
gpio-ranges = <&pinctrl 0 32 16>;
|
|
};
|
|
|
|
gpiod: gpio@50005000 {
|
|
status = "okay";
|
|
ngpios = <16>;
|
|
gpio-ranges = <&pinctrl 0 48 16>;
|
|
};
|
|
|
|
gpioe: gpio@50006000 {
|
|
status = "okay";
|
|
ngpios = <16>;
|
|
gpio-ranges = <&pinctrl 0 64 16>;
|
|
};
|
|
|
|
gpiof: gpio@50007000 {
|
|
status = "okay";
|
|
ngpios = <6>;
|
|
gpio-ranges = <&pinctrl 6 86 6>;
|
|
};
|
|
|
|
gpiog: gpio@50008000 {
|
|
status = "okay";
|
|
ngpios = <10>;
|
|
gpio-ranges = <&pinctrl 6 102 10>;
|
|
};
|
|
|
|
gpioh: gpio@50009000 {
|
|
status = "okay";
|
|
ngpios = <2>;
|
|
gpio-ranges = <&pinctrl 0 112 2>;
|
|
};
|
|
};
|
|
};
|
|
};
|