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

Commit 76de0da1 authored by Ping Jiang's avatar Ping Jiang
Browse files

ARM: dts: msm: Add power reset and watchdog nodes for sa8155 quin vm

Enables virtual power reset and watchdog, adds related configuration
for SA8155 GVM platform.

Change-Id: Iccfcfec3e728e6a4c2da5c6c8877b5c3eafbe313
parent b7927f8c
Loading
Loading
Loading
Loading
+12 −0
Original line number Original line Diff line number Diff line
* VM Restart Driver

VM restart driver supports virtual machine power down and restart.

Required properties:
- compatible:	      Must be "qcom,vm-restart"

Example:
	vm_restart: restart {
		compatible = "qcom,vm-restart";
	};
+17 −0
Original line number Original line Diff line number Diff line
@@ -279,4 +279,21 @@
		cell-index = <0>;
		cell-index = <0>;
		status = "okay";
		status = "okay";
	};
	};

	wdog: qcom,wdt@17c10000 {
		compatible = "qcom,msm-watchdog";
		reg = <0x17c10000 0x1000>;
		reg-names = "wdt-base";
		interrupts = <0 0 IRQ_TYPE_LEVEL_HIGH>,
			     <0 1 IRQ_TYPE_LEVEL_HIGH>;
		qcom,bark-time = <11000>;
		qcom,pet-time = <9360>;
		qcom,ipi-ping;
		qcom,wakeup-enable;
	};

	vm_restart: restart {
		compatible = "qcom,vm-restart";
		status = "ok";
	};
};
};