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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.     bt856 - BT856A Digital Video Encoder (Rockwell Part)
  3.     Copyright (C) 1999 Mike Bernson <mike@mlb.org>
  4.     Copyright (C) 1998 Dave Perks <dperks@ibm.net>
  5.     Modifications for LML33/DC10plus unified driver
  6.     Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
  7.     
  8.     This code was modify/ported from the saa7111 driver written
  9.     by Dave Perks.
  10.     This program is free software; you can redistribute it and/or modify
  11.     it under the terms of the GNU General Public License as published by
  12.     the Free Software Foundation; either version 2 of the License, or
  13.     (at your option) any later version.
  14.     This program is distributed in the hope that it will be useful,
  15.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.     GNU General Public License for more details.
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #include <linux/module.h>
  23. #include <linux/init.h>
  24. #include <linux/delay.h>
  25. #include <linux/errno.h>
  26. #include <linux/fs.h>
  27. #include <linux/kernel.h>
  28. #include <linux/major.h>
  29. #include <linux/slab.h>
  30. #include <linux/mm.h>
  31. #include <linux/pci.h>
  32. #include <linux/signal.h>
  33. #include <asm/io.h>
  34. #include <asm/pgtable.h>
  35. #include <asm/page.h>
  36. #include <linux/sched.h>
  37. #include <asm/segment.h>
  38. #include <linux/types.h>
  39. #include <linux/wrapper.h>
  40. #include <linux/videodev.h>
  41. #include <linux/version.h>
  42. #include <asm/uaccess.h>
  43. #include <linux/i2c-old.h>
  44. #include <linux/video_encoder.h>
  45. #define DEBUG(x)   x /* Debug driver */
  46. /* ----------------------------------------------------------------------- */
  47. struct bt856 {
  48. struct i2c_bus *bus;
  49. int addr;
  50. unsigned char reg[128];
  51. int norm;
  52. int enable;
  53. int bright;
  54. int contrast;
  55. int hue;
  56. int sat;
  57. };
  58. #define   I2C_BT856        0x88
  59. #define I2C_DELAY   10
  60. /* ----------------------------------------------------------------------- */
  61. static int bt856_write(struct bt856 *dev, unsigned char subaddr,
  62.        unsigned char data)
  63. {
  64. int ack;
  65. LOCK_I2C_BUS(dev->bus);
  66. i2c_start(dev->bus);
  67. i2c_sendbyte(dev->bus, dev->addr, I2C_DELAY);
  68. i2c_sendbyte(dev->bus, subaddr, I2C_DELAY);
  69. ack = i2c_sendbyte(dev->bus, data, I2C_DELAY);
  70. dev->reg[subaddr] = data;
  71. i2c_stop(dev->bus);
  72. UNLOCK_I2C_BUS(dev->bus);
  73. return ack;
  74. }
  75. static int bt856_setbit(struct bt856 *dev, int subaddr, int bit, int data)
  76. {
  77. return bt856_write(dev, subaddr,(dev->reg[subaddr] & ~(1 << bit)) | (data ? (1 << bit) : 0));
  78. }
  79. /* ----------------------------------------------------------------------- */
  80. static int bt856_attach(struct i2c_device *device)
  81. {
  82. struct bt856 *encoder;
  83. /* This chip is not on the buz card but at the same address saa7185 */
  84. //if (memcmp(device->bus->name, "buz", 3) == 0 || memcmp(device->bus->name, "zr36057", 6) == 0)
  85. //   return 1;
  86. MOD_INC_USE_COUNT;
  87. device->data = encoder = kmalloc(sizeof(struct bt856), GFP_KERNEL);
  88. if (encoder == NULL) {
  89. MOD_DEC_USE_COUNT;
  90. return -ENOMEM;
  91. }
  92. memset(encoder, 0, sizeof(struct bt856));
  93. strcpy(device->name, "bt856");
  94. encoder->bus = device->bus;
  95. encoder->addr = device->addr;
  96. encoder->norm = VIDEO_MODE_NTSC;
  97. encoder->enable = 1;
  98. DEBUG(printk(KERN_INFO "%s-bt856: attachn", encoder->bus->name));
  99. bt856_write(encoder, 0xdc, 0x18);
  100. bt856_write(encoder, 0xda, 0);
  101. bt856_write(encoder, 0xde, 0);
  102. bt856_setbit(encoder, 0xdc, 3, 1);
  103. //bt856_setbit(encoder, 0xdc, 6, 0);
  104. bt856_setbit(encoder, 0xdc, 4, 1);
  105. switch (encoder->norm) {
  106. case VIDEO_MODE_NTSC:
  107. bt856_setbit(encoder, 0xdc, 2, 0);
  108. break;
  109. case VIDEO_MODE_PAL:
  110. bt856_setbit(encoder, 0xdc, 2, 1);
  111. break;
  112. }
  113. bt856_setbit(encoder, 0xdc, 1, 1);
  114. bt856_setbit(encoder, 0xde, 4, 0);
  115. bt856_setbit(encoder, 0xde, 3, 1);
  116. return 0;
  117. }
  118. static int bt856_detach(struct i2c_device *device)
  119. {
  120. kfree(device->data);
  121. MOD_DEC_USE_COUNT;
  122. return 0;
  123. }
  124. static int bt856_command(struct i2c_device *device, unsigned int cmd,
  125.  void *arg)
  126. {
  127. struct bt856 *encoder = device->data;
  128. switch (cmd) {
  129. case ENCODER_GET_CAPABILITIES:
  130. {
  131. struct video_encoder_capability *cap = arg;
  132. DEBUG(printk
  133.       (KERN_INFO "%s-bt856: get capabilitiesn",
  134.        encoder->bus->name));
  135. cap->flags
  136.     = VIDEO_ENCODER_PAL
  137.     | VIDEO_ENCODER_NTSC | VIDEO_ENCODER_CCIR;
  138. cap->inputs = 2;
  139. cap->outputs = 1;
  140. }
  141. break;
  142. case ENCODER_SET_NORM:
  143. {
  144. int *iarg = arg;
  145. DEBUG(printk(KERN_INFO "%s-bt856: set norm %dn",
  146.      encoder->bus->name, *iarg));
  147. switch (*iarg) {
  148. case VIDEO_MODE_NTSC:
  149. bt856_setbit(encoder, 0xdc, 2, 0);
  150. break;
  151. case VIDEO_MODE_PAL:
  152. bt856_setbit(encoder, 0xdc, 2, 1);
  153. bt856_setbit(encoder, 0xda, 0, 0);
  154. //bt856_setbit(encoder, 0xda, 0, 1);
  155. break;
  156. default:
  157. return -EINVAL;
  158. }
  159. encoder->norm = *iarg;
  160. }
  161. break;
  162. case ENCODER_SET_INPUT:
  163. {
  164. int *iarg = arg;
  165. DEBUG(printk(KERN_INFO "%s-bt856: set input %dn",
  166.      encoder->bus->name, *iarg));
  167. /*     We only have video bus.
  168.    *iarg = 0: input is from bt819
  169.    *iarg = 1: input is from ZR36060 */
  170. switch (*iarg) {
  171. case 0:
  172. bt856_setbit(encoder, 0xde, 4, 0);
  173. bt856_setbit(encoder, 0xde, 3, 1);
  174. bt856_setbit(encoder, 0xdc, 3, 1);
  175. bt856_setbit(encoder, 0xdc, 6, 0);
  176. break;
  177. case 1:
  178. bt856_setbit(encoder, 0xde, 4, 0);
  179. bt856_setbit(encoder, 0xde, 3, 1);
  180. bt856_setbit(encoder, 0xdc, 3, 1);
  181. bt856_setbit(encoder, 0xdc, 6, 1);
  182. break;
  183. case 2: // Color bar
  184. bt856_setbit(encoder, 0xdc, 3, 0);
  185. bt856_setbit(encoder, 0xde, 4, 1);
  186. break;
  187. default:
  188. return -EINVAL;
  189. }
  190. }
  191. break;
  192. case ENCODER_SET_OUTPUT:
  193. {
  194. int *iarg = arg;
  195. DEBUG(printk(KERN_INFO "%s-bt856: set output %dn",
  196.      encoder->bus->name, *iarg));
  197. /* not much choice of outputs */
  198. if (*iarg != 0) {
  199. return -EINVAL;
  200. }
  201. }
  202. break;
  203. case ENCODER_ENABLE_OUTPUT:
  204. {
  205. int *iarg = arg;
  206. encoder->enable = !!*iarg;
  207. DEBUG(printk
  208.       (KERN_INFO "%s-bt856: enable output %dn",
  209.        encoder->bus->name, encoder->enable));
  210. }
  211. break;
  212. default:
  213. return -EINVAL;
  214. }
  215. return 0;
  216. }
  217. /* ----------------------------------------------------------------------- */
  218. static struct i2c_driver i2c_driver_bt856 = {
  219. "bt856", /* name */
  220. I2C_DRIVERID_VIDEOENCODER, /* ID */
  221. I2C_BT856, I2C_BT856 + 1,
  222. bt856_attach,
  223. bt856_detach,
  224. bt856_command
  225. };
  226. EXPORT_NO_SYMBOLS;
  227. static int bt856_init(void)
  228. {
  229. return i2c_register_driver(&i2c_driver_bt856);
  230. }
  231. static void bt856_exit(void)
  232. {
  233. i2c_unregister_driver(&i2c_driver_bt856);
  234. }
  235. module_init(bt856_init);
  236. module_exit(bt856_exit);
  237. MODULE_LICENSE("GPL");