IB/srp: Let srp_abort() return FAST_IO_FAIL if TL offline
[linux/fpc-iii.git] / Documentation / devicetree / bindings / rtc / dw-apb.txt
blob93e2b0f048e6128a28a6e523dab251cb41df01d6
1 * Designware APB timer
3 Required properties:
4 - compatible: "snps,dw-apb-timer-sp" or "snps,dw-apb-timer-osc"
5 - reg: physical base address of the controller and length of memory mapped
6   region.
7 - interrupts: IRQ line for the timer.
8 - clock-frequency: The frequency in HZ of the timer.
9 - clock-freq: For backwards compatibility with picoxcell
11 Example:
13                 timer1: timer@ffc09000 {
14                                 compatible = "snps,dw-apb-timer-sp";
15                                 interrupts = <0 168 4>;
16                                 clock-frequency = <200000000>;
17                                 reg = <0xffc09000 0x1000>;
18                         };
20                 timer2: timer@ffd00000 {
21                                 compatible = "snps,dw-apb-timer-osc";
22                                 interrupts = <0 169 4>;
23                                 clock-frequency = <200000000>;
24                                 reg = <0xffd00000 0x1000>;
25                         };