The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/watchdog/arm,sp805.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 ARM AMBA Primecell SP805 Watchdog
    2 
    3 SP805 WDT is a ARM Primecell Peripheral and has a standard-id register that
    4 can be used to identify the peripheral type, vendor, and revision.
    5 This value can be used for driver matching.
    6 
    7 As SP805 WDT is a primecell IP, it follows the base bindings specified in
    8 'arm/primecell.txt'
    9 
   10 Required properties:
   11 - compatible:  Should be "arm,sp805" & "arm,primecell"
   12 - reg:         Should contain location and length for watchdog timer register
   13 - clocks:      Clocks driving the watchdog timer hardware. This list should be
   14                2 clocks. With 2 clocks, the order is wdog_clk, apb_pclk
   15                wdog_clk can be equal to or be a sub-multiple of the apb_pclk
   16                frequency
   17 - clock-names: Shall be "wdog_clk" for first clock and "apb_pclk" for the
   18                second one
   19 
   20 Optional properties:
   21 - interrupts:  Should specify WDT interrupt number
   22 - timeout-sec: Should specify default WDT timeout in seconds. If unset, the
   23                default timeout is determined by the driver
   24 
   25 Example:
   26         watchdog@66090000 {
   27                 compatible = "arm,sp805", "arm,primecell";
   28                 reg = <0x66090000 0x1000>;
   29                 interrupts = <GIC_SPI 406 IRQ_TYPE_LEVEL_HIGH>;
   30                 clocks = <&wdt_clk>, <&apb_pclk>;
   31                 clock-names = "wdog_clk", "apb_pclk";
   32         };

Cache object: 5fe77198d72f64aae143d8f6de2c536c


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.