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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.     bttv-if.c  --  interfaces to other kernel modules
  3. all the i2c code is here
  4. also the gpio interface exported by bttv (used by lirc)
  5.     bttv - Bt848 frame grabber driver
  6.     Copyright (C) 1996,97,98 Ralph  Metzler (rjkm@thp.uni-koeln.de)
  7.                            & Marcus Metzler (mocm@thp.uni-koeln.de)
  8.     (c) 1999,2000 Gerd Knorr <kraxel@goldbach.in-berlin.de>
  9.     This program is free software; you can redistribute it and/or modify
  10.     it under the terms of the GNU General Public License as published by
  11.     the Free Software Foundation; either version 2 of the License, or
  12.     (at your option) any later version.
  13.     This program is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.     GNU General Public License for more details.
  17.     You should have received a copy of the GNU General Public License
  18.     along with this program; if not, write to the Free Software
  19.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.     
  21. */
  22. #define __NO_VERSION__ 1
  23. #include <linux/version.h>
  24. #include <linux/module.h>
  25. #include <linux/init.h>
  26. #include <asm/io.h>
  27. #include "bttvp.h"
  28. #include "tuner.h"
  29. static struct i2c_algo_bit_data bttv_i2c_algo_template;
  30. static struct i2c_adapter bttv_i2c_adap_template;
  31. static struct i2c_client bttv_i2c_client_template;
  32. EXPORT_SYMBOL(bttv_get_cardinfo);
  33. EXPORT_SYMBOL(bttv_get_pcidev);
  34. EXPORT_SYMBOL(bttv_get_id);
  35. EXPORT_SYMBOL(bttv_gpio_enable);
  36. EXPORT_SYMBOL(bttv_read_gpio);
  37. EXPORT_SYMBOL(bttv_write_gpio);
  38. EXPORT_SYMBOL(bttv_get_gpio_queue);
  39. EXPORT_SYMBOL(bttv_i2c_call);
  40. /* ----------------------------------------------------------------------- */
  41. /* Exported functions - for other modules which want to access the         */
  42. /*                      gpio ports (IR for example)                        */
  43. /*                      see bttv.h for comments                            */
  44. int bttv_get_cardinfo(unsigned int card, int *type, int *cardid)
  45. {
  46. if (card >= bttv_num) {
  47. return -1;
  48. }
  49. *type   = bttvs[card].type;
  50. *cardid = bttvs[card].cardid;
  51. return 0;
  52. }
  53. struct pci_dev* bttv_get_pcidev(unsigned int card)
  54. {
  55. if (card >= bttv_num)
  56. return NULL;
  57. return bttvs[card].dev;
  58. }
  59. int bttv_get_id(unsigned int card)
  60. {
  61. printk("bttv_get_id is obsolete, use bttv_get_cardinfo insteadn");
  62. if (card >= bttv_num) {
  63. return -1;
  64. }
  65. return bttvs[card].type;
  66. }
  67. int bttv_gpio_enable(unsigned int card, unsigned long mask, unsigned long data)
  68. {
  69. struct bttv *btv;
  70. if (card >= bttv_num) {
  71. return -EINVAL;
  72. }
  73. btv = &bttvs[card];
  74. btaor(data, ~mask, BT848_GPIO_OUT_EN);
  75. if (bttv_gpio)
  76. bttv_gpio_tracking(btv,"extern enable");
  77. return 0;
  78. }
  79. int bttv_read_gpio(unsigned int card, unsigned long *data)
  80. {
  81. struct bttv *btv;
  82. if (card >= bttv_num) {
  83. return -EINVAL;
  84. }
  85. btv = &bttvs[card];
  86. if(btv->shutdown) {
  87. return -ENODEV;
  88. }
  89. /* prior setting BT848_GPIO_REG_INP is (probably) not needed 
  90.    because we set direct input on init */
  91. *data = btread(BT848_GPIO_DATA);
  92. return 0;
  93. }
  94. int bttv_write_gpio(unsigned int card, unsigned long mask, unsigned long data)
  95. {
  96. struct bttv *btv;
  97. if (card >= bttv_num) {
  98. return -EINVAL;
  99. }
  100. btv = &bttvs[card];
  101. /* prior setting BT848_GPIO_REG_INP is (probably) not needed 
  102.    because direct input is set on init */
  103. btaor(data & mask, ~mask, BT848_GPIO_DATA);
  104. if (bttv_gpio)
  105. bttv_gpio_tracking(btv,"extern write");
  106. return 0;
  107. }
  108. wait_queue_head_t* bttv_get_gpio_queue(unsigned int card)
  109. {
  110. struct bttv *btv;
  111. if (card >= bttv_num) {
  112. return NULL;
  113. }
  114. btv = &bttvs[card];
  115. if (bttvs[card].shutdown) {
  116. return NULL;
  117. }
  118. return &btv->gpioq;
  119. }
  120. /* ----------------------------------------------------------------------- */
  121. /* I2C functions                                                           */
  122. void bttv_bit_setscl(void *data, int state)
  123. {
  124. struct bttv *btv = (struct bttv*)data;
  125. if (state)
  126. btv->i2c_state |= 0x02;
  127. else
  128. btv->i2c_state &= ~0x02;
  129. btwrite(btv->i2c_state, BT848_I2C);
  130. btread(BT848_I2C);
  131. }
  132. void bttv_bit_setsda(void *data, int state)
  133. {
  134. struct bttv *btv = (struct bttv*)data;
  135. if (state)
  136. btv->i2c_state |= 0x01;
  137. else
  138. btv->i2c_state &= ~0x01;
  139. btwrite(btv->i2c_state, BT848_I2C);
  140. btread(BT848_I2C);
  141. }
  142. static int bttv_bit_getscl(void *data)
  143. {
  144. struct bttv *btv = (struct bttv*)data;
  145. int state;
  146. state = btread(BT848_I2C) & 0x02 ? 1 : 0;
  147. return state;
  148. }
  149. static int bttv_bit_getsda(void *data)
  150. {
  151. struct bttv *btv = (struct bttv*)data;
  152. int state;
  153. state = btread(BT848_I2C) & 0x01;
  154. return state;
  155. }
  156. static void bttv_inc_use(struct i2c_adapter *adap)
  157. {
  158. MOD_INC_USE_COUNT;
  159. }
  160. static void bttv_dec_use(struct i2c_adapter *adap)
  161. {
  162. MOD_DEC_USE_COUNT;
  163. }
  164. static int attach_inform(struct i2c_client *client)
  165. {
  166.         struct bttv *btv = (struct bttv*)client->adapter->data;
  167. int i;
  168. for (i = 0; i < I2C_CLIENTS_MAX; i++) {
  169. if (btv->i2c_clients[i] == NULL) {
  170. btv->i2c_clients[i] = client;
  171. break;
  172. }
  173. }
  174. if (btv->tuner_type != -1)
  175. bttv_call_i2c_clients(btv,TUNER_SET_TYPE,&btv->tuner_type);
  176.         if (bttv_verbose)
  177. printk("bttv%d: i2c attach [client=%s,%s]n",btv->nr,
  178.        client->name, (i < I2C_CLIENTS_MAX) ?  "ok" : "failed");
  179.         return 0;
  180. }
  181. static int detach_inform(struct i2c_client *client)
  182. {
  183.         struct bttv *btv = (struct bttv*)client->adapter->data;
  184. int i;
  185. for (i = 0; i < I2C_CLIENTS_MAX; i++) {
  186. if (btv->i2c_clients[i] == client) {
  187. btv->i2c_clients[i] = NULL;
  188. break;
  189. }
  190. }
  191.         if (bttv_verbose)
  192. printk("bttv%d: i2c detach [client=%s,%s]n",btv->nr,
  193.        client->name, (i < I2C_CLIENTS_MAX) ?  "ok" : "failed");
  194.         return 0;
  195. }
  196. void bttv_call_i2c_clients(struct bttv *btv, unsigned int cmd, void *arg)
  197. {
  198. int i;
  199. for (i = 0; i < I2C_CLIENTS_MAX; i++) {
  200. if (NULL == btv->i2c_clients[i])
  201. continue;
  202. if (NULL == btv->i2c_clients[i]->driver->command)
  203. continue;
  204. btv->i2c_clients[i]->driver->command(
  205. btv->i2c_clients[i],cmd,arg);
  206. }
  207. }
  208. void bttv_i2c_call(unsigned int card, unsigned int cmd, void *arg)
  209. {
  210. if (card >= bttv_num)
  211. return;
  212. bttv_call_i2c_clients(&bttvs[card], cmd, arg);
  213. }
  214. static struct i2c_algo_bit_data bttv_i2c_algo_template = {
  215. setsda:  bttv_bit_setsda,
  216. setscl:  bttv_bit_setscl,
  217. getsda:  bttv_bit_getsda,
  218. getscl:  bttv_bit_getscl,
  219. udelay:  16,
  220. mdelay:  10,
  221. timeout: 200,
  222. };
  223. static struct i2c_adapter bttv_i2c_adap_template = {
  224. name:              "bt848",
  225. id:                I2C_HW_B_BT848,
  226. inc_use:           bttv_inc_use,
  227. dec_use:           bttv_dec_use,
  228. client_register:   attach_inform,
  229. client_unregister: detach_inform,
  230. };
  231. static struct i2c_client bttv_i2c_client_template = {
  232.         name: "bttv internal use only",
  233.         id:   -1,
  234. };
  235. /* read I2C */
  236. int bttv_I2CRead(struct bttv *btv, unsigned char addr, char *probe_for) 
  237. {
  238.         unsigned char buffer = 0;
  239. if (0 != btv->i2c_rc)
  240. return -1;
  241. if (bttv_verbose && NULL != probe_for)
  242. printk(KERN_INFO "bttv%d: i2c: checking for %s @ 0x%02x... ",
  243.        btv->nr,probe_for,addr);
  244.         btv->i2c_client.addr = addr >> 1;
  245.         if (1 != i2c_master_recv(&btv->i2c_client, &buffer, 1)) {
  246. if (NULL != probe_for) {
  247. if (bttv_verbose)
  248. printk("not foundn");
  249. } else
  250. printk(KERN_WARNING "bttv%d: i2c read 0x%x: errorn",
  251.        btv->nr,addr);
  252.                 return -1;
  253. }
  254. if (bttv_verbose && NULL != probe_for)
  255. printk("foundn");
  256.         return buffer;
  257. }
  258. /* write I2C */
  259. int bttv_I2CWrite(struct bttv *btv, unsigned char addr, unsigned char b1,
  260.                     unsigned char b2, int both)
  261. {
  262.         unsigned char buffer[2];
  263.         int bytes = both ? 2 : 1;
  264. if (0 != btv->i2c_rc)
  265. return -1;
  266.         btv->i2c_client.addr = addr >> 1;
  267.         buffer[0] = b1;
  268.         buffer[1] = b2;
  269.         if (bytes != i2c_master_send(&btv->i2c_client, buffer, bytes))
  270. return -1;
  271.         return 0;
  272. }
  273. /* read EEPROM content */
  274. void __devinit bttv_readee(struct bttv *btv, unsigned char *eedata, int addr)
  275. {
  276. int i;
  277.         
  278. if (bttv_I2CWrite(btv, addr, 0, -1, 0)<0) {
  279. printk(KERN_WARNING "bttv: readee errorn");
  280. return;
  281. }
  282. btv->i2c_client.addr = addr >> 1;
  283. for (i=0; i<256; i+=16) {
  284. if (16 != i2c_master_recv(&btv->i2c_client,eedata+i,16)) {
  285. printk(KERN_WARNING "bttv: readee errorn");
  286. break;
  287. }
  288. }
  289. }
  290. /* init + register i2c algo-bit adapter */
  291. int __devinit init_bttv_i2c(struct bttv *btv)
  292. {
  293. memcpy(&btv->i2c_adap, &bttv_i2c_adap_template,
  294.        sizeof(struct i2c_adapter));
  295. memcpy(&btv->i2c_algo, &bttv_i2c_algo_template,
  296.        sizeof(struct i2c_algo_bit_data));
  297. memcpy(&btv->i2c_client, &bttv_i2c_client_template,
  298.        sizeof(struct i2c_client));
  299. sprintf(btv->i2c_adap.name+strlen(btv->i2c_adap.name),
  300. " #%d", btv->nr);
  301.         btv->i2c_algo.data = btv;
  302.         btv->i2c_adap.data = btv;
  303.         btv->i2c_adap.algo_data = &btv->i2c_algo;
  304.         btv->i2c_client.adapter = &btv->i2c_adap;
  305. bttv_bit_setscl(btv,1);
  306. bttv_bit_setsda(btv,1);
  307. btv->i2c_rc = i2c_bit_add_bus(&btv->i2c_adap);
  308. return btv->i2c_rc;
  309. }
  310. /*
  311.  * Local variables:
  312.  * c-basic-offset: 8
  313.  * End:
  314.  */