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/rtc/rtc-cmos.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  Motorola mc146818 compatible RTC
    2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    3 
    4 Required properties:
    5   - compatible : "motorola,mc146818"
    6   - reg : should contain registers location and length.
    7 
    8 Optional properties:
    9   - interrupts : should contain interrupt.
   10   - ctrl-reg : Contains the initial value of the control register also
   11     called "Register B".
   12   - freq-reg : Contains the initial value of the frequency register also
   13     called "Regsiter A".
   14 
   15 "Register A" and "B" are usually initialized by the firmware (BIOS for
   16 instance). If this is not done, it can be performed by the driver.
   17 
   18 ISA Example:
   19 
   20         rtc@70 {
   21                  compatible = "motorola,mc146818";
   22                  interrupts = <8 3>;
   23                  interrupt-parent = <&ioapic1>;
   24                  ctrl-reg = <2>;
   25                  freq-reg = <0x26>;
   26                  reg = <1 0x70 2>;
   27          };

Cache object: 3718616e960cdd34762e094d18aa2673


[ 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.