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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/acorn/char/i2c.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.  *  ARM IOC/IOMD i2c driver.
  11.  *
  12.  *  On Acorn machines, the following i2c devices are on the bus:
  13.  * - PCF8583 real time clock & static RAM
  14.  */
  15. #include <linux/init.h>
  16. #include <linux/sched.h>
  17. #include <linux/time.h>
  18. #include <linux/miscdevice.h>
  19. #include <linux/rtc.h>
  20. #include <linux/i2c.h>
  21. #include <linux/i2c-algo-bit.h>
  22. #include <asm/hardware.h>
  23. #include <asm/io.h>
  24. #include <asm/hardware/ioc.h>
  25. #include <asm/system.h>
  26. #include <asm/uaccess.h>
  27. #include "pcf8583.h"
  28. extern int (*set_rtc)(void);
  29. static struct i2c_client *rtc_client;
  30. static const unsigned char days_in_mon[] = 
  31. { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
  32. static unsigned int rtc_epoch = 1900;
  33. #define CMOS_CHECKSUM (63)
  34. #define CMOS_YEAR (64 + 128)
  35. static inline int rtc_command(int cmd, void *data)
  36. {
  37. int ret = -EIO;
  38. if (rtc_client)
  39. ret = rtc_client->driver->command(rtc_client, cmd, data);
  40. return ret;
  41. }
  42. /*
  43.  * Read the current RTC time and date, and update xtime.
  44.  */
  45. static void get_rtc_time(struct rtc_tm *rtctm, unsigned int *year)
  46. {
  47. unsigned char ctrl, yr[2];
  48. struct mem rtcmem = { CMOS_YEAR, sizeof(yr), yr };
  49. /*
  50.  * Ensure that the RTC is running.
  51.  */
  52. rtc_command(RTC_GETCTRL, &ctrl);
  53. if (ctrl & 0xc0) {
  54. unsigned char new_ctrl;
  55. new_ctrl = ctrl & ~0xc0;
  56. printk("RTC: resetting control %02X -> %02Xn",
  57.        ctrl, new_ctrl);
  58. rtc_command(RTC_SETCTRL, &new_ctrl);
  59. }
  60. /*
  61.  * Acorn machines store the year in
  62.  * the static RAM at location 192.
  63.  */
  64. if (rtc_command(MEM_READ, &rtcmem))
  65. return;
  66. if (rtc_command(RTC_GETDATETIME, rtctm))
  67. return;
  68. *year = yr[1] * 100 + yr[0];
  69. }
  70. static int set_rtc_time(struct rtc_tm *rtctm, unsigned int year)
  71. {
  72. unsigned char yr[2], leap, chk;
  73. struct mem cmos_year  = { CMOS_YEAR, sizeof(yr), yr };
  74. struct mem cmos_check = { CMOS_CHECKSUM, 1, &chk };
  75. int ret;
  76. leap = (!(year % 4) && (year % 100)) || !(year % 400);
  77. if (rtctm->mon > 12 || rtctm->mday == 0)
  78. return -EINVAL;
  79. if (rtctm->mday > (days_in_mon[rtctm->mon] + (rtctm->mon == 2 && leap)))
  80. return -EINVAL;
  81. if (rtctm->hours >= 24 || rtctm->mins >= 60 || rtctm->secs >= 60)
  82. return -EINVAL;
  83. ret = rtc_command(RTC_SETDATETIME, rtctm);
  84. if (ret == 0) {
  85. rtc_command(MEM_READ, &cmos_check);
  86. rtc_command(MEM_READ, &cmos_year);
  87. chk -= yr[1] + yr[0];
  88. yr[1] = year / 100;
  89. yr[0] = year % 100;
  90. chk += yr[1] + yr[0];
  91. rtc_command(MEM_WRITE, &cmos_year);
  92. rtc_command(MEM_WRITE, &cmos_check);
  93. }
  94. return ret;
  95. }
  96. /*
  97.  * Set the RTC time only.  Note that
  98.  * we do not touch the date.
  99.  */
  100. static int k_set_rtc_time(void)
  101. {
  102. struct rtc_tm new_rtctm, old_rtctm;
  103. unsigned long nowtime = xtime.tv_sec;
  104. if (rtc_command(RTC_GETDATETIME, &old_rtctm))
  105. return 0;
  106. new_rtctm.cs    = xtime.tv_usec / 10000;
  107. new_rtctm.secs  = nowtime % 60; nowtime /= 60;
  108. new_rtctm.mins  = nowtime % 60; nowtime /= 60;
  109. new_rtctm.hours = nowtime % 24;
  110. /*
  111.  * avoid writing when we're going to change the day
  112.  * of the month.  We will retry in the next minute.
  113.  * This basically means that if the RTC must not drift
  114.  * by more than 1 minute in 11 minutes.
  115.  *
  116.  * [ rtc: 1/1/2000 23:58:00, real 2/1/2000 00:01:00,
  117.  *   rtc gets set to 1/1/2000 00:01:00 ]
  118.  */
  119. if ((old_rtctm.hours == 23 && old_rtctm.mins == 59) ||
  120.     (new_rtctm.hours == 23 && new_rtctm.mins == 59))
  121. return 1;
  122. return rtc_command(RTC_SETTIME, &new_rtctm);
  123. }
  124. static int rtc_ioctl(struct inode *inode, struct file *file,
  125.      unsigned int cmd, unsigned long arg)
  126. {
  127. unsigned int year;
  128. struct rtc_time rtctm;
  129. struct rtc_tm rtc_raw;
  130. switch (cmd) {
  131. case RTC_ALM_READ:
  132. case RTC_ALM_SET:
  133. break;
  134. case RTC_RD_TIME:
  135. get_rtc_time(&rtc_raw, &year);
  136. rtctm.tm_sec  = rtc_raw.secs;
  137. rtctm.tm_min  = rtc_raw.mins;
  138. rtctm.tm_hour = rtc_raw.hours;
  139. rtctm.tm_mday = rtc_raw.mday;
  140. rtctm.tm_mon  = rtc_raw.mon - 1; /* month starts at 0 */
  141. rtctm.tm_year = year - 1900; /* starts at 1900 */
  142. return copy_to_user((void *)arg, &rtctm, sizeof(rtctm))
  143.  ? -EFAULT : 0;
  144. case RTC_SET_TIME:
  145. if (!capable(CAP_SYS_TIME))
  146. return -EACCES;
  147. if (copy_from_user(&rtctm, (void *)arg, sizeof(rtctm)))
  148. return -EFAULT;
  149. rtc_raw.secs     = rtctm.tm_sec;
  150. rtc_raw.mins     = rtctm.tm_min;
  151. rtc_raw.hours    = rtctm.tm_hour;
  152. rtc_raw.mday     = rtctm.tm_mday;
  153. rtc_raw.mon      = rtctm.tm_mon + 1;
  154. rtc_raw.year_off = 2;
  155. year             = rtctm.tm_year + 1900;
  156. return set_rtc_time(&rtc_raw, year);
  157. break;
  158. case RTC_EPOCH_READ:
  159. return put_user(rtc_epoch, (unsigned long *)arg);
  160. }
  161. return -EINVAL;
  162. }
  163. static struct file_operations rtc_fops = {
  164. ioctl: rtc_ioctl,
  165. };
  166. static struct miscdevice rtc_dev = {
  167. minor: RTC_MINOR,
  168. name: "rtc",
  169. fops: &rtc_fops,
  170. };
  171. /* IOC / IOMD i2c driver */
  172. #define FORCE_ONES 0xdc
  173. #define SCL 0x02
  174. #define SDA 0x01
  175. /*
  176.  * We must preserve all non-i2c output bits in IOC_CONTROL.
  177.  * Note also that we need to preserve the value of SCL and
  178.  * SDA outputs as well (which may be different from the
  179.  * values read back from IOC_CONTROL).
  180.  */
  181. static u_int force_ones;
  182. static void ioc_setscl(void *data, int state)
  183. {
  184. u_int ioc_control = ioc_readb(IOC_CONTROL) & ~(SCL | SDA);
  185. u_int ones = force_ones;
  186. if (state)
  187. ones |= SCL;
  188. else
  189. ones &= ~SCL;
  190. force_ones = ones;
  191.   ioc_writeb(ioc_control | ones, IOC_CONTROL);
  192. }
  193. static void ioc_setsda(void *data, int state)
  194. {
  195. u_int ioc_control = ioc_readb(IOC_CONTROL) & ~(SCL | SDA);
  196. u_int ones = force_ones;
  197. if (state)
  198. ones |= SDA;
  199. else
  200. ones &= ~SDA;
  201. force_ones = ones;
  202.   ioc_writeb(ioc_control | ones, IOC_CONTROL);
  203. }
  204. static int ioc_getscl(void *data)
  205. {
  206. return (ioc_readb(IOC_CONTROL) & SCL) != 0;
  207. }
  208. static int ioc_getsda(void *data)
  209. {
  210. return (ioc_readb(IOC_CONTROL) & SDA) != 0;
  211. }
  212. static struct i2c_algo_bit_data ioc_data = {
  213. setsda: ioc_setsda,
  214. setscl: ioc_setscl,
  215. getsda: ioc_getsda,
  216. getscl: ioc_getscl,
  217. udelay:  80,
  218. mdelay:  80,
  219. timeout: 100
  220. };
  221. static int ioc_client_reg(struct i2c_client *client)
  222. {
  223. if (client->id == I2C_DRIVERID_PCF8583 &&
  224.     client->addr == 0x50) {
  225. struct rtc_tm rtctm;
  226. unsigned int year;
  227. rtc_client = client;
  228. get_rtc_time(&rtctm, &year);
  229. xtime.tv_usec = rtctm.cs * 10000;
  230. xtime.tv_sec  = mktime(year, rtctm.mon, rtctm.mday,
  231.        rtctm.hours, rtctm.mins, rtctm.secs);
  232. set_rtc = k_set_rtc_time;
  233. }
  234. return 0;
  235. }
  236. static int ioc_client_unreg(struct i2c_client *client)
  237. {
  238. if (client == rtc_client) {
  239. set_rtc = NULL;
  240. rtc_client = NULL;
  241. }
  242. return 0;
  243. }
  244. static struct i2c_adapter ioc_ops = {
  245. name: "IOC/IOMD",
  246. id: I2C_HW_B_IOC,
  247. algo_data: &ioc_data,
  248. client_register: ioc_client_reg,
  249. client_unregister: ioc_client_unreg
  250. };
  251. static int __init i2c_ioc_init(void)
  252. {
  253. int ret;
  254. force_ones = FORCE_ONES | SCL | SDA;
  255. ret = i2c_bit_add_bus(&ioc_ops);
  256. if (ret >= 0)
  257. misc_register(&rtc_dev);
  258. return ret;
  259. }
  260. __initcall(i2c_ioc_init);