Update to 3.4-final.
[linux-flexiantxendom0-3.2.10.git] / arch / x86 / kernel / rtc.c
1 /*
2  * RTC related functions
3  */
4 #include <linux/platform_device.h>
5 #include <linux/mc146818rtc.h>
6 #include <linux/acpi.h>
7 #include <linux/bcd.h>
8 #include <linux/export.h>
9 #include <linux/pnp.h>
10 #include <linux/of.h>
11
12 #include <asm/vsyscall.h>
13 #include <asm/x86_init.h>
14 #include <asm/time.h>
15 #include <asm/mrst.h>
16
17 #ifdef CONFIG_X86_32
18 /*
19  * This is a special lock that is owned by the CPU and holds the index
20  * register we are working with.  It is required for NMI access to the
21  * CMOS/RTC registers.  See include/asm-i386/mc146818rtc.h for details.
22  */
23 volatile unsigned long cmos_lock;
24 EXPORT_SYMBOL(cmos_lock);
25 #endif /* CONFIG_X86_32 */
26
27 /* For two digit years assume time is always after that */
28 #define CMOS_YEARS_OFFS 2000
29
30 DEFINE_SPINLOCK(rtc_lock);
31 EXPORT_SYMBOL(rtc_lock);
32
33 #ifndef CONFIG_XEN_UNPRIVILEGED_GUEST
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.
40  *
41  * BUG: This routine does not handle hour overflow properly; it just
42  *      sets the minutes. Usually you'll only notice that after reboot!
43  */
44 int mach_set_rtc_mmss(unsigned long nowtime)
45 {
46         int real_seconds, real_minutes, cmos_minutes;
47         unsigned char save_control, save_freq_select;
48         unsigned long flags;
49         int retval = 0;
50
51         spin_lock_irqsave(&rtc_lock, flags);
52
53          /* tell the clock it's being set */
54         save_control = CMOS_READ(RTC_CONTROL);
55         CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL);
56
57         /* stop and reset prescaler */
58         save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
59         CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT);
60
61         cmos_minutes = CMOS_READ(RTC_MINUTES);
62         if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD)
63                 cmos_minutes = bcd2bin(cmos_minutes);
64
65         /*
66          * since we're only adjusting minutes and seconds,
67          * don't interfere with hour overflow. This avoids
68          * messing with unknown time zones but requires your
69          * RTC not to be off by more than 15 minutes
70          */
71         real_seconds = nowtime % 60;
72         real_minutes = nowtime / 60;
73         /* correct for half hour time zone */
74         if (((abs(real_minutes - cmos_minutes) + 15)/30) & 1)
75                 real_minutes += 30;
76         real_minutes %= 60;
77
78         if (abs(real_minutes - cmos_minutes) < 30) {
79                 if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) {
80                         real_seconds = bin2bcd(real_seconds);
81                         real_minutes = bin2bcd(real_minutes);
82                 }
83                 CMOS_WRITE(real_seconds, RTC_SECONDS);
84                 CMOS_WRITE(real_minutes, RTC_MINUTES);
85         } else {
86                 printk_once(KERN_NOTICE
87                        "set_rtc_mmss: can't update from %d to %d\n",
88                        cmos_minutes, real_minutes);
89                 retval = -1;
90         }
91
92         /* The following flags have to be released exactly in this order,
93          * otherwise the DS12887 (popular MC146818A clone with integrated
94          * battery and quartz) will not reset the oscillator and will not
95          * update precisely 500 ms later. You won't find this mentioned in
96          * the Dallas Semiconductor data sheets, but who believes data
97          * sheets anyway ...                           -- Markus Kuhn
98          */
99         CMOS_WRITE(save_control, RTC_CONTROL);
100         CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
101
102         spin_unlock_irqrestore(&rtc_lock, flags);
103
104         return retval;
105 }
106
107 unsigned long mach_get_cmos_time(void)
108 {
109         unsigned int status, year, mon, day, hour, min, sec, century = 0;
110         unsigned long flags;
111
112         spin_lock_irqsave(&rtc_lock, flags);
113
114         /*
115          * If UIP is clear, then we have >= 244 microseconds before
116          * RTC registers will be updated.  Spec sheet says that this
117          * is the reliable way to read RTC - registers. If UIP is set
118          * then the register access might be invalid.
119          */
120         while ((CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP))
121                 cpu_relax();
122
123         sec = CMOS_READ(RTC_SECONDS);
124         min = CMOS_READ(RTC_MINUTES);
125         hour = CMOS_READ(RTC_HOURS);
126         day = CMOS_READ(RTC_DAY_OF_MONTH);
127         mon = CMOS_READ(RTC_MONTH);
128         year = CMOS_READ(RTC_YEAR);
129
130 #ifdef CONFIG_ACPI
131         if (acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID &&
132             acpi_gbl_FADT.century)
133                 century = CMOS_READ(acpi_gbl_FADT.century);
134 #endif
135
136         status = CMOS_READ(RTC_CONTROL);
137         WARN_ON_ONCE(RTC_ALWAYS_BCD && (status & RTC_DM_BINARY));
138
139         spin_unlock_irqrestore(&rtc_lock, flags);
140
141         if (RTC_ALWAYS_BCD || !(status & RTC_DM_BINARY)) {
142                 sec = bcd2bin(sec);
143                 min = bcd2bin(min);
144                 hour = bcd2bin(hour);
145                 day = bcd2bin(day);
146                 mon = bcd2bin(mon);
147                 year = bcd2bin(year);
148         }
149
150         if (century) {
151                 century = bcd2bin(century);
152                 year += century * 100;
153                 printk(KERN_INFO "Extended CMOS year: %d\n", century * 100);
154         } else
155                 year += CMOS_YEARS_OFFS;
156
157         return mktime(year, mon, day, hour, min, sec);
158 }
159 #endif /* CONFIG_XEN_UNPRIVILEGED_GUEST */
160
161 /* Routines for accessing the CMOS RAM/RTC. */
162 unsigned char rtc_cmos_read(unsigned char addr)
163 {
164         unsigned char val;
165
166         lock_cmos_prefix(addr);
167         outb(addr, RTC_PORT(0));
168         val = inb(RTC_PORT(1));
169         lock_cmos_suffix(addr);
170
171         return val;
172 }
173 EXPORT_SYMBOL(rtc_cmos_read);
174
175 void rtc_cmos_write(unsigned char val, unsigned char addr)
176 {
177         lock_cmos_prefix(addr);
178         outb(addr, RTC_PORT(0));
179         outb(val, RTC_PORT(1));
180         lock_cmos_suffix(addr);
181 }
182 EXPORT_SYMBOL(rtc_cmos_write);
183
184 int update_persistent_clock(struct timespec now)
185 {
186         return x86_platform.set_wallclock(now.tv_sec);
187 }
188
189 /* not static: needed by APM */
190 void read_persistent_clock(struct timespec *ts)
191 {
192         unsigned long retval;
193
194         retval = x86_platform.get_wallclock();
195
196         ts->tv_sec = retval;
197         ts->tv_nsec = 0;
198 }
199
200 unsigned long long native_read_tsc(void)
201 {
202         return __native_read_tsc();
203 }
204 EXPORT_SYMBOL(native_read_tsc);
205
206
207 #ifndef CONFIG_XEN_UNPRIVILEGED_GUEST
208 static struct resource rtc_resources[] = {
209         [0] = {
210                 .start  = RTC_PORT(0),
211                 .end    = RTC_PORT(1),
212                 .flags  = IORESOURCE_IO,
213         },
214         [1] = {
215                 .start  = RTC_IRQ,
216                 .end    = RTC_IRQ,
217                 .flags  = IORESOURCE_IRQ,
218         }
219 };
220
221 static struct platform_device rtc_device = {
222         .name           = "rtc_cmos",
223         .id             = -1,
224         .resource       = rtc_resources,
225         .num_resources  = ARRAY_SIZE(rtc_resources),
226 };
227
228 static __init int add_rtc_cmos(void)
229 {
230 #ifdef CONFIG_PNP
231         static const char *ids[] __initconst =
232             { "PNP0b00", "PNP0b01", "PNP0b02", };
233         struct pnp_dev *dev;
234         struct pnp_id *id;
235         int i;
236
237         pnp_for_each_dev(dev) {
238                 for (id = dev->id; id; id = id->next) {
239                         for (i = 0; i < ARRAY_SIZE(ids); i++) {
240                                 if (compare_pnp_id(id, ids[i]) != 0)
241                                         return 0;
242                         }
243                 }
244         }
245 #endif
246         if (of_have_populated_dt())
247                 return 0;
248
249         /* Intel MID platforms don't have ioport rtc */
250         if (mrst_identify_cpu())
251                 return -ENODEV;
252
253 #ifdef CONFIG_XEN
254         if (!is_initial_xendomain())
255                 return -ENODEV;
256 #endif
257
258         platform_device_register(&rtc_device);
259         dev_info(&rtc_device.dev,
260                  "registered platform RTC device (no PNP device found)\n");
261
262         return 0;
263 }
264 device_initcall(add_rtc_cmos);
265 #endif /* CONFIG_XEN_UNPRIVILEGED_GUEST */