saa7185.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  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/init.h>
  28. #include <linux/delay.h>
  29. #include <linux/errno.h>
  30. #include <linux/fs.h>
  31. #include <linux/kernel.h>
  32. #include <linux/major.h>
  33. #include <linux/slab.h>
  34. #include <linux/mm.h>
  35. #include <linux/signal.h>
  36. #include <asm/io.h>
  37. #include <asm/pgtable.h>
  38. #include <asm/page.h>
  39. #include <linux/types.h>
  40. #include <linux/videodev.h>
  41. #include <asm/uaccess.h>
  42. MODULE_DESCRIPTION("Philips SAA7185 video encoder driver");
  43. MODULE_AUTHOR("Dave Perks");
  44. MODULE_LICENSE("GPL");
  45. #include <linux/i2c.h>
  46. #define I2C_NAME(s) (s)->name
  47. #include <linux/video_encoder.h>
  48. static int debug = 0;
  49. module_param(debug, int, 0);
  50. MODULE_PARM_DESC(debug, "Debug level (0-1)");
  51. #define dprintk(num, format, args...) \
  52. do { \
  53. if (debug >= num) \
  54. printk(format, ##args); \
  55. } while (0)
  56. /* ----------------------------------------------------------------------- */
  57. struct saa7185 {
  58. unsigned char reg[128];
  59. int norm;
  60. int enable;
  61. int bright;
  62. int contrast;
  63. int hue;
  64. int sat;
  65. };
  66. #define I2C_SAA7185 0x88
  67. /* ----------------------------------------------------------------------- */
  68. static inline int
  69. saa7185_read (struct i2c_client *client)
  70. {
  71. return i2c_smbus_read_byte(client);
  72. }
  73. static int
  74. saa7185_write (struct i2c_client *client,
  75. u8 reg,
  76. u8 value)
  77. {
  78. struct saa7185 *encoder = i2c_get_clientdata(client);
  79. dprintk(1, KERN_DEBUG "SAA7185: %02x set to %02x\n", reg, value);
  80. encoder->reg[reg] = value;
  81. return i2c_smbus_write_byte_data(client, reg, value);
  82. }
  83. static int
  84. saa7185_write_block (struct i2c_client *client,
  85. const u8 *data,
  86. unsigned int len)
  87. {
  88. int ret = -1;
  89. u8 reg;
  90. /* the adv7175 has an autoincrement function, use it if
  91. * the adapter understands raw I2C */
  92. if (i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  93. /* do raw I2C, not smbus compatible */
  94. struct saa7185 *encoder = i2c_get_clientdata(client);
  95. u8 block_data[32];
  96. int block_len;
  97. while (len >= 2) {
  98. block_len = 0;
  99. block_data[block_len++] = reg = data[0];
  100. do {
  101. block_data[block_len++] =
  102. encoder->reg[reg++] = data[1];
  103. len -= 2;
  104. data += 2;
  105. } while (len >= 2 && data[0] == reg &&
  106. block_len < 32);
  107. if ((ret = i2c_master_send(client, block_data,
  108. block_len)) < 0)
  109. break;
  110. }
  111. } else {
  112. /* do some slow I2C emulation kind of thing */
  113. while (len >= 2) {
  114. reg = *data++;
  115. if ((ret = saa7185_write(client, reg,
  116. *data++)) < 0)
  117. break;
  118. len -= 2;
  119. }
  120. }
  121. return ret;
  122. }
  123. /* ----------------------------------------------------------------------- */
  124. static const unsigned char init_common[] = {
  125. 0x3a, 0x0f, /* CBENB=0, V656=0, VY2C=1,
  126. * YUV2C=1, MY2C=1, MUV2C=1 */
  127. 0x42, 0x6b, /* OVLY0=107 */
  128. 0x43, 0x00, /* OVLU0=0 white */
  129. 0x44, 0x00, /* OVLV0=0 */
  130. 0x45, 0x22, /* OVLY1=34 */
  131. 0x46, 0xac, /* OVLU1=172 yellow */
  132. 0x47, 0x0e, /* OVLV1=14 */
  133. 0x48, 0x03, /* OVLY2=3 */
  134. 0x49, 0x1d, /* OVLU2=29 cyan */
  135. 0x4a, 0xac, /* OVLV2=172 */
  136. 0x4b, 0xf0, /* OVLY3=240 */
  137. 0x4c, 0xc8, /* OVLU3=200 green */
  138. 0x4d, 0xb9, /* OVLV3=185 */
  139. 0x4e, 0xd4, /* OVLY4=212 */
  140. 0x4f, 0x38, /* OVLU4=56 magenta */
  141. 0x50, 0x47, /* OVLV4=71 */
  142. 0x51, 0xc1, /* OVLY5=193 */
  143. 0x52, 0xe3, /* OVLU5=227 red */
  144. 0x53, 0x54, /* OVLV5=84 */
  145. 0x54, 0xa3, /* OVLY6=163 */
  146. 0x55, 0x54, /* OVLU6=84 blue */
  147. 0x56, 0xf2, /* OVLV6=242 */
  148. 0x57, 0x90, /* OVLY7=144 */
  149. 0x58, 0x00, /* OVLU7=0 black */
  150. 0x59, 0x00, /* OVLV7=0 */
  151. 0x5a, 0x00, /* CHPS=0 */
  152. 0x5b, 0x76, /* GAINU=118 */
  153. 0x5c, 0xa5, /* GAINV=165 */
  154. 0x5d, 0x3c, /* BLCKL=60 */
  155. 0x5e, 0x3a, /* BLNNL=58 */
  156. 0x5f, 0x3a, /* CCRS=0, BLNVB=58 */
  157. 0x60, 0x00, /* NULL */
  158. /* 0x61 - 0x66 set according to norm */
  159. 0x67, 0x00, /* 0 : caption 1st byte odd field */
  160. 0x68, 0x00, /* 0 : caption 2nd byte odd field */
  161. 0x69, 0x00, /* 0 : caption 1st byte even field */
  162. 0x6a, 0x00, /* 0 : caption 2nd byte even field */
  163. 0x6b, 0x91, /* MODIN=2, PCREF=0, SCCLN=17 */
  164. 0x6c, 0x20, /* SRCV1=0, TRCV2=1, ORCV1=0, PRCV1=0,
  165. * CBLF=0, ORCV2=0, PRCV2=0 */
  166. 0x6d, 0x00, /* SRCM1=0, CCEN=0 */
  167. 0x6e, 0x0e, /* HTRIG=0x005, approx. centered, at
  168. * least for PAL */
  169. 0x6f, 0x00, /* HTRIG upper bits */
  170. 0x70, 0x20, /* PHRES=0, SBLN=1, VTRIG=0 */
  171. /* The following should not be needed */
  172. 0x71, 0x15, /* BMRQ=0x115 */
  173. 0x72, 0x90, /* EMRQ=0x690 */
  174. 0x73, 0x61, /* EMRQ=0x690, BMRQ=0x115 */
  175. 0x74, 0x00, /* NULL */
  176. 0x75, 0x00, /* NULL */
  177. 0x76, 0x00, /* NULL */
  178. 0x77, 0x15, /* BRCV=0x115 */
  179. 0x78, 0x90, /* ERCV=0x690 */
  180. 0x79, 0x61, /* ERCV=0x690, BRCV=0x115 */
  181. /* Field length controls */
  182. 0x7a, 0x70, /* FLC=0 */
  183. /* The following should not be needed if SBLN = 1 */
  184. 0x7b, 0x16, /* FAL=22 */
  185. 0x7c, 0x35, /* LAL=244 */
  186. 0x7d, 0x20, /* LAL=244, FAL=22 */
  187. };
  188. static const unsigned char init_pal[] = {
  189. 0x61, 0x1e, /* FISE=0, PAL=1, SCBW=1, RTCE=1,
  190. * YGS=1, INPI=0, DOWN=0 */
  191. 0x62, 0xc8, /* DECTYP=1, BSTA=72 */
  192. 0x63, 0xcb, /* FSC0 */
  193. 0x64, 0x8a, /* FSC1 */
  194. 0x65, 0x09, /* FSC2 */
  195. 0x66, 0x2a, /* FSC3 */
  196. };
  197. static const unsigned char init_ntsc[] = {
  198. 0x61, 0x1d, /* FISE=1, PAL=0, SCBW=1, RTCE=1,
  199. * YGS=1, INPI=0, DOWN=0 */
  200. 0x62, 0xe6, /* DECTYP=1, BSTA=102 */
  201. 0x63, 0x1f, /* FSC0 */
  202. 0x64, 0x7c, /* FSC1 */
  203. 0x65, 0xf0, /* FSC2 */
  204. 0x66, 0x21, /* FSC3 */
  205. };
  206. static int
  207. saa7185_command (struct i2c_client *client,
  208. unsigned int cmd,
  209. void *arg)
  210. {
  211. struct saa7185 *encoder = i2c_get_clientdata(client);
  212. switch (cmd) {
  213. case 0:
  214. saa7185_write_block(client, init_common,
  215. sizeof(init_common));
  216. switch (encoder->norm) {
  217. case VIDEO_MODE_NTSC:
  218. saa7185_write_block(client, init_ntsc,
  219. sizeof(init_ntsc));
  220. break;
  221. case VIDEO_MODE_PAL:
  222. saa7185_write_block(client, init_pal,
  223. sizeof(init_pal));
  224. break;
  225. }
  226. break;
  227. case ENCODER_GET_CAPABILITIES:
  228. {
  229. struct video_encoder_capability *cap = arg;
  230. cap->flags =
  231. VIDEO_ENCODER_PAL | VIDEO_ENCODER_NTSC |
  232. VIDEO_ENCODER_SECAM | VIDEO_ENCODER_CCIR;
  233. cap->inputs = 1;
  234. cap->outputs = 1;
  235. }
  236. break;
  237. case ENCODER_SET_NORM:
  238. {
  239. int *iarg = arg;
  240. //saa7185_write_block(client, init_common, sizeof(init_common));
  241. switch (*iarg) {
  242. case VIDEO_MODE_NTSC:
  243. saa7185_write_block(client, init_ntsc,
  244. sizeof(init_ntsc));
  245. break;
  246. case VIDEO_MODE_PAL:
  247. saa7185_write_block(client, init_pal,
  248. sizeof(init_pal));
  249. break;
  250. case VIDEO_MODE_SECAM:
  251. default:
  252. return -EINVAL;
  253. }
  254. encoder->norm = *iarg;
  255. }
  256. break;
  257. case ENCODER_SET_INPUT:
  258. {
  259. int *iarg = arg;
  260. /* RJ: *iarg = 0: input is from SA7111
  261. *iarg = 1: input is from ZR36060 */
  262. switch (*iarg) {
  263. case 0:
  264. /* Switch RTCE to 1 */
  265. saa7185_write(client, 0x61,
  266. (encoder->reg[0x61] & 0xf7) | 0x08);
  267. saa7185_write(client, 0x6e, 0x01);
  268. break;
  269. case 1:
  270. /* Switch RTCE to 0 */
  271. saa7185_write(client, 0x61,
  272. (encoder->reg[0x61] & 0xf7) | 0x00);
  273. /* SW: a slight sync problem... */
  274. saa7185_write(client, 0x6e, 0x00);
  275. break;
  276. default:
  277. return -EINVAL;
  278. }
  279. }
  280. break;
  281. case ENCODER_SET_OUTPUT:
  282. {
  283. int *iarg = arg;
  284. /* not much choice of outputs */
  285. if (*iarg != 0) {
  286. return -EINVAL;
  287. }
  288. }
  289. break;
  290. case ENCODER_ENABLE_OUTPUT:
  291. {
  292. int *iarg = arg;
  293. encoder->enable = !!*iarg;
  294. saa7185_write(client, 0x61,
  295. (encoder->reg[0x61] & 0xbf) |
  296. (encoder->enable ? 0x00 : 0x40));
  297. }
  298. break;
  299. default:
  300. return -EINVAL;
  301. }
  302. return 0;
  303. }
  304. /* ----------------------------------------------------------------------- */
  305. /*
  306. * Generic i2c probe
  307. * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1'
  308. */
  309. static unsigned short normal_i2c[] = { I2C_SAA7185 >> 1, I2C_CLIENT_END };
  310. static unsigned short ignore = I2C_CLIENT_END;
  311. static struct i2c_client_address_data addr_data = {
  312. .normal_i2c = normal_i2c,
  313. .probe = &ignore,
  314. .ignore = &ignore,
  315. };
  316. static struct i2c_driver i2c_driver_saa7185;
  317. static int
  318. saa7185_detect_client (struct i2c_adapter *adapter,
  319. int address,
  320. int kind)
  321. {
  322. int i;
  323. struct i2c_client *client;
  324. struct saa7185 *encoder;
  325. dprintk(1,
  326. KERN_INFO
  327. "saa7185.c: detecting saa7185 client on address 0x%x\n",
  328. address << 1);
  329. /* Check if the adapter supports the needed features */
  330. if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  331. return 0;
  332. client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL);
  333. if (client == 0)
  334. return -ENOMEM;
  335. client->addr = address;
  336. client->adapter = adapter;
  337. client->driver = &i2c_driver_saa7185;
  338. strlcpy(I2C_NAME(client), "saa7185", sizeof(I2C_NAME(client)));
  339. encoder = kzalloc(sizeof(struct saa7185), GFP_KERNEL);
  340. if (encoder == NULL) {
  341. kfree(client);
  342. return -ENOMEM;
  343. }
  344. encoder->norm = VIDEO_MODE_NTSC;
  345. encoder->enable = 1;
  346. i2c_set_clientdata(client, encoder);
  347. i = i2c_attach_client(client);
  348. if (i) {
  349. kfree(client);
  350. kfree(encoder);
  351. return i;
  352. }
  353. i = saa7185_write_block(client, init_common, sizeof(init_common));
  354. if (i >= 0) {
  355. i = saa7185_write_block(client, init_ntsc,
  356. sizeof(init_ntsc));
  357. }
  358. if (i < 0) {
  359. dprintk(1, KERN_ERR "%s_attach: init error %d\n",
  360. I2C_NAME(client), i);
  361. } else {
  362. dprintk(1,
  363. KERN_INFO
  364. "%s_attach: chip version %d at address 0x%x\n",
  365. I2C_NAME(client), saa7185_read(client) >> 5,
  366. client->addr << 1);
  367. }
  368. return 0;
  369. }
  370. static int
  371. saa7185_attach_adapter (struct i2c_adapter *adapter)
  372. {
  373. dprintk(1,
  374. KERN_INFO
  375. "saa7185.c: starting probe for adapter %s (0x%x)\n",
  376. I2C_NAME(adapter), adapter->id);
  377. return i2c_probe(adapter, &addr_data, &saa7185_detect_client);
  378. }
  379. static int
  380. saa7185_detach_client (struct i2c_client *client)
  381. {
  382. struct saa7185 *encoder = i2c_get_clientdata(client);
  383. int err;
  384. err = i2c_detach_client(client);
  385. if (err) {
  386. return err;
  387. }
  388. saa7185_write(client, 0x61, (encoder->reg[0x61]) | 0x40); /* SW: output off is active */
  389. //saa7185_write(client, 0x3a, (encoder->reg[0x3a]) | 0x80); /* SW: color bar */
  390. kfree(encoder);
  391. kfree(client);
  392. return 0;
  393. }
  394. /* ----------------------------------------------------------------------- */
  395. static struct i2c_driver i2c_driver_saa7185 = {
  396. .driver = {
  397. .name = "saa7185", /* name */
  398. },
  399. .id = I2C_DRIVERID_SAA7185B,
  400. .attach_adapter = saa7185_attach_adapter,
  401. .detach_client = saa7185_detach_client,
  402. .command = saa7185_command,
  403. };
  404. static int __init
  405. saa7185_init (void)
  406. {
  407. return i2c_add_driver(&i2c_driver_saa7185);
  408. }
  409. static void __exit
  410. saa7185_exit (void)
  411. {
  412. i2c_del_driver(&i2c_driver_saa7185);
  413. }
  414. module_init(saa7185_init);
  415. module_exit(saa7185_exit);