mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 06:39:05 +00:00

As discussed in [1] it is more convenient to use a generic `channel` node name for ADC channels while storing a friendly - board-specific instead of PMIC-specific - name in the label, if/when desired to overwrite the channel description already contained (but previously unused) in the driver [2]. Follow up on the dt-bindings' `channel` node name requirement, and instead provide this (sometimes per-board) channel description through a label property. Also remove all the unused label references (not to be confused with label properties) from pm660, pmp8074 and pms405. [1]: https://lore.kernel.org/linux-arm-msm/20221106193018.270106-1-marijn.suijten@somainline.org/T/#u [2]: https://lore.kernel.org/linux-arm-msm/20230116220909.196926-4-marijn.suijten@somainline.org/ Acked-by: Konrad Dybcio <konrad.dybcio@linaro.org> Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://lore.kernel.org/r/20230730-generic-adc-channels-v5-2-e6c69bda8034@somainline.org Signed-off-by: Bjorn Andersson <andersson@kernel.org>
44 lines
799 B
Plaintext
44 lines
799 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Google Pompom board device tree source
|
|
*
|
|
* Copyright 2020 Google LLC.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "sc7180-trogdor-pompom.dtsi"
|
|
|
|
/delete-node/ &keyboard_controller;
|
|
#include <arm/cros-ec-keyboard.dtsi>
|
|
|
|
/ {
|
|
model = "Google Pompom (rev1)";
|
|
compatible = "google,pompom-rev1", "qcom,sc7180";
|
|
};
|
|
|
|
/*
|
|
* Pompom rev1 is stuffed with a 47k NTC as charger thermistor which currently
|
|
* is not supported by the PM6150 ADC driver. Disable the charger thermal zone
|
|
* to avoid using bogus temperature values.
|
|
*/
|
|
&charger_thermal {
|
|
status = "disabled";
|
|
};
|
|
|
|
&pm6150_adc {
|
|
/delete-node/ channel@4f;
|
|
};
|
|
|
|
&pm6150_adc_tm {
|
|
/delete-node/ charger-thermistor@0;
|
|
};
|
|
|
|
&usb_hub_2_x {
|
|
vdd-supply = <&pp3300_l7c>;
|
|
};
|
|
|
|
&usb_hub_3_x {
|
|
vdd-supply = <&pp3300_l7c>;
|
|
};
|