uda1342.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Copyright (C) 2005-2006 Micronas USA Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License (Version 2) as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software Foundation,
  15. * Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/init.h>
  19. #include <linux/i2c.h>
  20. #include <linux/videodev2.h>
  21. #include <media/v4l2-device.h>
  22. #include <media/uda1342.h>
  23. #include <linux/slab.h>
  24. static int write_reg(struct i2c_client *client, int reg, int value)
  25. {
  26. /* UDA1342 wants MSB first, but SMBus sends LSB first */
  27. i2c_smbus_write_word_data(client, reg, swab16(value));
  28. return 0;
  29. }
  30. static int uda1342_s_routing(struct v4l2_subdev *sd,
  31. u32 input, u32 output, u32 config)
  32. {
  33. struct i2c_client *client = v4l2_get_subdevdata(sd);
  34. switch (input) {
  35. case UDA1342_IN1:
  36. write_reg(client, 0x00, 0x1241); /* select input 1 */
  37. break;
  38. case UDA1342_IN2:
  39. write_reg(client, 0x00, 0x1441); /* select input 2 */
  40. break;
  41. default:
  42. v4l2_err(sd, "input %d not supported\n", input);
  43. break;
  44. }
  45. return 0;
  46. }
  47. static const struct v4l2_subdev_audio_ops uda1342_audio_ops = {
  48. .s_routing = uda1342_s_routing,
  49. };
  50. static const struct v4l2_subdev_ops uda1342_ops = {
  51. .audio = &uda1342_audio_ops,
  52. };
  53. static int uda1342_probe(struct i2c_client *client,
  54. const struct i2c_device_id *id)
  55. {
  56. struct i2c_adapter *adapter = client->adapter;
  57. struct v4l2_subdev *sd;
  58. if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA))
  59. return -ENODEV;
  60. dev_dbg(&client->dev, "initializing UDA1342 at address %d on %s\n",
  61. client->addr, adapter->name);
  62. sd = devm_kzalloc(&client->dev, sizeof(*sd), GFP_KERNEL);
  63. if (sd == NULL)
  64. return -ENOMEM;
  65. v4l2_i2c_subdev_init(sd, client, &uda1342_ops);
  66. write_reg(client, 0x00, 0x8000); /* reset registers */
  67. write_reg(client, 0x00, 0x1241); /* select input 1 */
  68. v4l_info(client, "chip found @ 0x%02x (%s)\n",
  69. client->addr << 1, client->adapter->name);
  70. return 0;
  71. }
  72. static int uda1342_remove(struct i2c_client *client)
  73. {
  74. struct v4l2_subdev *sd = i2c_get_clientdata(client);
  75. v4l2_device_unregister_subdev(sd);
  76. return 0;
  77. }
  78. static const struct i2c_device_id uda1342_id[] = {
  79. { "uda1342", 0 },
  80. { }
  81. };
  82. MODULE_DEVICE_TABLE(i2c, uda1342_id);
  83. static struct i2c_driver uda1342_driver = {
  84. .driver = {
  85. .name = "uda1342",
  86. },
  87. .probe = uda1342_probe,
  88. .remove = uda1342_remove,
  89. .id_table = uda1342_id,
  90. };
  91. module_i2c_driver(uda1342_driver);
  92. MODULE_LICENSE("GPL v2");