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> |
Mathias Nyman | 35d4769 | 2011-11-15 14:46:52 -0800 | [diff] [blame] | 15 | #include <asm/mrst.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 | */ |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 41 | int mach_set_rtc_mmss(unsigned long nowtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 43 | struct rtc_time tm; |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 44 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 46 | rtc_time_to_tm(nowtime, &tm); |
| 47 | if (!rtc_valid_tm(&tm)) { |
| 48 | retval = set_rtc_time(&tm); |
| 49 | if (retval) |
| 50 | printk(KERN_ERR "%s: RTC write failed with error %d\n", |
| 51 | __FUNCTION__, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | } else { |
Prarit Bhargava | 3195ef5 | 2013-02-14 12:02:54 -0500 | [diff] [blame] | 53 | printk(KERN_ERR |
| 54 | "%s: Invalid RTC value: write of %lx to RTC failed\n", |
| 55 | __FUNCTION__, nowtime); |
| 56 | retval = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | return retval; |
| 59 | } |
| 60 | |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 61 | unsigned long mach_get_cmos_time(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 63 | unsigned int status, year, mon, day, hour, min, sec, century = 0; |
Matt Fleming | 47997d7 | 2011-09-21 16:08:03 +0200 | [diff] [blame] | 64 | unsigned long flags; |
| 65 | |
| 66 | spin_lock_irqsave(&rtc_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 68 | /* |
| 69 | * If UIP is clear, then we have >= 244 microseconds before |
| 70 | * RTC registers will be updated. Spec sheet says that this |
| 71 | * is the reliable way to read RTC - registers. If UIP is set |
| 72 | * then the register access might be invalid. |
| 73 | */ |
| 74 | while ((CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)) |
| 75 | cpu_relax(); |
Matt Mackall | 63732c2 | 2006-03-28 01:55:58 -0800 | [diff] [blame] | 76 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 77 | sec = CMOS_READ(RTC_SECONDS); |
| 78 | min = CMOS_READ(RTC_MINUTES); |
| 79 | hour = CMOS_READ(RTC_HOURS); |
| 80 | day = CMOS_READ(RTC_DAY_OF_MONTH); |
| 81 | mon = CMOS_READ(RTC_MONTH); |
| 82 | year = CMOS_READ(RTC_YEAR); |
| 83 | |
Andi Kleen | 45de707 | 2008-02-09 16:17:01 +0100 | [diff] [blame] | 84 | #ifdef CONFIG_ACPI |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 85 | if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID && |
| 86 | acpi_gbl_FADT.century) |
| 87 | century = CMOS_READ(acpi_gbl_FADT.century); |
| 88 | #endif |
| 89 | |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 90 | status = CMOS_READ(RTC_CONTROL); |
Andi Kleen | 45de707 | 2008-02-09 16:17:01 +0100 | [diff] [blame] | 91 | WARN_ON_ONCE(RTC_ALWAYS_BCD && (status & RTC_DM_BINARY)); |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 92 | |
Matt Fleming | 47997d7 | 2011-09-21 16:08:03 +0200 | [diff] [blame] | 93 | spin_unlock_irqrestore(&rtc_lock, flags); |
| 94 | |
Andi Kleen | 068c922 | 2008-02-09 16:16:59 +0100 | [diff] [blame] | 95 | if (RTC_ALWAYS_BCD || !(status & RTC_DM_BINARY)) { |
Adrian Bunk | 357c6e6 | 2008-10-18 20:28:42 -0700 | [diff] [blame] | 96 | sec = bcd2bin(sec); |
| 97 | min = bcd2bin(min); |
| 98 | hour = bcd2bin(hour); |
| 99 | day = bcd2bin(day); |
| 100 | mon = bcd2bin(mon); |
| 101 | year = bcd2bin(year); |
Matt Mackall | 41623b0 | 2006-03-28 01:56:09 -0800 | [diff] [blame] | 102 | } |
| 103 | |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 104 | if (century) { |
Adrian Bunk | 357c6e6 | 2008-10-18 20:28:42 -0700 | [diff] [blame] | 105 | century = bcd2bin(century); |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 106 | year += century * 100; |
Andi Kleen | b62576a | 2008-02-09 16:16:58 +0100 | [diff] [blame] | 107 | } else |
Thomas Gleixner | 1122b13 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 108 | year += CMOS_YEARS_OFFS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | return mktime(year, mon, day, hour, min, sec); |
| 111 | } |
| 112 | |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 113 | /* Routines for accessing the CMOS RAM/RTC. */ |
| 114 | unsigned char rtc_cmos_read(unsigned char addr) |
| 115 | { |
| 116 | unsigned char val; |
| 117 | |
| 118 | lock_cmos_prefix(addr); |
David P. Reed | 04aaa7b | 2008-02-17 16:56:39 -0500 | [diff] [blame] | 119 | outb(addr, RTC_PORT(0)); |
| 120 | val = inb(RTC_PORT(1)); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 121 | lock_cmos_suffix(addr); |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 122 | |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 123 | return val; |
| 124 | } |
| 125 | EXPORT_SYMBOL(rtc_cmos_read); |
| 126 | |
| 127 | void rtc_cmos_write(unsigned char val, unsigned char addr) |
| 128 | { |
| 129 | lock_cmos_prefix(addr); |
David P. Reed | 04aaa7b | 2008-02-17 16:56:39 -0500 | [diff] [blame] | 130 | outb(addr, RTC_PORT(0)); |
| 131 | outb(val, RTC_PORT(1)); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 132 | lock_cmos_suffix(addr); |
| 133 | } |
| 134 | EXPORT_SYMBOL(rtc_cmos_write); |
| 135 | |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 136 | int update_persistent_clock(struct timespec now) |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 137 | { |
Matt Fleming | 47997d7 | 2011-09-21 16:08:03 +0200 | [diff] [blame] | 138 | return x86_platform.set_wallclock(now.tv_sec); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | /* not static: needed by APM */ |
Martin Schwidefsky | d4f587c | 2009-08-14 15:47:31 +0200 | [diff] [blame] | 142 | void read_persistent_clock(struct timespec *ts) |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 143 | { |
Matt Fleming | 47997d7 | 2011-09-21 16:08:03 +0200 | [diff] [blame] | 144 | unsigned long retval; |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 145 | |
Feng Tang | 7bd867d | 2009-09-10 10:48:56 +0800 | [diff] [blame] | 146 | retval = x86_platform.get_wallclock(); |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 147 | |
Martin Schwidefsky | d4f587c | 2009-08-14 15:47:31 +0200 | [diff] [blame] | 148 | ts->tv_sec = retval; |
| 149 | ts->tv_nsec = 0; |
Thomas Gleixner | fe599f9 | 2008-01-30 13:30:26 +0100 | [diff] [blame] | 150 | } |
| 151 | |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 152 | |
| 153 | static struct resource rtc_resources[] = { |
| 154 | [0] = { |
| 155 | .start = RTC_PORT(0), |
| 156 | .end = RTC_PORT(1), |
| 157 | .flags = IORESOURCE_IO, |
| 158 | }, |
| 159 | [1] = { |
| 160 | .start = RTC_IRQ, |
| 161 | .end = RTC_IRQ, |
| 162 | .flags = IORESOURCE_IRQ, |
| 163 | } |
| 164 | }; |
| 165 | |
| 166 | static struct platform_device rtc_device = { |
| 167 | .name = "rtc_cmos", |
| 168 | .id = -1, |
| 169 | .resource = rtc_resources, |
| 170 | .num_resources = ARRAY_SIZE(rtc_resources), |
| 171 | }; |
| 172 | |
| 173 | static __init int add_rtc_cmos(void) |
| 174 | { |
| 175 | #ifdef CONFIG_PNP |
Andi Kleen | 75fdd15 | 2012-10-04 17:11:42 -0700 | [diff] [blame] | 176 | static const char * const const ids[] __initconst = |
Bjorn Helgaas | 758a7f7 | 2008-10-14 17:01:03 -0600 | [diff] [blame] | 177 | { "PNP0b00", "PNP0b01", "PNP0b02", }; |
| 178 | struct pnp_dev *dev; |
| 179 | struct pnp_id *id; |
| 180 | int i; |
| 181 | |
| 182 | pnp_for_each_dev(dev) { |
| 183 | for (id = dev->id; id; id = id->next) { |
| 184 | for (i = 0; i < ARRAY_SIZE(ids); i++) { |
| 185 | if (compare_pnp_id(id, ids[i]) != 0) |
| 186 | return 0; |
| 187 | } |
| 188 | } |
| 189 | } |
| 190 | #endif |
Sebastian Andrzej Siewior | 3bcbaf6 | 2011-02-22 21:07:46 +0100 | [diff] [blame] | 191 | if (of_have_populated_dt()) |
| 192 | return 0; |
Bjorn Helgaas | 758a7f7 | 2008-10-14 17:01:03 -0600 | [diff] [blame] | 193 | |
Mathias Nyman | 35d4769 | 2011-11-15 14:46:52 -0800 | [diff] [blame] | 194 | /* Intel MID platforms don't have ioport rtc */ |
| 195 | if (mrst_identify_cpu()) |
| 196 | return -ENODEV; |
| 197 | |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 198 | platform_device_register(&rtc_device); |
Bjorn Helgaas | 758a7f7 | 2008-10-14 17:01:03 -0600 | [diff] [blame] | 199 | dev_info(&rtc_device.dev, |
| 200 | "registered platform RTC device (no PNP device found)\n"); |
Jaswinder Singh Rajput | 8383d82 | 2009-03-21 16:56:37 +0530 | [diff] [blame] | 201 | |
Stas Sergeev | 1da2e3d | 2008-06-12 15:21:54 -0700 | [diff] [blame] | 202 | return 0; |
| 203 | } |
| 204 | device_initcall(add_rtc_cmos); |