ths7303.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * ths7303- THS7303 Video Amplifier driver
  3. *
  4. * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation version 2.
  9. *
  10. * This program is distributed .as is. WITHOUT ANY WARRANTY of any
  11. * kind, whether express or implied; without even the implied warranty
  12. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/init.h>
  17. #include <linux/ctype.h>
  18. #include <linux/i2c.h>
  19. #include <linux/device.h>
  20. #include <linux/delay.h>
  21. #include <linux/module.h>
  22. #include <linux/uaccess.h>
  23. #include <linux/videodev2.h>
  24. #include <media/v4l2-device.h>
  25. #include <media/v4l2-subdev.h>
  26. #include <media/v4l2-chip-ident.h>
  27. MODULE_DESCRIPTION("TI THS7303 video amplifier driver");
  28. MODULE_AUTHOR("Chaithrika U S");
  29. MODULE_LICENSE("GPL");
  30. static int debug;
  31. module_param(debug, int, 0644);
  32. MODULE_PARM_DESC(debug, "Debug level 0-1");
  33. /* following function is used to set ths7303 */
  34. static int ths7303_setvalue(struct v4l2_subdev *sd, v4l2_std_id std)
  35. {
  36. int err = 0;
  37. u8 val;
  38. struct i2c_client *client;
  39. client = v4l2_get_subdevdata(sd);
  40. if (std & (V4L2_STD_ALL & ~V4L2_STD_SECAM)) {
  41. val = 0x02;
  42. v4l2_dbg(1, debug, sd, "setting value for SDTV format\n");
  43. } else {
  44. val = 0x00;
  45. v4l2_dbg(1, debug, sd, "disabling all channels\n");
  46. }
  47. err |= i2c_smbus_write_byte_data(client, 0x01, val);
  48. err |= i2c_smbus_write_byte_data(client, 0x02, val);
  49. err |= i2c_smbus_write_byte_data(client, 0x03, val);
  50. if (err)
  51. v4l2_err(sd, "write failed\n");
  52. return err;
  53. }
  54. static int ths7303_s_std_output(struct v4l2_subdev *sd, v4l2_std_id norm)
  55. {
  56. return ths7303_setvalue(sd, norm);
  57. }
  58. static int ths7303_g_chip_ident(struct v4l2_subdev *sd,
  59. struct v4l2_dbg_chip_ident *chip)
  60. {
  61. struct i2c_client *client = v4l2_get_subdevdata(sd);
  62. return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_THS7303, 0);
  63. }
  64. static const struct v4l2_subdev_video_ops ths7303_video_ops = {
  65. .s_std_output = ths7303_s_std_output,
  66. };
  67. static const struct v4l2_subdev_core_ops ths7303_core_ops = {
  68. .g_chip_ident = ths7303_g_chip_ident,
  69. };
  70. static const struct v4l2_subdev_ops ths7303_ops = {
  71. .core = &ths7303_core_ops,
  72. .video = &ths7303_video_ops,
  73. };
  74. static int ths7303_probe(struct i2c_client *client,
  75. const struct i2c_device_id *id)
  76. {
  77. struct v4l2_subdev *sd;
  78. v4l2_std_id std_id = V4L2_STD_NTSC;
  79. if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  80. return -ENODEV;
  81. v4l_info(client, "chip found @ 0x%x (%s)\n",
  82. client->addr << 1, client->adapter->name);
  83. sd = kzalloc(sizeof(struct v4l2_subdev), GFP_KERNEL);
  84. if (sd == NULL)
  85. return -ENOMEM;
  86. v4l2_i2c_subdev_init(sd, client, &ths7303_ops);
  87. return ths7303_setvalue(sd, std_id);
  88. }
  89. static int ths7303_remove(struct i2c_client *client)
  90. {
  91. struct v4l2_subdev *sd = i2c_get_clientdata(client);
  92. v4l2_device_unregister_subdev(sd);
  93. kfree(sd);
  94. return 0;
  95. }
  96. static const struct i2c_device_id ths7303_id[] = {
  97. {"ths7303", 0},
  98. {},
  99. };
  100. MODULE_DEVICE_TABLE(i2c, ths7303_id);
  101. static struct i2c_driver ths7303_driver = {
  102. .driver = {
  103. .owner = THIS_MODULE,
  104. .name = "ths7303",
  105. },
  106. .probe = ths7303_probe,
  107. .remove = ths7303_remove,
  108. .id_table = ths7303_id,
  109. };
  110. static int __init ths7303_init(void)
  111. {
  112. return i2c_add_driver(&ths7303_driver);
  113. }
  114. static void __exit ths7303_exit(void)
  115. {
  116. i2c_del_driver(&ths7303_driver);
  117. }
  118. module_init(ths7303_init);
  119. module_exit(ths7303_exit);