mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-26 01:02:46 +00:00

Enable modem remoteproc on samsung,matisse-wifi & matisselte. The mattisselte - being msm8926 - requires an extra mss-supply, so add that as well. Signed-off-by: Matti Lehtimäki <matti.lehtimaki@gmail.com> Reviewed-by: Stephan Gerhold <stephan.gerhold@linaro.org> Signed-off-by: Luca Weiss <luca@lucaweiss.eu> Link: https://lore.kernel.org/r/20250217-msm8226-modem-v5-13-2bc74b80e0ae@lucaweiss.eu Signed-off-by: Bjorn Andersson <andersson@kernel.org>
43 lines
913 B
Plaintext
43 lines
913 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2022, Matti Lehtimäki <matti.lehtimaki@gmail.com>
|
|
* Copyright (c) 2023, Stefan Hansson <newbyte@postmarketos.org>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "msm8926.dtsi"
|
|
#include "qcom-msm8226-samsung-matisse-common.dtsi"
|
|
|
|
/ {
|
|
model = "Samsung Galaxy Tab 4 10.1 LTE";
|
|
compatible = "samsung,matisselte", "qcom,msm8926", "qcom,msm8226";
|
|
chassis-type = "tablet";
|
|
|
|
reg_tsp_3p3v: regulator-tsp-3p3v {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "tsp_3p3v";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
|
|
gpio = <&tlmm 32 GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&tsp_en1_default_state>;
|
|
};
|
|
};
|
|
|
|
&modem {
|
|
mss-supply = <&pm8226_s5>;
|
|
};
|
|
|
|
&tlmm {
|
|
tsp_en1_default_state: tsp-en1-default-state {
|
|
pins = "gpio32";
|
|
function = "gpio";
|
|
drive-strength = <2>;
|
|
bias-disable;
|
|
};
|
|
};
|