Lines Matching refs:RTC_DATA
371 reg = inb(RTC_DATA); in todpc_rtcget()
382 reg = inb(RTC_DATA); in todpc_rtcget()
390 *rawp++ = inb(RTC_DATA); in todpc_rtcget()
393 ((struct rtc_t *)buf)->rtc_century = inb(RTC_DATA); in todpc_rtcget()
397 ((struct rtc_t *)buf)->rtc_adom = inb(RTC_DATA) & 0x3f; in todpc_rtcget()
401 ((struct rtc_t *)buf)->rtc_amon = inb(RTC_DATA); in todpc_rtcget()
405 reg = inb(RTC_DATA); in todpc_rtcget()
435 reg = inb(RTC_DATA); in todpc_rtcput()
437 outb(RTC_DATA, reg | RTC_SET); /* allow time set now */ in todpc_rtcput()
440 outb(RTC_DATA, buf[i]); in todpc_rtcput()
443 outb(RTC_DATA, ((struct rtc_t *)buf)->rtc_century); in todpc_rtcput()
448 tmp = inb(RTC_DATA) & RTC_VRT; in todpc_rtcput()
450 outb(RTC_DATA, tmp); in todpc_rtcput()
454 outb(RTC_DATA, ((struct rtc_t *)buf)->rtc_amon); in todpc_rtcput()
458 reg = inb(RTC_DATA); in todpc_rtcput()
460 outb(RTC_DATA, reg & ~RTC_SET); /* allow time update */ in todpc_rtcput()