linux调试外部RTC hym8563

DTS配置

bash 复制代码
&i2c5 {
	status = "okay";
		hym8563: hym8563@51 {
		status = "okay";
		compatible = "haoyu,hym8563";
		reg = <0x51>;
		pinctrl-names = "default";
		pinctrl-0 = <&hym8563_int>;
		interrupt-parent = <&gpio0>;
		interrupts = <RK_PD3 IRQ_TYPE_LEVEL_LOW>;
	};
};

RTC常用的调试命令

bash 复制代码
i2cdetect -l
i2cdetect -y 5
cat /sys/bus/i2c/devices/5-0051/name

date -s "2025-10-10 10:00:00"
date
ls -al /dev/rtc*

# 没有hwclock 可以暂时使用 busybox hwclock
sudo busybox hwclock --systohc --rtc=/dev/rtc1
sudo busybox hwclock --show --rtc=/dev/rtc1
sudo busybox hwclock --systohc

# 系统 → 硬件RTC   把系统时间写到 rtc1       
sudo hwclock -w
sudo hwclock --systohc
sudo hwclock --rtc=/dev/rtc1 --systohc

# 显示硬件时间
sudo hwclock
sudo hwclock --rtc=/dev/rtc1 --show

# 硬件RTC → 系统	读取并设置 硬件RTC时间 更新 系统时间
sudo hwclock -s
sudo hwclock --rtc=/dev/rtc1 --hctosys

# 从系统层读取 rtc1 的当前时间(硬件时钟)
cat /sys/class/rtc/rtc1/time
cat /sys/class/rtc/rtc1/date

# 合并显示
echo "$(cat /sys/class/rtc/rtc1/date) $(cat /sys/class/rtc/rtc1/time)"

# 输出hym8563
cat /sys/class/rtc/rtc1/name

发现默认多打开了一个没用的RTC,导致掉电后开机硬件时间默认从rtc0同步给系统时间(实际外部rtc使用的是rtc1),导致时间不准确,将其关掉。

bash 复制代码
# CONFIG_RTC_DRV_RK808 is not set

尽量使用hwclock,因为busybox hwclock 可能会忽略 /etc/adjtime 的 UTC/LOCAL 设置,导致时间差个时区错误。

bash 复制代码
# 正确的 adjtime 配置
cat /etc/adjtime
0.000000 1764923689 0.000000
1764923689
UTC

打印下面报错没关系,rtc 信息有效

bash 复制代码
[    3.175747] rtc-hym8563 5-0051: hym8563_init_device: error read i2c data -6
[    3.178347] rtc-hym8563 5-0051: rtc information is valid
[    3.185643] rtc-hym8563 5-0051: registered as rtc0

如果开机有打印下面错误

bash 复制代码
[    0.879621] rtc-hym8563 3-0051: could not init device, -6

可以参考火柴棍大佬的文章修改:https://huochaigun.blog.csdn.net/article/details/124230641?fromshare=blogdetail\&sharetype=blogdetail\&sharerId=124230641\&sharerefer=PC\&sharesource=2301_76966953\&sharefrom=from_link

相关推荐
getapi6 小时前
注塑件的费用构成
linux·服务器·ubuntu
郝学胜-神的一滴6 小时前
深入解析C/S模型下的TCP通信流程:从握手到挥手的技术之旅
linux·服务器·c语言·网络·网络协议·tcp/ip
释怀不想释怀6 小时前
Linux网络基础(ip,域名)
linux·网络·tcp/ip
初願致夕霞6 小时前
Linux_进程
linux·c++
开开心心就好7 小时前
AI人声伴奏分离工具,离线提取伴奏K歌用
java·linux·开发语言·网络·人工智能·电脑·blender
MAR-Sky7 小时前
keil5中数据的不同定义和单片机(以stc8为例)里的对应关系(idata,xdata,data,code)
单片机·嵌入式硬件
lucky-billy7 小时前
Ubuntu 下一键部署 ROS2
linux·ubuntu·ros2
Thera7777 小时前
【Linux C++】彻底解决僵尸进程:waitpid(WNOHANG) 与 SA_NOCLDWAIT
linux·服务器·c++
阿梦Anmory7 小时前
Ubuntu配置代理最详细教程
linux·运维·ubuntu
云姜.7 小时前
线程和进程的关系
java·linux·jvm