Page MenuHomeFreeBSD

Add RTC clock conversions for BCD values, with non-panic validation.
AbandonedPublic

Authored by ian on Jan 1 2018, 11:45 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 3:06 PM
Unknown Object (File)
Mar 3 2024, 6:19 AM
Unknown Object (File)
Jan 23 2024, 2:45 PM
Unknown Object (File)
Jan 17 2024, 10:17 AM
Unknown Object (File)
Jan 13 2024, 3:38 AM
Unknown Object (File)
Jan 12 2024, 12:31 AM
Unknown Object (File)
Jan 4 2024, 7:25 PM
Unknown Object (File)
Dec 20 2023, 5:59 AM
Subscribers

Details

Reviewers
None
Summary

RTC clock hardware frequently uses BCD numbers. Currently the low-level bcd2bin() and bin2bcd() functions will KASSERT if given out-of-range BCD values. Every RTC driver must implement its own code for validating the unreliable data coming from the hardware to avoid a potential kernel panic.

This change introduces two new functions, clock_bcd_to_ts() and clock_ts_to_bcd(). The former validates its inputs and returns EINVAL if any values are out of range. The latter guarantees the returned data will be valid BCD in a known format (4-digit years, etc).

A new bcd_clocktime structure is used with the new functions. It is identical to the original clocktime structure, but has a new unique type to help avoid errors such as passing binary clocktime data to the bcd flavor of conversions.

Changes to existing drivers to use the new code will be committed separately, once this new stuff makes it through review.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 14248

Event Timeline

Add support for handling AM/PM mode (12 vs 24 hour clock) to the conversion routines. Many RTC chips/drivers support an AM/PM mode, and it turns out to be difficult to do the math on BCD values in each individual driver. It's much easier to commonize the support and do the math while the numbers are in binary form during conversion.

Also, change the types of the fields holding BCD data in the bcd_clocktime struct to be uint8_t rather than plain int.