I'm trying to register an I2C RTC device on an x86 platform. I've disabled the PC-Style CMOS driver because I'm on an embedded platform and only my I2C RTC is properly backed up.
Now when I load the RV3028 kernel module, no /dev/rtc is registered. To see if the probe function of the module is called, I added some printk to the probe function, but no kernel messages appear when I load the module with modprobe.
On ARM platforms, I need to define devices in the devices tree, but there are no device trees for x86 platforms.
The RV3028 kernel module has no parameters to specify the bus number or the I2C address.
What is the correct way to register an I2C RTC on an X86 platform without device trees?