iicbus: Move remaining rtc driver into rtc subfolderNo reason that they should live directly under iicbusSponsored by: Beckhoff Automation GmbH & Co. KGDifferential Revision: https://reviews.fre
iicbus: Move remaining rtc driver into rtc subfolderNo reason that they should live directly under iicbusSponsored by: Beckhoff Automation GmbH & Co. KGDifferential Revision: https://reviews.freebsd.org/D41908(cherry picked from commit 2f16049c985a364e2bd2b256f5bef9af17e10c62)
show more ...
sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Add a missing header file to SRCS to fix out-of-kernel builds.PR: 222354Submitted by: eugen@Pointy hat: ian@
Add a new driver, ds13rtc, that handles all DS13xx series i2c RTC chips.This driver supports only basic timekeeping functionality. It completelyreplaces the ds133x driver. It can also replace th
Add a new driver, ds13rtc, that handles all DS13xx series i2c RTC chips.This driver supports only basic timekeeping functionality. It completelyreplaces the ds133x driver. It can also replace the ds1374 driver, but thatwill take a few other changes in MIPS code and config, and will be committedseparately. It does NOT replace the existing ds1307 driver, which providesaccess to some of the extended features on the 1307 chip, such as controllingthe square wave output signal. If both ds1307 and ds13rtc drivers arepresent, the ds1307 driver will outbid and win control of the device.This driver can be configured with FDT data, or by using hints on non-FDTsystems. In addition to the standard hints for i2c devices, it requiresa "chiptype" string of the form "dallas,ds13xx" where 'xx' is the chip id(i.e., the same format as FDT compat strings).