Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 317ddd256b9c24b0d78fa8018f80f1e495481a10 authored by Linus Torvalds on 09 June 2013, 00:41:04 UTC
Linux 3.10-rc5
Tip revision: 317ddd2
atmel-wdt.txt
* Atmel Watchdog Timers

** at91sam9-wdt

Required properties:
- compatible: must be "atmel,at91sam9260-wdt".
- reg: physical base address of the controller and length of memory mapped
  region.

Optional properties:
- timeout-sec: contains the watchdog timeout in seconds.

Example:

	watchdog@fffffd40 {
		compatible = "atmel,at91sam9260-wdt";
		reg = <0xfffffd40 0x10>;
		timeout-sec = <10>;
	};
back to top