rtc-sa1100.c 8.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * Real Time Clock interface for StrongARM SA1x00 and XScale PXA2xx
 *
 * Copyright (c) 2000 Nils Faerber
 *
 * Based on rtc.c by Paul Gortmaker
 *
 * Original Driver by Nils Faerber <nils@kernelconcepts.de>
 *
 * Modifications from:
 *   CIH <cih@coventive.com>
12
 *   Nicolas Pitre <nico@fluxnic.net>
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 *   Andrew Christian <andrew.christian@hp.com>
 *
 * Converted to the RTC subsystem and Driver Model
 *   by Richard Purdie <rpurdie@rpsys.net>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/platform_device.h>
#include <linux/module.h>
#include <linux/rtc.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/interrupt.h>
#include <linux/string.h>
#include <linux/pm.h>
J
Jiri Slaby 已提交
32
#include <linux/bitops.h>
33

34
#include <mach/hardware.h>
35 36 37
#include <asm/irq.h>

#ifdef CONFIG_ARCH_PXA
38
#include <mach/regs-rtc.h>
39 40
#endif

41
#define RTC_DEF_DIVIDER		(32768 - 1)
42 43
#define RTC_DEF_TRIM		0

44
static const unsigned long RTC_FREQ = 1024;
45
static struct rtc_time rtc_alarm;
I
Ingo Molnar 已提交
46
static DEFINE_SPINLOCK(sa1100_rtc_lock);
47

48 49 50 51
/*
 * Calculate the next alarm time given the requested alarm time mask
 * and the current time.
 */
52 53
static void rtc_next_alarm_time(struct rtc_time *next, struct rtc_time *now,
	struct rtc_time *alrm)
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
{
	unsigned long next_time;
	unsigned long now_time;

	next->tm_year = now->tm_year;
	next->tm_mon = now->tm_mon;
	next->tm_mday = now->tm_mday;
	next->tm_hour = alrm->tm_hour;
	next->tm_min = alrm->tm_min;
	next->tm_sec = alrm->tm_sec;

	rtc_tm_to_time(now, &now_time);
	rtc_tm_to_time(next, &next_time);

	if (next_time < now_time) {
		/* Advance one day */
		next_time += 60 * 60 * 24;
		rtc_time_to_tm(next_time, next);
	}
}

75
static irqreturn_t sa1100_rtc_interrupt(int irq, void *dev_id)
76 77 78 79 80 81 82 83 84 85 86
{
	struct platform_device *pdev = to_platform_device(dev_id);
	struct rtc_device *rtc = platform_get_drvdata(pdev);
	unsigned int rtsr;
	unsigned long events = 0;

	spin_lock(&sa1100_rtc_lock);

	rtsr = RTSR;
	/* clear interrupt sources */
	RTSR = 0;
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	/* Fix for a nasty initialization problem the in SA11xx RTSR register.
	 * See also the comments in sa1100_rtc_probe(). */
	if (rtsr & (RTSR_ALE | RTSR_HZE)) {
		/* This is the original code, before there was the if test
		 * above. This code does not clear interrupts that were not
		 * enabled. */
		RTSR = (RTSR_AL | RTSR_HZ) & (rtsr >> 2);
	} else {
		/* For some reason, it is possible to enter this routine
		 * without interruptions enabled, it has been tested with
		 * several units (Bug in SA11xx chip?).
		 *
		 * This situation leads to an infinite "loop" of interrupt
		 * routine calling and as a result the processor seems to
		 * lock on its first call to open(). */
		RTSR = RTSR_AL | RTSR_HZ;
	}
104 105 106 107 108 109 110 111 112 113 114 115

	/* clear alarm interrupt if it has occurred */
	if (rtsr & RTSR_AL)
		rtsr &= ~RTSR_ALE;
	RTSR = rtsr & (RTSR_ALE | RTSR_HZE);

	/* update irq data & counter */
	if (rtsr & RTSR_AL)
		events |= RTC_AF | RTC_IRQF;
	if (rtsr & RTSR_HZ)
		events |= RTC_UF | RTC_IRQF;

116
	rtc_update_irq(rtc, 1, events);
117 118 119 120 121 122 123 124 125

	spin_unlock(&sa1100_rtc_lock);

	return IRQ_HANDLED;
}

static int sa1100_rtc_open(struct device *dev)
{
	int ret;
126 127
	struct platform_device *plat_dev = to_platform_device(dev);
	struct rtc_device *rtc = platform_get_drvdata(plat_dev);
128

129
	ret = request_irq(IRQ_RTC1Hz, sa1100_rtc_interrupt, IRQF_DISABLED,
130
		"rtc 1Hz", dev);
131
	if (ret) {
132
		dev_err(dev, "IRQ %d already in use.\n", IRQ_RTC1Hz);
133 134
		goto fail_ui;
	}
135
	ret = request_irq(IRQ_RTCAlrm, sa1100_rtc_interrupt, IRQF_DISABLED,
136
		"rtc Alrm", dev);
137
	if (ret) {
138
		dev_err(dev, "IRQ %d already in use.\n", IRQ_RTCAlrm);
139 140
		goto fail_ai;
	}
141
	rtc->max_user_freq = RTC_FREQ;
142
	rtc_irq_set_freq(rtc, NULL, RTC_FREQ);
143

144 145 146
	return 0;

 fail_ai:
147
	free_irq(IRQ_RTC1Hz, dev);
148 149 150 151 152 153 154 155 156 157 158 159 160 161
 fail_ui:
	return ret;
}

static void sa1100_rtc_release(struct device *dev)
{
	spin_lock_irq(&sa1100_rtc_lock);
	RTSR = 0;
	spin_unlock_irq(&sa1100_rtc_lock);

	free_irq(IRQ_RTCAlrm, dev);
	free_irq(IRQ_RTC1Hz, dev);
}

162 163 164 165 166 167 168 169 170 171 172
static int sa1100_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
{
	spin_lock_irq(&sa1100_rtc_lock);
	if (enabled)
		RTSR |= RTSR_ALE;
	else
		RTSR &= ~RTSR_ALE;
	spin_unlock_irq(&sa1100_rtc_lock);
	return 0;
}

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
static int sa1100_rtc_read_time(struct device *dev, struct rtc_time *tm)
{
	rtc_time_to_tm(RCNR, tm);
	return 0;
}

static int sa1100_rtc_set_time(struct device *dev, struct rtc_time *tm)
{
	unsigned long time;
	int ret;

	ret = rtc_tm_to_time(tm, &time);
	if (ret == 0)
		RCNR = time;
	return ret;
}

static int sa1100_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
{
192 193
	u32	rtsr;

194
	memcpy(&alrm->time, &rtc_alarm, sizeof(struct rtc_time));
195 196 197
	rtsr = RTSR;
	alrm->enabled = (rtsr & RTSR_ALE) ? 1 : 0;
	alrm->pending = (rtsr & RTSR_AL) ? 1 : 0;
198 199 200 201 202
	return 0;
}

static int sa1100_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
{
203
	struct rtc_time now_tm, alarm_tm;
204 205 206
	int ret;

	spin_lock_irq(&sa1100_rtc_lock);
207 208 209 210 211 212 213 214 215 216 217

	now = RCNR;
	rtc_time_to_tm(now, &now_tm);
	rtc_next_alarm_time(&alarm_tm, &now_tm, alrm->time);
	rtc_tm_to_time(&alarm_tm, &time);
	RTAR = time;
	if (alrm->enabled)
		RTSR |= RTSR_ALE;
	else
		RTSR &= ~RTSR_ALE;

218 219 220 221 222 223 224
	spin_unlock_irq(&sa1100_rtc_lock);

	return ret;
}

static int sa1100_rtc_proc(struct device *dev, struct seq_file *seq)
{
225 226
	seq_printf(seq, "trim/divider\t\t: 0x%08x\n", (u32) RTTR);
	seq_printf(seq, "RTSR\t\t\t: 0x%08x\n", (u32)RTSR);
227 228 229 230

	return 0;
}

231
static const struct rtc_class_ops sa1100_rtc_ops = {
232 233 234 235 236 237 238
	.open = sa1100_rtc_open,
	.release = sa1100_rtc_release,
	.read_time = sa1100_rtc_read_time,
	.set_time = sa1100_rtc_set_time,
	.read_alarm = sa1100_rtc_read_alarm,
	.set_alarm = sa1100_rtc_set_alarm,
	.proc = sa1100_rtc_proc,
239
	.alarm_irq_enable = sa1100_rtc_alarm_irq_enable,
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
};

static int sa1100_rtc_probe(struct platform_device *pdev)
{
	struct rtc_device *rtc;

	/*
	 * According to the manual we should be able to let RTTR be zero
	 * and then a default diviser for a 32.768KHz clock is used.
	 * Apparently this doesn't work, at least for my SA1110 rev 5.
	 * If the clock divider is uninitialized then reset it to the
	 * default value to get the 1Hz clock.
	 */
	if (RTTR == 0) {
		RTTR = RTC_DEF_DIVIDER + (RTC_DEF_TRIM << 16);
255 256
		dev_warn(&pdev->dev, "warning: "
			"initializing default clock divider/trim value\n");
257 258 259 260
		/* The current RTC value probably doesn't make sense either */
		RCNR = 0;
	}

261 262
	device_init_wakeup(&pdev->dev, 1);

263
	rtc = rtc_device_register(pdev->name, &pdev->dev, &sa1100_rtc_ops,
264
		THIS_MODULE);
265

266
	if (IS_ERR(rtc))
267 268 269 270
		return PTR_ERR(rtc);

	platform_set_drvdata(pdev, rtc);

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
	/* Fix for a nasty initialization problem the in SA11xx RTSR register.
	 * See also the comments in sa1100_rtc_interrupt().
	 *
	 * Sometimes bit 1 of the RTSR (RTSR_HZ) will wake up 1, which means an
	 * interrupt pending, even though interrupts were never enabled.
	 * In this case, this bit it must be reset before enabling
	 * interruptions to avoid a nonexistent interrupt to occur.
	 *
	 * In principle, the same problem would apply to bit 0, although it has
	 * never been observed to happen.
	 *
	 * This issue is addressed both here and in sa1100_rtc_interrupt().
	 * If the issue is not addressed here, in the times when the processor
	 * wakes up with the bit set there will be one spurious interrupt.
	 *
	 * The issue is also dealt with in sa1100_rtc_interrupt() to be on the
	 * safe side, once the condition that lead to this strange
	 * initialization is unknown and could in principle happen during
	 * normal processing.
	 *
	 * Notice that clearing bit 1 and 0 is accomplished by writting ONES to
	 * the corresponding bits in RTSR. */
	RTSR = RTSR_AL | RTSR_HZ;

295 296 297 298 299 300 301
	return 0;
}

static int sa1100_rtc_remove(struct platform_device *pdev)
{
	struct rtc_device *rtc = platform_get_drvdata(pdev);

302
	if (rtc)
303 304 305 306 307
		rtc_device_unregister(rtc);

	return 0;
}

308
#ifdef CONFIG_PM
309
static int sa1100_rtc_suspend(struct device *dev)
310
{
311
	if (device_may_wakeup(dev))
312
		enable_irq_wake(IRQ_RTCAlrm);
313 314 315
	return 0;
}

316
static int sa1100_rtc_resume(struct device *dev)
317
{
318
	if (device_may_wakeup(dev))
319
		disable_irq_wake(IRQ_RTCAlrm);
320 321
	return 0;
}
322

323
static const struct dev_pm_ops sa1100_rtc_pm_ops = {
324 325 326
	.suspend	= sa1100_rtc_suspend,
	.resume		= sa1100_rtc_resume,
};
327 328
#endif

329 330 331 332
static struct platform_driver sa1100_rtc_driver = {
	.probe		= sa1100_rtc_probe,
	.remove		= sa1100_rtc_remove,
	.driver		= {
333 334 335 336
		.name	= "sa1100-rtc",
#ifdef CONFIG_PM
		.pm	= &sa1100_rtc_pm_ops,
#endif
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
	},
};

static int __init sa1100_rtc_init(void)
{
	return platform_driver_register(&sa1100_rtc_driver);
}

static void __exit sa1100_rtc_exit(void)
{
	platform_driver_unregister(&sa1100_rtc_driver);
}

module_init(sa1100_rtc_init);
module_exit(sa1100_rtc_exit);

MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>");
MODULE_DESCRIPTION("SA11x0/PXA2xx Realtime Clock Driver (RTC)");
MODULE_LICENSE("GPL");
356
MODULE_ALIAS("platform:sa1100-rtc");