aboutsummaryrefslogtreecommitdiff
path: root/sys/x86
diff options
context:
space:
mode:
authorIan Lepore <ian@FreeBSD.org>2018-03-11 19:22:58 +0000
committerIan Lepore <ian@FreeBSD.org>2018-03-11 19:22:58 +0000
commit86051be993013556e09c5e5915722d41cecf08a1 (patch)
treeafcb72db9a36ff26ed67d17d62063f2607acc242 /sys/x86
parent017a5e581a4eabf0ba0d10ea5bb168ce0e00946a (diff)
downloadsrc-86051be993013556e09c5e5915722d41cecf08a1.tar.gz
src-86051be993013556e09c5e5915722d41cecf08a1.zip
Eliminate atrtc_time_lock, and use atrtc_lock for efirtc locking.
Notes
Notes: svn path=/head/; revision=330780
Diffstat (limited to 'sys/x86')
-rw-r--r--sys/x86/isa/atrtc.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/sys/x86/isa/atrtc.c b/sys/x86/isa/atrtc.c
index 1069b077a9aa..b2568750e232 100644
--- a/sys/x86/isa/atrtc.c
+++ b/sys/x86/isa/atrtc.c
@@ -56,16 +56,15 @@ __FBSDID("$FreeBSD$");
#include "clock_if.h"
/*
- * atrtc_lock protects low-level access to individual hardware registers.
- * atrtc_time_lock protects the entire sequence of accessing multiple registers
- * to read or write the date and time.
+ * atrtc_lock protects access to the RTC ioports, which are accessed by this
+ * driver, the nvram(4) driver (via rtcin()/writertc() calls), and the rtc code
+ * in efi runtime services. The efirt wrapper code directly locks atrtc lock
+ * using the EFI_TIME_LOCK/UNLOCK() macros which are defined to use this mutex
+ * on x86 platforms.
*/
-static struct mtx atrtc_lock;
+struct mtx atrtc_lock;
MTX_SYSINIT(atrtc_lock_init, &atrtc_lock, "atrtc", MTX_SPIN | MTX_NOPROFILE);
-struct mtx atrtc_time_lock;
-MTX_SYSINIT(atrtc_time_lock_init, &atrtc_time_lock, "atrtc", MTX_DEF);
-
int atrtcclock_disable = 0;
static int rtc_reg = -1;
@@ -328,7 +327,6 @@ atrtc_settime(device_t dev __unused, struct timespec *ts)
clock_ts_to_bcd(ts, &bct, false);
clock_dbgprint_bcd(dev, CLOCK_DBG_WRITE, &bct);
- mtx_lock(&atrtc_time_lock);
mtx_lock_spin(&atrtc_lock);
/* Disable RTC updates and interrupts. */
@@ -353,7 +351,6 @@ atrtc_settime(device_t dev __unused, struct timespec *ts)
rtcin_locked(RTC_INTR);
mtx_unlock_spin(&atrtc_lock);
- mtx_unlock(&atrtc_time_lock);
return (0);
}
@@ -376,7 +373,6 @@ atrtc_gettime(device_t dev, struct timespec *ts)
* to make sure that no more than 240us pass after we start reading,
* and try again if so.
*/
- mtx_lock(&atrtc_time_lock);
while (rtcin(RTC_STATUSA) & RTCSA_TUP)
continue;
mtx_lock_spin(&atrtc_lock);
@@ -390,7 +386,6 @@ atrtc_gettime(device_t dev, struct timespec *ts)
bct.year |= rtcin_locked(RTC_CENTURY) << 8;
#endif
mtx_unlock_spin(&atrtc_lock);
- mtx_unlock(&atrtc_time_lock);
/* dow is unused in timespec conversion and we have no nsec info. */
bct.dow = 0;
bct.nsec = 0;