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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* ------------------------------------------------------------------------- */
  2. /* i2c-elv.c i2c-hw access for philips style parallel port adapters      */
  3. /* ------------------------------------------------------------------------- */
  4. /*   Copyright (C) 1995-2000 Simon G. Vogl
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.     You should have received a copy of the GNU General Public License
  14.     along with this program; if not, write to the Free Software
  15.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.      */
  16. /* ------------------------------------------------------------------------- */
  17. /* With some changes from Ky鰏ti M鋖kki <kmalkki@cc.hut.fi> and even
  18.    Frodo Looijaard <frodol@dds.nl> */
  19. /* $Id: i2c-elv.c,v 1.17 2001/07/29 02:44:25 mds Exp $ */
  20. #include <linux/kernel.h>
  21. #include <linux/module.h>
  22. #include <linux/delay.h>
  23. #include <linux/slab.h>
  24. #include <linux/version.h>
  25. #include <linux/init.h>
  26. #include <asm/uaccess.h>
  27. #include <linux/ioport.h>
  28. #include <asm/io.h>
  29. #include <linux/errno.h>
  30. #include <linux/i2c.h>
  31. #include <linux/i2c-algo-bit.h>
  32. #define DEFAULT_BASE 0x378
  33. static int base=0;
  34. static unsigned char PortData = 0;
  35. /* ----- global defines ----------------------------------------------- */
  36. #define DEB(x) /* should be reasonable open, close &c.  */
  37. #define DEB2(x)  /* low level debugging - very slow  */
  38. #define DEBE(x) x /* error messages  */
  39. #define DEBINIT(x) x /* detection status messages */
  40. /* --- Convenience defines for the parallel port: */
  41. #define BASE (unsigned int)(data)
  42. #define DATA BASE /* Centronics data port */
  43. #define STAT (BASE+1) /* Centronics status port */
  44. #define CTRL (BASE+2) /* Centronics control port */
  45. /* ----- local functions ---------------------------------------------- */
  46. static void bit_elv_setscl(void *data, int state)
  47. {
  48. if (state) {
  49. PortData &= 0xfe;
  50. } else {
  51. PortData |=1;
  52. }
  53. outb(PortData, DATA);
  54. }
  55. static void bit_elv_setsda(void *data, int state)
  56. {
  57. if (state) {
  58. PortData &=0xfd;
  59. } else {
  60. PortData |=2;
  61. }
  62. outb(PortData, DATA);
  63. static int bit_elv_getscl(void *data)
  64. {
  65. return ( 0 == ( (inb_p(STAT)) & 0x08 ) );
  66. }
  67. static int bit_elv_getsda(void *data)
  68. {
  69. return ( 0 == ( (inb_p(STAT)) & 0x40 ) );
  70. }
  71. static int bit_elv_init(void)
  72. {
  73. if (check_region(base,(base == 0x3bc)? 3 : 8) < 0 ) {
  74. return -ENODEV;
  75. } else {
  76. /* test for ELV adap.  */
  77. if (inb(base+1) & 0x80) { /* BUSY should be high */
  78. DEBINIT(printk("i2c-elv.o: Busy was low.n"));
  79. return -ENODEV;
  80. } else {
  81. outb(0x0c,base+2); /* SLCT auf low */
  82. udelay(400);
  83. if ( !(inb(base+1) && 0x10) ) {
  84. outb(0x04,base+2);
  85. DEBINIT(printk("i2c-elv.o: Select was high.n"));
  86. return -ENODEV;
  87. }
  88. }
  89. request_region(base,(base == 0x3bc)? 3 : 8,
  90. "i2c (ELV adapter)");
  91. PortData = 0;
  92. bit_elv_setsda((void*)base,1);
  93. bit_elv_setscl((void*)base,1);
  94. }
  95. return 0;
  96. }
  97. static void __exit bit_elv_exit(void)
  98. {
  99. release_region( base , (base == 0x3bc)? 3 : 8 );
  100. }
  101. static int bit_elv_reg(struct i2c_client *client)
  102. {
  103. return 0;
  104. }
  105. static int bit_elv_unreg(struct i2c_client *client)
  106. {
  107. return 0;
  108. }
  109. static void bit_elv_inc_use(struct i2c_adapter *adap)
  110. {
  111. #ifdef MODULE
  112. MOD_INC_USE_COUNT;
  113. #endif
  114. }
  115. static void bit_elv_dec_use(struct i2c_adapter *adap)
  116. {
  117. #ifdef MODULE
  118. MOD_DEC_USE_COUNT;
  119. #endif
  120. }
  121. /* ------------------------------------------------------------------------
  122.  * Encapsulate the above functions in the correct operations structure.
  123.  * This is only done when more than one hardware adapter is supported.
  124.  */
  125. static struct i2c_algo_bit_data bit_elv_data = {
  126. NULL,
  127. bit_elv_setsda,
  128. bit_elv_setscl,
  129. bit_elv_getsda,
  130. bit_elv_getscl,
  131. 80, 80, 100, /* waits, timeout */
  132. };
  133. static struct i2c_adapter bit_elv_ops = {
  134. "ELV Parallel port adaptor",
  135. I2C_HW_B_ELV,
  136. NULL,
  137. &bit_elv_data,
  138. bit_elv_inc_use,
  139. bit_elv_dec_use,
  140. bit_elv_reg,
  141. bit_elv_unreg,
  142. };
  143. int __init i2c_bitelv_init(void)
  144. {
  145. printk("i2c-elv.o: i2c ELV parallel port adapter modulen");
  146. if (base==0) {
  147. /* probe some values */
  148. base=DEFAULT_BASE;
  149. bit_elv_data.data=(void*)DEFAULT_BASE;
  150. if (bit_elv_init()==0) {
  151. if(i2c_bit_add_bus(&bit_elv_ops) < 0)
  152. return -ENODEV;
  153. } else {
  154. return -ENODEV;
  155. }
  156. } else {
  157. bit_elv_ops.data=(void*)base;
  158. if (bit_elv_init()==0) {
  159. if(i2c_bit_add_bus(&bit_elv_ops) < 0)
  160. return -ENODEV;
  161. } else {
  162. return -ENODEV;
  163. }
  164. }
  165. printk("i2c-elv.o: found device at %#x.n",base);
  166. return 0;
  167. }
  168. EXPORT_NO_SYMBOLS;
  169. #ifdef MODULE
  170. MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>");
  171. MODULE_DESCRIPTION("I2C-Bus adapter routines for ELV parallel port adapter");
  172. MODULE_LICENSE("GPL");
  173. MODULE_PARM(base, "i");
  174. int init_module(void)
  175. {
  176. return i2c_bitelv_init();
  177. }
  178. void cleanup_module(void)
  179. {
  180. i2c_bit_del_bus(&bit_elv_ops);
  181. bit_elv_exit();
  182. }
  183. #endif