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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.     saa7185 - Philips SAA7185B video encoder driver version 0.0.3
  3.     Copyright (C) 1998 Dave Perks <dperks@ibm.net>
  4.     Slight changes for video timing and attachment output by
  5.     Wolfgang Scherr <scherr@net4you.net>
  6.     
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation; either version 2 of the License, or
  10.     (at your option) any later version.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #include <linux/module.h>
  20. #include <linux/init.h>
  21. #include <linux/delay.h>
  22. #include <linux/errno.h>
  23. #include <linux/fs.h>
  24. #include <linux/kernel.h>
  25. #include <linux/major.h>
  26. #include <linux/slab.h>
  27. #include <linux/mm.h>
  28. #include <linux/pci.h>
  29. #include <linux/signal.h>
  30. #include <asm/io.h>
  31. #include <asm/pgtable.h>
  32. #include <asm/page.h>
  33. #include <linux/sched.h>
  34. #include <asm/segment.h>
  35. #include <linux/types.h>
  36. #include <linux/wrapper.h>
  37. #include <linux/videodev.h>
  38. #include <linux/version.h>
  39. #include <asm/uaccess.h>
  40. #include <linux/i2c-old.h>
  41. #include <linux/video_encoder.h>
  42. #define DEBUG(x) /* Debug driver */
  43. /* ----------------------------------------------------------------------- */
  44. struct saa7185 {
  45. struct i2c_bus *bus;
  46. int addr;
  47. unsigned char reg[128];
  48. int norm;
  49. int enable;
  50. int bright;
  51. int contrast;
  52. int hue;
  53. int sat;
  54. };
  55. #define   I2C_SAA7185        0x88
  56. #define I2C_DELAY   10
  57. /* ----------------------------------------------------------------------- */
  58. static int saa7185_read(struct saa7185 *dev)
  59. {
  60. int ack;
  61. LOCK_I2C_BUS(dev->bus);
  62. i2c_start(dev->bus);
  63. i2c_sendbyte(dev->bus, dev->addr | 1, I2C_DELAY);
  64. ack = i2c_readbyte(dev->bus, 1);
  65. i2c_stop(dev->bus);
  66. UNLOCK_I2C_BUS(dev->bus);
  67. return ack;
  68. }
  69. static int saa7185_write(struct saa7185 *dev, unsigned char subaddr,
  70.  unsigned char data)
  71. {
  72. int ack;
  73. DEBUG(printk
  74.       (KERN_DEBUG "SAA7185: %02x set to %02xn", subaddr, data);
  75.     )
  76.     LOCK_I2C_BUS(dev->bus);
  77. i2c_start(dev->bus);
  78. i2c_sendbyte(dev->bus, dev->addr, I2C_DELAY);
  79. i2c_sendbyte(dev->bus, subaddr, I2C_DELAY);
  80. ack = i2c_sendbyte(dev->bus, data, I2C_DELAY);
  81. dev->reg[subaddr] = data;
  82. i2c_stop(dev->bus);
  83. UNLOCK_I2C_BUS(dev->bus);
  84. return ack;
  85. }
  86. static int saa7185_write_block(struct saa7185 *dev,
  87.        unsigned const char *data, unsigned int len)
  88. {
  89. int ack = -1;
  90. unsigned subaddr;
  91. while (len > 1) {
  92. LOCK_I2C_BUS(dev->bus);
  93. i2c_start(dev->bus);
  94. i2c_sendbyte(dev->bus, dev->addr, I2C_DELAY);
  95. ack = i2c_sendbyte(dev->bus, (subaddr = *data++), I2C_DELAY);
  96. ack = i2c_sendbyte(dev->bus, (dev->reg[subaddr] = *data++), I2C_DELAY);
  97. len -= 2;
  98. while (len > 1 && *data == ++subaddr) {
  99. data++;
  100. ack = i2c_sendbyte(dev->bus, (dev->reg[subaddr] = *data++), I2C_DELAY);
  101. len -= 2;
  102. }
  103. i2c_stop(dev->bus);
  104. UNLOCK_I2C_BUS(dev->bus);
  105. }
  106. return ack;
  107. }
  108. /* ----------------------------------------------------------------------- */
  109. static const unsigned char init_common[] = {
  110. 0x3a, 0x0f, /* CBENB=0, V656=0, VY2C=1, YUV2C=1, MY2C=1, MUV2C=1 */
  111. 0x42, 0x6b, /* OVLY0=107 */
  112. 0x43, 0x00, /* OVLU0=0     white */
  113. 0x44, 0x00, /* OVLV0=0   */
  114. 0x45, 0x22, /* OVLY1=34  */
  115. 0x46, 0xac, /* OVLU1=172   yellow */
  116. 0x47, 0x0e, /* OVLV1=14  */
  117. 0x48, 0x03, /* OVLY2=3   */
  118. 0x49, 0x1d, /* OVLU2=29    cyan */
  119. 0x4a, 0xac, /* OVLV2=172 */
  120. 0x4b, 0xf0, /* OVLY3=240 */
  121. 0x4c, 0xc8, /* OVLU3=200   green */
  122. 0x4d, 0xb9, /* OVLV3=185 */
  123. 0x4e, 0xd4, /* OVLY4=212 */
  124. 0x4f, 0x38, /* OVLU4=56    magenta */
  125. 0x50, 0x47, /* OVLV4=71  */
  126. 0x51, 0xc1, /* OVLY5=193 */
  127. 0x52, 0xe3, /* OVLU5=227   red */
  128. 0x53, 0x54, /* OVLV5=84  */
  129. 0x54, 0xa3, /* OVLY6=163 */
  130. 0x55, 0x54, /* OVLU6=84    blue */
  131. 0x56, 0xf2, /* OVLV6=242 */
  132. 0x57, 0x90, /* OVLY7=144 */
  133. 0x58, 0x00, /* OVLU7=0     black */
  134. 0x59, 0x00, /* OVLV7=0   */
  135. 0x5a, 0x00, /* CHPS=0    */
  136. 0x5b, 0x76, /* GAINU=118 */
  137. 0x5c, 0xa5, /* GAINV=165 */
  138. 0x5d, 0x3c, /* BLCKL=60  */
  139. 0x5e, 0x3a, /* BLNNL=58  */
  140. 0x5f, 0x3a, /* CCRS=0, BLNVB=58 */
  141. 0x60, 0x00, /* NULL      */
  142. /* 0x61 - 0x66 set according to norm */
  143. 0x67, 0x00, /* 0 : caption 1st byte odd  field */
  144. 0x68, 0x00, /* 0 : caption 2nd byte odd  field */
  145. 0x69, 0x00, /* 0 : caption 1st byte even field */
  146. 0x6a, 0x00, /* 0 : caption 2nd byte even field */
  147. 0x6b, 0x91, /* MODIN=2, PCREF=0, SCCLN=17 */
  148. 0x6c, 0x20, /* SRCV1=0, TRCV2=1, ORCV1=0, PRCV1=0, CBLF=0, ORCV2=0, PRCV2=0 */
  149. 0x6d, 0x00, /* SRCM1=0, CCEN=0 */
  150. 0x6e, 0x0e, /* HTRIG=0x005, approx. centered, at least for PAL */
  151. 0x6f, 0x00, /* HTRIG upper bits */
  152. 0x70, 0x20, /* PHRES=0, SBLN=1, VTRIG=0 */
  153. /* The following should not be needed */
  154. 0x71, 0x15, /* BMRQ=0x115 */
  155. 0x72, 0x90, /* EMRQ=0x690 */
  156. 0x73, 0x61, /* EMRQ=0x690, BMRQ=0x115 */
  157. 0x74, 0x00, /* NULL       */
  158. 0x75, 0x00, /* NULL       */
  159. 0x76, 0x00, /* NULL       */
  160. 0x77, 0x15, /* BRCV=0x115 */
  161. 0x78, 0x90, /* ERCV=0x690 */
  162. 0x79, 0x61, /* ERCV=0x690, BRCV=0x115 */
  163. /* Field length controls */
  164. 0x7a, 0x70, /* FLC=0 */
  165. /* The following should not be needed if SBLN = 1 */
  166. 0x7b, 0x16, /* FAL=22 */
  167. 0x7c, 0x35, /* LAL=244 */
  168. 0x7d, 0x20, /* LAL=244, FAL=22 */
  169. };
  170. static const unsigned char init_pal[] = {
  171. 0x61, 0x1e, /* FISE=0, PAL=1, SCBW=1, RTCE=1, YGS=1, INPI=0, DOWN=0 */
  172. 0x62, 0xc8, /* DECTYP=1, BSTA=72 */
  173. 0x63, 0xcb, /* FSC0 */
  174. 0x64, 0x8a, /* FSC1 */
  175. 0x65, 0x09, /* FSC2 */
  176. 0x66, 0x2a, /* FSC3 */
  177. };
  178. static const unsigned char init_ntsc[] = {
  179. 0x61, 0x1d, /* FISE=1, PAL=0, SCBW=1, RTCE=1, YGS=1, INPI=0, DOWN=0 */
  180. 0x62, 0xe6, /* DECTYP=1, BSTA=102 */
  181. 0x63, 0x1f, /* FSC0 */
  182. 0x64, 0x7c, /* FSC1 */
  183. 0x65, 0xf0, /* FSC2 */
  184. 0x66, 0x21, /* FSC3 */
  185. };
  186. static int saa7185_attach(struct i2c_device *device)
  187. {
  188. int i;
  189. struct saa7185 *encoder;
  190. MOD_INC_USE_COUNT;
  191. device->data = encoder = kmalloc(sizeof(struct saa7185), GFP_KERNEL);
  192. if (encoder == NULL) {
  193. MOD_DEC_USE_COUNT;
  194. return -ENOMEM;
  195. }
  196. memset(encoder, 0, sizeof(struct saa7185));
  197. strcpy(device->name, "saa7185");
  198. encoder->bus = device->bus;
  199. encoder->addr = device->addr;
  200. encoder->norm = VIDEO_MODE_NTSC;
  201. encoder->enable = 1;
  202. i = saa7185_write_block(encoder, init_common, sizeof(init_common));
  203. if (i >= 0) {
  204. i = saa7185_write_block(encoder, init_ntsc,
  205. sizeof(init_ntsc));
  206. }
  207. if (i < 0) {
  208. printk(KERN_ERR "%s_attach: init error %dn", device->name,
  209.        i);
  210. } else {
  211. printk(KERN_INFO "%s_attach: chip version %dn",
  212.        device->name, saa7185_read(encoder) >> 5);
  213. }
  214. return 0;
  215. }
  216. static int saa7185_detach(struct i2c_device *device)
  217. {
  218. struct saa7185 *encoder = device->data;
  219. saa7185_write(encoder, 0x61, (encoder->reg[0x61]) | 0x40); /* SW: output off is active */
  220. //saa7185_write(encoder, 0x3a, (encoder->reg[0x3a]) | 0x80); /* SW: color bar */
  221. kfree(encoder);
  222. MOD_DEC_USE_COUNT;
  223. return 0;
  224. }
  225. static int saa7185_command(struct i2c_device *device, unsigned int cmd,
  226.    void *arg)
  227. {
  228. struct saa7185 *encoder = device->data;
  229. switch (cmd) {
  230. case ENCODER_GET_CAPABILITIES:
  231. {
  232. struct video_encoder_capability *cap = arg;
  233. cap->flags
  234.     = VIDEO_ENCODER_PAL
  235.     | VIDEO_ENCODER_NTSC
  236.     | VIDEO_ENCODER_SECAM | VIDEO_ENCODER_CCIR;
  237. cap->inputs = 1;
  238. cap->outputs = 1;
  239. }
  240. break;
  241. case ENCODER_SET_NORM:
  242. {
  243. int *iarg = arg;
  244. switch (*iarg) {
  245. case VIDEO_MODE_NTSC:
  246. saa7185_write_block(encoder, init_ntsc,
  247.     sizeof(init_ntsc));
  248. break;
  249. case VIDEO_MODE_PAL:
  250. saa7185_write_block(encoder, init_pal,
  251.     sizeof(init_pal));
  252. break;
  253. case VIDEO_MODE_SECAM:
  254. default:
  255. return -EINVAL;
  256. }
  257. encoder->norm = *iarg;
  258. }
  259. break;
  260. case ENCODER_SET_INPUT:
  261. {
  262. int *iarg = arg;
  263. /* RJ: *iarg = 0: input is from SA7111
  264.    *iarg = 1: input is from ZR36060 */
  265. switch (*iarg) {
  266. case 0:
  267. /* Switch RTCE to 1 */
  268. saa7185_write(encoder, 0x61,
  269.       (encoder->
  270.        reg[0x61] & 0xf7) | 0x08);
  271. saa7185_write(encoder, 0x6e, 0x01);
  272. break;
  273. case 1:
  274. /* Switch RTCE to 0 */
  275. saa7185_write(encoder, 0x61,
  276.       (encoder->
  277.        reg[0x61] & 0xf7) | 0x00);
  278. /* SW: a slight sync problem... */
  279. saa7185_write(encoder, 0x6e, 0x00);
  280. break;
  281. default:
  282. return -EINVAL;
  283. }
  284. }
  285. break;
  286. case ENCODER_SET_OUTPUT:
  287. {
  288. int *iarg = arg;
  289. /* not much choice of outputs */
  290. if (*iarg != 0) {
  291. return -EINVAL;
  292. }
  293. }
  294. break;
  295. case ENCODER_ENABLE_OUTPUT:
  296. {
  297. int *iarg = arg;
  298. encoder->enable = !!*iarg;
  299. saa7185_write(encoder, 0x61,
  300.       (encoder->
  301.        reg[0x61] & 0xbf) | (encoder->
  302.     enable ? 0x00 :
  303.     0x40));
  304. }
  305. break;
  306. default:
  307. return -EINVAL;
  308. }
  309. return 0;
  310. }
  311. /* ----------------------------------------------------------------------- */
  312. static struct i2c_driver i2c_driver_saa7185 = {
  313. "saa7185", /* name */
  314. I2C_DRIVERID_VIDEOENCODER, /* ID */
  315. I2C_SAA7185, I2C_SAA7185 + 1,
  316. saa7185_attach,
  317. saa7185_detach,
  318. saa7185_command
  319. };
  320. EXPORT_NO_SYMBOLS;
  321. static int saa7185_init(void)
  322. {
  323. return i2c_register_driver(&i2c_driver_saa7185);
  324. }
  325. static void saa7185_exit(void)
  326. {
  327. i2c_unregister_driver(&i2c_driver_saa7185);
  328. }
  329. module_init(saa7185_init);
  330. module_exit(saa7185_exit);
  331. MODULE_LICENSE("GPL");