From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: kholk11@gmail.com
Cc: linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
ccross@android.com, mark.rutland@arm.com, robh+dt@kernel.org,
agross@kernel.org, marijns95@gmail.com
Subject: Re: [PATCH 5/5] arm64: dts: qcom: Add Sony Xperia (Loire) X and X Compact support
Date: Sun, 20 Oct 2019 23:04:28 -0700 [thread overview]
Message-ID: <20191021060428.GA601@tuxbook-pro> (raw)
In-Reply-To: <20191020150746.64114-6-kholk11@gmail.com>
On Sun 20 Oct 08:07 PDT 2019, kholk11@gmail.com wrote:
[..]
> diff --git a/arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire-kugo.dts b/arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire-kugo.dts
[..]
> +&pm8950_l1 {
> + regulator-min-microvolt = <1100000>;
> + regulator-max-microvolt = <1300000>;
> + qcom,init-voltage = <1200000>;
There's no qcom,init-voltage in the upstream binding.
> +};
> +
> +/* Machine specific pins override */
> +&tlmm {
> + usb_cable_det_n_gpio: usb_cable_det_n {
> + mux {
As stated on previous patch, feel free to squash/drop the inner
subnodes.
> + pins = "gpio107";
> + function = "gpio";
> + };
> + config {
> + pins = "gpio107";
> + drive-strength = <2>;
> + bias-pull-up;
> + input-enable;
> + };
> + };
> +
[..]
> diff --git a/arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire.dtsi b/arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire.dtsi
[..]
> +&soc {
> + blsp2_uart2: serial@7af0000 {
Specify this, disabled, in msm8976.dtsi and just enable it here.
> + compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
> + reg = <0x7af0000 0x200>;
> + interrupts = <GIC_SPI 307 IRQ_TYPE_LEVEL_HIGH>;
> + clocks = <&gcc GCC_BLSP2_UART2_APPS_CLK>,
> + <&gcc GCC_BLSP2_AHB_CLK>;
> + clock-names = "core", "iface";
> + dmas = <&blsp2_dma 1>, <&blsp2_dma 0>;
> + dma-names = "rx", "tx";
> + status = "okay";
> + };
> +
> + gpio_keys {
gpio_keys is not a mmio device, so please move it to /
> + compatible = "gpio-keys";
> + input-name = "gpio-keys";
> + #address-cells = <1>;
> + #size-cells = <0>;
> + autorepeat;
> +
[..]
> +&blsp1_uart1 {
> + status = "disabled";
If you need to disable these nodes in your first board dtsi, then they
should have been disabled in msm8976.dtsi.
> +};
> +
> +&blsp1_uart2 {
> + status = "disabled";
> +};
> +
> +/* eMMC */
> +&sdhc_1 {
> + vmmc-supply = <&pm8950_l8>;
> + vqmmc-supply = <&pm8950_l5>;
> +
> + pinctrl-names = "default";
> + pinctrl-0 = <&sdc1_clk_on &sdc1_cmd_on &sdc1_data_on>;
I suggest that you specify a single sdc1_on state with subnodes clk, cmd
and data.
> +
> + status = "ok";
> +};
> +
[..]
> +&smd_rpm_regulators {
> + vdd_s1-supply = <&vph_pwr>;
> + vdd_s2-supply = <&vph_pwr>;
> + vdd_s3-supply = <&vph_pwr>;
> + vdd_s4-supply = <&vph_pwr>;
> + vdd_s5-supply = <&vph_pwr>;
> + vdd_s6-supply = <&vph_pwr>;
> + vdd_l1_l19-supply = <&pm8950_s3>;
> + vdd_l2_l23-supply = <&pm8950_s3>;
> + vdd_l3-supply = <&pm8950_s3>;
> + vdd_l4_l5_l6_l7_l16-supply = <&pm8950_s4>;
> + vdd_l8_l11_l12_l17_l22-supply = <&vph_pwr>;
> + vdd_l20-supply = <&pm8950_s4>;
> + vdd_l21-supply = <&pm8950_s4>;
> +
> + s1 {
> + regulator-min-microvolt = <1000000>;
> + regulator-max-microvolt = <1162500>;
> + qcom,init-voltage = <1000000>;
Again, no qcom,init-voltage...
> + status = "okay";
You shouldn't need to say "okay" here, it's enabled unless you disable
it.
> + };
[..]
> +&pm8950_gpios {
> + cdc_pm_mclk_pin: cdc_pm_mclk {
> + cdc_pm {
Please drop this inner subnode, it's no longer needed (same goes for the
remainder of nodes in this patch).
> + pins = "gpio1";
> + function = "func1"; /* SF1 */
> + output-low;
> + bias-disable;
> + qcom,drive-strength = <2>;
> + power-source = <2>; /* VIN 2 */
> + };
> + };
> +
Keep up the good work!
Regards,
Bjorn
prev parent reply other threads:[~2019-10-21 6:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-20 15:07 [PATCH 0/5] MSM8976/56 Sony Xperia Loire (X/XCompact) smartphones kholk11
2019-10-20 15:07 ` [PATCH 1/5] dt-bindings: iio: spmi-vadc: Add definitions for USB DP/DM VADCs kholk11
2019-10-29 15:28 ` Rob Herring
2019-10-20 15:07 ` [PATCH 2/5] arm64: dts: pm8004: Add SPMI regulator and add phandles to lsids kholk11
2019-10-21 5:37 ` Bjorn Andersson
2019-10-20 15:07 ` [PATCH 3/5] arm64: dts: qcom: Add configuration for PM8950 and PMI8950 peripherals kholk11
2019-10-21 5:38 ` Bjorn Andersson
2019-10-20 15:07 ` [PATCH 4/5] arm64: dts: qcom: Add MSM8976 SoC support dts files kholk11
2019-10-21 5:52 ` Bjorn Andersson
2019-10-21 7:50 ` AngeloGioacchino Del Regno
2019-10-20 15:07 ` [PATCH 5/5] arm64: dts: qcom: Add Sony Xperia (Loire) X and X Compact support kholk11
2019-10-21 6:04 ` Bjorn Andersson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191021060428.GA601@tuxbook-pro \
--to=bjorn.andersson@linaro.org \
--cc=agross@kernel.org \
--cc=ccross@android.com \
--cc=devicetree@vger.kernel.org \
--cc=kholk11@gmail.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=marijns95@gmail.com \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).