saa7185.c 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. /*
  2. * saa7185 - Philips SAA7185B video encoder driver version 0.0.3
  3. *
  4. * Copyright (C) 1998 Dave Perks <dperks@ibm.net>
  5. *
  6. * Slight changes for video timing and attachment output by
  7. * Wolfgang Scherr <scherr@net4you.net>
  8. *
  9. * Changes by Ronald Bultje <rbultje@ronald.bitfreak.net>
  10. * - moved over to linux>=2.4.x i2c protocol (1/1/2003)
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25. */
  26. #include <linux/module.h>
  27. #include <linux/types.h>
  28. #include <linux/slab.h>
  29. #include <linux/ioctl.h>
  30. #include <asm/uaccess.h>
  31. #include <linux/i2c.h>
  32. #include <linux/videodev2.h>
  33. #include <media/v4l2-device.h>
  34. #include <media/v4l2-chip-ident.h>
  35. MODULE_DESCRIPTION("Philips SAA7185 video encoder driver");
  36. MODULE_AUTHOR("Dave Perks");
  37. MODULE_LICENSE("GPL");
  38. static int debug;
  39. module_param(debug, int, 0);
  40. MODULE_PARM_DESC(debug, "Debug level (0-1)");
  41. /* ----------------------------------------------------------------------- */
  42. struct saa7185 {
  43. struct v4l2_subdev sd;
  44. unsigned char reg[128];
  45. v4l2_std_id norm;
  46. };
  47. static inline struct saa7185 *to_saa7185(struct v4l2_subdev *sd)
  48. {
  49. return container_of(sd, struct saa7185, sd);
  50. }
  51. /* ----------------------------------------------------------------------- */
  52. static inline int saa7185_read(struct v4l2_subdev *sd)
  53. {
  54. struct i2c_client *client = v4l2_get_subdevdata(sd);
  55. return i2c_smbus_read_byte(client);
  56. }
  57. static int saa7185_write(struct v4l2_subdev *sd, u8 reg, u8 value)
  58. {
  59. struct i2c_client *client = v4l2_get_subdevdata(sd);
  60. struct saa7185 *encoder = to_saa7185(sd);
  61. v4l2_dbg(1, debug, sd, "%02x set to %02x\n", reg, value);
  62. encoder->reg[reg] = value;
  63. return i2c_smbus_write_byte_data(client, reg, value);
  64. }
  65. static int saa7185_write_block(struct v4l2_subdev *sd,
  66. const u8 *data, unsigned int len)
  67. {
  68. struct i2c_client *client = v4l2_get_subdevdata(sd);
  69. struct saa7185 *encoder = to_saa7185(sd);
  70. int ret = -1;
  71. u8 reg;
  72. /* the adv7175 has an autoincrement function, use it if
  73. * the adapter understands raw I2C */
  74. if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  75. /* do raw I2C, not smbus compatible */
  76. u8 block_data[32];
  77. int block_len;
  78. while (len >= 2) {
  79. block_len = 0;
  80. block_data[block_len++] = reg = data[0];
  81. do {
  82. block_data[block_len++] =
  83. encoder->reg[reg++] = data[1];
  84. len -= 2;
  85. data += 2;
  86. } while (len >= 2 && data[0] == reg && block_len < 32);
  87. ret = i2c_master_send(client, block_data, block_len);
  88. if (ret < 0)
  89. break;
  90. }
  91. } else {
  92. /* do some slow I2C emulation kind of thing */
  93. while (len >= 2) {
  94. reg = *data++;
  95. ret = saa7185_write(sd, reg, *data++);
  96. if (ret < 0)
  97. break;
  98. len -= 2;
  99. }
  100. }
  101. return ret;
  102. }
  103. /* ----------------------------------------------------------------------- */
  104. static const unsigned char init_common[] = {
  105. 0x3a, 0x0f, /* CBENB=0, V656=0, VY2C=1,
  106. * YUV2C=1, MY2C=1, MUV2C=1 */
  107. 0x42, 0x6b, /* OVLY0=107 */
  108. 0x43, 0x00, /* OVLU0=0 white */
  109. 0x44, 0x00, /* OVLV0=0 */
  110. 0x45, 0x22, /* OVLY1=34 */
  111. 0x46, 0xac, /* OVLU1=172 yellow */
  112. 0x47, 0x0e, /* OVLV1=14 */
  113. 0x48, 0x03, /* OVLY2=3 */
  114. 0x49, 0x1d, /* OVLU2=29 cyan */
  115. 0x4a, 0xac, /* OVLV2=172 */
  116. 0x4b, 0xf0, /* OVLY3=240 */
  117. 0x4c, 0xc8, /* OVLU3=200 green */
  118. 0x4d, 0xb9, /* OVLV3=185 */
  119. 0x4e, 0xd4, /* OVLY4=212 */
  120. 0x4f, 0x38, /* OVLU4=56 magenta */
  121. 0x50, 0x47, /* OVLV4=71 */
  122. 0x51, 0xc1, /* OVLY5=193 */
  123. 0x52, 0xe3, /* OVLU5=227 red */
  124. 0x53, 0x54, /* OVLV5=84 */
  125. 0x54, 0xa3, /* OVLY6=163 */
  126. 0x55, 0x54, /* OVLU6=84 blue */
  127. 0x56, 0xf2, /* OVLV6=242 */
  128. 0x57, 0x90, /* OVLY7=144 */
  129. 0x58, 0x00, /* OVLU7=0 black */
  130. 0x59, 0x00, /* OVLV7=0 */
  131. 0x5a, 0x00, /* CHPS=0 */
  132. 0x5b, 0x76, /* GAINU=118 */
  133. 0x5c, 0xa5, /* GAINV=165 */
  134. 0x5d, 0x3c, /* BLCKL=60 */
  135. 0x5e, 0x3a, /* BLNNL=58 */
  136. 0x5f, 0x3a, /* CCRS=0, BLNVB=58 */
  137. 0x60, 0x00, /* NULL */
  138. /* 0x61 - 0x66 set according to norm */
  139. 0x67, 0x00, /* 0 : caption 1st byte odd field */
  140. 0x68, 0x00, /* 0 : caption 2nd byte odd field */
  141. 0x69, 0x00, /* 0 : caption 1st byte even field */
  142. 0x6a, 0x00, /* 0 : caption 2nd byte even field */
  143. 0x6b, 0x91, /* MODIN=2, PCREF=0, SCCLN=17 */
  144. 0x6c, 0x20, /* SRCV1=0, TRCV2=1, ORCV1=0, PRCV1=0,
  145. * CBLF=0, ORCV2=0, PRCV2=0 */
  146. 0x6d, 0x00, /* SRCM1=0, CCEN=0 */
  147. 0x6e, 0x0e, /* HTRIG=0x005, approx. centered, at
  148. * least for PAL */
  149. 0x6f, 0x00, /* HTRIG upper bits */
  150. 0x70, 0x20, /* PHRES=0, SBLN=1, VTRIG=0 */
  151. /* The following should not be needed */
  152. 0x71, 0x15, /* BMRQ=0x115 */
  153. 0x72, 0x90, /* EMRQ=0x690 */
  154. 0x73, 0x61, /* EMRQ=0x690, BMRQ=0x115 */
  155. 0x74, 0x00, /* NULL */
  156. 0x75, 0x00, /* NULL */
  157. 0x76, 0x00, /* NULL */
  158. 0x77, 0x15, /* BRCV=0x115 */
  159. 0x78, 0x90, /* ERCV=0x690 */
  160. 0x79, 0x61, /* ERCV=0x690, BRCV=0x115 */
  161. /* Field length controls */
  162. 0x7a, 0x70, /* FLC=0 */
  163. /* The following should not be needed if SBLN = 1 */
  164. 0x7b, 0x16, /* FAL=22 */
  165. 0x7c, 0x35, /* LAL=244 */
  166. 0x7d, 0x20, /* LAL=244, FAL=22 */
  167. };
  168. static const unsigned char init_pal[] = {
  169. 0x61, 0x1e, /* FISE=0, PAL=1, SCBW=1, RTCE=1,
  170. * YGS=1, INPI=0, DOWN=0 */
  171. 0x62, 0xc8, /* DECTYP=1, BSTA=72 */
  172. 0x63, 0xcb, /* FSC0 */
  173. 0x64, 0x8a, /* FSC1 */
  174. 0x65, 0x09, /* FSC2 */
  175. 0x66, 0x2a, /* FSC3 */
  176. };
  177. static const unsigned char init_ntsc[] = {
  178. 0x61, 0x1d, /* FISE=1, PAL=0, SCBW=1, RTCE=1,
  179. * 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_init(struct v4l2_subdev *sd, u32 val)
  187. {
  188. struct saa7185 *encoder = to_saa7185(sd);
  189. saa7185_write_block(sd, init_common, sizeof(init_common));
  190. if (encoder->norm & V4L2_STD_NTSC)
  191. saa7185_write_block(sd, init_ntsc, sizeof(init_ntsc));
  192. else
  193. saa7185_write_block(sd, init_pal, sizeof(init_pal));
  194. return 0;
  195. }
  196. static int saa7185_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std)
  197. {
  198. struct saa7185 *encoder = to_saa7185(sd);
  199. if (std & V4L2_STD_NTSC)
  200. saa7185_write_block(sd, init_ntsc, sizeof(init_ntsc));
  201. else if (std & V4L2_STD_PAL)
  202. saa7185_write_block(sd, init_pal, sizeof(init_pal));
  203. else
  204. return -EINVAL;
  205. encoder->norm = std;
  206. return 0;
  207. }
  208. static int saa7185_s_routing(struct v4l2_subdev *sd,
  209. u32 input, u32 output, u32 config)
  210. {
  211. struct saa7185 *encoder = to_saa7185(sd);
  212. /* RJ: input = 0: input is from SA7111
  213. input = 1: input is from ZR36060 */
  214. switch (input) {
  215. case 0:
  216. /* turn off colorbar */
  217. saa7185_write(sd, 0x3a, 0x0f);
  218. /* Switch RTCE to 1 */
  219. saa7185_write(sd, 0x61, (encoder->reg[0x61] & 0xf7) | 0x08);
  220. saa7185_write(sd, 0x6e, 0x01);
  221. break;
  222. case 1:
  223. /* turn off colorbar */
  224. saa7185_write(sd, 0x3a, 0x0f);
  225. /* Switch RTCE to 0 */
  226. saa7185_write(sd, 0x61, (encoder->reg[0x61] & 0xf7) | 0x00);
  227. /* SW: a slight sync problem... */
  228. saa7185_write(sd, 0x6e, 0x00);
  229. break;
  230. case 2:
  231. /* turn on colorbar */
  232. saa7185_write(sd, 0x3a, 0x8f);
  233. /* Switch RTCE to 0 */
  234. saa7185_write(sd, 0x61, (encoder->reg[0x61] & 0xf7) | 0x08);
  235. /* SW: a slight sync problem... */
  236. saa7185_write(sd, 0x6e, 0x01);
  237. break;
  238. default:
  239. return -EINVAL;
  240. }
  241. return 0;
  242. }
  243. static int saa7185_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
  244. {
  245. struct i2c_client *client = v4l2_get_subdevdata(sd);
  246. return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_SAA7185, 0);
  247. }
  248. /* ----------------------------------------------------------------------- */
  249. static const struct v4l2_subdev_core_ops saa7185_core_ops = {
  250. .g_chip_ident = saa7185_g_chip_ident,
  251. .init = saa7185_init,
  252. };
  253. static const struct v4l2_subdev_video_ops saa7185_video_ops = {
  254. .s_std_output = saa7185_s_std_output,
  255. .s_routing = saa7185_s_routing,
  256. };
  257. static const struct v4l2_subdev_ops saa7185_ops = {
  258. .core = &saa7185_core_ops,
  259. .video = &saa7185_video_ops,
  260. };
  261. /* ----------------------------------------------------------------------- */
  262. static int saa7185_probe(struct i2c_client *client,
  263. const struct i2c_device_id *id)
  264. {
  265. int i;
  266. struct saa7185 *encoder;
  267. struct v4l2_subdev *sd;
  268. /* Check if the adapter supports the needed features */
  269. if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  270. return -ENODEV;
  271. v4l_info(client, "chip found @ 0x%x (%s)\n",
  272. client->addr << 1, client->adapter->name);
  273. encoder = kzalloc(sizeof(struct saa7185), GFP_KERNEL);
  274. if (encoder == NULL)
  275. return -ENOMEM;
  276. encoder->norm = V4L2_STD_NTSC;
  277. sd = &encoder->sd;
  278. v4l2_i2c_subdev_init(sd, client, &saa7185_ops);
  279. i = saa7185_write_block(sd, init_common, sizeof(init_common));
  280. if (i >= 0)
  281. i = saa7185_write_block(sd, init_ntsc, sizeof(init_ntsc));
  282. if (i < 0)
  283. v4l2_dbg(1, debug, sd, "init error %d\n", i);
  284. else
  285. v4l2_dbg(1, debug, sd, "revision 0x%x\n",
  286. saa7185_read(sd) >> 5);
  287. return 0;
  288. }
  289. static int saa7185_remove(struct i2c_client *client)
  290. {
  291. struct v4l2_subdev *sd = i2c_get_clientdata(client);
  292. struct saa7185 *encoder = to_saa7185(sd);
  293. v4l2_device_unregister_subdev(sd);
  294. /* SW: output off is active */
  295. saa7185_write(sd, 0x61, (encoder->reg[0x61]) | 0x40);
  296. kfree(encoder);
  297. return 0;
  298. }
  299. /* ----------------------------------------------------------------------- */
  300. static const struct i2c_device_id saa7185_id[] = {
  301. { "saa7185", 0 },
  302. { }
  303. };
  304. MODULE_DEVICE_TABLE(i2c, saa7185_id);
  305. static struct i2c_driver saa7185_driver = {
  306. .driver = {
  307. .owner = THIS_MODULE,
  308. .name = "saa7185",
  309. },
  310. .probe = saa7185_probe,
  311. .remove = saa7185_remove,
  312. .id_table = saa7185_id,
  313. };
  314. module_i2c_driver(saa7185_driver);