m5602_ov9650.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. /*
  2. * Driver for the ov9650 sensor
  3. *
  4. * Copyright (C) 2008 Erik Andrén
  5. * Copyright (C) 2007 Ilyes Gouta. Based on the m5603x Linux Driver Project.
  6. * Copyright (C) 2005 m5603x Linux Driver Project <m5602@x3ng.com.br>
  7. *
  8. * Portions of code to USB interface and ALi driver software,
  9. * Copyright (c) 2006 Willem Duinker
  10. * v4l2 interface modeled after the V4L2 driver
  11. * for SN9C10x PC Camera Controllers
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License as
  15. * published by the Free Software Foundation, version 2.
  16. *
  17. */
  18. #include "m5602_ov9650.h"
  19. /* Vertically and horizontally flips the image if matched, needed for machines
  20. where the sensor is mounted upside down */
  21. static
  22. const
  23. struct dmi_system_id ov9650_flip_dmi_table[] = {
  24. {
  25. .ident = "ASUS A6VC",
  26. .matches = {
  27. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
  28. DMI_MATCH(DMI_PRODUCT_NAME, "A6VC")
  29. }
  30. },
  31. {
  32. .ident = "ASUS A6VM",
  33. .matches = {
  34. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
  35. DMI_MATCH(DMI_PRODUCT_NAME, "A6VM")
  36. }
  37. },
  38. {
  39. .ident = "ASUS A6JC",
  40. .matches = {
  41. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
  42. DMI_MATCH(DMI_PRODUCT_NAME, "A6JC")
  43. }
  44. },
  45. {
  46. .ident = "ASUS A6Ja",
  47. .matches = {
  48. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
  49. DMI_MATCH(DMI_PRODUCT_NAME, "A6J")
  50. }
  51. },
  52. {
  53. .ident = "ASUS A6Kt",
  54. .matches = {
  55. DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
  56. DMI_MATCH(DMI_PRODUCT_NAME, "A6Kt")
  57. }
  58. },
  59. { }
  60. };
  61. static void ov9650_dump_registers(struct sd *sd);
  62. int ov9650_read_sensor(struct sd *sd, const u8 address,
  63. u8 *i2c_data, const u8 len)
  64. {
  65. int err, i;
  66. /* The ov9650 registers have a max depth of one byte */
  67. if (len > 1 || !len)
  68. return -EINVAL;
  69. do {
  70. err = m5602_read_bridge(sd, M5602_XB_I2C_STATUS, i2c_data);
  71. } while ((*i2c_data & I2C_BUSY) && !err);
  72. err = m5602_write_bridge(sd, M5602_XB_I2C_DEV_ADDR,
  73. ov9650.i2c_slave_id);
  74. if (err < 0)
  75. goto out;
  76. err = m5602_write_bridge(sd, M5602_XB_I2C_REG_ADDR, address);
  77. if (err < 0)
  78. goto out;
  79. err = m5602_write_bridge(sd, M5602_XB_I2C_CTRL, 0x10 + len);
  80. if (err < 0)
  81. goto out;
  82. err = m5602_write_bridge(sd, M5602_XB_I2C_CTRL, 0x08);
  83. for (i = 0; (i < len) && !err; i++) {
  84. err = m5602_read_bridge(sd, M5602_XB_I2C_DATA, &(i2c_data[i]));
  85. PDEBUG(D_CONF, "Reading sensor register "
  86. "0x%x containing 0x%x ", address, *i2c_data);
  87. }
  88. out:
  89. return (err < 0) ? err : 0;
  90. }
  91. int ov9650_write_sensor(struct sd *sd, const u8 address,
  92. u8 *i2c_data, const u8 len)
  93. {
  94. int err, i;
  95. u8 *p;
  96. struct usb_device *udev = sd->gspca_dev.dev;
  97. __u8 *buf = sd->gspca_dev.usb_buf;
  98. /* The ov9650 only supports one byte writes */
  99. if (len > 1 || !len)
  100. return -EINVAL;
  101. memcpy(buf, sensor_urb_skeleton,
  102. sizeof(sensor_urb_skeleton));
  103. buf[11] = sd->sensor->i2c_slave_id;
  104. buf[15] = address;
  105. /* Special case larger sensor writes */
  106. p = buf + 16;
  107. /* Copy a four byte sequence for each byte to write over the I2C bus */
  108. for (i = 0; i < len; i++) {
  109. memcpy(p, sensor_urb_skeleton + 16, 4);
  110. p[3] = i2c_data[i];
  111. p += 4;
  112. PDEBUG(D_CONF, "Writing sensor register 0x%x with 0x%x",
  113. address, i2c_data[i]);
  114. }
  115. /* Copy the tailer */
  116. memcpy(p, sensor_urb_skeleton + 20, 4);
  117. /* Set the total length */
  118. p[3] = 0x10 + len;
  119. err = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  120. 0x04, 0x40, 0x19,
  121. 0x0000, buf,
  122. 20 + len * 4, M5602_URB_MSG_TIMEOUT);
  123. return (err < 0) ? err : 0;
  124. }
  125. int ov9650_probe(struct sd *sd)
  126. {
  127. u8 prod_id = 0, ver_id = 0, i;
  128. if (force_sensor) {
  129. if (force_sensor == OV9650_SENSOR) {
  130. info("Forcing an %s sensor", ov9650.name);
  131. goto sensor_found;
  132. }
  133. /* If we want to force another sensor,
  134. don't try to probe this one */
  135. return -ENODEV;
  136. }
  137. info("Probing for an ov9650 sensor");
  138. /* Run the pre-init to actually probe the unit */
  139. for (i = 0; i < ARRAY_SIZE(preinit_ov9650); i++) {
  140. u8 data = preinit_ov9650[i][2];
  141. if (preinit_ov9650[i][0] == SENSOR)
  142. m5602_write_sensor(sd,
  143. preinit_ov9650[i][1], &data, 1);
  144. else
  145. m5602_write_bridge(sd, preinit_ov9650[i][1], data);
  146. }
  147. if (ov9650_read_sensor(sd, OV9650_PID, &prod_id, 1))
  148. return -ENODEV;
  149. if (ov9650_read_sensor(sd, OV9650_VER, &ver_id, 1))
  150. return -ENODEV;
  151. if ((prod_id == 0x96) && (ver_id == 0x52)) {
  152. info("Detected an ov9650 sensor");
  153. goto sensor_found;
  154. }
  155. return -ENODEV;
  156. sensor_found:
  157. sd->gspca_dev.cam.cam_mode = ov9650.modes;
  158. sd->gspca_dev.cam.nmodes = ov9650.nmodes;
  159. sd->desc->ctrls = ov9650.ctrls;
  160. sd->desc->nctrls = ov9650.nctrls;
  161. return 0;
  162. }
  163. int ov9650_init(struct sd *sd)
  164. {
  165. int i, err = 0;
  166. u8 data;
  167. if (dump_sensor)
  168. ov9650_dump_registers(sd);
  169. for (i = 0; i < ARRAY_SIZE(init_ov9650) && !err; i++) {
  170. data = init_ov9650[i][2];
  171. if (init_ov9650[i][0] == SENSOR)
  172. err = m5602_write_sensor(sd, init_ov9650[i][1],
  173. &data, 1);
  174. else
  175. err = m5602_write_bridge(sd, init_ov9650[i][1], data);
  176. }
  177. if (dmi_check_system(ov9650_flip_dmi_table) && !err) {
  178. info("vflip quirk active");
  179. data = 0x30;
  180. err = m5602_write_sensor(sd, OV9650_MVFP, &data, 1);
  181. }
  182. return err;
  183. }
  184. int ov9650_power_down(struct sd *sd)
  185. {
  186. int i, err = 0;
  187. for (i = 0; i < ARRAY_SIZE(power_down_ov9650) && !err; i++) {
  188. u8 data = power_down_ov9650[i][2];
  189. if (power_down_ov9650[i][0] == SENSOR)
  190. err = m5602_write_sensor(sd,
  191. power_down_ov9650[i][1], &data, 1);
  192. else
  193. err = m5602_write_bridge(sd, power_down_ov9650[i][1],
  194. data);
  195. }
  196. return err;
  197. }
  198. int ov9650_get_exposure(struct gspca_dev *gspca_dev, __s32 *val)
  199. {
  200. struct sd *sd = (struct sd *) gspca_dev;
  201. u8 i2c_data;
  202. int err;
  203. err = ov9650_read_sensor(sd, OV9650_COM1, &i2c_data, 1);
  204. if (err < 0)
  205. goto out;
  206. *val = i2c_data & 0x03;
  207. err = ov9650_read_sensor(sd, OV9650_AECH, &i2c_data, 1);
  208. if (err < 0)
  209. goto out;
  210. *val |= (i2c_data << 2);
  211. err = ov9650_read_sensor(sd, OV9650_AECHM, &i2c_data, 1);
  212. if (err < 0)
  213. goto out;
  214. *val |= (i2c_data & 0x3f) << 10;
  215. PDEBUG(D_V4L2, "Read exposure %d", *val);
  216. out:
  217. return err;
  218. }
  219. int ov9650_set_exposure(struct gspca_dev *gspca_dev, __s32 val)
  220. {
  221. struct sd *sd = (struct sd *) gspca_dev;
  222. u8 i2c_data;
  223. int err;
  224. PDEBUG(D_V4L2, "Set exposure to %d",
  225. val & 0xffff);
  226. /* The 6 MSBs */
  227. i2c_data = (val >> 10) & 0x3f;
  228. err = m5602_write_sensor(sd, OV9650_AECHM,
  229. &i2c_data, 1);
  230. if (err < 0)
  231. goto out;
  232. /* The 8 middle bits */
  233. i2c_data = (val >> 2) & 0xff;
  234. err = m5602_write_sensor(sd, OV9650_AECH,
  235. &i2c_data, 1);
  236. if (err < 0)
  237. goto out;
  238. /* The 2 LSBs */
  239. i2c_data = val & 0x03;
  240. err = m5602_write_sensor(sd, OV9650_COM1, &i2c_data, 1);
  241. out:
  242. return err;
  243. }
  244. int ov9650_get_gain(struct gspca_dev *gspca_dev, __s32 *val)
  245. {
  246. int err;
  247. u8 i2c_data;
  248. struct sd *sd = (struct sd *) gspca_dev;
  249. ov9650_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
  250. *val = (i2c_data & 0x03) << 8;
  251. err = ov9650_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
  252. *val |= i2c_data;
  253. PDEBUG(D_V4L2, "Read gain %d", *val);
  254. return err;
  255. }
  256. int ov9650_set_gain(struct gspca_dev *gspca_dev, __s32 val)
  257. {
  258. int err;
  259. u8 i2c_data;
  260. struct sd *sd = (struct sd *) gspca_dev;
  261. /* The 2 MSB */
  262. /* Read the OV9650_VREF register first to avoid
  263. corrupting the VREF high and low bits */
  264. ov9650_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
  265. /* Mask away all uninteresting bits */
  266. i2c_data = ((val & 0x0300) >> 2) |
  267. (i2c_data & 0x3F);
  268. err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
  269. /* The 8 LSBs */
  270. i2c_data = val & 0xff;
  271. err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
  272. return err;
  273. }
  274. int ov9650_get_red_balance(struct gspca_dev *gspca_dev, __s32 *val)
  275. {
  276. int err;
  277. u8 i2c_data;
  278. struct sd *sd = (struct sd *) gspca_dev;
  279. err = ov9650_read_sensor(sd, OV9650_RED, &i2c_data, 1);
  280. *val = i2c_data;
  281. PDEBUG(D_V4L2, "Read red gain %d", *val);
  282. return err;
  283. }
  284. int ov9650_set_red_balance(struct gspca_dev *gspca_dev, __s32 val)
  285. {
  286. int err;
  287. u8 i2c_data;
  288. struct sd *sd = (struct sd *) gspca_dev;
  289. PDEBUG(D_V4L2, "Set red gain to %d",
  290. val & 0xff);
  291. i2c_data = val & 0xff;
  292. err = m5602_write_sensor(sd, OV9650_RED, &i2c_data, 1);
  293. return err;
  294. }
  295. int ov9650_get_blue_balance(struct gspca_dev *gspca_dev, __s32 *val)
  296. {
  297. int err;
  298. u8 i2c_data;
  299. struct sd *sd = (struct sd *) gspca_dev;
  300. err = ov9650_read_sensor(sd, OV9650_BLUE, &i2c_data, 1);
  301. *val = i2c_data;
  302. PDEBUG(D_V4L2, "Read blue gain %d", *val);
  303. return err;
  304. }
  305. int ov9650_set_blue_balance(struct gspca_dev *gspca_dev, __s32 val)
  306. {
  307. int err;
  308. u8 i2c_data;
  309. struct sd *sd = (struct sd *) gspca_dev;
  310. PDEBUG(D_V4L2, "Set blue gain to %d",
  311. val & 0xff);
  312. i2c_data = val & 0xff;
  313. err = m5602_write_sensor(sd, OV9650_BLUE, &i2c_data, 1);
  314. return err;
  315. }
  316. int ov9650_get_hflip(struct gspca_dev *gspca_dev, __s32 *val)
  317. {
  318. int err;
  319. u8 i2c_data;
  320. struct sd *sd = (struct sd *) gspca_dev;
  321. err = ov9650_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
  322. if (dmi_check_system(ov9650_flip_dmi_table))
  323. *val = ((i2c_data & OV9650_HFLIP) >> 5) ? 0 : 1;
  324. else
  325. *val = (i2c_data & OV9650_HFLIP) >> 5;
  326. PDEBUG(D_V4L2, "Read horizontal flip %d", *val);
  327. return err;
  328. }
  329. int ov9650_set_hflip(struct gspca_dev *gspca_dev, __s32 val)
  330. {
  331. int err;
  332. u8 i2c_data;
  333. struct sd *sd = (struct sd *) gspca_dev;
  334. PDEBUG(D_V4L2, "Set horizontal flip to %d", val);
  335. err = ov9650_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
  336. if (err < 0)
  337. goto out;
  338. if (dmi_check_system(ov9650_flip_dmi_table))
  339. i2c_data = ((i2c_data & 0xdf) |
  340. (((val ? 0 : 1) & 0x01) << 5));
  341. else
  342. i2c_data = ((i2c_data & 0xdf) |
  343. ((val & 0x01) << 5));
  344. err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
  345. out:
  346. return err;
  347. }
  348. int ov9650_get_vflip(struct gspca_dev *gspca_dev, __s32 *val)
  349. {
  350. int err;
  351. u8 i2c_data;
  352. struct sd *sd = (struct sd *) gspca_dev;
  353. err = ov9650_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
  354. if (dmi_check_system(ov9650_flip_dmi_table))
  355. *val = ((i2c_data & 0x10) >> 4) ? 0 : 1;
  356. else
  357. *val = (i2c_data & 0x10) >> 4;
  358. PDEBUG(D_V4L2, "Read vertical flip %d", *val);
  359. return err;
  360. }
  361. int ov9650_set_vflip(struct gspca_dev *gspca_dev, __s32 val)
  362. {
  363. int err;
  364. u8 i2c_data;
  365. struct sd *sd = (struct sd *) gspca_dev;
  366. PDEBUG(D_V4L2, "Set vertical flip to %d", val);
  367. err = ov9650_read_sensor(sd, OV9650_MVFP, &i2c_data, 1);
  368. if (err < 0)
  369. goto out;
  370. if (dmi_check_system(ov9650_flip_dmi_table))
  371. i2c_data = ((i2c_data & 0xef) |
  372. (((val ? 0 : 1) & 0x01) << 4));
  373. else
  374. i2c_data = ((i2c_data & 0xef) |
  375. ((val & 0x01) << 4));
  376. err = m5602_write_sensor(sd, OV9650_MVFP, &i2c_data, 1);
  377. out:
  378. return err;
  379. }
  380. int ov9650_get_brightness(struct gspca_dev *gspca_dev, __s32 *val)
  381. {
  382. int err;
  383. u8 i2c_data;
  384. struct sd *sd = (struct sd *) gspca_dev;
  385. err = ov9650_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
  386. if (err < 0)
  387. goto out;
  388. *val = (i2c_data & 0x03) << 8;
  389. err = ov9650_read_sensor(sd, OV9650_GAIN, &i2c_data, 1);
  390. *val |= i2c_data;
  391. PDEBUG(D_V4L2, "Read gain %d", *val);
  392. out:
  393. return err;
  394. }
  395. int ov9650_set_brightness(struct gspca_dev *gspca_dev, __s32 val)
  396. {
  397. int err;
  398. u8 i2c_data;
  399. struct sd *sd = (struct sd *) gspca_dev;
  400. PDEBUG(D_V4L2, "Set gain to %d", val & 0x3ff);
  401. /* Read the OV9650_VREF register first to avoid
  402. corrupting the VREF high and low bits */
  403. err = ov9650_read_sensor(sd, OV9650_VREF, &i2c_data, 1);
  404. if (err < 0)
  405. goto out;
  406. /* Mask away all uninteresting bits */
  407. i2c_data = ((val & 0x0300) >> 2) | (i2c_data & 0x3F);
  408. err = m5602_write_sensor(sd, OV9650_VREF, &i2c_data, 1);
  409. if (err < 0)
  410. goto out;
  411. /* The 8 LSBs */
  412. i2c_data = val & 0xff;
  413. err = m5602_write_sensor(sd, OV9650_GAIN, &i2c_data, 1);
  414. out:
  415. return err;
  416. }
  417. int ov9650_get_auto_white_balance(struct gspca_dev *gspca_dev, __s32 *val)
  418. {
  419. int err;
  420. u8 i2c_data;
  421. struct sd *sd = (struct sd *) gspca_dev;
  422. err = ov9650_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
  423. *val = (i2c_data & OV9650_AWB_EN) >> 1;
  424. PDEBUG(D_V4L2, "Read auto white balance %d", *val);
  425. return err;
  426. }
  427. int ov9650_set_auto_white_balance(struct gspca_dev *gspca_dev, __s32 val)
  428. {
  429. int err;
  430. u8 i2c_data;
  431. struct sd *sd = (struct sd *) gspca_dev;
  432. PDEBUG(D_V4L2, "Set auto white balance to %d", val);
  433. err = ov9650_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
  434. if (err < 0)
  435. goto out;
  436. i2c_data = ((i2c_data & 0xfd) | ((val & 0x01) << 1));
  437. err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
  438. out:
  439. return err;
  440. }
  441. int ov9650_get_auto_gain(struct gspca_dev *gspca_dev, __s32 *val)
  442. {
  443. int err;
  444. u8 i2c_data;
  445. struct sd *sd = (struct sd *) gspca_dev;
  446. err = ov9650_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
  447. *val = (i2c_data & OV9650_AGC_EN) >> 2;
  448. PDEBUG(D_V4L2, "Read auto gain control %d", *val);
  449. return err;
  450. }
  451. int ov9650_set_auto_gain(struct gspca_dev *gspca_dev, __s32 val)
  452. {
  453. int err;
  454. u8 i2c_data;
  455. struct sd *sd = (struct sd *) gspca_dev;
  456. PDEBUG(D_V4L2, "Set auto gain control to %d", val);
  457. err = ov9650_read_sensor(sd, OV9650_COM8, &i2c_data, 1);
  458. if (err < 0)
  459. goto out;
  460. i2c_data = ((i2c_data & 0xfb) | ((val & 0x01) << 2));
  461. err = m5602_write_sensor(sd, OV9650_COM8, &i2c_data, 1);
  462. out:
  463. return err;
  464. }
  465. static void ov9650_dump_registers(struct sd *sd)
  466. {
  467. int address;
  468. info("Dumping the ov9650 register state");
  469. for (address = 0; address < 0xa9; address++) {
  470. u8 value;
  471. ov9650_read_sensor(sd, address, &value, 1);
  472. info("register 0x%x contains 0x%x",
  473. address, value);
  474. }
  475. info("ov9650 register state dump complete");
  476. info("Probing for which registers that are read/write");
  477. for (address = 0; address < 0xff; address++) {
  478. u8 old_value, ctrl_value;
  479. u8 test_value[2] = {0xff, 0xff};
  480. ov9650_read_sensor(sd, address, &old_value, 1);
  481. m5602_write_sensor(sd, address, test_value, 1);
  482. ov9650_read_sensor(sd, address, &ctrl_value, 1);
  483. if (ctrl_value == test_value[0])
  484. info("register 0x%x is writeable", address);
  485. else
  486. info("register 0x%x is read only", address);
  487. /* Restore original value */
  488. m5602_write_sensor(sd, address, &old_value, 1);
  489. }
  490. }