Message ID | 20230515-topic-rb2-bits-v1-0-a52d154a639d@linaro.org |
---|---|
Headers | show |
Series | QTI RB2 features | expand |
On 5/15/23 6:34 PM, Konrad Dybcio wrote: > This short series brings a couple of fixes and features > (such as display out) for the QTI RB2 board. Similar patches > for the RB1 should be expected soon. > > Depends on and based atop (in order): > > 20230505075354.1634547-1-bhupesh.sharma@linaro.org > 20230502053534.1240553-1-bhupesh.sharma@linaro.org > 20230505064039.1630025-1-bhupesh.sharma@linaro.org > > Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> > --- > Konrad Dybcio (5): > arm64: dts: qcom: qrb4210-rb2: Describe fixed regulators > arm64: dts: qcom: qrb4210-rb2: Enable display out > arm64: dts: qcom: qrb4210-rb2: Add GPIO LEDs > arm64: dts: qcom: qrb4210-rb2: Enable load setting on SDHCI VQMMC > arm64: dts: qcom: qrb4210-rb2: Enable CAN bus controller > > arch/arm64/boot/dts/qcom/qrb4210-rb2.dts | 223 ++++++++++++++++++++++++++++++- > 1 file changed, 220 insertions(+), 3 deletions(-) > --- > base-commit: c768c054f1a722d4b973ddab81ee580b7e24a891 > change-id: 20230515-topic-rb2-bits-22e685b4f48d > > Best regards, For the series: Reviewed-and-Tested-by: Bhupesh Sharma <bhupesh.sharma@linaro.org> Thanks.
On Mon, May 15, 2023 at 03:04:14PM +0200, Konrad Dybcio wrote: > Add the three LEDs (blue/yellow/green) connected to TLMM GPIOs. > > Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> > --- > arch/arm64/boot/dts/qcom/qrb4210-rb2.dts | 36 ++++++++++++++++++++++++++++++-- > 1 file changed, 34 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/qcom/qrb4210-rb2.dts b/arch/arm64/boot/dts/qcom/qrb4210-rb2.dts > index 9b539720f05d..eeee268ebfe2 100644 > --- a/arch/arm64/boot/dts/qcom/qrb4210-rb2.dts > +++ b/arch/arm64/boot/dts/qcom/qrb4210-rb2.dts > @@ -5,6 +5,7 @@ > > /dts-v1/; > > +#include <dt-bindings/leds/common.h> > #include "sm4250.dtsi" > > / { > @@ -30,6 +31,38 @@ hdmi_con: endpoint { > }; > }; > > + leds { > + compatible = "gpio-leds"; > + > + led-bt { > + label = "blue:bt"; > + function = LED_FUNCTION_BLUETOOTH; > + color = <LED_COLOR_ID_BLUE>; > + gpios = <&tlmm 45 GPIO_ACTIVE_HIGH>; > + linux,default-trigger = "bluetooth-power"; > + default-state = "off"; > + }; > + > + led-user0 { > + label = "green:user0"; > + function = LED_FUNCTION_INDICATOR; > + color = <LED_COLOR_ID_GREEN>; > + gpios = <&tlmm 52 GPIO_ACTIVE_HIGH>; > + linux,default-trigger = "none"; > + default-state = "off"; > + panic-indicator; > + }; > + > + led-wlan { > + label = "yellow:wlan"; > + function = LED_FUNCTION_WLAN; > + color = <LED_COLOR_ID_YELLOW>; > + gpios = <&tlmm 47 GPIO_ACTIVE_HIGH>; > + linux,default-trigger = "phy0tx"; > + default-state = "off"; > + }; > + }; > + > vreg_hdmi_out_1p2: regulator-hdmi-out-1p2 { > compatible = "regulator-fixed"; > regulator-name = "VREG_HDMI_OUT_1P2"; > @@ -385,8 +418,7 @@ &sleep_clk { > }; > > &tlmm { > - gpio-reserved-ranges = <43 2>, <47 1>, > - <49 1>, <52 1>, <54 1>, > + gpio-reserved-ranges = <43 2>, <49 1>, <54 1>, How come pin 49 becomes inaccessible here? Was this intended for the previous patch? Regards, Bjorn > <56 3>, <61 2>, <64 1>, > <68 1>, <72 8>, <96 1>; > > > -- > 2.40.1 >
This short series brings a couple of fixes and features (such as display out) for the QTI RB2 board. Similar patches for the RB1 should be expected soon. Depends on and based atop (in order): 20230505075354.1634547-1-bhupesh.sharma@linaro.org 20230502053534.1240553-1-bhupesh.sharma@linaro.org 20230505064039.1630025-1-bhupesh.sharma@linaro.org Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> --- Konrad Dybcio (5): arm64: dts: qcom: qrb4210-rb2: Describe fixed regulators arm64: dts: qcom: qrb4210-rb2: Enable display out arm64: dts: qcom: qrb4210-rb2: Add GPIO LEDs arm64: dts: qcom: qrb4210-rb2: Enable load setting on SDHCI VQMMC arm64: dts: qcom: qrb4210-rb2: Enable CAN bus controller arch/arm64/boot/dts/qcom/qrb4210-rb2.dts | 223 ++++++++++++++++++++++++++++++- 1 file changed, 220 insertions(+), 3 deletions(-) --- base-commit: c768c054f1a722d4b973ddab81ee580b7e24a891 change-id: 20230515-topic-rb2-bits-22e685b4f48d Best regards,