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

Commit 5aaede1e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: Add Neutrino HSIC Ethernet device for mdm9607 MTP"

parents 30c9d7bc 22a21abd
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
* HSIC Neutrino Ethernet *

This driver implements HSIC based Ethernet driver for Neutrino ethernet controller

Required properties:
  - compatible: Should be "qcom,ntn-hsic"
  - vdd-ntn-hsic-supply: Neutrino HSIC power supply
  - ntn-rst-gpio: Neutrino reset GPIO

Example:
	qcom,ntn_hsic {
		compatible = "qcom,ntn-hsic";
		vdd-ntn-hsic-supply = <&mdm9607_l11>;
		pinctrl-names = "default";
		pinctrl-0 = <&ntn_rst_gpio_default>;
		ntn-rst-gpio = <&tlmm_pinmux 30 1>;
	};
+9 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
 * Copyright (c) 2015-2017, 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
@@ -29,6 +29,14 @@
};

&soc {
	qcom,ntn_hsic {
		compatible = "qcom,ntn-hsic";
		vdd-ntn-hsic-supply = <&mdm9607_l11>;
		pinctrl-names = "default";
		pinctrl-0 = <&ntn_rst_gpio_default>;
		ntn-rst-gpio = <&tlmm_pinmux 30 1>;
	};

};

&blsp1_uart5 {
+15 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
 * Copyright (c) 2015-2017, 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
@@ -1076,5 +1076,19 @@
				};
			};
		};

		ntn_rst_gpio_default: ntn_rst_gpio_default {
			mux {
				pins = "gpio30";
				function = "gpio";
			};

			config {
				pins = "gpio30";
				drive-strength = <16>;
				bias-pull-up;
				output-high;
			};
		};
	};
};