| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *  Driver for NEC VR4100 series Real Time Clock unit. | 
 | 3 |  * | 
| Yoichi Yuasa | ada8e95 | 2009-07-03 00:39:38 +0900 | [diff] [blame] | 4 |  *  Copyright (C) 2003-2008  Yoichi Yuasa <yuasa@linux-mips.org> | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 5 |  * | 
 | 6 |  *  This program is free software; you can redistribute it and/or modify | 
 | 7 |  *  it under the terms of the GNU General Public License as published by | 
 | 8 |  *  the Free Software Foundation; either version 2 of the License, or | 
 | 9 |  *  (at your option) any later version. | 
 | 10 |  * | 
 | 11 |  *  This program is distributed in the hope that it will be useful, | 
 | 12 |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 13 |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 14 |  *  GNU General Public License for more details. | 
 | 15 |  * | 
 | 16 |  *  You should have received a copy of the GNU General Public License | 
 | 17 |  *  along with this program; if not, write to the Free Software | 
 | 18 |  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 19 |  */ | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 20 | #include <linux/err.h> | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 21 | #include <linux/fs.h> | 
 | 22 | #include <linux/init.h> | 
 | 23 | #include <linux/ioport.h> | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 24 | #include <linux/interrupt.h> | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 25 | #include <linux/module.h> | 
 | 26 | #include <linux/platform_device.h> | 
 | 27 | #include <linux/rtc.h> | 
 | 28 | #include <linux/spinlock.h> | 
 | 29 | #include <linux/types.h> | 
| Jonathan Cameron | 5d2a503 | 2009-01-06 14:42:12 -0800 | [diff] [blame] | 30 | #include <linux/log2.h> | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 31 |  | 
 | 32 | #include <asm/div64.h> | 
 | 33 | #include <asm/io.h> | 
 | 34 | #include <asm/uaccess.h> | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 35 |  | 
| Yoichi Yuasa | ada8e95 | 2009-07-03 00:39:38 +0900 | [diff] [blame] | 36 | MODULE_AUTHOR("Yoichi Yuasa <yuasa@linux-mips.org>"); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 37 | MODULE_DESCRIPTION("NEC VR4100 series RTC driver"); | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 38 | MODULE_LICENSE("GPL v2"); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 39 |  | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 40 | /* RTC 1 registers */ | 
 | 41 | #define ETIMELREG		0x00 | 
 | 42 | #define ETIMEMREG		0x02 | 
 | 43 | #define ETIMEHREG		0x04 | 
 | 44 | /* RFU */ | 
 | 45 | #define ECMPLREG		0x08 | 
 | 46 | #define ECMPMREG		0x0a | 
 | 47 | #define ECMPHREG		0x0c | 
 | 48 | /* RFU */ | 
 | 49 | #define RTCL1LREG		0x10 | 
 | 50 | #define RTCL1HREG		0x12 | 
 | 51 | #define RTCL1CNTLREG		0x14 | 
 | 52 | #define RTCL1CNTHREG		0x16 | 
 | 53 | #define RTCL2LREG		0x18 | 
 | 54 | #define RTCL2HREG		0x1a | 
 | 55 | #define RTCL2CNTLREG		0x1c | 
 | 56 | #define RTCL2CNTHREG		0x1e | 
 | 57 |  | 
 | 58 | /* RTC 2 registers */ | 
 | 59 | #define TCLKLREG		0x00 | 
 | 60 | #define TCLKHREG		0x02 | 
 | 61 | #define TCLKCNTLREG		0x04 | 
 | 62 | #define TCLKCNTHREG		0x06 | 
 | 63 | /* RFU */ | 
 | 64 | #define RTCINTREG		0x1e | 
 | 65 |  #define TCLOCK_INT		0x08 | 
 | 66 |  #define RTCLONG2_INT		0x04 | 
 | 67 |  #define RTCLONG1_INT		0x02 | 
 | 68 |  #define ELAPSEDTIME_INT	0x01 | 
 | 69 |  | 
 | 70 | #define RTC_FREQUENCY		32768 | 
 | 71 | #define MAX_PERIODIC_RATE	6553 | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 72 |  | 
 | 73 | static void __iomem *rtc1_base; | 
 | 74 | static void __iomem *rtc2_base; | 
 | 75 |  | 
 | 76 | #define rtc1_read(offset)		readw(rtc1_base + (offset)) | 
 | 77 | #define rtc1_write(offset, value)	writew((value), rtc1_base + (offset)) | 
 | 78 |  | 
 | 79 | #define rtc2_read(offset)		readw(rtc2_base + (offset)) | 
 | 80 | #define rtc2_write(offset, value)	writew((value), rtc2_base + (offset)) | 
 | 81 |  | 
 | 82 | static unsigned long epoch = 1970;	/* Jan 1 1970 00:00:00 */ | 
 | 83 |  | 
| Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 84 | static DEFINE_SPINLOCK(rtc_lock); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 85 | static char rtc_name[] = "RTC"; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 86 | static unsigned long periodic_count; | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 87 | static unsigned int alarm_enabled; | 
| Anton Vorontsov | 2fac667 | 2009-01-06 14:42:11 -0800 | [diff] [blame] | 88 | static int aie_irq; | 
 | 89 | static int pie_irq; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 90 |  | 
 | 91 | static inline unsigned long read_elapsed_second(void) | 
 | 92 | { | 
 | 93 |  | 
 | 94 | 	unsigned long first_low, first_mid, first_high; | 
 | 95 |  | 
 | 96 | 	unsigned long second_low, second_mid, second_high; | 
 | 97 |  | 
 | 98 | 	do { | 
 | 99 | 		first_low = rtc1_read(ETIMELREG); | 
 | 100 | 		first_mid = rtc1_read(ETIMEMREG); | 
 | 101 | 		first_high = rtc1_read(ETIMEHREG); | 
 | 102 | 		second_low = rtc1_read(ETIMELREG); | 
 | 103 | 		second_mid = rtc1_read(ETIMEMREG); | 
 | 104 | 		second_high = rtc1_read(ETIMEHREG); | 
 | 105 | 	} while (first_low != second_low || first_mid != second_mid || | 
 | 106 | 	         first_high != second_high); | 
 | 107 |  | 
 | 108 | 	return (first_high << 17) | (first_mid << 1) | (first_low >> 15); | 
 | 109 | } | 
 | 110 |  | 
 | 111 | static inline void write_elapsed_second(unsigned long sec) | 
 | 112 | { | 
 | 113 | 	spin_lock_irq(&rtc_lock); | 
 | 114 |  | 
 | 115 | 	rtc1_write(ETIMELREG, (uint16_t)(sec << 15)); | 
 | 116 | 	rtc1_write(ETIMEMREG, (uint16_t)(sec >> 1)); | 
 | 117 | 	rtc1_write(ETIMEHREG, (uint16_t)(sec >> 17)); | 
 | 118 |  | 
 | 119 | 	spin_unlock_irq(&rtc_lock); | 
 | 120 | } | 
 | 121 |  | 
 | 122 | static void vr41xx_rtc_release(struct device *dev) | 
 | 123 | { | 
 | 124 |  | 
 | 125 | 	spin_lock_irq(&rtc_lock); | 
 | 126 |  | 
 | 127 | 	rtc1_write(ECMPLREG, 0); | 
 | 128 | 	rtc1_write(ECMPMREG, 0); | 
 | 129 | 	rtc1_write(ECMPHREG, 0); | 
 | 130 | 	rtc1_write(RTCL1LREG, 0); | 
 | 131 | 	rtc1_write(RTCL1HREG, 0); | 
 | 132 |  | 
 | 133 | 	spin_unlock_irq(&rtc_lock); | 
 | 134 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 135 | 	disable_irq(aie_irq); | 
 | 136 | 	disable_irq(pie_irq); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 137 | } | 
 | 138 |  | 
 | 139 | static int vr41xx_rtc_read_time(struct device *dev, struct rtc_time *time) | 
 | 140 | { | 
 | 141 | 	unsigned long epoch_sec, elapsed_sec; | 
 | 142 |  | 
 | 143 | 	epoch_sec = mktime(epoch, 1, 1, 0, 0, 0); | 
 | 144 | 	elapsed_sec = read_elapsed_second(); | 
 | 145 |  | 
 | 146 | 	rtc_time_to_tm(epoch_sec + elapsed_sec, time); | 
 | 147 |  | 
 | 148 | 	return 0; | 
 | 149 | } | 
 | 150 |  | 
 | 151 | static int vr41xx_rtc_set_time(struct device *dev, struct rtc_time *time) | 
 | 152 | { | 
 | 153 | 	unsigned long epoch_sec, current_sec; | 
 | 154 |  | 
 | 155 | 	epoch_sec = mktime(epoch, 1, 1, 0, 0, 0); | 
 | 156 | 	current_sec = mktime(time->tm_year + 1900, time->tm_mon + 1, time->tm_mday, | 
 | 157 | 	                     time->tm_hour, time->tm_min, time->tm_sec); | 
 | 158 |  | 
 | 159 | 	write_elapsed_second(current_sec - epoch_sec); | 
 | 160 |  | 
 | 161 | 	return 0; | 
 | 162 | } | 
 | 163 |  | 
 | 164 | static int vr41xx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *wkalrm) | 
 | 165 | { | 
 | 166 | 	unsigned long low, mid, high; | 
 | 167 | 	struct rtc_time *time = &wkalrm->time; | 
 | 168 |  | 
 | 169 | 	spin_lock_irq(&rtc_lock); | 
 | 170 |  | 
 | 171 | 	low = rtc1_read(ECMPLREG); | 
 | 172 | 	mid = rtc1_read(ECMPMREG); | 
 | 173 | 	high = rtc1_read(ECMPHREG); | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 174 | 	wkalrm->enabled = alarm_enabled; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 175 |  | 
 | 176 | 	spin_unlock_irq(&rtc_lock); | 
 | 177 |  | 
 | 178 | 	rtc_time_to_tm((high << 17) | (mid << 1) | (low >> 15), time); | 
 | 179 |  | 
 | 180 | 	return 0; | 
 | 181 | } | 
 | 182 |  | 
 | 183 | static int vr41xx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *wkalrm) | 
 | 184 | { | 
 | 185 | 	unsigned long alarm_sec; | 
 | 186 | 	struct rtc_time *time = &wkalrm->time; | 
 | 187 |  | 
 | 188 | 	alarm_sec = mktime(time->tm_year + 1900, time->tm_mon + 1, time->tm_mday, | 
 | 189 | 	                   time->tm_hour, time->tm_min, time->tm_sec); | 
 | 190 |  | 
 | 191 | 	spin_lock_irq(&rtc_lock); | 
 | 192 |  | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 193 | 	if (alarm_enabled) | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 194 | 		disable_irq(aie_irq); | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 195 |  | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 196 | 	rtc1_write(ECMPLREG, (uint16_t)(alarm_sec << 15)); | 
 | 197 | 	rtc1_write(ECMPMREG, (uint16_t)(alarm_sec >> 1)); | 
 | 198 | 	rtc1_write(ECMPHREG, (uint16_t)(alarm_sec >> 17)); | 
 | 199 |  | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 200 | 	if (wkalrm->enabled) | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 201 | 		enable_irq(aie_irq); | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 202 |  | 
 | 203 | 	alarm_enabled = wkalrm->enabled; | 
 | 204 |  | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 205 | 	spin_unlock_irq(&rtc_lock); | 
 | 206 |  | 
 | 207 | 	return 0; | 
 | 208 | } | 
 | 209 |  | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 210 | static int vr41xx_rtc_irq_set_freq(struct device *dev, int freq) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 211 | { | 
| Yoichi Yuasa | 61df333 | 2009-11-11 14:26:48 -0800 | [diff] [blame] | 212 | 	u64 count; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 213 |  | 
| Jonathan Cameron | 5d2a503 | 2009-01-06 14:42:12 -0800 | [diff] [blame] | 214 | 	if (!is_power_of_2(freq)) | 
 | 215 | 		return -EINVAL; | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 216 | 	count = RTC_FREQUENCY; | 
 | 217 | 	do_div(count, freq); | 
 | 218 |  | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 219 | 	spin_lock_irq(&rtc_lock); | 
 | 220 |  | 
| Yoichi Yuasa | 61df333 | 2009-11-11 14:26:48 -0800 | [diff] [blame] | 221 | 	periodic_count = count; | 
 | 222 | 	rtc1_write(RTCL1LREG, periodic_count); | 
 | 223 | 	rtc1_write(RTCL1HREG, periodic_count >> 16); | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 224 |  | 
 | 225 | 	spin_unlock_irq(&rtc_lock); | 
 | 226 |  | 
 | 227 | 	return 0; | 
 | 228 | } | 
 | 229 |  | 
 | 230 | static int vr41xx_rtc_irq_set_state(struct device *dev, int enabled) | 
 | 231 | { | 
 | 232 | 	if (enabled) | 
 | 233 | 		enable_irq(pie_irq); | 
 | 234 | 	else | 
 | 235 | 		disable_irq(pie_irq); | 
 | 236 |  | 
 | 237 | 	return 0; | 
 | 238 | } | 
 | 239 |  | 
 | 240 | static int vr41xx_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg) | 
 | 241 | { | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 242 | 	switch (cmd) { | 
 | 243 | 	case RTC_AIE_ON: | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 244 | 		spin_lock_irq(&rtc_lock); | 
 | 245 |  | 
 | 246 | 		if (!alarm_enabled) { | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 247 | 			enable_irq(aie_irq); | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 248 | 			alarm_enabled = 1; | 
 | 249 | 		} | 
 | 250 |  | 
 | 251 | 		spin_unlock_irq(&rtc_lock); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 252 | 		break; | 
 | 253 | 	case RTC_AIE_OFF: | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 254 | 		spin_lock_irq(&rtc_lock); | 
 | 255 |  | 
 | 256 | 		if (alarm_enabled) { | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 257 | 			disable_irq(aie_irq); | 
| Yoichi Yuasa | 9b5ef64 | 2007-05-08 00:33:50 -0700 | [diff] [blame] | 258 | 			alarm_enabled = 0; | 
 | 259 | 		} | 
 | 260 |  | 
 | 261 | 		spin_unlock_irq(&rtc_lock); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 262 | 		break; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 263 | 	case RTC_EPOCH_READ: | 
 | 264 | 		return put_user(epoch, (unsigned long __user *)arg); | 
 | 265 | 	case RTC_EPOCH_SET: | 
 | 266 | 		/* Doesn't support before 1900 */ | 
 | 267 | 		if (arg < 1900) | 
 | 268 | 			return -EINVAL; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 269 | 		epoch = arg; | 
 | 270 | 		break; | 
 | 271 | 	default: | 
| Alessandro Zummo | b3969e5 | 2006-05-20 15:00:29 -0700 | [diff] [blame] | 272 | 		return -ENOIOCTLCMD; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 273 | 	} | 
 | 274 |  | 
 | 275 | 	return 0; | 
 | 276 | } | 
 | 277 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 278 | static irqreturn_t elapsedtime_interrupt(int irq, void *dev_id) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 279 | { | 
 | 280 | 	struct platform_device *pdev = (struct platform_device *)dev_id; | 
 | 281 | 	struct rtc_device *rtc = platform_get_drvdata(pdev); | 
 | 282 |  | 
 | 283 | 	rtc2_write(RTCINTREG, ELAPSEDTIME_INT); | 
 | 284 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 285 | 	rtc_update_irq(rtc, 1, RTC_AF); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 286 |  | 
 | 287 | 	return IRQ_HANDLED; | 
 | 288 | } | 
 | 289 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 290 | static irqreturn_t rtclong1_interrupt(int irq, void *dev_id) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 291 | { | 
 | 292 | 	struct platform_device *pdev = (struct platform_device *)dev_id; | 
 | 293 | 	struct rtc_device *rtc = platform_get_drvdata(pdev); | 
 | 294 | 	unsigned long count = periodic_count; | 
 | 295 |  | 
 | 296 | 	rtc2_write(RTCINTREG, RTCLONG1_INT); | 
 | 297 |  | 
 | 298 | 	rtc1_write(RTCL1LREG, count); | 
 | 299 | 	rtc1_write(RTCL1HREG, count >> 16); | 
 | 300 |  | 
| David Brownell | ab6a2d7 | 2007-05-08 00:33:30 -0700 | [diff] [blame] | 301 | 	rtc_update_irq(rtc, 1, RTC_PF); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 302 |  | 
 | 303 | 	return IRQ_HANDLED; | 
 | 304 | } | 
 | 305 |  | 
| David Brownell | ff8371a | 2006-09-30 23:28:17 -0700 | [diff] [blame] | 306 | static const struct rtc_class_ops vr41xx_rtc_ops = { | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 307 | 	.release	= vr41xx_rtc_release, | 
 | 308 | 	.ioctl		= vr41xx_rtc_ioctl, | 
 | 309 | 	.read_time	= vr41xx_rtc_read_time, | 
 | 310 | 	.set_time	= vr41xx_rtc_set_time, | 
 | 311 | 	.read_alarm	= vr41xx_rtc_read_alarm, | 
 | 312 | 	.set_alarm	= vr41xx_rtc_set_alarm, | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 313 | 	.irq_set_freq	= vr41xx_rtc_irq_set_freq, | 
 | 314 | 	.irq_set_state	= vr41xx_rtc_irq_set_state, | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 315 | }; | 
 | 316 |  | 
 | 317 | static int __devinit rtc_probe(struct platform_device *pdev) | 
 | 318 | { | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 319 | 	struct resource *res; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 320 | 	struct rtc_device *rtc; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 321 | 	int retval; | 
 | 322 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 323 | 	if (pdev->num_resources != 4) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 324 | 		return -EBUSY; | 
 | 325 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 326 | 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
 | 327 | 	if (!res) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 328 | 		return -EBUSY; | 
 | 329 |  | 
| Yoichi Yuasa | a91912f | 2009-12-15 16:46:15 -0800 | [diff] [blame] | 330 | 	rtc1_base = ioremap(res->start, resource_size(res)); | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 331 | 	if (!rtc1_base) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 332 | 		return -EBUSY; | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 333 |  | 
 | 334 | 	res = platform_get_resource(pdev, IORESOURCE_MEM, 1); | 
 | 335 | 	if (!res) { | 
 | 336 | 		retval = -EBUSY; | 
 | 337 | 		goto err_rtc1_iounmap; | 
 | 338 | 	} | 
 | 339 |  | 
| Yoichi Yuasa | a91912f | 2009-12-15 16:46:15 -0800 | [diff] [blame] | 340 | 	rtc2_base = ioremap(res->start, resource_size(res)); | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 341 | 	if (!rtc2_base) { | 
 | 342 | 		retval = -EBUSY; | 
 | 343 | 		goto err_rtc1_iounmap; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 344 | 	} | 
 | 345 |  | 
 | 346 | 	rtc = rtc_device_register(rtc_name, &pdev->dev, &vr41xx_rtc_ops, THIS_MODULE); | 
 | 347 | 	if (IS_ERR(rtc)) { | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 348 | 		retval = PTR_ERR(rtc); | 
 | 349 | 		goto err_iounmap_all; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 350 | 	} | 
 | 351 |  | 
| Yoichi Yuasa | 4cad443 | 2008-07-23 21:30:48 -0700 | [diff] [blame] | 352 | 	rtc->max_user_freq = MAX_PERIODIC_RATE; | 
 | 353 |  | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 354 | 	spin_lock_irq(&rtc_lock); | 
 | 355 |  | 
 | 356 | 	rtc1_write(ECMPLREG, 0); | 
 | 357 | 	rtc1_write(ECMPMREG, 0); | 
 | 358 | 	rtc1_write(ECMPHREG, 0); | 
 | 359 | 	rtc1_write(RTCL1LREG, 0); | 
 | 360 | 	rtc1_write(RTCL1HREG, 0); | 
 | 361 |  | 
 | 362 | 	spin_unlock_irq(&rtc_lock); | 
 | 363 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 364 | 	aie_irq = platform_get_irq(pdev, 0); | 
| Anton Vorontsov | 2fac667 | 2009-01-06 14:42:11 -0800 | [diff] [blame] | 365 | 	if (aie_irq <= 0) { | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 366 | 		retval = -EBUSY; | 
 | 367 | 		goto err_device_unregister; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 368 | 	} | 
 | 369 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 370 | 	retval = request_irq(aie_irq, elapsedtime_interrupt, IRQF_DISABLED, | 
 | 371 | 	                     "elapsed_time", pdev); | 
 | 372 | 	if (retval < 0) | 
 | 373 | 		goto err_device_unregister; | 
 | 374 |  | 
 | 375 | 	pie_irq = platform_get_irq(pdev, 1); | 
| Anton Vorontsov | 2fac667 | 2009-01-06 14:42:11 -0800 | [diff] [blame] | 376 | 	if (pie_irq <= 0) | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 377 | 		goto err_free_irq; | 
 | 378 |  | 
 | 379 | 	retval = request_irq(pie_irq, rtclong1_interrupt, IRQF_DISABLED, | 
 | 380 | 		             "rtclong1", pdev); | 
 | 381 | 	if (retval < 0) | 
 | 382 | 		goto err_free_irq; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 383 |  | 
 | 384 | 	platform_set_drvdata(pdev, rtc); | 
 | 385 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 386 | 	disable_irq(aie_irq); | 
 | 387 | 	disable_irq(pie_irq); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 388 |  | 
 | 389 | 	printk(KERN_INFO "rtc: Real Time Clock of NEC VR4100 series\n"); | 
 | 390 |  | 
 | 391 | 	return 0; | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 392 |  | 
 | 393 | err_free_irq: | 
 | 394 | 	free_irq(aie_irq, pdev); | 
 | 395 |  | 
 | 396 | err_device_unregister: | 
 | 397 | 	rtc_device_unregister(rtc); | 
 | 398 |  | 
 | 399 | err_iounmap_all: | 
 | 400 | 	iounmap(rtc2_base); | 
 | 401 | 	rtc2_base = NULL; | 
 | 402 |  | 
 | 403 | err_rtc1_iounmap: | 
 | 404 | 	iounmap(rtc1_base); | 
 | 405 | 	rtc1_base = NULL; | 
 | 406 |  | 
 | 407 | 	return retval; | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 408 | } | 
 | 409 |  | 
 | 410 | static int __devexit rtc_remove(struct platform_device *pdev) | 
 | 411 | { | 
 | 412 | 	struct rtc_device *rtc; | 
 | 413 |  | 
 | 414 | 	rtc = platform_get_drvdata(pdev); | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 415 | 	if (rtc) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 416 | 		rtc_device_unregister(rtc); | 
 | 417 |  | 
 | 418 | 	platform_set_drvdata(pdev, NULL); | 
 | 419 |  | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 420 | 	free_irq(aie_irq, pdev); | 
 | 421 | 	free_irq(pie_irq, pdev); | 
 | 422 | 	if (rtc1_base) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 423 | 		iounmap(rtc1_base); | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 424 | 	if (rtc2_base) | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 425 | 		iounmap(rtc2_base); | 
 | 426 |  | 
 | 427 | 	return 0; | 
 | 428 | } | 
 | 429 |  | 
| Kay Sievers | ad28a07 | 2008-04-10 21:29:25 -0700 | [diff] [blame] | 430 | /* work with hotplug and coldplug */ | 
 | 431 | MODULE_ALIAS("platform:RTC"); | 
 | 432 |  | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 433 | static struct platform_driver rtc_platform_driver = { | 
 | 434 | 	.probe		= rtc_probe, | 
 | 435 | 	.remove		= __devexit_p(rtc_remove), | 
 | 436 | 	.driver		= { | 
 | 437 | 		.name	= rtc_name, | 
 | 438 | 		.owner	= THIS_MODULE, | 
 | 439 | 	}, | 
 | 440 | }; | 
 | 441 |  | 
 | 442 | static int __init vr41xx_rtc_init(void) | 
 | 443 | { | 
| Yoichi Yuasa | bd076509 | 2007-05-11 21:18:48 +0900 | [diff] [blame] | 444 | 	return platform_driver_register(&rtc_platform_driver); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 445 | } | 
 | 446 |  | 
 | 447 | static void __exit vr41xx_rtc_exit(void) | 
 | 448 | { | 
 | 449 | 	platform_driver_unregister(&rtc_platform_driver); | 
| Yoichi Yuasa | 8417eb7 | 2006-04-10 22:54:47 -0700 | [diff] [blame] | 450 | } | 
 | 451 |  | 
 | 452 | module_init(vr41xx_rtc_init); | 
 | 453 | module_exit(vr41xx_rtc_exit); |