Searched refs:h_m_s_ms (Results 1 – 2 of 2) sorted by relevance
21 static void opal_to_tm(u32 y_m_d, u64 h_m_s_ms, struct rtc_time *tm) in opal_to_tm() argument27 tm->tm_hour = bcd2bin((h_m_s_ms >> 56) & 0xff); in opal_to_tm()28 tm->tm_min = bcd2bin((h_m_s_ms >> 48) & 0xff); in opal_to_tm()29 tm->tm_sec = bcd2bin((h_m_s_ms >> 40) & 0xff); in opal_to_tm()34 static void tm_to_opal(struct rtc_time *tm, u32 *y_m_d, u64 *h_m_s_ms) in tm_to_opal() argument41 *h_m_s_ms |= ((u64)bin2bcd(tm->tm_hour)) << 56; in tm_to_opal()42 *h_m_s_ms |= ((u64)bin2bcd(tm->tm_min)) << 48; in tm_to_opal()43 *h_m_s_ms |= ((u64)bin2bcd(tm->tm_sec)) << 40; in tm_to_opal()51 u64 h_m_s_ms; in opal_get_rtc_time() local74 h_m_s_ms = be64_to_cpu(__h_m_s_ms); in opal_get_rtc_time()[all …]
21 static void __init opal_to_tm(u32 y_m_d, u64 h_m_s_ms, struct rtc_time *tm) in opal_to_tm() argument27 tm->tm_hour = bcd2bin((h_m_s_ms >> 56) & 0xff); in opal_to_tm()28 tm->tm_min = bcd2bin((h_m_s_ms >> 48) & 0xff); in opal_to_tm()29 tm->tm_sec = bcd2bin((h_m_s_ms >> 40) & 0xff); in opal_to_tm()37 u64 h_m_s_ms; in opal_get_boot_time() local58 h_m_s_ms = be64_to_cpu(__h_m_s_ms); in opal_get_boot_time()59 opal_to_tm(y_m_d, h_m_s_ms, &tm); in opal_get_boot_time()