diff options
| author | Daniel Golle <[email protected]> | 2026-07-19 02:49:27 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-07-29 14:50:18 -0600 |
| commit | a9a289a211f7e6b479afc3e5f0c07c56e5d6ff7d (patch) | |
| tree | 2e04c4a2ab33b11055bd332edca2c69554b4c159 | |
| parent | ece349ade2973e220f524ce59e59711cc919263f (diff) | |
rtc: pcf8563: add haoyu,hym8563 compatible
The HYM8563 is a PCF8563 clone with an identical timekeeping register
layout and is found e.g. on the Radxa ROCK 5B. Match its compatible so
DM_RTC (and with it the EFI GetTime/SetTime runtime services) can use
the existing driver with upstream DT.
Signed-off-by: Daniel Golle <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | drivers/rtc/pcf8563.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/pcf8563.c b/drivers/rtc/pcf8563.c index 03bef68051b..83d60dc9b55 100644 --- a/drivers/rtc/pcf8563.c +++ b/drivers/rtc/pcf8563.c @@ -213,6 +213,7 @@ static const struct rtc_ops pcf8563_rtc_ops = { static const struct udevice_id pcf8563_rtc_ids[] = { { .compatible = "nxp,pcf8563" }, + { .compatible = "haoyu,hym8563" }, { } }; |
