Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbc72422 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: Add support for RGMII 1.8v"

parents a88ebdd7 7ce4165d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -288,6 +288,9 @@ dtb-$(CONFIG_ARCH_SDXPRAIRIE) += sdxprairie-rumi.dtb \
	sdxprairie-cdp-cpe.dtb \
	sdxprairie-mtp-v1.1-cpe.dtb \
	sdxprairie-cdp-v1.1-cpe.dtb \
	sdxprairie-v2-mtp-v1.1-cpe.dtb \
	sdxprairie-mtp-v1.1.dtb \
	sdxprairie-v2-mtp-v1.1.dtb \
	sdxprairie-mtp-le-cpe.dtb \
	sdxprairie-v2-mtp-le-cpe.dtb \
	sdxprairie-cdp-256.dtb \
+11 −0
Original line number Diff line number Diff line
@@ -16,3 +16,14 @@
&qnand_1 {
	status = "ok";
};

&emac_hw {
	/delete-property/ vreg_rgmii-supply;
	pinctrl-names = "default";
	pinctrl-0 = <&vreg_rgmii_off_default>;
};

&vreg_rgmii_io_pads {
	regulator-min-microvolt = <1800000>;
	regulator-max-microvolt = <1800000>;
};
+23 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;

#include "sdxprairie-mtp-v1.1.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDXPRAIRIE MTP(v1.1)";
	compatible = "qcom,sdxprairie-mtp",
		"qcom,sdxprairie", "qcom,mtp";
	qcom,board-id = <0x5010108 0x0>;
};
+30 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include "sdxprairie.dtsi"
#include "sdxprairie-mtp.dtsi"

&qnand_1 {
	status = "ok";
};

&emac_hw {
	/delete-property/ vreg_rgmii-supply;
	pinctrl-names = "default";
	pinctrl-0 = <&vreg_rgmii_off_default>;
};

&vreg_rgmii_io_pads {
	regulator-min-microvolt = <1800000>;
	regulator-max-microvolt = <1800000>;
};
+23 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;

#include "sdxprairie-v2-mtp-v1.1-cpe.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDXPRAIRIE V2 MTP (CPE-1.1)";
	compatible = "qcom,sdxprairie-mtp",
		"qcom,sdxprairie", "qcom,mtp";
	qcom,board-id = <0x7010108 0x0>;
};
Loading