pcf8583.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/acorn/char/pcf8583.c
  3.  *
  4.  *  Copyright (C) 2000 Russell King
  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 version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Driver for PCF8583 RTC & RAM chip
  11.  */
  12. #include <linux/i2c.h>
  13. #include <linux/slab.h>
  14. #include <linux/string.h>
  15. #include <linux/mc146818rtc.h>
  16. #include <linux/init.h>
  17. #include "pcf8583.h"
  18. static struct i2c_driver pcf8583_driver;
  19. static unsigned short ignore[] = { I2C_CLIENT_END };
  20. static unsigned short normal_addr[] = { 0x50, I2C_CLIENT_END };
  21. static struct i2c_client_address_data addr_data = {
  22. normal_i2c: normal_addr,
  23. normal_i2c_range: ignore,
  24. probe: ignore,
  25. probe_range: ignore,
  26. ignore: ignore,
  27. ignore_range: ignore,
  28. force: ignore,
  29. };
  30. #define DAT(x) ((unsigned int)(x->data))
  31. static int
  32. pcf8583_attach(struct i2c_adapter *adap, int addr, unsigned short flags,
  33.        int kind)
  34. {
  35. struct i2c_client *c;
  36. unsigned char buf[1], ad[1] = { 0 };
  37. struct i2c_msg msgs[2] = {
  38. { addr, 0,        1, ad  },
  39. { addr, I2C_M_RD, 1, buf }
  40. };
  41. c = kmalloc(sizeof(*c), GFP_KERNEL);
  42. if (!c)
  43. return -ENOMEM;
  44. strcpy(c->name, "PCF8583");
  45. c->id = pcf8583_driver.id;
  46. c->flags = 0;
  47. c->addr = addr;
  48. c->adapter = adap;
  49. c->driver = &pcf8583_driver;
  50. c->data = NULL;
  51. if (i2c_transfer(c->adapter, msgs, 2) == 2)
  52. DAT(c) = buf[0];
  53. return i2c_attach_client(c);
  54. }
  55. static int
  56. pcf8583_probe(struct i2c_adapter *adap)
  57. {
  58. return i2c_probe(adap, &addr_data, pcf8583_attach);
  59. }
  60. static int
  61. pcf8583_detach(struct i2c_client *client)
  62. {
  63. i2c_detach_client(client);
  64. kfree(client);
  65. return 0;
  66. }
  67. static int
  68. pcf8583_get_datetime(struct i2c_client *client, struct rtc_tm *dt)
  69. {
  70. unsigned char buf[8], addr[1] = { 1 };
  71. struct i2c_msg msgs[2] = {
  72. { client->addr, 0,        1, addr },
  73. { client->addr, I2C_M_RD, 6, buf  }
  74. };
  75. int ret = -EIO;
  76. memset(buf, 0, sizeof(buf));
  77. ret = i2c_transfer(client->adapter, msgs, 2);
  78. if (ret == 2) {
  79. dt->year_off = buf[4] >> 6;
  80. dt->wday     = buf[5] >> 5;
  81. buf[4] &= 0x3f;
  82. buf[5] &= 0x1f;
  83. dt->cs       = BCD_TO_BIN(buf[0]);
  84. dt->secs     = BCD_TO_BIN(buf[1]);
  85. dt->mins     = BCD_TO_BIN(buf[2]);
  86. dt->hours    = BCD_TO_BIN(buf[3]);
  87. dt->mday     = BCD_TO_BIN(buf[4]);
  88. dt->mon      = BCD_TO_BIN(buf[5]);
  89. ret = 0;
  90. }
  91. return ret;
  92. }
  93. static int
  94. pcf8583_set_datetime(struct i2c_client *client, struct rtc_tm *dt, int datetoo)
  95. {
  96. unsigned char buf[8];
  97. int ret, len = 6;
  98. buf[0] = 0;
  99. buf[1] = DAT(client) | 0x80;
  100. buf[2] = BIN_TO_BCD(dt->cs);
  101. buf[3] = BIN_TO_BCD(dt->secs);
  102. buf[4] = BIN_TO_BCD(dt->mins);
  103. buf[5] = BIN_TO_BCD(dt->hours);
  104. if (datetoo) {
  105. len = 8;
  106. buf[6] = BIN_TO_BCD(dt->mday) | (dt->year_off << 6);
  107. buf[7] = BIN_TO_BCD(dt->mon)  | (dt->wday << 5);
  108. }
  109. ret = i2c_master_send(client, (char *)buf, len);
  110. if (ret == len)
  111. ret = 0;
  112. buf[1] = DAT(client);
  113. i2c_master_send(client, (char *)buf, 2);
  114. return ret;
  115. }
  116. static int
  117. pcf8583_get_ctrl(struct i2c_client *client, unsigned char *ctrl)
  118. {
  119. *ctrl = DAT(client);
  120. return 0;
  121. }
  122. static int
  123. pcf8583_set_ctrl(struct i2c_client *client, unsigned char *ctrl)
  124. {
  125. unsigned char buf[2];
  126. buf[0] = 0;
  127. buf[1] = *ctrl;
  128. DAT(client) = *ctrl;
  129. return i2c_master_send(client, (char *)buf, 2);
  130. }
  131. static int
  132. pcf8583_read_mem(struct i2c_client *client, struct mem *mem)
  133. {
  134. unsigned char addr[1];
  135. struct i2c_msg msgs[2] = {
  136. { client->addr, 0,        1, addr },
  137. { client->addr, I2C_M_RD, 0, mem->data }
  138. };
  139. if (mem->loc < 8)
  140. return -EINVAL;
  141. addr[0] = mem->loc;
  142. msgs[1].len = mem->nr;
  143. return i2c_transfer(client->adapter, msgs, 2) == 2 ? 0 : -EIO;
  144. }
  145. static int
  146. pcf8583_write_mem(struct i2c_client *client, struct mem *mem)
  147. {
  148. unsigned char addr[1];
  149. struct i2c_msg msgs[2] = {
  150. { client->addr, 0, 1, addr },
  151. { client->addr, 0, 0, mem->data }
  152. };
  153. if (mem->loc < 8)
  154. return -EINVAL;
  155. addr[0] = mem->loc;
  156. msgs[1].len = mem->nr;
  157. return i2c_transfer(client->adapter, msgs, 2) == 2 ? 0 : -EIO;
  158. }
  159. static int
  160. pcf8583_command(struct i2c_client *client, unsigned int cmd, void *arg)
  161. {
  162. switch (cmd) {
  163. case RTC_GETDATETIME:
  164. return pcf8583_get_datetime(client, arg);
  165. case RTC_SETTIME:
  166. return pcf8583_set_datetime(client, arg, 0);
  167. case RTC_SETDATETIME:
  168. return pcf8583_set_datetime(client, arg, 1);
  169. case RTC_GETCTRL:
  170. return pcf8583_get_ctrl(client, arg);
  171. case RTC_SETCTRL:
  172. return pcf8583_set_ctrl(client, arg);
  173. case MEM_READ:
  174. return pcf8583_read_mem(client, arg);
  175. case MEM_WRITE:
  176. return pcf8583_write_mem(client, arg);
  177. default:
  178. return -EINVAL;
  179. }
  180. }
  181. static struct i2c_driver pcf8583_driver = {
  182. name: "PCF8583",
  183. id: I2C_DRIVERID_PCF8583,
  184. flags: I2C_DF_NOTIFY,
  185. attach_adapter: pcf8583_probe,
  186. detach_client: pcf8583_detach,
  187. command: pcf8583_command
  188. };
  189. static __init int pcf8583_init(void)
  190. {
  191. return i2c_add_driver(&pcf8583_driver);
  192. }
  193. __initcall(pcf8583_init);