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

Linux/Unix编程

开发平台:

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/i2c.h>
  18. #include <linux/i2c-algo-bit.h>
  19. #include <asm/hardware.h>
  20. #include <asm/io.h>
  21. #include <asm/hardware/ioc.h>
  22. #include <asm/system.h>
  23. #include "pcf8583.h"
  24. extern unsigned long
  25. mktime(unsigned int year, unsigned int mon, unsigned int day,
  26.        unsigned int hour, unsigned int min, unsigned int sec);
  27. extern int (*set_rtc)(void);
  28. static struct i2c_client *rtc_client;
  29. static inline int rtc_command(int cmd, void *data)
  30. {
  31. int ret = -EIO;
  32. if (rtc_client)
  33. ret = rtc_client->driver->command(rtc_client, cmd, data);
  34. return ret;
  35. }
  36. /*
  37.  * Read the current RTC time and date, and update xtime.
  38.  */
  39. static void get_rtc_time(void)
  40. {
  41. unsigned char ctrl;
  42. unsigned char year;
  43. struct rtc_tm rtctm;
  44. struct mem rtcmem = { 0xc0, 1, &year };
  45. /*
  46.  * Ensure that the RTC is running.
  47.  */
  48. rtc_command(RTC_GETCTRL, &ctrl);
  49. if (ctrl & 0xc0) {
  50. unsigned char new_ctrl;
  51. new_ctrl = ctrl & ~0xc0;
  52. printk("RTC: resetting control %02X -> %02Xn",
  53.        ctrl, new_ctrl);
  54. rtc_command(RTC_SETCTRL, &new_ctrl);
  55. }
  56. /*
  57.  * Acorn machines store the year in
  58.  * the static RAM at location 192.
  59.  */
  60. if (rtc_command(MEM_READ, &rtcmem))
  61. return;
  62. if (rtc_command(RTC_GETDATETIME, &rtctm))
  63. return;
  64. if (year < 70)
  65. year += 100;
  66. xtime.tv_usec = rtctm.cs * 10000;
  67. xtime.tv_sec  = mktime(1900 + year, rtctm.mon, rtctm.mday,
  68.        rtctm.hours, rtctm.mins, rtctm.secs);
  69. }
  70. /*
  71.  * Set the RTC time only.  Note that
  72.  * we do not touch the date.
  73.  */
  74. static int set_rtc_time(void)
  75. {
  76. struct rtc_tm new_rtctm, old_rtctm;
  77. unsigned long nowtime = xtime.tv_sec;
  78. if (rtc_command(RTC_GETDATETIME, &old_rtctm))
  79. return 0;
  80. new_rtctm.cs    = xtime.tv_usec / 10000;
  81. new_rtctm.secs  = nowtime % 60; nowtime /= 60;
  82. new_rtctm.mins  = nowtime % 60; nowtime /= 60;
  83. new_rtctm.hours = nowtime % 24;
  84. /*
  85.  * avoid writing when we're going to change the day
  86.  * of the month.  We will retry in the next minute.
  87.  * This basically means that if the RTC must not drift
  88.  * by more than 1 minute in 11 minutes.
  89.  *
  90.  * [ rtc: 1/1/2000 23:58:00, real 2/1/2000 00:01:00,
  91.  *   rtc gets set to 1/1/2000 00:01:00 ]
  92.  */
  93. if ((old_rtctm.hours == 23 && old_rtctm.mins  == 59) ||
  94.     (new_rtctm.hours == 23 && new_rtctm.mins  == 59))
  95. return 1;
  96. return rtc_command(RTC_SETTIME, &new_rtctm);
  97. }
  98. #define FORCE_ONES 0xdc
  99. #define SCL 0x02
  100. #define SDA 0x01
  101. /*
  102.  * We must preserve all non-i2c output bits in IOC_CONTROL.
  103.  * Note also that we need to preserve the value of SCL and
  104.  * SDA outputs as well (which may be different from the
  105.  * values read back from IOC_CONTROL).
  106.  */
  107. static u_int force_ones;
  108. static void ioc_setscl(void *data, int state)
  109. {
  110. u_int ioc_control = ioc_readb(IOC_CONTROL) & ~(SCL | SDA);
  111. u_int ones = force_ones;
  112. if (state)
  113. ones |= SCL;
  114. else
  115. ones &= ~SCL;
  116. force_ones = ones;
  117.   ioc_writeb(ioc_control | ones, IOC_CONTROL);
  118. }
  119. static void ioc_setsda(void *data, int state)
  120. {
  121. u_int ioc_control = ioc_readb(IOC_CONTROL) & ~(SCL | SDA);
  122. u_int ones = force_ones;
  123. if (state)
  124. ones |= SDA;
  125. else
  126. ones &= ~SDA;
  127. force_ones = ones;
  128.   ioc_writeb(ioc_control | ones, IOC_CONTROL);
  129. }
  130. static int ioc_getscl(void *data)
  131. {
  132. return (ioc_readb(IOC_CONTROL) & SCL) != 0;
  133. }
  134. static int ioc_getsda(void *data)
  135. {
  136. return (ioc_readb(IOC_CONTROL) & SDA) != 0;
  137. }
  138. static struct i2c_algo_bit_data ioc_data = {
  139. setsda: ioc_setsda,
  140. setscl: ioc_setscl,
  141. getsda: ioc_getsda,
  142. getscl: ioc_getscl,
  143. udelay:  80,
  144. mdelay:  80,
  145. timeout: 100
  146. };
  147. static int ioc_client_reg(struct i2c_client *client)
  148. {
  149. if (client->id == I2C_DRIVERID_PCF8583 &&
  150.     client->addr == 0x50) {
  151. rtc_client = client;
  152. get_rtc_time();
  153. set_rtc = set_rtc_time;
  154. }
  155. return 0;
  156. }
  157. static int ioc_client_unreg(struct i2c_client *client)
  158. {
  159. if (client == rtc_client) {
  160. set_rtc = NULL;
  161. rtc_client = NULL;
  162. }
  163. return 0;
  164. }
  165. static struct i2c_adapter ioc_ops = {
  166. name: "IOC/IOMD",
  167. id: I2C_HW_B_IOC,
  168. algo_data: &ioc_data,
  169. client_register: ioc_client_reg,
  170. client_unregister: ioc_client_unreg
  171. };
  172. static int __init i2c_ioc_init(void)
  173. {
  174. force_ones = FORCE_ONES | SCL | SDA;
  175. return i2c_bit_add_bus(&ioc_ops);
  176. }
  177. __initcall(i2c_ioc_init);