mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 16:25:07 +07:00
deaa3ff498
Add a compatible string for the Microcrystal RV8564. Link: https://lore.kernel.org/r/20190829212547.19185-2-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
29 lines
500 B
Plaintext
29 lines
500 B
Plaintext
* Philips PCF8563/Epson RTC8564 Real Time Clock
|
|
|
|
Philips PCF8563/Epson RTC8564 Real Time Clock
|
|
|
|
Required properties:
|
|
- compatible: Should contain "nxp,pcf8563",
|
|
"epson,rtc8564" or
|
|
"microcrystal,rv8564"
|
|
- reg: I2C address for chip.
|
|
|
|
Optional property:
|
|
- #clock-cells: Should be 0.
|
|
- clock-output-names:
|
|
overwrite the default clock name "pcf8563-clkout"
|
|
|
|
Example:
|
|
|
|
pcf8563: pcf8563@51 {
|
|
compatible = "nxp,pcf8563";
|
|
reg = <0x51>;
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
device {
|
|
...
|
|
clocks = <&pcf8563>;
|
|
...
|
|
};
|