blob: fe3dbfe0c4a5ee9b1fd15aae1f75e6c38952a19d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Thomas Gleixnerfe599f92008-01-30 13:30:26 +01002 * RTC related functions
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
Jaswinder Singh Rajput8383d822009-03-21 16:56:37 +05304#include <linux/platform_device.h>
5#include <linux/mc146818rtc.h>
Thomas Gleixner1122b132008-01-30 13:30:27 +01006#include <linux/acpi.h>
Thomas Gleixnerfe599f92008-01-30 13:30:26 +01007#include <linux/bcd.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -04008#include <linux/export.h>
Stas Sergeev1da2e3d2008-06-12 15:21:54 -07009#include <linux/pnp.h>
Sebastian Andrzej Siewior3bcbaf62011-02-22 21:07:46 +010010#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Ingo Molnarcdc79572008-01-30 13:32:39 +010012#include <asm/vsyscall.h>
Feng Tang7bd867d2009-09-10 10:48:56 +080013#include <asm/x86_init.h>
Jaswinder Singh Rajput8383d822009-03-21 16:56:37 +053014#include <asm/time.h>
Kuppuswamy Sathyanarayanan05454c22013-10-17 15:35:27 -070015#include <asm/intel-mid.h>
Prarit Bhargava3195ef52013-02-14 12:02:54 -050016#include <asm/rtc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Thomas Gleixner1122b132008-01-30 13:30:27 +010018#ifdef CONFIG_X86_32
Thomas Gleixner1122b132008-01-30 13:30:27 +010019/*
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 Rajput8383d822009-03-21 16:56:37 +053024volatile unsigned long cmos_lock;
Thomas Gleixner1122b132008-01-30 13:30:27 +010025EXPORT_SYMBOL(cmos_lock);
Jaswinder Singh Rajput8383d822009-03-21 16:56:37 +053026#endif /* CONFIG_X86_32 */
Thomas Gleixner1122b132008-01-30 13:30:27 +010027
Andi Kleenb62576a2008-02-09 16:16:58 +010028/* For two digit years assume time is always after that */
29#define CMOS_YEARS_OFFS 2000
30
Thomas Gleixner1122b132008-01-30 13:30:27 +010031DEFINE_SPINLOCK(rtc_lock);
32EXPORT_SYMBOL(rtc_lock);
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
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 Torvalds1da177e2005-04-16 15:20:36 -070040 */
David Vrabel35651842013-05-13 18:56:06 +010041int mach_set_rtc_mmss(const struct timespec *now)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
David Vrabel35651842013-05-13 18:56:06 +010043 unsigned long nowtime = now->tv_sec;
Prarit Bhargava3195ef52013-02-14 12:02:54 -050044 struct rtc_time tm;
Jaswinder Singh Rajput8383d822009-03-21 16:56:37 +053045 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Prarit Bhargava3195ef52013-02-14 12:02:54 -050047 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 Torvalds1da177e2005-04-16 15:20:36 -070053 } else {
Prarit Bhargava3195ef52013-02-14 12:02:54 -050054 printk(KERN_ERR
55 "%s: Invalid RTC value: write of %lx to RTC failed\n",
56 __FUNCTION__, nowtime);
57 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return retval;
60}
61
David Vrabel35651842013-05-13 18:56:06 +010062void mach_get_cmos_time(struct timespec *now)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Andi Kleen068c9222008-02-09 16:16:59 +010064 unsigned int status, year, mon, day, hour, min, sec, century = 0;
Matt Fleming47997d72011-09-21 16:08:03 +020065 unsigned long flags;
66
67 spin_lock_irqsave(&rtc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Thomas Gleixner1122b132008-01-30 13:30:27 +010069 /*
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 Mackall63732c22006-03-28 01:55:58 -080077
Thomas Gleixner1122b132008-01-30 13:30:27 +010078 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 Kleen45de7072008-02-09 16:17:01 +010085#ifdef CONFIG_ACPI
Thomas Gleixner1122b132008-01-30 13:30:27 +010086 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 Kleen068c9222008-02-09 16:16:59 +010091 status = CMOS_READ(RTC_CONTROL);
Andi Kleen45de7072008-02-09 16:17:01 +010092 WARN_ON_ONCE(RTC_ALWAYS_BCD && (status & RTC_DM_BINARY));
Andi Kleen068c9222008-02-09 16:16:59 +010093
Matt Fleming47997d72011-09-21 16:08:03 +020094 spin_unlock_irqrestore(&rtc_lock, flags);
95
Andi Kleen068c9222008-02-09 16:16:59 +010096 if (RTC_ALWAYS_BCD || !(status & RTC_DM_BINARY)) {
Adrian Bunk357c6e62008-10-18 20:28:42 -070097 sec = bcd2bin(sec);
98 min = bcd2bin(min);
99 hour = bcd2bin(hour);
100 day = bcd2bin(day);
101 mon = bcd2bin(mon);
102 year = bcd2bin(year);
Matt Mackall41623b02006-03-28 01:56:09 -0800103 }
104
Thomas Gleixner1122b132008-01-30 13:30:27 +0100105 if (century) {
Adrian Bunk357c6e62008-10-18 20:28:42 -0700106 century = bcd2bin(century);
Thomas Gleixner1122b132008-01-30 13:30:27 +0100107 year += century * 100;
Andi Kleenb62576a2008-02-09 16:16:58 +0100108 } else
Thomas Gleixner1122b132008-01-30 13:30:27 +0100109 year += CMOS_YEARS_OFFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
David Vrabel35651842013-05-13 18:56:06 +0100111 now->tv_sec = mktime(year, mon, day, hour, min, sec);
112 now->tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100115/* Routines for accessing the CMOS RAM/RTC. */
116unsigned char rtc_cmos_read(unsigned char addr)
117{
118 unsigned char val;
119
120 lock_cmos_prefix(addr);
David P. Reed04aaa7b2008-02-17 16:56:39 -0500121 outb(addr, RTC_PORT(0));
122 val = inb(RTC_PORT(1));
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100123 lock_cmos_suffix(addr);
Jaswinder Singh Rajput8383d822009-03-21 16:56:37 +0530124
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100125 return val;
126}
127EXPORT_SYMBOL(rtc_cmos_read);
128
129void rtc_cmos_write(unsigned char val, unsigned char addr)
130{
131 lock_cmos_prefix(addr);
David P. Reed04aaa7b2008-02-17 16:56:39 -0500132 outb(addr, RTC_PORT(0));
133 outb(val, RTC_PORT(1));
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100134 lock_cmos_suffix(addr);
135}
136EXPORT_SYMBOL(rtc_cmos_write);
137
Feng Tang7bd867d2009-09-10 10:48:56 +0800138int update_persistent_clock(struct timespec now)
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100139{
David Vrabel35651842013-05-13 18:56:06 +0100140 return x86_platform.set_wallclock(&now);
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100141}
142
143/* not static: needed by APM */
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200144void read_persistent_clock(struct timespec *ts)
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100145{
David Vrabel35651842013-05-13 18:56:06 +0100146 x86_platform.get_wallclock(ts);
Thomas Gleixnerfe599f92008-01-30 13:30:26 +0100147}
148
Stas Sergeev1da2e3d2008-06-12 15:21:54 -0700149
150static 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
163static 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
170static __init int add_rtc_cmos(void)
171{
172#ifdef CONFIG_PNP
Colin Kingd505ad12015-01-14 14:07:55 +0000173 static const char * const ids[] __initconst =
Bjorn Helgaas758a7f72008-10-14 17:01:03 -0600174 { "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 Siewior3bcbaf62011-02-22 21:07:46 +0100188 if (of_have_populated_dt())
189 return 0;
Bjorn Helgaas758a7f72008-10-14 17:01:03 -0600190
Mathias Nyman35d47692011-11-15 14:46:52 -0800191 /* Intel MID platforms don't have ioport rtc */
Kuppuswamy Sathyanarayanan712b6aa2013-10-17 15:35:29 -0700192 if (intel_mid_identify_cpu())
Mathias Nyman35d47692011-11-15 14:46:52 -0800193 return -ENODEV;
194
Jan Beulichee5872b2013-10-21 09:31:57 +0100195#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 Sergeev1da2e3d2008-06-12 15:21:54 -0700203 platform_device_register(&rtc_device);
Bjorn Helgaas758a7f72008-10-14 17:01:03 -0600204 dev_info(&rtc_device.dev,
205 "registered platform RTC device (no PNP device found)\n");
Jaswinder Singh Rajput8383d822009-03-21 16:56:37 +0530206
Stas Sergeev1da2e3d2008-06-12 15:21:54 -0700207 return 0;
208}
209device_initcall(add_rtc_cmos);