rtc-sh.c 20.5 KB
Newer Older
1 2 3
/*
 * SuperH On-Chip RTC Support
 *
4
 * Copyright (C) 2006 - 2009  Paul Mundt
J
Jamie Lenehan 已提交
5
 * Copyright (C) 2006  Jamie Lenehan
6
 * Copyright (C) 2008  Angelo Castello
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * Based on the old arch/sh/kernel/cpu/rtc.c by:
 *
 *  Copyright (C) 2000  Philipp Rumpf <prumpf@tux.org>
 *  Copyright (C) 1999  Tetsuya Okada & Niibe Yutaka
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/bcd.h>
#include <linux/rtc.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/seq_file.h>
#include <linux/interrupt.h>
#include <linux/spinlock.h>
26
#include <linux/io.h>
27
#include <linux/log2.h>
28
#include <linux/clk.h>
29
#include <linux/slab.h>
30
#include <asm/rtc.h>
31

J
Jamie Lenehan 已提交
32
#define DRV_NAME	"sh-rtc"
A
Alessandro Zummo 已提交
33
#define DRV_VERSION	"0.2.3"
34 35 36

#define RTC_REG(r)	((r) * rtc_reg_size)

37
#define R64CNT		RTC_REG(0)
J
Jamie Lenehan 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

#define RSECCNT		RTC_REG(1)	/* RTC sec */
#define RMINCNT		RTC_REG(2)	/* RTC min */
#define RHRCNT		RTC_REG(3)	/* RTC hour */
#define RWKCNT		RTC_REG(4)	/* RTC week */
#define RDAYCNT		RTC_REG(5)	/* RTC day */
#define RMONCNT		RTC_REG(6)	/* RTC month */
#define RYRCNT		RTC_REG(7)	/* RTC year */
#define RSECAR		RTC_REG(8)	/* ALARM sec */
#define RMINAR		RTC_REG(9)	/* ALARM min */
#define RHRAR		RTC_REG(10)	/* ALARM hour */
#define RWKAR		RTC_REG(11)	/* ALARM week */
#define RDAYAR		RTC_REG(12)	/* ALARM day */
#define RMONAR		RTC_REG(13)	/* ALARM month */
#define RCR1		RTC_REG(14)	/* Control */
#define RCR2		RTC_REG(15)	/* Control */

P
Paul Mundt 已提交
55 56 57 58 59 60 61 62 63 64 65 66
/*
 * Note on RYRAR and RCR3: Up until this point most of the register
 * definitions are consistent across all of the available parts. However,
 * the placement of the optional RYRAR and RCR3 (the RYRAR control
 * register used to control RYRCNT/RYRAR compare) varies considerably
 * across various parts, occasionally being mapped in to a completely
 * unrelated address space. For proper RYRAR support a separate resource
 * would have to be handed off, but as this is purely optional in
 * practice, we simply opt not to support it, thereby keeping the code
 * quite a bit more simplified.
 */

J
Jamie Lenehan 已提交
67 68
/* ALARM Bits - or with BCD encoded value */
#define AR_ENB		0x80	/* Enable for alarm cmp   */
69

70 71 72 73 74 75 76
/* Period Bits */
#define PF_HP		0x100	/* Enable Half Period to support 8,32,128Hz */
#define PF_COUNT	0x200	/* Half periodic counter */
#define PF_OXS		0x400	/* Periodic One x Second */
#define PF_KOU		0x800	/* Kernel or User periodic request 1=kernel */
#define PF_MASK		0xf00

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
/* RCR1 Bits */
#define RCR1_CF		0x80	/* Carry Flag             */
#define RCR1_CIE	0x10	/* Carry Interrupt Enable */
#define RCR1_AIE	0x08	/* Alarm Interrupt Enable */
#define RCR1_AF		0x01	/* Alarm Flag             */

/* RCR2 Bits */
#define RCR2_PEF	0x80	/* PEriodic interrupt Flag */
#define RCR2_PESMASK	0x70	/* Periodic interrupt Set  */
#define RCR2_RTCEN	0x08	/* ENable RTC              */
#define RCR2_ADJ	0x04	/* ADJustment (30-second)  */
#define RCR2_RESET	0x02	/* Reset bit               */
#define RCR2_START	0x01	/* Start bit               */

struct sh_rtc {
92 93 94 95 96 97 98 99 100 101 102
	void __iomem		*regbase;
	unsigned long		regsize;
	struct resource		*res;
	int			alarm_irq;
	int			periodic_irq;
	int			carry_irq;
	struct clk		*clk;
	struct rtc_device	*rtc_dev;
	spinlock_t		lock;
	unsigned long		capabilities;	/* See asm/rtc.h for cap bits */
	unsigned short		periodic_freq;
103 104
};

105
static int __sh_rtc_interrupt(struct sh_rtc *rtc)
106
{
107
	unsigned int tmp, pending;
108 109

	tmp = readb(rtc->regbase + RCR1);
110
	pending = tmp & RCR1_CF;
J
Jamie Lenehan 已提交
111
	tmp &= ~RCR1_CF;
112 113
	writeb(tmp, rtc->regbase + RCR1);

114
	/* Users have requested One x Second IRQ */
115
	if (pending && rtc->periodic_freq & PF_OXS)
116
		rtc_update_irq(rtc->rtc_dev, 1, RTC_UF | RTC_IRQF);
117

118
	return pending;
119 120
}

121
static int __sh_rtc_alarm(struct sh_rtc *rtc)
J
Jamie Lenehan 已提交
122
{
123
	unsigned int tmp, pending;
J
Jamie Lenehan 已提交
124 125

	tmp = readb(rtc->regbase + RCR1);
126
	pending = tmp & RCR1_AF;
127
	tmp &= ~(RCR1_AF | RCR1_AIE);
128
	writeb(tmp, rtc->regbase + RCR1);
J
Jamie Lenehan 已提交
129

130 131
	if (pending)
		rtc_update_irq(rtc->rtc_dev, 1, RTC_AF | RTC_IRQF);
132

133
	return pending;
J
Jamie Lenehan 已提交
134 135
}

136
static int __sh_rtc_periodic(struct sh_rtc *rtc)
137
{
138
	struct rtc_device *rtc_dev = rtc->rtc_dev;
139 140
	struct rtc_task *irq_task;
	unsigned int tmp, pending;
141

142
	tmp = readb(rtc->regbase + RCR2);
143
	pending = tmp & RCR2_PEF;
144 145 146
	tmp &= ~RCR2_PEF;
	writeb(tmp, rtc->regbase + RCR2);

147 148 149
	if (!pending)
		return 0;

150 151 152 153 154 155 156 157
	/* Half period enabled than one skipped and the next notified */
	if ((rtc->periodic_freq & PF_HP) && (rtc->periodic_freq & PF_COUNT))
		rtc->periodic_freq &= ~PF_COUNT;
	else {
		if (rtc->periodic_freq & PF_HP)
			rtc->periodic_freq |= PF_COUNT;
		if (rtc->periodic_freq & PF_KOU) {
			spin_lock(&rtc_dev->irq_task_lock);
158 159 160
			irq_task = rtc_dev->irq_task;
			if (irq_task)
				irq_task->func(irq_task->private_data);
161 162 163 164
			spin_unlock(&rtc_dev->irq_task_lock);
		} else
			rtc_update_irq(rtc->rtc_dev, 1, RTC_PF | RTC_IRQF);
	}
165

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	return pending;
}

static irqreturn_t sh_rtc_interrupt(int irq, void *dev_id)
{
	struct sh_rtc *rtc = dev_id;
	int ret;

	spin_lock(&rtc->lock);
	ret = __sh_rtc_interrupt(rtc);
	spin_unlock(&rtc->lock);

	return IRQ_RETVAL(ret);
}

static irqreturn_t sh_rtc_alarm(int irq, void *dev_id)
{
	struct sh_rtc *rtc = dev_id;
	int ret;

	spin_lock(&rtc->lock);
	ret = __sh_rtc_alarm(rtc);
	spin_unlock(&rtc->lock);

	return IRQ_RETVAL(ret);
}

static irqreturn_t sh_rtc_periodic(int irq, void *dev_id)
{
	struct sh_rtc *rtc = dev_id;
	int ret;

	spin_lock(&rtc->lock);
	ret = __sh_rtc_periodic(rtc);
200 201
	spin_unlock(&rtc->lock);

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
	return IRQ_RETVAL(ret);
}

static irqreturn_t sh_rtc_shared(int irq, void *dev_id)
{
	struct sh_rtc *rtc = dev_id;
	int ret;

	spin_lock(&rtc->lock);
	ret = __sh_rtc_interrupt(rtc);
	ret |= __sh_rtc_alarm(rtc);
	ret |= __sh_rtc_periodic(rtc);
	spin_unlock(&rtc->lock);

	return IRQ_RETVAL(ret);
217 218
}

A
Alessandro Zummo 已提交
219
static int sh_rtc_irq_set_state(struct device *dev, int enable)
220 221 222 223 224 225 226 227 228
{
	struct sh_rtc *rtc = dev_get_drvdata(dev);
	unsigned int tmp;

	spin_lock_irq(&rtc->lock);

	tmp = readb(rtc->regbase + RCR2);

	if (enable) {
A
Alessandro Zummo 已提交
229
		rtc->periodic_freq |= PF_KOU;
230 231
		tmp &= ~RCR2_PEF;	/* Clear PES bit */
		tmp |= (rtc->periodic_freq & ~PF_HP);	/* Set PES2-0 */
A
Alessandro Zummo 已提交
232 233
	} else {
		rtc->periodic_freq &= ~PF_KOU;
234
		tmp &= ~(RCR2_PESMASK | RCR2_PEF);
A
Alessandro Zummo 已提交
235
	}
236 237 238 239

	writeb(tmp, rtc->regbase + RCR2);

	spin_unlock_irq(&rtc->lock);
A
Alessandro Zummo 已提交
240 241

	return 0;
242 243
}

A
Alessandro Zummo 已提交
244
static int sh_rtc_irq_set_freq(struct device *dev, int freq)
245 246
{
	struct sh_rtc *rtc = dev_get_drvdata(dev);
247
	int tmp, ret = 0;
248 249

	spin_lock_irq(&rtc->lock);
250
	tmp = rtc->periodic_freq & PF_MASK;
251

252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	switch (freq) {
	case 0:
		rtc->periodic_freq = 0x00;
		break;
	case 1:
		rtc->periodic_freq = 0x60;
		break;
	case 2:
		rtc->periodic_freq = 0x50;
		break;
	case 4:
		rtc->periodic_freq = 0x40;
		break;
	case 8:
		rtc->periodic_freq = 0x30 | PF_HP;
		break;
	case 16:
		rtc->periodic_freq = 0x30;
		break;
	case 32:
		rtc->periodic_freq = 0x20 | PF_HP;
		break;
	case 64:
		rtc->periodic_freq = 0x20;
		break;
	case 128:
		rtc->periodic_freq = 0x10 | PF_HP;
		break;
	case 256:
		rtc->periodic_freq = 0x10;
		break;
	default:
		ret = -ENOTSUPP;
	}
286

287
	if (ret == 0)
288
		rtc->periodic_freq |= tmp;
289 290

	spin_unlock_irq(&rtc->lock);
291
	return ret;
292 293
}

294
static inline void sh_rtc_setaie(struct device *dev, unsigned int enable)
295 296 297 298
{
	struct sh_rtc *rtc = dev_get_drvdata(dev);
	unsigned int tmp;

299
	spin_lock_irq(&rtc->lock);
300

301
	tmp = readb(rtc->regbase + RCR1);
302

303
	if (enable)
304
		tmp |= RCR1_AIE;
305 306
	else
		tmp &= ~RCR1_AIE;
307

308
	writeb(tmp, rtc->regbase + RCR1);
309

310
	spin_unlock_irq(&rtc->lock);
311 312 313 314 315 316 317 318
}

static int sh_rtc_proc(struct device *dev, struct seq_file *seq)
{
	struct sh_rtc *rtc = dev_get_drvdata(dev);
	unsigned int tmp;

	tmp = readb(rtc->regbase + RCR1);
319
	seq_printf(seq, "carry_IRQ\t: %s\n", (tmp & RCR1_CIE) ? "yes" : "no");
320 321 322

	tmp = readb(rtc->regbase + RCR2);
	seq_printf(seq, "periodic_IRQ\t: %s\n",
323
		   (tmp & RCR2_PESMASK) ? "yes" : "no");
324 325 326 327

	return 0;
}

M
Magnus Damm 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
static inline void sh_rtc_setcie(struct device *dev, unsigned int enable)
{
	struct sh_rtc *rtc = dev_get_drvdata(dev);
	unsigned int tmp;

	spin_lock_irq(&rtc->lock);

	tmp = readb(rtc->regbase + RCR1);

	if (!enable)
		tmp &= ~RCR1_CIE;
	else
		tmp |= RCR1_CIE;

	writeb(tmp, rtc->regbase + RCR1);

	spin_unlock_irq(&rtc->lock);
}

347 348
static int sh_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
{
349 350
	struct sh_rtc *rtc = dev_get_drvdata(dev);
	unsigned int ret = 0;
351 352 353 354 355 356

	switch (cmd) {
	case RTC_AIE_OFF:
	case RTC_AIE_ON:
		sh_rtc_setaie(dev, cmd == RTC_AIE_ON);
		break;
357 358
	case RTC_UIE_OFF:
		rtc->periodic_freq &= ~PF_OXS;
M
Magnus Damm 已提交
359
		sh_rtc_setcie(dev, 0);
360 361 362
		break;
	case RTC_UIE_ON:
		rtc->periodic_freq |= PF_OXS;
M
Magnus Damm 已提交
363
		sh_rtc_setcie(dev, 1);
364 365 366
		break;
	default:
		ret = -ENOIOCTLCMD;
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	}

	return ret;
}

static int sh_rtc_read_time(struct device *dev, struct rtc_time *tm)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_rtc *rtc = platform_get_drvdata(pdev);
	unsigned int sec128, sec2, yr, yr100, cf_bit;

	do {
		unsigned int tmp;

		spin_lock_irq(&rtc->lock);

		tmp = readb(rtc->regbase + RCR1);
		tmp &= ~RCR1_CF; /* Clear CF-bit */
		tmp |= RCR1_CIE;
		writeb(tmp, rtc->regbase + RCR1);

		sec128 = readb(rtc->regbase + R64CNT);

A
Adrian Bunk 已提交
390 391 392 393 394 395
		tm->tm_sec	= bcd2bin(readb(rtc->regbase + RSECCNT));
		tm->tm_min	= bcd2bin(readb(rtc->regbase + RMINCNT));
		tm->tm_hour	= bcd2bin(readb(rtc->regbase + RHRCNT));
		tm->tm_wday	= bcd2bin(readb(rtc->regbase + RWKCNT));
		tm->tm_mday	= bcd2bin(readb(rtc->regbase + RDAYCNT));
		tm->tm_mon	= bcd2bin(readb(rtc->regbase + RMONCNT)) - 1;
396

397 398
		if (rtc->capabilities & RTC_CAP_4_DIGIT_YEAR) {
			yr  = readw(rtc->regbase + RYRCNT);
A
Adrian Bunk 已提交
399
			yr100 = bcd2bin(yr >> 8);
400 401 402
			yr &= 0xff;
		} else {
			yr  = readb(rtc->regbase + RYRCNT);
A
Adrian Bunk 已提交
403
			yr100 = bcd2bin((yr == 0x99) ? 0x19 : 0x20);
404
		}
405

A
Adrian Bunk 已提交
406
		tm->tm_year = (yr100 * 100 + bcd2bin(yr)) - 1900;
407 408 409 410 411 412 413 414 415 416 417 418

		sec2 = readb(rtc->regbase + R64CNT);
		cf_bit = readb(rtc->regbase + RCR1) & RCR1_CF;

		spin_unlock_irq(&rtc->lock);
	} while (cf_bit != 0 || ((sec128 ^ sec2) & RTC_BIT_INVERTED) != 0);

#if RTC_BIT_INVERTED != 0
	if ((sec128 & RTC_BIT_INVERTED))
		tm->tm_sec--;
#endif

M
Magnus Damm 已提交
419 420 421 422
	/* only keep the carry interrupt enabled if UIE is on */
	if (!(rtc->periodic_freq & PF_OXS))
		sh_rtc_setcie(dev, 0);

423
	dev_dbg(dev, "%s: tm is secs=%d, mins=%d, hours=%d, "
424
		"mday=%d, mon=%d, year=%d, wday=%d\n",
425
		__func__,
426
		tm->tm_sec, tm->tm_min, tm->tm_hour,
427
		tm->tm_mday, tm->tm_mon + 1, tm->tm_year, tm->tm_wday);
428

M
Magnus Damm 已提交
429
	return rtc_valid_tm(tm);
430 431 432 433 434 435 436 437 438 439 440 441 442 443
}

static int sh_rtc_set_time(struct device *dev, struct rtc_time *tm)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_rtc *rtc = platform_get_drvdata(pdev);
	unsigned int tmp;
	int year;

	spin_lock_irq(&rtc->lock);

	/* Reset pre-scaler & stop RTC */
	tmp = readb(rtc->regbase + RCR2);
	tmp |= RCR2_RESET;
444
	tmp &= ~RCR2_START;
445 446
	writeb(tmp, rtc->regbase + RCR2);

A
Adrian Bunk 已提交
447 448 449 450 451 452
	writeb(bin2bcd(tm->tm_sec),  rtc->regbase + RSECCNT);
	writeb(bin2bcd(tm->tm_min),  rtc->regbase + RMINCNT);
	writeb(bin2bcd(tm->tm_hour), rtc->regbase + RHRCNT);
	writeb(bin2bcd(tm->tm_wday), rtc->regbase + RWKCNT);
	writeb(bin2bcd(tm->tm_mday), rtc->regbase + RDAYCNT);
	writeb(bin2bcd(tm->tm_mon + 1), rtc->regbase + RMONCNT);
453

454
	if (rtc->capabilities & RTC_CAP_4_DIGIT_YEAR) {
A
Adrian Bunk 已提交
455 456
		year = (bin2bcd((tm->tm_year + 1900) / 100) << 8) |
			bin2bcd(tm->tm_year % 100);
457 458 459
		writew(year, rtc->regbase + RYRCNT);
	} else {
		year = tm->tm_year % 100;
A
Adrian Bunk 已提交
460
		writeb(bin2bcd(year), rtc->regbase + RYRCNT);
461
	}
462 463 464 465 466 467 468 469 470 471 472 473

	/* Start RTC */
	tmp = readb(rtc->regbase + RCR2);
	tmp &= ~RCR2_RESET;
	tmp |= RCR2_RTCEN | RCR2_START;
	writeb(tmp, rtc->regbase + RCR2);

	spin_unlock_irq(&rtc->lock);

	return 0;
}

J
Jamie Lenehan 已提交
474 475 476 477 478 479 480 481
static inline int sh_rtc_read_alarm_value(struct sh_rtc *rtc, int reg_off)
{
	unsigned int byte;
	int value = 0xff;	/* return 0xff for ignored values */

	byte = readb(rtc->regbase + reg_off);
	if (byte & AR_ENB) {
		byte &= ~AR_ENB;	/* strip the enable bit */
A
Adrian Bunk 已提交
482
		value = bcd2bin(byte);
J
Jamie Lenehan 已提交
483 484 485 486 487 488 489 490 491
	}

	return value;
}

static int sh_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *wkalrm)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_rtc *rtc = platform_get_drvdata(pdev);
492
	struct rtc_time *tm = &wkalrm->time;
J
Jamie Lenehan 已提交
493 494 495 496 497 498 499 500 501 502 503 504 505

	spin_lock_irq(&rtc->lock);

	tm->tm_sec	= sh_rtc_read_alarm_value(rtc, RSECAR);
	tm->tm_min	= sh_rtc_read_alarm_value(rtc, RMINAR);
	tm->tm_hour	= sh_rtc_read_alarm_value(rtc, RHRAR);
	tm->tm_wday	= sh_rtc_read_alarm_value(rtc, RWKAR);
	tm->tm_mday	= sh_rtc_read_alarm_value(rtc, RDAYAR);
	tm->tm_mon	= sh_rtc_read_alarm_value(rtc, RMONAR);
	if (tm->tm_mon > 0)
		tm->tm_mon -= 1; /* RTC is 1-12, tm_mon is 0-11 */
	tm->tm_year     = 0xffff;

506 507
	wkalrm->enabled = (readb(rtc->regbase + RCR1) & RCR1_AIE) ? 1 : 0;

J
Jamie Lenehan 已提交
508 509 510 511 512 513 514 515 516 517 518 519
	spin_unlock_irq(&rtc->lock);

	return 0;
}

static inline void sh_rtc_write_alarm_value(struct sh_rtc *rtc,
					    int value, int reg_off)
{
	/* < 0 for a value that is ignored */
	if (value < 0)
		writeb(0, rtc->regbase + reg_off);
	else
A
Adrian Bunk 已提交
520
		writeb(bin2bcd(value) | AR_ENB,  rtc->regbase + reg_off);
J
Jamie Lenehan 已提交
521 522
}

523
static int sh_rtc_check_alarm(struct rtc_time *tm)
J
Jamie Lenehan 已提交
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
{
	/*
	 * The original rtc says anything > 0xc0 is "don't care" or "match
	 * all" - most users use 0xff but rtc-dev uses -1 for the same thing.
	 * The original rtc doesn't support years - some things use -1 and
	 * some 0xffff. We use -1 to make out tests easier.
	 */
	if (tm->tm_year == 0xffff)
		tm->tm_year = -1;
	if (tm->tm_mon >= 0xff)
		tm->tm_mon = -1;
	if (tm->tm_mday >= 0xff)
		tm->tm_mday = -1;
	if (tm->tm_wday >= 0xff)
		tm->tm_wday = -1;
	if (tm->tm_hour >= 0xff)
		tm->tm_hour = -1;
	if (tm->tm_min >= 0xff)
		tm->tm_min = -1;
	if (tm->tm_sec >= 0xff)
		tm->tm_sec = -1;

	if (tm->tm_year > 9999 ||
		tm->tm_mon >= 12 ||
		tm->tm_mday == 0 || tm->tm_mday >= 32 ||
		tm->tm_wday >= 7 ||
		tm->tm_hour >= 24 ||
		tm->tm_min >= 60 ||
		tm->tm_sec >= 60)
		return -EINVAL;

	return 0;
}

static int sh_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *wkalrm)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_rtc *rtc = platform_get_drvdata(pdev);
	unsigned int rcr1;
	struct rtc_time *tm = &wkalrm->time;
	int mon, err;

	err = sh_rtc_check_alarm(tm);
	if (unlikely(err < 0))
		return err;

	spin_lock_irq(&rtc->lock);

572
	/* disable alarm interrupt and clear the alarm flag */
J
Jamie Lenehan 已提交
573
	rcr1 = readb(rtc->regbase + RCR1);
574
	rcr1 &= ~(RCR1_AF | RCR1_AIE);
575
	writeb(rcr1, rtc->regbase + RCR1);
J
Jamie Lenehan 已提交
576 577 578 579 580 581 582 583 584 585 586 587

	/* set alarm time */
	sh_rtc_write_alarm_value(rtc, tm->tm_sec,  RSECAR);
	sh_rtc_write_alarm_value(rtc, tm->tm_min,  RMINAR);
	sh_rtc_write_alarm_value(rtc, tm->tm_hour, RHRAR);
	sh_rtc_write_alarm_value(rtc, tm->tm_wday, RWKAR);
	sh_rtc_write_alarm_value(rtc, tm->tm_mday, RDAYAR);
	mon = tm->tm_mon;
	if (mon >= 0)
		mon += 1;
	sh_rtc_write_alarm_value(rtc, mon, RMONAR);

588 589 590 591
	if (wkalrm->enabled) {
		rcr1 |= RCR1_AIE;
		writeb(rcr1, rtc->regbase + RCR1);
	}
J
Jamie Lenehan 已提交
592 593 594 595 596 597

	spin_unlock_irq(&rtc->lock);

	return 0;
}

598 599 600 601
static struct rtc_class_ops sh_rtc_ops = {
	.ioctl		= sh_rtc_ioctl,
	.read_time	= sh_rtc_read_time,
	.set_time	= sh_rtc_set_time,
J
Jamie Lenehan 已提交
602 603
	.read_alarm	= sh_rtc_read_alarm,
	.set_alarm	= sh_rtc_set_alarm,
604 605
	.irq_set_state	= sh_rtc_irq_set_state,
	.irq_set_freq	= sh_rtc_irq_set_freq,
606 607 608
	.proc		= sh_rtc_proc,
};

A
Alessandro Zummo 已提交
609
static int __init sh_rtc_probe(struct platform_device *pdev)
610 611 612
{
	struct sh_rtc *rtc;
	struct resource *res;
M
Magnus Damm 已提交
613
	struct rtc_time r;
614 615
	char clk_name[6];
	int clk_id, ret;
616 617 618 619 620 621 622

	rtc = kzalloc(sizeof(struct sh_rtc), GFP_KERNEL);
	if (unlikely(!rtc))
		return -ENOMEM;

	spin_lock_init(&rtc->lock);

623
	/* get periodic/carry/alarm irqs */
624
	ret = platform_get_irq(pdev, 0);
625
	if (unlikely(ret <= 0)) {
626
		ret = -ENOENT;
627
		dev_err(&pdev->dev, "No IRQ resource\n");
628 629
		goto err_badres;
	}
630

631
	rtc->periodic_irq = ret;
632 633
	rtc->carry_irq = platform_get_irq(pdev, 1);
	rtc->alarm_irq = platform_get_irq(pdev, 2);
634 635 636

	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
	if (unlikely(res == NULL)) {
637
		ret = -ENOENT;
638 639 640 641
		dev_err(&pdev->dev, "No IO resource\n");
		goto err_badres;
	}

642
	rtc->regsize = resource_size(res);
643 644 645 646 647 648 649

	rtc->res = request_mem_region(res->start, rtc->regsize, pdev->name);
	if (unlikely(!rtc->res)) {
		ret = -EBUSY;
		goto err_badres;
	}

650
	rtc->regbase = ioremap_nocache(rtc->res->start, rtc->regsize);
651 652 653 654 655
	if (unlikely(!rtc->regbase)) {
		ret = -EINVAL;
		goto err_badmap;
	}

656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
	clk_id = pdev->id;
	/* With a single device, the clock id is still "rtc0" */
	if (clk_id < 0)
		clk_id = 0;

	snprintf(clk_name, sizeof(clk_name), "rtc%d", clk_id);

	rtc->clk = clk_get(&pdev->dev, clk_name);
	if (IS_ERR(rtc->clk)) {
		/*
		 * No error handling for rtc->clk intentionally, not all
		 * platforms will have a unique clock for the RTC, and
		 * the clk API can handle the struct clk pointer being
		 * NULL.
		 */
		rtc->clk = NULL;
	}

	clk_enable(rtc->clk);

676 677 678 679 680 681 682 683 684 685 686
	rtc->capabilities = RTC_DEF_CAPABILITIES;
	if (pdev->dev.platform_data) {
		struct sh_rtc_platform_info *pinfo = pdev->dev.platform_data;

		/*
		 * Some CPUs have special capabilities in addition to the
		 * default set. Add those in here.
		 */
		rtc->capabilities |= pinfo->capabilities;
	}

687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
	if (rtc->carry_irq <= 0) {
		/* register shared periodic/carry/alarm irq */
		ret = request_irq(rtc->periodic_irq, sh_rtc_shared,
				  IRQF_DISABLED, "sh-rtc", rtc);
		if (unlikely(ret)) {
			dev_err(&pdev->dev,
				"request IRQ failed with %d, IRQ %d\n", ret,
				rtc->periodic_irq);
			goto err_unmap;
		}
	} else {
		/* register periodic/carry/alarm irqs */
		ret = request_irq(rtc->periodic_irq, sh_rtc_periodic,
				  IRQF_DISABLED, "sh-rtc period", rtc);
		if (unlikely(ret)) {
			dev_err(&pdev->dev,
				"request period IRQ failed with %d, IRQ %d\n",
				ret, rtc->periodic_irq);
			goto err_unmap;
		}
707

708 709 710 711 712 713 714 715 716
		ret = request_irq(rtc->carry_irq, sh_rtc_interrupt,
				  IRQF_DISABLED, "sh-rtc carry", rtc);
		if (unlikely(ret)) {
			dev_err(&pdev->dev,
				"request carry IRQ failed with %d, IRQ %d\n",
				ret, rtc->carry_irq);
			free_irq(rtc->periodic_irq, rtc);
			goto err_unmap;
		}
717

718 719 720 721 722 723 724 725 726 727
		ret = request_irq(rtc->alarm_irq, sh_rtc_alarm,
				  IRQF_DISABLED, "sh-rtc alarm", rtc);
		if (unlikely(ret)) {
			dev_err(&pdev->dev,
				"request alarm IRQ failed with %d, IRQ %d\n",
				ret, rtc->alarm_irq);
			free_irq(rtc->carry_irq, rtc);
			free_irq(rtc->periodic_irq, rtc);
			goto err_unmap;
		}
728 729
	}

A
Alessandro Zummo 已提交
730 731
	platform_set_drvdata(pdev, rtc);

M
Magnus Damm 已提交
732
	/* everything disabled by default */
A
Alessandro Zummo 已提交
733 734
	sh_rtc_irq_set_freq(&pdev->dev, 0);
	sh_rtc_irq_set_state(&pdev->dev, 0);
M
Magnus Damm 已提交
735 736
	sh_rtc_setaie(&pdev->dev, 0);
	sh_rtc_setcie(&pdev->dev, 0);
M
Magnus Damm 已提交
737

A
Alessandro Zummo 已提交
738 739 740 741 742 743 744 745 746 747 748 749
	rtc->rtc_dev = rtc_device_register("sh", &pdev->dev,
					   &sh_rtc_ops, THIS_MODULE);
	if (IS_ERR(rtc->rtc_dev)) {
		ret = PTR_ERR(rtc->rtc_dev);
		free_irq(rtc->periodic_irq, rtc);
		free_irq(rtc->carry_irq, rtc);
		free_irq(rtc->alarm_irq, rtc);
		goto err_unmap;
	}

	rtc->rtc_dev->max_user_freq = 256;

M
Magnus Damm 已提交
750 751 752 753 754 755
	/* reset rtc to epoch 0 if time is invalid */
	if (rtc_read_time(rtc->rtc_dev, &r) < 0) {
		rtc_time_to_tm(0, &r);
		rtc_set_time(rtc->rtc_dev, &r);
	}

M
Magnus Damm 已提交
756
	device_init_wakeup(&pdev->dev, 1);
757 758
	return 0;

759
err_unmap:
760 761
	clk_disable(rtc->clk);
	clk_put(rtc->clk);
762
	iounmap(rtc->regbase);
763 764 765 766 767 768 769 770
err_badmap:
	release_resource(rtc->res);
err_badres:
	kfree(rtc);

	return ret;
}

A
Alessandro Zummo 已提交
771
static int __exit sh_rtc_remove(struct platform_device *pdev)
772 773 774
{
	struct sh_rtc *rtc = platform_get_drvdata(pdev);

A
Alessandro Zummo 已提交
775 776
	rtc_device_unregister(rtc->rtc_dev);
	sh_rtc_irq_set_state(&pdev->dev, 0);
777 778

	sh_rtc_setaie(&pdev->dev, 0);
M
Magnus Damm 已提交
779
	sh_rtc_setcie(&pdev->dev, 0);
780

781
	free_irq(rtc->periodic_irq, rtc);
782

783 784 785 786
	if (rtc->carry_irq > 0) {
		free_irq(rtc->carry_irq, rtc);
		free_irq(rtc->alarm_irq, rtc);
	}
787

788
	iounmap(rtc->regbase);
A
Alessandro Zummo 已提交
789
	release_resource(rtc->res);
790

791 792 793
	clk_disable(rtc->clk);
	clk_put(rtc->clk);

794 795 796 797 798 799
	platform_set_drvdata(pdev, NULL);

	kfree(rtc);

	return 0;
}
M
Magnus Damm 已提交
800 801 802 803 804 805 806

static void sh_rtc_set_irq_wake(struct device *dev, int enabled)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct sh_rtc *rtc = platform_get_drvdata(pdev);

	set_irq_wake(rtc->periodic_irq, enabled);
807

M
Magnus Damm 已提交
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
	if (rtc->carry_irq > 0) {
		set_irq_wake(rtc->carry_irq, enabled);
		set_irq_wake(rtc->alarm_irq, enabled);
	}
}

static int sh_rtc_suspend(struct device *dev)
{
	if (device_may_wakeup(dev))
		sh_rtc_set_irq_wake(dev, 1);

	return 0;
}

static int sh_rtc_resume(struct device *dev)
{
	if (device_may_wakeup(dev))
		sh_rtc_set_irq_wake(dev, 0);

	return 0;
}

830
static const struct dev_pm_ops sh_rtc_dev_pm_ops = {
M
Magnus Damm 已提交
831 832 833 834
	.suspend = sh_rtc_suspend,
	.resume = sh_rtc_resume,
};

835 836
static struct platform_driver sh_rtc_platform_driver = {
	.driver		= {
J
Jamie Lenehan 已提交
837
		.name	= DRV_NAME,
838
		.owner	= THIS_MODULE,
M
Magnus Damm 已提交
839
		.pm	= &sh_rtc_dev_pm_ops,
840
	},
A
Alessandro Zummo 已提交
841
	.remove		= __exit_p(sh_rtc_remove),
842 843 844 845
};

static int __init sh_rtc_init(void)
{
A
Alessandro Zummo 已提交
846
	return platform_driver_probe(&sh_rtc_platform_driver, sh_rtc_probe);
847 848 849 850 851 852 853 854 855 856 857
}

static void __exit sh_rtc_exit(void)
{
	platform_driver_unregister(&sh_rtc_platform_driver);
}

module_init(sh_rtc_init);
module_exit(sh_rtc_exit);

MODULE_DESCRIPTION("SuperH on-chip RTC driver");
J
Jamie Lenehan 已提交
858
MODULE_VERSION(DRV_VERSION);
859 860 861
MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>, "
	      "Jamie Lenehan <lenehan@twibble.org>, "
	      "Angelo Castello <angelo.castello@st.com>");
862
MODULE_LICENSE("GPL");
863
MODULE_ALIAS("platform:" DRV_NAME);