2 * Support for periodic interrupts (100 per second) and for getting
3 * the current time from the RTC on Power Macintoshes.
5 * We use the decrementer register for our periodic interrupts.
7 * Paul Mackerras August 1996.
8 * Copyright (C) 1996 Paul Mackerras.
10 #include <linux/config.h>
11 #include <linux/errno.h>
12 #include <linux/sched.h>
13 #include <linux/kernel.h>
14 #include <linux/param.h>
15 #include <linux/string.h>
17 #include <linux/init.h>
18 #include <linux/time.h>
19 #include <linux/adb.h>
20 #include <linux/cuda.h>
21 #include <linux/pmu.h>
22 #include <linux/hardirq.h>
24 #include <asm/sections.h>
26 #include <asm/system.h>
28 #include <asm/pgtable.h>
29 #include <asm/machdep.h>
31 #include <asm/nvram.h>
33 /* Apparently the RTC stores seconds since 1 Jan 1904 */
34 #define RTC_OFFSET 2082844800
37 * Calibrate the decrementer frequency with the VIA timer 1.
39 #define VIA_TIMER_FREQ_6 4700000 /* time 1 frequency * 6 */
42 #define RS 0x200 /* skip between registers */
43 #define T1CL (4*RS) /* Timer 1 ctr/latch (low 8 bits) */
44 #define T1CH (5*RS) /* Timer 1 counter (high 8 bits) */
45 #define T1LL (6*RS) /* Timer 1 latch (low 8 bits) */
46 #define T1LH (7*RS) /* Timer 1 latch (high 8 bits) */
47 #define ACR (11*RS) /* Auxiliary control register */
48 #define IFR (13*RS) /* Interrupt flag register */
51 #define T1MODE 0xc0 /* Timer 1 mode */
52 #define T1MODE_CONT 0x40 /* continuous interrupts */
54 /* Bits in IFR and IER */
55 #define T1_INT 0x40 /* Timer 1 interrupt */
57 extern struct timezone sys_tz;
66 delta = ((s32)pmac_xpram_read(PMAC_XPRAM_MACHINE_LOC + 0x9)) << 16;
67 delta |= ((s32)pmac_xpram_read(PMAC_XPRAM_MACHINE_LOC + 0xa)) << 8;
68 delta |= pmac_xpram_read(PMAC_XPRAM_MACHINE_LOC + 0xb);
69 if (delta & 0x00800000UL)
70 delta |= 0xFF000000UL;
71 dst = ((pmac_xpram_read(PMAC_XPRAM_MACHINE_LOC + 0x8) & 0x80) != 0);
72 printk("GMT Delta read from XPRAM: %d minutes, DST: %s\n", delta/60,
81 pmac_get_rtc_time(void)
83 #if defined(CONFIG_ADB_CUDA) || defined(CONFIG_ADB_PMU)
84 struct adb_request req;
88 /* Get the time from the RTC */
90 #ifdef CONFIG_ADB_CUDA
92 if (cuda_request(&req, NULL, 2, CUDA_PACKET, CUDA_GET_TIME) < 0)
96 if (req.reply_len != 7)
97 printk(KERN_ERR "pmac_get_rtc_time: got %d byte reply\n",
99 now = (req.reply[3] << 24) + (req.reply[4] << 16)
100 + (req.reply[5] << 8) + req.reply[6];
101 return now - RTC_OFFSET;
102 #endif /* CONFIG_ADB_CUDA */
103 #ifdef CONFIG_ADB_PMU
105 if (pmu_request(&req, NULL, 1, PMU_READ_RTC) < 0)
107 while (!req.complete)
109 if (req.reply_len != 4)
110 printk(KERN_ERR "pmac_get_rtc_time: got %d byte reply\n",
112 now = (req.reply[0] << 24) + (req.reply[1] << 16)
113 + (req.reply[2] << 8) + req.reply[3];
114 return now - RTC_OFFSET;
115 #endif /* CONFIG_ADB_PMU */
122 pmac_set_rtc_time(unsigned long nowtime)
124 #if defined(CONFIG_ADB_CUDA) || defined(CONFIG_ADB_PMU)
125 struct adb_request req;
128 nowtime += RTC_OFFSET;
130 switch (sys_ctrler) {
131 #ifdef CONFIG_ADB_CUDA
132 case SYS_CTRLER_CUDA:
133 if (cuda_request(&req, NULL, 6, CUDA_PACKET, CUDA_SET_TIME,
134 nowtime >> 24, nowtime >> 16, nowtime >> 8, nowtime) < 0)
136 while (!req.complete)
138 if ((req.reply_len != 3) && (req.reply_len != 7))
139 printk(KERN_ERR "pmac_set_rtc_time: got %d byte reply\n",
142 #endif /* CONFIG_ADB_CUDA */
143 #ifdef CONFIG_ADB_PMU
145 if (pmu_request(&req, NULL, 5, PMU_SET_RTC,
146 nowtime >> 24, nowtime >> 16, nowtime >> 8, nowtime) < 0)
148 while (!req.complete)
150 if (req.reply_len != 0)
151 printk(KERN_ERR "pmac_set_rtc_time: got %d byte reply\n",
154 #endif /* CONFIG_ADB_PMU */
161 * Calibrate the decrementer register using VIA timer 1.
162 * This is used both on powermacs and CHRP machines.
165 via_calibrate_decr(void)
167 struct device_node *vias;
168 volatile unsigned char *via;
169 int count = VIA_TIMER_FREQ_6 / 100;
170 unsigned int dstart, dend;
172 vias = find_devices("via-cuda");
174 vias = find_devices("via-pmu");
176 vias = find_devices("via");
177 if (vias == 0 || vias->n_addrs == 0)
179 via = (volatile unsigned char *)
180 ioremap(vias->addrs[0].address, vias->addrs[0].size);
182 /* set timer 1 for continuous interrupts */
183 out_8(&via[ACR], (via[ACR] & ~T1MODE) | T1MODE_CONT);
184 /* set the counter to a small value */
185 out_8(&via[T1CH], 2);
186 /* set the latch to `count' */
187 out_8(&via[T1LL], count);
188 out_8(&via[T1LH], count >> 8);
189 /* wait until it hits 0 */
190 while ((in_8(&via[IFR]) & T1_INT) == 0)
193 /* clear the interrupt & wait until it hits 0 again */
195 while ((in_8(&via[IFR]) & T1_INT) == 0)
199 tb_ticks_per_jiffy = (dstart - dend) / (6 * (HZ/100));
200 tb_to_us = mulhwu_scale_factor(dstart - dend, 60000);
202 printk(KERN_INFO "via_calibrate_decr: ticks per jiffy = %u (%u ticks)\n",
203 tb_ticks_per_jiffy, dstart - dend);
210 #ifdef CONFIG_PMAC_PBOOK
212 * Reset the time after a sleep.
215 time_sleep_notify(struct pmu_sleep_notifier *self, int when)
217 static unsigned long time_diff;
222 case PBOOK_SLEEP_NOW:
224 seq = read_seqbegin_irqsave(&xtime_lock, flags);
225 time_diff = xtime.tv_sec - pmac_get_rtc_time();
226 } while (read_seqretry_irqrestore(&xtime_lock, seq, flags));
229 write_seqlock_irqsave(&xtime_lock, flags);
230 xtime.tv_sec = pmac_get_rtc_time() + time_diff;
232 last_rtc_update = xtime.tv_sec;
233 write_sequnlock_irqrestore(&xtime_lock, flags);
236 return PBOOK_SLEEP_OK;
239 static struct pmu_sleep_notifier time_sleep_notifier __pmacdata = {
240 time_sleep_notify, SLEEP_LEVEL_MISC,
242 #endif /* CONFIG_PMAC_PBOOK */
245 * Query the OF and get the decr frequency.
246 * This was taken from the pmac time_init() when merging the prep/pmac
250 pmac_calibrate_decr(void)
252 struct device_node *cpu;
253 unsigned int freq, *fp;
255 #ifdef CONFIG_PMAC_PBOOK
256 pmu_register_sleep_notifier(&time_sleep_notifier);
257 #endif /* CONFIG_PMAC_PBOOK */
259 /* We assume MacRISC2 machines have correct device-tree
260 * calibration. That's better since the VIA itself seems
261 * to be slightly off. --BenH
263 if (!machine_is_compatible("MacRISC2") &&
264 !machine_is_compatible("MacRISC3") &&
265 !machine_is_compatible("MacRISC4"))
266 if (via_calibrate_decr())
269 /* Special case: QuickSilver G4s seem to have a badly calibrated
270 * timebase-frequency in OF, VIA is much better on these. We should
271 * probably implement calibration based on the KL timer on these
272 * machines anyway... -BenH
274 if (machine_is_compatible("PowerMac3,5"))
275 if (via_calibrate_decr())
278 * The cpu node should have a timebase-frequency property
279 * to tell us the rate at which the decrementer counts.
281 cpu = find_type_devices("cpu");
283 panic("can't find cpu node in time_init");
284 fp = (unsigned int *) get_property(cpu, "timebase-frequency", NULL);
286 panic("can't get cpu timebase frequency");
288 printk("time_init: decrementer frequency = %u.%.6u MHz\n",
289 freq/1000000, freq%1000000);
290 tb_ticks_per_jiffy = freq / HZ;
291 tb_to_us = mulhwu_scale_factor(freq, 1000000);