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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Driver for Philips SAB3036 "CITAC" tuner control chip.
  3.  *
  4.  * Author: Phil Blundell <philb@gnu.org>
  5.  *
  6.  * The SAB3036 is just about different enough from the chips that
  7.  * tuner.c copes with to make it not worth the effort to crowbar
  8.  * the support into that file.  So instead we have a separate driver. 
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  */
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/sched.h>
  18. #include <linux/string.h>
  19. #include <linux/timer.h>
  20. #include <linux/delay.h>
  21. #include <linux/errno.h>
  22. #include <linux/slab.h>
  23. #include <linux/version.h>
  24. #include <linux/init.h>
  25. #include <linux/i2c.h>
  26. #include <linux/videodev.h>
  27. #include "tuner.h"
  28. static int debug; /* insmod parameter */
  29. static int this_adap;
  30. static struct i2c_client client_template;
  31. /* Addresses to scan */
  32. static unsigned short normal_i2c[] = {I2C_CLIENT_END};
  33. static unsigned short normal_i2c_range[] = {0x60, 0x61, I2C_CLIENT_END};
  34. static unsigned short probe[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  35. static unsigned short probe_range[2]  = { I2C_CLIENT_END, I2C_CLIENT_END };
  36. static unsigned short ignore[2]       = { I2C_CLIENT_END, I2C_CLIENT_END };
  37. static unsigned short ignore_range[2] = { I2C_CLIENT_END, I2C_CLIENT_END };
  38. static unsigned short force[2]        = { I2C_CLIENT_END, I2C_CLIENT_END };
  39. static struct i2c_client_address_data addr_data = {
  40. normal_i2c, normal_i2c_range, 
  41. probe, probe_range, 
  42. ignore, ignore_range, 
  43. force
  44. };
  45. /* ---------------------------------------------------------------------- */
  46. static unsigned char
  47. tuner_getstatus (struct i2c_client *c)
  48. {
  49. unsigned char byte;
  50. if (i2c_master_recv(c, &byte, 1) != 1)
  51. printk(KERN_ERR "tuner-3036: I/O error.n");
  52. return byte;
  53. }
  54. #define TUNER_FL        0x80
  55. static int 
  56. tuner_islocked (struct i2c_client *c)
  57. {
  58.         return (tuner_getstatus(c) & TUNER_FL);
  59. }
  60. /* ---------------------------------------------------------------------- */
  61. static void 
  62. set_tv_freq(struct i2c_client *c, int freq)
  63. {
  64. u16 div = ((freq * 20) / 16);
  65. unsigned long give_up = jiffies + HZ;
  66. unsigned char buffer[2];
  67. if (debug)
  68. printk(KERN_DEBUG "tuner: setting frequency %dMHz, divisor %xn", freq / 16, div);
  69. /* Select high tuning current */
  70. buffer[0] = 0x29;
  71. buffer[1] = 0x3e;
  72. if (i2c_master_send(c, buffer, 2) != 2)
  73. printk("tuner: i2c i/o error 1n");
  74. buffer[0] = 0x80 | ((div>>8) & 0x7f);
  75. buffer[1] = div & 0xff;
  76. if (i2c_master_send(c, buffer, 2) != 2)
  77. printk("tuner: i2c i/o error 2n");
  78. while (!tuner_islocked(c) && time_before(jiffies, give_up))
  79. schedule();
  80.        
  81. if (!tuner_islocked(c))
  82. printk(KERN_WARNING "tuner: failed to achieve PLL lockn");
  83. /* Select low tuning current and engage AFC */
  84. buffer[0] = 0x29;
  85. buffer[1] = 0xb2;
  86. if (i2c_master_send(c, buffer, 2) != 2)
  87. printk("tuner: i2c i/o error 3n");
  88. if (debug)
  89. printk(KERN_DEBUG "tuner: status %02xn", tuner_getstatus(c));
  90. }
  91. /* ---------------------------------------------------------------------- */
  92. static int 
  93. tuner_attach(struct i2c_adapter *adap, int addr,
  94.      unsigned short flags, int kind)
  95. {
  96. static unsigned char buffer[] = { 0x29, 0x32, 0x2a, 0, 0x2b, 0 };
  97. struct i2c_client *client;
  98. if (this_adap > 0)
  99. return -1;
  100. this_adap++;
  101.         client_template.adapter = adap;
  102.         client_template.addr = addr;
  103. client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL);
  104.         if (client == NULL)
  105.                 return -ENOMEM;
  106.         memcpy(client, &client_template, sizeof(struct i2c_client));
  107. printk("tuner: SAB3036 found, status %02xn", tuner_getstatus(client));
  108.         i2c_attach_client(client);
  109. MOD_INC_USE_COUNT;
  110. if (i2c_master_send(client, buffer, 2) != 2)
  111. printk("tuner: i2c i/o error 1n");
  112. if (i2c_master_send(client, buffer+2, 2) != 2)
  113. printk("tuner: i2c i/o error 2n");
  114. if (i2c_master_send(client, buffer+4, 2) != 2)
  115. printk("tuner: i2c i/o error 3n");
  116. return 0;
  117. }
  118. static int 
  119. tuner_detach(struct i2c_client *c)
  120. {
  121. MOD_DEC_USE_COUNT;
  122. return 0;
  123. }
  124. static int 
  125. tuner_command(struct i2c_client *client, unsigned int cmd, void *arg)
  126. {
  127. int *iarg = (int*)arg;
  128. switch (cmd) 
  129. {
  130. case TUNER_SET_TVFREQ:
  131. set_tv_freq(client, *iarg);
  132. break;
  133.     
  134. default:
  135. return -EINVAL;
  136. }
  137. return 0;
  138. }
  139. static int 
  140. tuner_probe(struct i2c_adapter *adap)
  141. {
  142. this_adap = 0;
  143. if (adap->id == (I2C_ALGO_BIT | I2C_HW_B_LP))
  144. return i2c_probe(adap, &addr_data, tuner_attach);
  145. return 0;
  146. }
  147. /* ----------------------------------------------------------------------- */
  148. static struct i2c_driver 
  149. i2c_driver_tuner = 
  150. {
  151. "sab3036", /* name       */
  152. I2C_DRIVERID_SAB3036, /* ID         */
  153.         I2C_DF_NOTIFY,
  154. tuner_probe,
  155. tuner_detach,
  156. tuner_command
  157. };
  158. static struct i2c_client client_template =
  159. {
  160.         "SAB3036", /* name       */
  161.         -1,
  162.         0,
  163.         0,
  164.         NULL,
  165.         &i2c_driver_tuner
  166. };
  167. EXPORT_NO_SYMBOLS;
  168. int __init
  169. tuner3036_init(void)
  170. {
  171. i2c_add_driver(&i2c_driver_tuner);
  172. return 0;
  173. }
  174. void __exit
  175. tuner3036_exit(void)
  176. {
  177. i2c_del_driver(&i2c_driver_tuner);
  178. }
  179. MODULE_DESCRIPTION("SAB3036 tuner driver");
  180. MODULE_AUTHOR("Philip Blundell <philb@gnu.org>");
  181. MODULE_LICENSE("GPL");
  182. MODULE_PARM(debug,"i");
  183. MODULE_PARM_DESC(debug,"Enable debugging output");
  184. module_init(tuner3036_init);
  185. module_exit(tuner3036_exit);