pcf8583.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

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. return 0;
  65. }
  66. static int
  67. pcf8583_get_datetime(struct i2c_client *client, struct rtc_tm *dt)
  68. {
  69. unsigned char buf[8], addr[1] = { 1 };
  70. struct i2c_msg msgs[2] = {
  71. { client->addr, 0,        1, addr },
  72. { client->addr, I2C_M_RD, 6, buf  }
  73. };
  74. int ret = -EIO;
  75. memset(buf, 0, sizeof(buf));
  76. ret = i2c_transfer(client->adapter, msgs, 2);
  77. if (ret == 2) {
  78. dt->year_off = buf[4] >> 6;
  79. dt->wday     = buf[5] >> 5;
  80. buf[4] &= 0x3f;
  81. buf[5] &= 0x1f;
  82. dt->cs       = BCD_TO_BIN(buf[0]);
  83. dt->secs     = BCD_TO_BIN(buf[1]);
  84. dt->mins     = BCD_TO_BIN(buf[2]);
  85. dt->hours    = BCD_TO_BIN(buf[3]);
  86. dt->mday     = BCD_TO_BIN(buf[4]);
  87. dt->mon      = BCD_TO_BIN(buf[5]);
  88. ret = 0;
  89. }
  90. return ret;
  91. }
  92. static int
  93. pcf8583_set_datetime(struct i2c_client *client, struct rtc_tm *dt, int datetoo)
  94. {
  95. unsigned char buf[8];
  96. int ret, len = 6;
  97. buf[0] = 0;
  98. buf[1] = DAT(client) | 0x80;
  99. buf[2] = BIN_TO_BCD(dt->cs);
  100. buf[3] = BIN_TO_BCD(dt->secs);
  101. buf[4] = BIN_TO_BCD(dt->mins);
  102. buf[5] = BIN_TO_BCD(dt->hours);
  103. if (datetoo) {
  104. len = 8;
  105. buf[6] = BIN_TO_BCD(dt->mday) | (dt->year_off << 6);
  106. buf[7] = BIN_TO_BCD(dt->mon)  | (dt->wday << 5);
  107. }
  108. ret = i2c_master_send(client, (char *)buf, len);
  109. if (ret == len)
  110. ret = 0;
  111. buf[1] = DAT(client);
  112. i2c_master_send(client, (char *)buf, 2);
  113. return ret;
  114. }
  115. static int
  116. pcf8583_get_ctrl(struct i2c_client *client, unsigned char *ctrl)
  117. {
  118. *ctrl = DAT(client);
  119. return 0;
  120. }
  121. static int
  122. pcf8583_set_ctrl(struct i2c_client *client, unsigned char *ctrl)
  123. {
  124. unsigned char buf[2];
  125. buf[0] = 0;
  126. buf[1] = *ctrl;
  127. DAT(client) = *ctrl;
  128. return i2c_master_send(client, (char *)buf, 2);
  129. }
  130. static int
  131. pcf8583_read_mem(struct i2c_client *client, struct mem *mem)
  132. {
  133. unsigned char addr[1];
  134. struct i2c_msg msgs[2] = {
  135. { client->addr, 0,        1, addr },
  136. { client->addr, I2C_M_RD, 0, mem->data }
  137. };
  138. if (mem->loc < 8)
  139. return -EINVAL;
  140. addr[0] = mem->loc;
  141. msgs[1].len = mem->nr;
  142. return i2c_transfer(client->adapter, msgs, 2) == 2 ? 0 : -EIO;
  143. }
  144. static int
  145. pcf8583_write_mem(struct i2c_client *client, struct mem *mem)
  146. {
  147. unsigned char addr[1];
  148. struct i2c_msg msgs[2] = {
  149. { client->addr, 0, 1, addr },
  150. { client->addr, 0, 0, mem->data }
  151. };
  152. if (mem->loc < 8)
  153. return -EINVAL;
  154. addr[0] = mem->loc;
  155. msgs[1].len = mem->nr;
  156. return i2c_transfer(client->adapter, msgs, 2) == 2 ? 0 : -EIO;
  157. }
  158. static int
  159. pcf8583_command(struct i2c_client *client, unsigned int cmd, void *arg)
  160. {
  161. switch (cmd) {
  162. case RTC_GETDATETIME:
  163. return pcf8583_get_datetime(client, arg);
  164. case RTC_SETTIME:
  165. return pcf8583_set_datetime(client, arg, 0);
  166. case RTC_SETDATETIME:
  167. return pcf8583_set_datetime(client, arg, 1);
  168. case RTC_GETCTRL:
  169. return pcf8583_get_ctrl(client, arg);
  170. case RTC_SETCTRL:
  171. return pcf8583_set_ctrl(client, arg);
  172. case MEM_READ:
  173. return pcf8583_read_mem(client, arg);
  174. case MEM_WRITE:
  175. return pcf8583_write_mem(client, arg);
  176. default:
  177. return -EINVAL;
  178. }
  179. }
  180. static struct i2c_driver pcf8583_driver = {
  181. name: "PCF8583",
  182. id: I2C_DRIVERID_PCF8583,
  183. flags: I2C_DF_NOTIFY,
  184. attach_adapter: pcf8583_probe,
  185. detach_client: pcf8583_detach,
  186. command: pcf8583_command
  187. };
  188. static __init int pcf8583_init(void)
  189. {
  190. return i2c_add_driver(&pcf8583_driver);
  191. }
  192. __initcall(pcf8583_init);