1 // SPDX-License-Identifier: GPL-2.0-only
3 * rtc-ds1305.c -- driver for DS1305 and DS1306 SPI RTC chips
5 * Copyright (C) 2008 David Brownell
7 #include <linux/kernel.h>
8 #include <linux/init.h>
10 #include <linux/slab.h>
11 #include <linux/rtc.h>
12 #include <linux/workqueue.h>
14 #include <linux/spi/spi.h>
15 #include <linux/spi/ds1305.h>
16 #include <linux/module.h>
20 * Registers ... mask DS1305_WRITE into register address to write,
21 * otherwise you're reading it. All non-bitmask values are BCD.
23 #define DS1305_WRITE 0x80
26 /* RTC date/time ... the main special cases are that we:
27 * - Need fancy "hours" encoding in 12hour mode
28 * - Don't rely on the "day-of-week" field (or tm_wday)
29 * - Are a 21st-century clock (2000 <= year < 2100)
31 #define DS1305_RTC_LEN 7 /* bytes for RTC regs */
33 #define DS1305_SEC 0x00 /* register addresses */
34 #define DS1305_MIN 0x01
35 #define DS1305_HOUR 0x02
36 # define DS1305_HR_12 0x40 /* set == 12 hr mode */
37 # define DS1305_HR_PM 0x20 /* set == PM (12hr mode) */
38 #define DS1305_WDAY 0x03
39 #define DS1305_MDAY 0x04
40 #define DS1305_MON 0x05
41 #define DS1305_YEAR 0x06
44 /* The two alarms have only sec/min/hour/wday fields (ALM_LEN).
45 * DS1305_ALM_DISABLE disables a match field (some combos are bad).
47 * NOTE that since we don't use WDAY, we limit ourselves to alarms
48 * only one day into the future (vs potentially up to a week).
50 * NOTE ALSO that while we could generate once-a-second IRQs (UIE), we
51 * don't currently support them. We'd either need to do it only when
52 * no alarm is pending (not the standard model), or to use the second
53 * alarm (implying that this is a DS1305 not DS1306, *and* that either
54 * it's wired up a second IRQ we know, or that INTCN is set)
56 #define DS1305_ALM_LEN 4 /* bytes for ALM regs */
57 #define DS1305_ALM_DISABLE 0x80
59 #define DS1305_ALM0(r) (0x07 + (r)) /* register addresses */
60 #define DS1305_ALM1(r) (0x0b + (r))
63 /* three control registers */
64 #define DS1305_CONTROL_LEN 3 /* bytes of control regs */
66 #define DS1305_CONTROL 0x0f /* register addresses */
67 # define DS1305_nEOSC 0x80 /* low enables oscillator */
68 # define DS1305_WP 0x40 /* write protect */
69 # define DS1305_INTCN 0x04 /* clear == only int0 used */
70 # define DS1306_1HZ 0x04 /* enable 1Hz output */
71 # define DS1305_AEI1 0x02 /* enable ALM1 IRQ */
72 # define DS1305_AEI0 0x01 /* enable ALM0 IRQ */
73 #define DS1305_STATUS 0x10
74 /* status has just AEIx bits, mirrored as IRQFx */
75 #define DS1305_TRICKLE 0x11
76 /* trickle bits are defined in <linux/spi/ds1305.h> */
78 /* a bunch of NVRAM */
79 #define DS1305_NVRAM_LEN 96 /* bytes of NVRAM */
81 #define DS1305_NVRAM 0x20 /* register addresses */
85 struct spi_device
*spi
;
86 struct rtc_device
*rtc
;
88 struct work_struct work
;
91 #define FLAG_EXITING 0
94 u8 ctrl
[DS1305_CONTROL_LEN
];
98 /*----------------------------------------------------------------------*/
101 * Utilities ... tolerate 12-hour AM/PM notation in case of non-Linux
102 * software (like a bootloader) which may require it.
105 static unsigned bcd2hour(u8 bcd
)
107 if (bcd
& DS1305_HR_12
) {
110 bcd
&= ~DS1305_HR_12
;
111 if (bcd
& DS1305_HR_PM
) {
113 bcd
&= ~DS1305_HR_PM
;
115 hour
+= bcd2bin(bcd
);
121 static u8
hour2bcd(bool hr12
, int hour
)
126 return DS1305_HR_12
| bin2bcd(hour
);
128 return DS1305_HR_12
| DS1305_HR_PM
| bin2bcd(hour
);
130 return bin2bcd(hour
);
133 /*----------------------------------------------------------------------*/
136 * Interface to RTC framework
139 static int ds1305_alarm_irq_enable(struct device
*dev
, unsigned int enabled
)
141 struct ds1305
*ds1305
= dev_get_drvdata(dev
);
145 buf
[0] = DS1305_WRITE
| DS1305_CONTROL
;
146 buf
[1] = ds1305
->ctrl
[0];
149 if (ds1305
->ctrl
[0] & DS1305_AEI0
)
151 buf
[1] |= DS1305_AEI0
;
153 if (!(buf
[1] & DS1305_AEI0
))
155 buf
[1] &= ~DS1305_AEI0
;
157 err
= spi_write_then_read(ds1305
->spi
, buf
, sizeof(buf
), NULL
, 0);
159 ds1305
->ctrl
[0] = buf
[1];
167 * Get/set of date and time is pretty normal.
170 static int ds1305_get_time(struct device
*dev
, struct rtc_time
*time
)
172 struct ds1305
*ds1305
= dev_get_drvdata(dev
);
173 u8 addr
= DS1305_SEC
;
174 u8 buf
[DS1305_RTC_LEN
];
177 /* Use write-then-read to get all the date/time registers
178 * since dma from stack is nonportable
180 status
= spi_write_then_read(ds1305
->spi
, &addr
, sizeof(addr
),
185 dev_vdbg(dev
, "%s: %3ph, %4ph\n", "read", &buf
[0], &buf
[3]);
187 /* Decode the registers */
188 time
->tm_sec
= bcd2bin(buf
[DS1305_SEC
]);
189 time
->tm_min
= bcd2bin(buf
[DS1305_MIN
]);
190 time
->tm_hour
= bcd2hour(buf
[DS1305_HOUR
]);
191 time
->tm_wday
= buf
[DS1305_WDAY
] - 1;
192 time
->tm_mday
= bcd2bin(buf
[DS1305_MDAY
]);
193 time
->tm_mon
= bcd2bin(buf
[DS1305_MON
]) - 1;
194 time
->tm_year
= bcd2bin(buf
[DS1305_YEAR
]) + 100;
196 dev_vdbg(dev
, "%s secs=%d, mins=%d, "
197 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
198 "read", time
->tm_sec
, time
->tm_min
,
199 time
->tm_hour
, time
->tm_mday
,
200 time
->tm_mon
, time
->tm_year
, time
->tm_wday
);
205 static int ds1305_set_time(struct device
*dev
, struct rtc_time
*time
)
207 struct ds1305
*ds1305
= dev_get_drvdata(dev
);
208 u8 buf
[1 + DS1305_RTC_LEN
];
211 dev_vdbg(dev
, "%s secs=%d, mins=%d, "
212 "hours=%d, mday=%d, mon=%d, year=%d, wday=%d\n",
213 "write", time
->tm_sec
, time
->tm_min
,
214 time
->tm_hour
, time
->tm_mday
,
215 time
->tm_mon
, time
->tm_year
, time
->tm_wday
);
217 /* Write registers starting at the first time/date address. */
218 *bp
++ = DS1305_WRITE
| DS1305_SEC
;
220 *bp
++ = bin2bcd(time
->tm_sec
);
221 *bp
++ = bin2bcd(time
->tm_min
);
222 *bp
++ = hour2bcd(ds1305
->hr12
, time
->tm_hour
);
223 *bp
++ = (time
->tm_wday
< 7) ? (time
->tm_wday
+ 1) : 1;
224 *bp
++ = bin2bcd(time
->tm_mday
);
225 *bp
++ = bin2bcd(time
->tm_mon
+ 1);
226 *bp
++ = bin2bcd(time
->tm_year
- 100);
228 dev_dbg(dev
, "%s: %3ph, %4ph\n", "write", &buf
[1], &buf
[4]);
230 /* use write-then-read since dma from stack is nonportable */
231 return spi_write_then_read(ds1305
->spi
, buf
, sizeof(buf
),
236 * Get/set of alarm is a bit funky:
238 * - First there's the inherent raciness of getting the (partitioned)
239 * status of an alarm that could trigger while we're reading parts
242 * - Second there's its limited range (we could increase it a bit by
243 * relying on WDAY), which means it will easily roll over.
245 * - Third there's the choice of two alarms and alarm signals.
246 * Here we use ALM0 and expect that nINT0 (open drain) is used;
247 * that's the only real option for DS1306 runtime alarms, and is
250 * - Fourth, there's also ALM1, and a second interrupt signal:
251 * + On DS1305 ALM1 uses nINT1 (when INTCN=1) else nINT0;
252 * + On DS1306 ALM1 only uses INT1 (an active high pulse)
253 * and it won't work when VCC1 is active.
255 * So to be most general, we should probably set both alarms to the
256 * same value, letting ALM1 be the wakeup event source on DS1306
257 * and handling several wiring options on DS1305.
259 * - Fifth, we support the polled mode (as well as possible; why not?)
260 * even when no interrupt line is wired to an IRQ.
264 * Context: caller holds rtc->ops_lock (to protect ds1305->ctrl)
266 static int ds1305_get_alarm(struct device
*dev
, struct rtc_wkalrm
*alm
)
268 struct ds1305
*ds1305
= dev_get_drvdata(dev
);
269 struct spi_device
*spi
= ds1305
->spi
;
272 u8 buf
[DS1305_ALM_LEN
];
274 /* Refresh control register cache BEFORE reading ALM0 registers,
275 * since reading alarm registers acks any pending IRQ. That
276 * makes returning "pending" status a bit of a lie, but that bit
277 * of EFI status is at best fragile anyway (given IRQ handlers).
279 addr
= DS1305_CONTROL
;
280 status
= spi_write_then_read(spi
, &addr
, sizeof(addr
),
281 ds1305
->ctrl
, sizeof(ds1305
->ctrl
));
285 alm
->enabled
= !!(ds1305
->ctrl
[0] & DS1305_AEI0
);
286 alm
->pending
= !!(ds1305
->ctrl
[1] & DS1305_AEI0
);
288 /* get and check ALM0 registers */
289 addr
= DS1305_ALM0(DS1305_SEC
);
290 status
= spi_write_then_read(spi
, &addr
, sizeof(addr
),
295 dev_vdbg(dev
, "%s: %02x %02x %02x %02x\n",
296 "alm0 read", buf
[DS1305_SEC
], buf
[DS1305_MIN
],
297 buf
[DS1305_HOUR
], buf
[DS1305_WDAY
]);
299 if ((DS1305_ALM_DISABLE
& buf
[DS1305_SEC
])
300 || (DS1305_ALM_DISABLE
& buf
[DS1305_MIN
])
301 || (DS1305_ALM_DISABLE
& buf
[DS1305_HOUR
]))
304 /* Stuff these values into alm->time and let RTC framework code
305 * fill in the rest ... and also handle rollover to tomorrow when
308 alm
->time
.tm_sec
= bcd2bin(buf
[DS1305_SEC
]);
309 alm
->time
.tm_min
= bcd2bin(buf
[DS1305_MIN
]);
310 alm
->time
.tm_hour
= bcd2hour(buf
[DS1305_HOUR
]);
316 * Context: caller holds rtc->ops_lock (to protect ds1305->ctrl)
318 static int ds1305_set_alarm(struct device
*dev
, struct rtc_wkalrm
*alm
)
320 struct ds1305
*ds1305
= dev_get_drvdata(dev
);
321 struct spi_device
*spi
= ds1305
->spi
;
322 unsigned long now
, later
;
325 u8 buf
[1 + DS1305_ALM_LEN
];
327 /* convert desired alarm to time_t */
328 later
= rtc_tm_to_time64(&alm
->time
);
330 /* Read current time as time_t */
331 status
= ds1305_get_time(dev
, &tm
);
334 now
= rtc_tm_to_time64(&tm
);
336 /* make sure alarm fires within the next 24 hours */
339 if ((later
- now
) > 24 * 60 * 60)
342 /* disable alarm if needed */
343 if (ds1305
->ctrl
[0] & DS1305_AEI0
) {
344 ds1305
->ctrl
[0] &= ~DS1305_AEI0
;
346 buf
[0] = DS1305_WRITE
| DS1305_CONTROL
;
347 buf
[1] = ds1305
->ctrl
[0];
348 status
= spi_write_then_read(ds1305
->spi
, buf
, 2, NULL
, 0);
354 buf
[0] = DS1305_WRITE
| DS1305_ALM0(DS1305_SEC
);
355 buf
[1 + DS1305_SEC
] = bin2bcd(alm
->time
.tm_sec
);
356 buf
[1 + DS1305_MIN
] = bin2bcd(alm
->time
.tm_min
);
357 buf
[1 + DS1305_HOUR
] = hour2bcd(ds1305
->hr12
, alm
->time
.tm_hour
);
358 buf
[1 + DS1305_WDAY
] = DS1305_ALM_DISABLE
;
360 dev_dbg(dev
, "%s: %02x %02x %02x %02x\n",
361 "alm0 write", buf
[1 + DS1305_SEC
], buf
[1 + DS1305_MIN
],
362 buf
[1 + DS1305_HOUR
], buf
[1 + DS1305_WDAY
]);
364 status
= spi_write_then_read(spi
, buf
, sizeof(buf
), NULL
, 0);
368 /* enable alarm if requested */
370 ds1305
->ctrl
[0] |= DS1305_AEI0
;
372 buf
[0] = DS1305_WRITE
| DS1305_CONTROL
;
373 buf
[1] = ds1305
->ctrl
[0];
374 status
= spi_write_then_read(ds1305
->spi
, buf
, 2, NULL
, 0);
380 #ifdef CONFIG_PROC_FS
382 static int ds1305_proc(struct device
*dev
, struct seq_file
*seq
)
384 struct ds1305
*ds1305
= dev_get_drvdata(dev
);
386 char *resistors
= "";
388 /* ctrl[2] is treated as read-only; no locking needed */
389 if ((ds1305
->ctrl
[2] & 0xf0) == DS1305_TRICKLE_MAGIC
) {
390 switch (ds1305
->ctrl
[2] & 0x0c) {
391 case DS1305_TRICKLE_DS2
:
392 diodes
= "2 diodes, ";
394 case DS1305_TRICKLE_DS1
:
395 diodes
= "1 diode, ";
400 switch (ds1305
->ctrl
[2] & 0x03) {
401 case DS1305_TRICKLE_2K
:
402 resistors
= "2k Ohm";
404 case DS1305_TRICKLE_4K
:
405 resistors
= "4k Ohm";
407 case DS1305_TRICKLE_8K
:
408 resistors
= "8k Ohm";
417 seq_printf(seq
, "trickle_charge\t: %s%s\n", diodes
, resistors
);
423 #define ds1305_proc NULL
426 static const struct rtc_class_ops ds1305_ops
= {
427 .read_time
= ds1305_get_time
,
428 .set_time
= ds1305_set_time
,
429 .read_alarm
= ds1305_get_alarm
,
430 .set_alarm
= ds1305_set_alarm
,
432 .alarm_irq_enable
= ds1305_alarm_irq_enable
,
435 static void ds1305_work(struct work_struct
*work
)
437 struct ds1305
*ds1305
= container_of(work
, struct ds1305
, work
);
438 struct mutex
*lock
= &ds1305
->rtc
->ops_lock
;
439 struct spi_device
*spi
= ds1305
->spi
;
443 /* lock to protect ds1305->ctrl */
446 /* Disable the IRQ, and clear its status ... for now, we "know"
447 * that if more than one alarm is active, they're in sync.
448 * Note that reading ALM data registers also clears IRQ status.
450 ds1305
->ctrl
[0] &= ~(DS1305_AEI1
| DS1305_AEI0
);
453 buf
[0] = DS1305_WRITE
| DS1305_CONTROL
;
454 buf
[1] = ds1305
->ctrl
[0];
457 status
= spi_write_then_read(spi
, buf
, sizeof(buf
),
460 dev_dbg(&spi
->dev
, "clear irq --> %d\n", status
);
464 if (!test_bit(FLAG_EXITING
, &ds1305
->flags
))
465 enable_irq(spi
->irq
);
467 rtc_update_irq(ds1305
->rtc
, 1, RTC_AF
| RTC_IRQF
);
471 * This "real" IRQ handler hands off to a workqueue mostly to allow
472 * mutex locking for ds1305->ctrl ... unlike I2C, we could issue async
473 * I/O requests in IRQ context (to clear the IRQ status).
475 static irqreturn_t
ds1305_irq(int irq
, void *p
)
477 struct ds1305
*ds1305
= p
;
480 schedule_work(&ds1305
->work
);
484 /*----------------------------------------------------------------------*/
487 * Interface for NVRAM
490 static void msg_init(struct spi_message
*m
, struct spi_transfer
*x
,
491 u8
*addr
, size_t count
, char *tx
, char *rx
)
494 memset(x
, 0, 2 * sizeof(*x
));
498 spi_message_add_tail(x
, m
);
505 spi_message_add_tail(x
, m
);
508 static int ds1305_nvram_read(void *priv
, unsigned int off
, void *buf
,
511 struct ds1305
*ds1305
= priv
;
512 struct spi_device
*spi
= ds1305
->spi
;
514 struct spi_message m
;
515 struct spi_transfer x
[2];
517 addr
= DS1305_NVRAM
+ off
;
518 msg_init(&m
, x
, &addr
, count
, NULL
, buf
);
520 return spi_sync(spi
, &m
);
523 static int ds1305_nvram_write(void *priv
, unsigned int off
, void *buf
,
526 struct ds1305
*ds1305
= priv
;
527 struct spi_device
*spi
= ds1305
->spi
;
529 struct spi_message m
;
530 struct spi_transfer x
[2];
532 addr
= (DS1305_WRITE
| DS1305_NVRAM
) + off
;
533 msg_init(&m
, x
, &addr
, count
, buf
, NULL
);
535 return spi_sync(spi
, &m
);
538 /*----------------------------------------------------------------------*/
541 * Interface to SPI stack
544 static int ds1305_probe(struct spi_device
*spi
)
546 struct ds1305
*ds1305
;
549 struct ds1305_platform_data
*pdata
= dev_get_platdata(&spi
->dev
);
550 bool write_ctrl
= false;
551 struct nvmem_config ds1305_nvmem_cfg
= {
552 .name
= "ds1305_nvram",
555 .size
= DS1305_NVRAM_LEN
,
556 .reg_read
= ds1305_nvram_read
,
557 .reg_write
= ds1305_nvram_write
,
560 /* Sanity check board setup data. This may be hooked up
561 * in 3wire mode, but we don't care. Note that unless
562 * there's an inverter in place, this needs SPI_CS_HIGH!
564 if ((spi
->bits_per_word
&& spi
->bits_per_word
!= 8)
565 || (spi
->max_speed_hz
> 2000000)
566 || !(spi
->mode
& SPI_CPHA
))
569 /* set up driver data */
570 ds1305
= devm_kzalloc(&spi
->dev
, sizeof(*ds1305
), GFP_KERNEL
);
574 spi_set_drvdata(spi
, ds1305
);
576 /* read and cache control registers */
577 addr
= DS1305_CONTROL
;
578 status
= spi_write_then_read(spi
, &addr
, sizeof(addr
),
579 ds1305
->ctrl
, sizeof(ds1305
->ctrl
));
581 dev_dbg(&spi
->dev
, "can't %s, %d\n",
586 dev_dbg(&spi
->dev
, "ctrl %s: %3ph\n", "read", ds1305
->ctrl
);
588 /* Sanity check register values ... partially compensating for the
589 * fact that SPI has no device handshake. A pullup on MISO would
590 * make these tests fail; but not all systems will have one. If
591 * some register is neither 0x00 nor 0xff, a chip is likely there.
593 if ((ds1305
->ctrl
[0] & 0x38) != 0 || (ds1305
->ctrl
[1] & 0xfc) != 0) {
594 dev_dbg(&spi
->dev
, "RTC chip is not present\n");
597 if (ds1305
->ctrl
[2] == 0)
598 dev_dbg(&spi
->dev
, "chip may not be present\n");
600 /* enable writes if needed ... if we were paranoid it would
601 * make sense to enable them only when absolutely necessary.
603 if (ds1305
->ctrl
[0] & DS1305_WP
) {
606 ds1305
->ctrl
[0] &= ~DS1305_WP
;
608 buf
[0] = DS1305_WRITE
| DS1305_CONTROL
;
609 buf
[1] = ds1305
->ctrl
[0];
610 status
= spi_write_then_read(spi
, buf
, sizeof(buf
), NULL
, 0);
612 dev_dbg(&spi
->dev
, "clear WP --> %d\n", status
);
617 /* on DS1305, maybe start oscillator; like most low power
618 * oscillators, it may take a second to stabilize
620 if (ds1305
->ctrl
[0] & DS1305_nEOSC
) {
621 ds1305
->ctrl
[0] &= ~DS1305_nEOSC
;
623 dev_warn(&spi
->dev
, "SET TIME!\n");
626 /* ack any pending IRQs */
627 if (ds1305
->ctrl
[1]) {
632 /* this may need one-time (re)init */
634 /* maybe enable trickle charge */
635 if (((ds1305
->ctrl
[2] & 0xf0) != DS1305_TRICKLE_MAGIC
)) {
636 ds1305
->ctrl
[2] = DS1305_TRICKLE_MAGIC
641 /* on DS1306, configure 1 Hz signal */
642 if (pdata
->is_ds1306
) {
644 if (!(ds1305
->ctrl
[0] & DS1306_1HZ
)) {
645 ds1305
->ctrl
[0] |= DS1306_1HZ
;
649 if (ds1305
->ctrl
[0] & DS1306_1HZ
) {
650 ds1305
->ctrl
[0] &= ~DS1306_1HZ
;
660 buf
[0] = DS1305_WRITE
| DS1305_CONTROL
;
661 buf
[1] = ds1305
->ctrl
[0];
662 buf
[2] = ds1305
->ctrl
[1];
663 buf
[3] = ds1305
->ctrl
[2];
664 status
= spi_write_then_read(spi
, buf
, sizeof(buf
), NULL
, 0);
666 dev_dbg(&spi
->dev
, "can't %s, %d\n",
671 dev_dbg(&spi
->dev
, "ctrl %s: %3ph\n", "write", ds1305
->ctrl
);
674 /* see if non-Linux software set up AM/PM mode */
676 status
= spi_write_then_read(spi
, &addr
, sizeof(addr
),
677 &value
, sizeof(value
));
679 dev_dbg(&spi
->dev
, "read HOUR --> %d\n", status
);
683 ds1305
->hr12
= (DS1305_HR_12
& value
) != 0;
685 dev_dbg(&spi
->dev
, "AM/PM\n");
687 /* register RTC ... from here on, ds1305->ctrl needs locking */
688 ds1305
->rtc
= devm_rtc_allocate_device(&spi
->dev
);
689 if (IS_ERR(ds1305
->rtc
))
690 return PTR_ERR(ds1305
->rtc
);
692 ds1305
->rtc
->ops
= &ds1305_ops
;
693 ds1305
->rtc
->range_min
= RTC_TIMESTAMP_BEGIN_2000
;
694 ds1305
->rtc
->range_max
= RTC_TIMESTAMP_END_2099
;
696 ds1305_nvmem_cfg
.priv
= ds1305
;
697 ds1305
->rtc
->nvram_old_abi
= true;
698 status
= rtc_register_device(ds1305
->rtc
);
702 rtc_nvmem_register(ds1305
->rtc
, &ds1305_nvmem_cfg
);
704 /* Maybe set up alarm IRQ; be ready to handle it triggering right
705 * away. NOTE that we don't share this. The signal is active low,
706 * and we can't ack it before a SPI message delay. We temporarily
707 * disable the IRQ until it's acked, which lets us work with more
708 * IRQ trigger modes (not all IRQ controllers can do falling edge).
711 INIT_WORK(&ds1305
->work
, ds1305_work
);
712 status
= devm_request_irq(&spi
->dev
, spi
->irq
, ds1305_irq
,
713 0, dev_name(&ds1305
->rtc
->dev
), ds1305
);
715 dev_err(&spi
->dev
, "request_irq %d --> %d\n",
718 device_set_wakeup_capable(&spi
->dev
, 1);
725 static int ds1305_remove(struct spi_device
*spi
)
727 struct ds1305
*ds1305
= spi_get_drvdata(spi
);
729 /* carefully shut down irq and workqueue, if present */
731 set_bit(FLAG_EXITING
, &ds1305
->flags
);
732 devm_free_irq(&spi
->dev
, spi
->irq
, ds1305
);
733 cancel_work_sync(&ds1305
->work
);
739 static struct spi_driver ds1305_driver
= {
740 .driver
.name
= "rtc-ds1305",
741 .probe
= ds1305_probe
,
742 .remove
= ds1305_remove
,
743 /* REVISIT add suspend/resume */
746 module_spi_driver(ds1305_driver
);
748 MODULE_DESCRIPTION("RTC driver for DS1305 and DS1306 chips");
749 MODULE_LICENSE("GPL");
750 MODULE_ALIAS("spi:rtc-ds1305");