1 // SPDX-License-Identifier: GPL-2.0-only
4 * Driver for MAXIM max6916 Low Current, SPI Compatible
7 * Author : Venkat Prashanth B U <venkat.prashanth2498@gmail.com>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <linux/platform_device.h>
14 #include <linux/rtc.h>
15 #include <linux/spi/spi.h>
16 #include <linux/bcd.h>
18 /* Registers in max6916 rtc */
20 #define MAX6916_SECONDS_REG 0x01
21 #define MAX6916_MINUTES_REG 0x02
22 #define MAX6916_HOURS_REG 0x03
23 #define MAX6916_DATE_REG 0x04
24 #define MAX6916_MONTH_REG 0x05
25 #define MAX6916_DAY_REG 0x06
26 #define MAX6916_YEAR_REG 0x07
27 #define MAX6916_CONTROL_REG 0x08
28 #define MAX6916_STATUS_REG 0x0C
29 #define MAX6916_CLOCK_BURST 0x3F
31 static int max6916_read_reg(struct device *dev, unsigned char address,
34 struct spi_device *spi = to_spi_device(dev);
36 *data = address | 0x80;
38 return spi_write_then_read(spi, data, 1, data, 1);
41 static int max6916_write_reg(struct device *dev, unsigned char address,
44 struct spi_device *spi = to_spi_device(dev);
47 buf[0] = address & 0x7F;
50 return spi_write_then_read(spi, buf, 2, NULL, 0);
53 static int max6916_read_time(struct device *dev, struct rtc_time *dt)
55 struct spi_device *spi = to_spi_device(dev);
59 buf[0] = MAX6916_CLOCK_BURST | 0x80;
61 err = spi_write_then_read(spi, buf, 1, buf, 8);
66 dt->tm_sec = bcd2bin(buf[0]);
67 dt->tm_min = bcd2bin(buf[1]);
68 dt->tm_hour = bcd2bin(buf[2] & 0x3F);
69 dt->tm_mday = bcd2bin(buf[3]);
70 dt->tm_mon = bcd2bin(buf[4]) - 1;
71 dt->tm_wday = bcd2bin(buf[5]) - 1;
72 dt->tm_year = bcd2bin(buf[6]) + 100;
77 static int max6916_set_time(struct device *dev, struct rtc_time *dt)
79 struct spi_device *spi = to_spi_device(dev);
82 if (dt->tm_year < 100 || dt->tm_year > 199) {
83 dev_err(&spi->dev, "Year must be between 2000 and 2099. It's %d.\n",
88 buf[0] = MAX6916_CLOCK_BURST & 0x7F;
89 buf[1] = bin2bcd(dt->tm_sec);
90 buf[2] = bin2bcd(dt->tm_min);
91 buf[3] = (bin2bcd(dt->tm_hour) & 0X3F);
92 buf[4] = bin2bcd(dt->tm_mday);
93 buf[5] = bin2bcd(dt->tm_mon + 1);
94 buf[6] = bin2bcd(dt->tm_wday + 1);
95 buf[7] = bin2bcd(dt->tm_year % 100);
96 buf[8] = bin2bcd(0x00);
98 /* write the rtc settings */
99 return spi_write_then_read(spi, buf, 9, NULL, 0);
102 static const struct rtc_class_ops max6916_rtc_ops = {
103 .read_time = max6916_read_time,
104 .set_time = max6916_set_time,
107 static int max6916_probe(struct spi_device *spi)
109 struct rtc_device *rtc;
113 /* spi setup with max6916 in mode 3 and bits per word as 8 */
114 spi->mode = SPI_MODE_3;
115 spi->bits_per_word = 8;
119 res = max6916_read_reg(&spi->dev, MAX6916_SECONDS_REG, &data);
123 /* Disable the write protect of rtc */
124 max6916_read_reg(&spi->dev, MAX6916_CONTROL_REG, &data);
125 data = data & ~(1 << 7);
126 max6916_write_reg(&spi->dev, MAX6916_CONTROL_REG, data);
128 /*Enable oscillator,disable oscillator stop flag, glitch filter*/
129 max6916_read_reg(&spi->dev, MAX6916_STATUS_REG, &data);
131 max6916_write_reg(&spi->dev, MAX6916_STATUS_REG, data);
133 /* display the settings */
134 max6916_read_reg(&spi->dev, MAX6916_CONTROL_REG, &data);
135 dev_info(&spi->dev, "MAX6916 RTC CTRL Reg = 0x%02x\n", data);
137 max6916_read_reg(&spi->dev, MAX6916_STATUS_REG, &data);
138 dev_info(&spi->dev, "MAX6916 RTC Status Reg = 0x%02x\n", data);
140 rtc = devm_rtc_device_register(&spi->dev, "max6916",
141 &max6916_rtc_ops, THIS_MODULE);
145 spi_set_drvdata(spi, rtc);
150 static struct spi_driver max6916_driver = {
154 .probe = max6916_probe,
156 module_spi_driver(max6916_driver);
158 MODULE_DESCRIPTION("MAX6916 SPI RTC DRIVER");
159 MODULE_AUTHOR("Venkat Prashanth B U <venkat.prashanth2498@gmail.com>");
160 MODULE_LICENSE("GPL v2");