rtc-ds1347.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* rtc-ds1347.c
  2. *
  3. * Driver for Dallas Semiconductor DS1347 Low Current, SPI Compatible
  4. * Real Time Clock
  5. *
  6. * Author : Raghavendra Chandra Ganiga <ravi23ganiga@gmail.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. */
  13. #include <linux/init.h>
  14. #include <linux/module.h>
  15. #include <linux/device.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/rtc.h>
  18. #include <linux/spi/spi.h>
  19. #include <linux/bcd.h>
  20. /* Registers in ds1347 rtc */
  21. #define DS1347_SECONDS_REG 0x01
  22. #define DS1347_MINUTES_REG 0x03
  23. #define DS1347_HOURS_REG 0x05
  24. #define DS1347_DATE_REG 0x07
  25. #define DS1347_MONTH_REG 0x09
  26. #define DS1347_DAY_REG 0x0B
  27. #define DS1347_YEAR_REG 0x0D
  28. #define DS1347_CONTROL_REG 0x0F
  29. #define DS1347_STATUS_REG 0x17
  30. #define DS1347_CLOCK_BURST 0x3F
  31. static int ds1347_read_reg(struct device *dev, unsigned char address,
  32. unsigned char *data)
  33. {
  34. struct spi_device *spi = to_spi_device(dev);
  35. *data = address | 0x80;
  36. return spi_write_then_read(spi, data, 1, data, 1);
  37. }
  38. static int ds1347_write_reg(struct device *dev, unsigned char address,
  39. unsigned char data)
  40. {
  41. struct spi_device *spi = to_spi_device(dev);
  42. unsigned char buf[2];
  43. buf[0] = address & 0x7F;
  44. buf[1] = data;
  45. return spi_write_then_read(spi, buf, 2, NULL, 0);
  46. }
  47. static int ds1347_read_time(struct device *dev, struct rtc_time *dt)
  48. {
  49. struct spi_device *spi = to_spi_device(dev);
  50. int err;
  51. unsigned char buf[8];
  52. buf[0] = DS1347_CLOCK_BURST | 0x80;
  53. err = spi_write_then_read(spi, buf, 1, buf, 8);
  54. if (err)
  55. return err;
  56. dt->tm_sec = bcd2bin(buf[0]);
  57. dt->tm_min = bcd2bin(buf[1]);
  58. dt->tm_hour = bcd2bin(buf[2] & 0x3F);
  59. dt->tm_mday = bcd2bin(buf[3]);
  60. dt->tm_mon = bcd2bin(buf[4]) - 1;
  61. dt->tm_wday = bcd2bin(buf[5]) - 1;
  62. dt->tm_year = bcd2bin(buf[6]) + 100;
  63. return rtc_valid_tm(dt);
  64. }
  65. static int ds1347_set_time(struct device *dev, struct rtc_time *dt)
  66. {
  67. struct spi_device *spi = to_spi_device(dev);
  68. unsigned char buf[9];
  69. buf[0] = DS1347_CLOCK_BURST & 0x7F;
  70. buf[1] = bin2bcd(dt->tm_sec);
  71. buf[2] = bin2bcd(dt->tm_min);
  72. buf[3] = (bin2bcd(dt->tm_hour) & 0x3F);
  73. buf[4] = bin2bcd(dt->tm_mday);
  74. buf[5] = bin2bcd(dt->tm_mon + 1);
  75. buf[6] = bin2bcd(dt->tm_wday + 1);
  76. /* year in linux is from 1900 i.e in range of 100
  77. in rtc it is from 00 to 99 */
  78. dt->tm_year = dt->tm_year % 100;
  79. buf[7] = bin2bcd(dt->tm_year);
  80. buf[8] = bin2bcd(0x00);
  81. /* write the rtc settings */
  82. return spi_write_then_read(spi, buf, 9, NULL, 0);
  83. }
  84. static const struct rtc_class_ops ds1347_rtc_ops = {
  85. .read_time = ds1347_read_time,
  86. .set_time = ds1347_set_time,
  87. };
  88. static int ds1347_probe(struct spi_device *spi)
  89. {
  90. struct rtc_device *rtc;
  91. unsigned char data;
  92. int res;
  93. /* spi setup with ds1347 in mode 3 and bits per word as 8 */
  94. spi->mode = SPI_MODE_3;
  95. spi->bits_per_word = 8;
  96. spi_setup(spi);
  97. /* RTC Settings */
  98. res = ds1347_read_reg(&spi->dev, DS1347_SECONDS_REG, &data);
  99. if (res)
  100. return res;
  101. /* Disable the write protect of rtc */
  102. ds1347_read_reg(&spi->dev, DS1347_CONTROL_REG, &data);
  103. data = data & ~(1<<7);
  104. ds1347_write_reg(&spi->dev, DS1347_CONTROL_REG, data);
  105. /* Enable the oscillator , disable the oscillator stop flag,
  106. and glitch filter to reduce current consumption */
  107. ds1347_read_reg(&spi->dev, DS1347_STATUS_REG, &data);
  108. data = data & 0x1B;
  109. ds1347_write_reg(&spi->dev, DS1347_STATUS_REG, data);
  110. /* display the settings */
  111. ds1347_read_reg(&spi->dev, DS1347_CONTROL_REG, &data);
  112. dev_info(&spi->dev, "DS1347 RTC CTRL Reg = 0x%02x\n", data);
  113. ds1347_read_reg(&spi->dev, DS1347_STATUS_REG, &data);
  114. dev_info(&spi->dev, "DS1347 RTC Status Reg = 0x%02x\n", data);
  115. rtc = devm_rtc_device_register(&spi->dev, "ds1347",
  116. &ds1347_rtc_ops, THIS_MODULE);
  117. if (IS_ERR(rtc))
  118. return PTR_ERR(rtc);
  119. spi_set_drvdata(spi, rtc);
  120. return 0;
  121. }
  122. static struct spi_driver ds1347_driver = {
  123. .driver = {
  124. .name = "ds1347",
  125. },
  126. .probe = ds1347_probe,
  127. };
  128. module_spi_driver(ds1347_driver);
  129. MODULE_DESCRIPTION("DS1347 SPI RTC DRIVER");
  130. MODULE_AUTHOR("Raghavendra C Ganiga <ravi23ganiga@gmail.com>");
  131. MODULE_LICENSE("GPL v2");