-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 234930 b: refs/heads/master c: 3bcbaf6 h: refs/heads/master v: v3
- Loading branch information
Sebastian Andrzej Siewior
authored and
Thomas Gleixner
committed
Feb 23, 2011
1 parent
1d95682
commit 0e68659
Showing
5 changed files
with
89 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 1fa4163bdc199a0b80f9e333d718b3f65e901593 | ||
refs/heads/master: 3bcbaf6e08d8d82cde781997bd2c56dda87049b5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Motorola mc146818 compatible RTC | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
Required properties: | ||
- compatible : "motorola,mc146818" | ||
- reg : should contain registers location and length. | ||
|
||
Optional properties: | ||
- interrupts : should contain interrupt. | ||
- interrupt-parent : interrupt source phandle. | ||
- ctrl-reg : Contains the initial value of the control register also | ||
called "Register B". | ||
- freq-reg : Contains the initial value of the frequency register also | ||
called "Regsiter A". | ||
|
||
"Register A" and "B" are usually initialized by the firmware (BIOS for | ||
instance). If this is not done, it can be performed by the driver. | ||
|
||
ISA Example: | ||
|
||
rtc@70 { | ||
compatible = "motorola,mc146818"; | ||
interrupts = <8 3>; | ||
interrupt-parent = <&ioapic1>; | ||
ctrl-reg = <2>; | ||
freq-reg = <0x26>; | ||
reg = <1 0x70 2>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters