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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.    -------------------------------------------------------------------------
  3.    i2c-adap-ite.c i2c-hw access for the IIC peripheral on the ITE MIPS system
  4.    -------------------------------------------------------------------------
  5.    Hai-Pao Fan, MontaVista Software, Inc.
  6.    hpfan@mvista.com or source@mvista.com
  7.    Copyright 2001 MontaVista Software Inc.
  8.    ----------------------------------------------------------------------------
  9.    This file was highly leveraged from i2c-elektor.c, which was created
  10.    by Simon G. Vogl and Hans Berglund:
  11.  
  12.      Copyright (C) 1995-97 Simon G. Vogl
  13.                    1998-99 Hans Berglund
  14.     This program is free software; you can redistribute it and/or modify
  15.     it under the terms of the GNU General Public License as published by
  16.     the Free Software Foundation; either version 2 of the License, or
  17.     (at your option) any later version.
  18.     This program is distributed in the hope that it will be useful,
  19.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.     GNU General Public License for more details.
  22.     You should have received a copy of the GNU General Public License
  23.     along with this program; if not, write to the Free Software
  24.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.      */
  25. /* ------------------------------------------------------------------------- */
  26. /* With some changes from Ky鰏ti M鋖kki <kmalkki@cc.hut.fi> and even
  27.    Frodo Looijaard <frodol@dds.nl> */
  28. #include <linux/kernel.h>
  29. #include <linux/ioport.h>
  30. #include <linux/module.h>
  31. #include <linux/delay.h>
  32. #include <linux/slab.h>
  33. #include <linux/version.h>
  34. #include <linux/init.h>
  35. #include <asm/irq.h>
  36. #include <asm/io.h>
  37. #include <linux/i2c.h>
  38. #include <linux/i2c-algo-ite.h>
  39. #include <linux/i2c-adap-ite.h>
  40. #include "i2c-ite.h"
  41. #define DEFAULT_BASE  0x14014030
  42. #define ITE_IIC_IO_SIZE 0x40
  43. #define DEFAULT_IRQ   0
  44. #define DEFAULT_CLOCK 0x1b0e /* default 16MHz/(27+14) = 400KHz */
  45. #define DEFAULT_OWN   0x55
  46. static int base  = 0;
  47. static int irq   = 0;
  48. static int clock = 0;
  49. static int own   = 0;
  50. static int i2c_debug=0;
  51. static struct iic_ite gpi;
  52. #if (LINUX_VERSION_CODE < 0x020301)
  53. static struct wait_queue *iic_wait = NULL;
  54. #else
  55. static wait_queue_head_t iic_wait;
  56. #endif
  57. static int iic_pending;
  58. /* ----- global defines ----------------------------------------------- */
  59. #define DEB(x) if (i2c_debug>=1) x
  60. #define DEB2(x) if (i2c_debug>=2) x
  61. #define DEB3(x) if (i2c_debug>=3) x
  62. #define DEBE(x) x /* error messages  */
  63. /* ----- local functions ---------------------------------------------- */
  64. static void iic_ite_setiic(void *data, int ctl, short val)
  65. {
  66.         unsigned long j = jiffies + 10;
  67. DEB3(printk(" Write 0x%02x to 0x%xn",(unsigned short)val, ctl&0xff));
  68. DEB3({while (jiffies < j) schedule();}) 
  69. outw(val,ctl);
  70. }
  71. static short iic_ite_getiic(void *data, int ctl)
  72. {
  73. short val;
  74. val = inw(ctl);
  75. DEB3(printk("Read 0x%02x from 0x%xn",(unsigned short)val, ctl&0xff));  
  76. return (val);
  77. }
  78. /* Return our slave address.  This is the address
  79.  * put on the I2C bus when another master on the bus wants to address us
  80.  * as a slave
  81.  */
  82. static int iic_ite_getown(void *data)
  83. {
  84. return (gpi.iic_own);
  85. }
  86. static int iic_ite_getclock(void *data)
  87. {
  88. return (gpi.iic_clock);
  89. }
  90. #if 0
  91. static void iic_ite_sleep(unsigned long timeout)
  92. {
  93. schedule_timeout( timeout * HZ);
  94. }
  95. #endif
  96. /* Put this process to sleep.  We will wake up when the
  97.  * IIC controller interrupts.
  98.  */
  99. static void iic_ite_waitforpin(void) {
  100.    int timeout = 2;
  101.    /* If interrupts are enabled (which they are), then put the process to
  102.     * sleep.  This process will be awakened by two events -- either the
  103.     * the IIC peripheral interrupts or the timeout expires. 
  104.     * If interrupts are not enabled then delay for a reasonable amount 
  105.     * of time and return.
  106.     */
  107.    if (gpi.iic_irq > 0) {
  108. cli();
  109. if (iic_pending == 0) {
  110. interruptible_sleep_on_timeout(&iic_wait, timeout*HZ );
  111. } else
  112. iic_pending = 0;
  113. sti();
  114.    } else {
  115.       udelay(100);
  116.    }
  117. }
  118. static void iic_ite_handler(int this_irq, void *dev_id, struct pt_regs *regs) 
  119. {
  120.    iic_pending = 1;
  121.    DEB2(printk("iic_ite_handler: in interrupt handlern"));
  122.    wake_up_interruptible(&iic_wait);
  123. }
  124. /* Lock the region of memory where I/O registers exist.  Request our
  125.  * interrupt line and register its associated handler.
  126.  */
  127. static int iic_hw_resrc_init(void)
  128. {
  129.    if (check_region(gpi.iic_base, ITE_IIC_IO_SIZE) < 0 ) {
  130.        return -ENODEV;
  131.    } else {
  132.       request_region(gpi.iic_base, ITE_IIC_IO_SIZE, 
  133. "i2c (i2c bus adapter)");
  134.    }
  135. if (gpi.iic_irq > 0) {
  136.    if (request_irq(gpi.iic_irq, iic_ite_handler, 0, "ITE IIC", 0) < 0) {
  137.       gpi.iic_irq = 0;
  138.    } else
  139.       DEB3(printk("Enabled IIC IRQ %dn", gpi.iic_irq));
  140.       enable_irq(gpi.iic_irq);
  141. }
  142. return 0;
  143. }
  144. static void iic_ite_release(void)
  145. {
  146. if (gpi.iic_irq > 0) {
  147. disable_irq(gpi.iic_irq);
  148. free_irq(gpi.iic_irq, 0);
  149. }
  150. release_region(gpi.iic_base , 2);
  151. }
  152. static int iic_ite_reg(struct i2c_client *client)
  153. {
  154. return 0;
  155. }
  156. static int iic_ite_unreg(struct i2c_client *client)
  157. {
  158. return 0;
  159. }
  160. static void iic_ite_inc_use(struct i2c_adapter *adap)
  161. {
  162. #ifdef MODULE
  163. MOD_INC_USE_COUNT;
  164. #endif
  165. }
  166. static void iic_ite_dec_use(struct i2c_adapter *adap)
  167. {
  168. #ifdef MODULE
  169. MOD_DEC_USE_COUNT;
  170. #endif
  171. }
  172. /* ------------------------------------------------------------------------
  173.  * Encapsulate the above functions in the correct operations structure.
  174.  * This is only done when more than one hardware adapter is supported.
  175.  */
  176. static struct i2c_algo_iic_data iic_ite_data = {
  177. NULL,
  178. iic_ite_setiic,
  179. iic_ite_getiic,
  180. iic_ite_getown,
  181. iic_ite_getclock,
  182. iic_ite_waitforpin,
  183. 80, 80, 100, /* waits, timeout */
  184. };
  185. static struct i2c_adapter iic_ite_ops = {
  186. "ITE IIC adapter",
  187. I2C_HW_I_IIC,
  188. NULL,
  189. &iic_ite_data,
  190. iic_ite_inc_use,
  191. iic_ite_dec_use,
  192. iic_ite_reg,
  193. iic_ite_unreg,
  194. };
  195. /* Called when the module is loaded.  This function starts the
  196.  * cascade of calls up through the heirarchy of i2c modules (i.e. up to the
  197.  *  algorithm layer and into to the core layer)
  198.  */
  199. static int __init iic_ite_init(void) 
  200. {
  201. struct iic_ite *piic = &gpi;
  202. printk(KERN_INFO "Initialize ITE IIC adapter modulen");
  203. if (base == 0)
  204. piic->iic_base = DEFAULT_BASE;
  205. else
  206. piic->iic_base = base;
  207. if (irq == 0)
  208. piic->iic_irq = DEFAULT_IRQ;
  209. else
  210. piic->iic_irq = irq;
  211. if (clock == 0)
  212. piic->iic_clock = DEFAULT_CLOCK;
  213. else
  214. piic->iic_clock = clock;
  215. if (own == 0)
  216. piic->iic_own = DEFAULT_OWN;
  217. else
  218. piic->iic_own = own;
  219. iic_ite_data.data = (void *)piic;
  220. #if (LINUX_VERSION_CODE >= 0x020301)
  221. init_waitqueue_head(&iic_wait);
  222. #endif
  223. if (iic_hw_resrc_init() == 0) {
  224. if (i2c_iic_add_bus(&iic_ite_ops) < 0)
  225. return -ENODEV;
  226. } else {
  227. return -ENODEV;
  228. }
  229. printk(KERN_INFO " found device at %#x irq %d.n", 
  230. piic->iic_base, piic->iic_irq);
  231. return 0;
  232. }
  233. static void iic_ite_exit(void)
  234. {
  235. i2c_iic_del_bus(&iic_ite_ops);
  236.         iic_ite_release();
  237. }
  238. EXPORT_NO_SYMBOLS;
  239. /* If modules is NOT defined when this file is compiled, then the MODULE_*
  240.  * macros will resolve to nothing
  241.  */
  242. MODULE_AUTHOR("MontaVista Software <www.mvista.com>");
  243. MODULE_DESCRIPTION("I2C-Bus adapter routines for ITE IIC bus adapter");
  244. MODULE_LICENSE("GPL");
  245. MODULE_PARM(base, "i");
  246. MODULE_PARM(irq, "i");
  247. MODULE_PARM(clock, "i");
  248. MODULE_PARM(own, "i");
  249. MODULE_PARM(i2c_debug,"i");
  250. /* Called when module is loaded or when kernel is intialized.
  251.  * If MODULES is defined when this file is compiled, then this function will
  252.  * resolve to init_module (the function called when insmod is invoked for a
  253.  * module).  Otherwise, this function is called early in the boot, when the
  254.  * kernel is intialized.  Check out /include/init.h to see how this works.
  255.  */
  256. module_init(iic_ite_init);
  257. /* Resolves to module_cleanup when MODULES is defined. */
  258. module_exit(iic_ite_exit);