Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: 92d21ac74a9e3c09b0b01c764e530657e4c85c49 authored by Linus Torvalds on 11 July 2016, 03:24:59 UTC
Linux 4.7-rc7
Tip revision: 92d21ac
sa1100-rtc.txt
* Marvell Real Time Clock controller

Required properties:
- compatible: should be "mrvl,sa1100-rtc"
- reg: physical base address of the controller and length of memory mapped
  region.
- interrupts: Should be two. The first interrupt number is the rtc alarm
  interrupt and the second interrupt number is the rtc hz interrupt.
- interrupt-names: Assign name of irq resource.

Example:
	rtc: rtc@d4010000 {
		compatible = "mrvl,mmp-rtc";
		reg = <0xd4010000 0x1000>;
		interrupts = <5>, <6>;
		interrupt-names = "rtc 1Hz", "rtc alarm";
	};
back to top