Dear @chaoxiandandan ,
Sorry! I didn't notice your dmesg logs has been attached in the post.
I checked the log, and found NFC reader driver was not correctly loaded due to I2C issue.
Then I checked your device tree:
weidong_sun_0-1724811196681.png
(1) interrupt-gpios
gpio1 should be No.1 gpio group of your platform, but the concrete GPIO pin was not give here.
for example, assume you are using GPIO1's pin 21 to be interrupt gpio, the line should be like this:
interrupt-gpios = <&gpio1 21 0>;
(2) enable-gpios
Similarly, assume you are using GPIO1's pin 20 to be enable GPIOs.
enable-gpios = <&gpio1 20 0>;
Change your dts, then try!
Thanks!
Regards,
weidong