Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 2 | * RTC related functions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | */ |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 4 | #include <linux/platform_device.h> |
| 5 | #include <linux/mc146818rtc.h> |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 6 | #include <linux/acpi.h> |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 7 | #include <linux/bcd.h> |
Paul Gortmaker | 69c60c8 | 2011-05-26 12:22:53 -0400 | [diff] [blame] | 8 | #include <linux/export.h> |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 9 | #include <linux/pnp.h> |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 10 | #include <linux/of.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
Ingo Molnar | cdc7957 | 2008-01-30 13:32:39 +0100 | [diff] [blame] | 12 | #include <asm/vsyscall.h> |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 13 | #include <asm/x86_init.h> |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 14 | #include <asm/time.h> |
Kuppuswamy Sathyanarayanan | 05454c2 | 2013-10-17 15:35:27 -0700 | [diff] [blame] | 15 | #include <asm/intel-mid.h> |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 16 | #include <asm/rtc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 18 | #ifdef CONFIG_X86_32 |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 19 | /* |
| 20 | * This is a special lock that is owned by the CPU and holds the index |
| 21 | * register we are working with. It is required for NMI access to the |
| 22 | * CMOS/RTC registers. See include/asm-i386/mc146818rtc.h for details. |
| 23 | */ |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 24 | volatile unsigned long cmos_lock; |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 25 | EXPORT_SYMBOL(cmos_lock); |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 26 | #endif /* CONFIG_X86_32 */ |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 27 | |
Andi Kleen | b62576a | 2008-02-09 16:16:58 +0100 | [diff] [blame] | 28 | /* For two digit years assume time is always after that */ |
| 29 | #define CMOS_YEARS_OFFS 2000 |
| 30 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 31 | DEFINE_SPINLOCK(rtc_lock); |
| 32 | EXPORT_SYMBOL(rtc_lock); |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
| 35 | * In order to set the CMOS clock precisely, set_rtc_mmss has to be |
| 36 | * called 500 ms after the second nowtime has started, because when |
| 37 | * nowtime is written into the registers of the CMOS clock, it will |
| 38 | * jump to the next second precisely 500 ms later. Check the Motorola |
| 39 | * MC146818A or Dallas DS12887 data sheet for details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | */ |
David Vrabel | 3565184 | 2013-05-13 18:56:06 +0100 | [diff] [blame] | 41 | int mach_set_rtc_mmss(const struct timespec *now) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
David Vrabel | 3565184 | 2013-05-13 18:56:06 +0100 | [diff] [blame] | 43 | unsigned long nowtime = now->tv_sec; |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 44 | struct rtc_time tm; |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 45 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 47 | rtc_time_to_tm(nowtime, &tm); |
| 48 | if (!rtc_valid_tm(&tm)) { |
| 49 | retval = set_rtc_time(&tm); |
| 50 | if (retval) |
| 51 | printk(KERN_ERR "%s: RTC write failed with error %d\n", |
| 52 | __FUNCTION__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } else { |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 54 | printk(KERN_ERR |
| 55 | "%s: Invalid RTC value: write of %lx to RTC failed\n", |
| 56 | __FUNCTION__, nowtime); |
| 57 | retval = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | return retval; |
| 60 | } |
| 61 | |
David Vrabel | 3565184 | 2013-05-13 18:56:06 +0100 | [diff] [blame] | 62 | void mach_get_cmos_time(struct timespec *now) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 64 | unsigned int status, year, mon, day, hour, min, sec, century = 0; |
Matt Fleming | 47997d7 | 2011-09-21 16:08:03 +0200 | [diff] [blame] | 65 | unsigned long flags; |
| 66 | |
| 67 | spin_lock_irqsave(&rtc_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 69 | /* |
| 70 | * If UIP is clear, then we have >= 244 microseconds before |
| 71 | * RTC registers will be updated. Spec sheet says that this |
| 72 | * is the reliable way to read RTC - registers. If UIP is set |
| 73 | * then the register access might be invalid. |
| 74 | */ |
| 75 | while ((CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)) |
| 76 | cpu_relax(); |
Matt Mackall | 63732c2 | 2006-03-28 01:55:58 -0800 | [diff] [blame] | 77 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 78 | sec = CMOS_READ(RTC_SECONDS); |
| 79 | min = CMOS_READ(RTC_MINUTES); |
| 80 | hour = CMOS_READ(RTC_HOURS); |
| 81 | day = CMOS_READ(RTC_DAY_OF_MONTH); |
| 82 | mon = CMOS_READ(RTC_MONTH); |
| 83 | year = CMOS_READ(RTC_YEAR); |
| 84 | |
Andi Kleen | 45de707 | 2008-02-09 16:17:01 +0100 | [diff] [blame] | 85 | #ifdef CONFIG_ACPI |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 86 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
| 87 | acpi_gbl_FADT.century) |
| 88 | century = CMOS_READ(acpi_gbl_FADT.century); |
| 89 | #endif |
| 90 | |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 91 | status = CMOS_READ(RTC_CONTROL); |
Andi Kleen | 45de707 | 2008-02-09 16:17:01 +0100 | [diff] [blame] | 92 | WARN_ON_ONCE(RTC_ALWAYS_BCD && (status & RTC_DM_BINARY)); |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 93 | |
Matt Fleming | 47997d7 | 2011-09-21 16:08:03 +0200 | [diff] [blame] | 94 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 95 | |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 96 | if (RTC_ALWAYS_BCD || !(status & RTC_DM_BINARY)) { |
Adrian Bunk | 357c6e6 | 2008-10-18 20:28:42 -0700 | [diff] [blame] | 97 | sec = bcd2bin(sec); |
| 98 | min = bcd2bin(min); |
| 99 | hour = bcd2bin(hour); |
| 100 | day = bcd2bin(day); |
| 101 | mon = bcd2bin(mon); |
| 102 | year = bcd2bin(year); |
Matt Mackall | 41623b0 | 2006-03-28 01:56:09 -0800 | [diff] [blame] | 103 | } |
| 104 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 105 | if (century) { |
Adrian Bunk | 357c6e6 | 2008-10-18 20:28:42 -0700 | [diff] [blame] | 106 | century = bcd2bin(century); |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 107 | year += century * 100; |
Andi Kleen | b62576a | 2008-02-09 16:16:58 +0100 | [diff] [blame] | 108 | } else |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 109 | year += CMOS_YEARS_OFFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
David Vrabel | 3565184 | 2013-05-13 18:56:06 +0100 | [diff] [blame] | 111 | now->tv_sec = mktime(year, mon, day, hour, min, sec); |
| 112 | now->tv_nsec = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 115 | /* Routines for accessing the CMOS RAM/RTC. */ |
| 116 | unsigned char rtc_cmos_read(unsigned char addr) |
| 117 | { |
| 118 | unsigned char val; |
| 119 | |
| 120 | lock_cmos_prefix(addr); |
David P. Reed | 04aaa7b | 2008-02-17 16:56:39 -0500 | [diff] [blame] | 121 | outb(addr, RTC_PORT(0)); |
| 122 | val = inb(RTC_PORT(1)); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 123 | lock_cmos_suffix(addr); |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 124 | |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 125 | return val; |
| 126 | } |
| 127 | EXPORT_SYMBOL(rtc_cmos_read); |
| 128 | |
| 129 | void rtc_cmos_write(unsigned char val, unsigned char addr) |
| 130 | { |
| 131 | lock_cmos_prefix(addr); |
David P. Reed | 04aaa7b | 2008-02-17 16:56:39 -0500 | [diff] [blame] | 132 | outb(addr, RTC_PORT(0)); |
| 133 | outb(val, RTC_PORT(1)); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 134 | lock_cmos_suffix(addr); |
| 135 | } |
| 136 | EXPORT_SYMBOL(rtc_cmos_write); |
| 137 | |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 138 | int update_persistent_clock(struct timespec now) |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 139 | { |
David Vrabel | 3565184 | 2013-05-13 18:56:06 +0100 | [diff] [blame] | 140 | return x86_platform.set_wallclock(&now); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | /* not static: needed by APM */ |
Martin Schwidefsky | d4f587c | 2009-08-14 15:47:31 +0200 | [diff] [blame] | 144 | void read_persistent_clock(struct timespec *ts) |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 145 | { |
David Vrabel | 3565184 | 2013-05-13 18:56:06 +0100 | [diff] [blame] | 146 | x86_platform.get_wallclock(ts); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 147 | } |
| 148 | |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 149 | |
| 150 | static struct resource rtc_resources[] = { |
| 151 | [0] = { |
| 152 | .start = RTC_PORT(0), |
| 153 | .end = RTC_PORT(1), |
| 154 | .flags = IORESOURCE_IO, |
| 155 | }, |
| 156 | [1] = { |
| 157 | .start = RTC_IRQ, |
| 158 | .end = RTC_IRQ, |
| 159 | .flags = IORESOURCE_IRQ, |
| 160 | } |
| 161 | }; |
| 162 | |
| 163 | static struct platform_device rtc_device = { |
| 164 | .name = "rtc_cmos", |
| 165 | .id = -1, |
| 166 | .resource = rtc_resources, |
| 167 | .num_resources = ARRAY_SIZE(rtc_resources), |
| 168 | }; |
| 169 | |
| 170 | static __init int add_rtc_cmos(void) |
| 171 | { |
| 172 | #ifdef CONFIG_PNP |
Colin King | d505ad1 | 2015-01-14 14:07:55 +0000 | [diff] [blame^] | 173 | static const char * const ids[] __initconst = |
Bjorn Helgaas | 758a7f7 | 2008-10-14 17:01:03 -0600 | [diff] [blame] | 174 | { "PNP0b00", "PNP0b01", "PNP0b02", }; |
| 175 | struct pnp_dev *dev; |
| 176 | struct pnp_id *id; |
| 177 | int i; |
| 178 | |
| 179 | pnp_for_each_dev(dev) { |
| 180 | for (id = dev->id; id; id = id->next) { |
| 181 | for (i = 0; i < ARRAY_SIZE(ids); i++) { |
| 182 | if (compare_pnp_id(id, ids[i]) != 0) |
| 183 | return 0; |
| 184 | } |
| 185 | } |
| 186 | } |
| 187 | #endif |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 188 | if (of_have_populated_dt()) |
| 189 | return 0; |
Bjorn Helgaas | 758a7f7 | 2008-10-14 17:01:03 -0600 | [diff] [blame] | 190 | |
Mathias Nyman | 35d4769 | 2011-11-15 14:46:52 -0800 | [diff] [blame] | 191 | /* Intel MID platforms don't have ioport rtc */ |
Kuppuswamy Sathyanarayanan | 712b6aa | 2013-10-17 15:35:29 -0700 | [diff] [blame] | 192 | if (intel_mid_identify_cpu()) |
Mathias Nyman | 35d4769 | 2011-11-15 14:46:52 -0800 | [diff] [blame] | 193 | return -ENODEV; |
| 194 | |
Jan Beulich | ee5872b | 2013-10-21 09:31:57 +0100 | [diff] [blame] | 195 | #ifdef CONFIG_ACPI |
| 196 | if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_CMOS_RTC) { |
| 197 | /* This warning can likely go away again in a year or two. */ |
| 198 | pr_info("ACPI: not registering RTC platform device\n"); |
| 199 | return -ENODEV; |
| 200 | } |
| 201 | #endif |
| 202 | |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 203 | platform_device_register(&rtc_device); |
Bjorn Helgaas | 758a7f7 | 2008-10-14 17:01:03 -0600 | [diff] [blame] | 204 | dev_info(&rtc_device.dev, |
| 205 | "registered platform RTC device (no PNP device found)\n"); |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 206 | |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | device_initcall(add_rtc_cmos); |