cs5345.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. * cs5345 Cirrus Logic 24-bit, 192 kHz Stereo Audio ADC
  3. * Copyright (C) 2007 Hans Verkuil
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #include <linux/module.h>
  20. #include <linux/kernel.h>
  21. #include <linux/i2c.h>
  22. #include <linux/videodev2.h>
  23. #include <media/v4l2-device.h>
  24. #include <media/v4l2-chip-ident.h>
  25. #include <media/v4l2-i2c-drv.h>
  26. MODULE_DESCRIPTION("i2c device driver for cs5345 Audio ADC");
  27. MODULE_AUTHOR("Hans Verkuil");
  28. MODULE_LICENSE("GPL");
  29. static int debug;
  30. module_param(debug, bool, 0644);
  31. MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On");
  32. /* ----------------------------------------------------------------------- */
  33. static inline int cs5345_write(struct v4l2_subdev *sd, u8 reg, u8 value)
  34. {
  35. struct i2c_client *client = v4l2_get_subdevdata(sd);
  36. return i2c_smbus_write_byte_data(client, reg, value);
  37. }
  38. static inline int cs5345_read(struct v4l2_subdev *sd, u8 reg)
  39. {
  40. struct i2c_client *client = v4l2_get_subdevdata(sd);
  41. return i2c_smbus_read_byte_data(client, reg);
  42. }
  43. static int cs5345_s_routing(struct v4l2_subdev *sd, const struct v4l2_routing *route)
  44. {
  45. if ((route->input & 0xf) > 6) {
  46. v4l2_err(sd, "Invalid input %d.\n", route->input);
  47. return -EINVAL;
  48. }
  49. cs5345_write(sd, 0x09, route->input & 0xf);
  50. cs5345_write(sd, 0x05, route->input & 0xf0);
  51. return 0;
  52. }
  53. static int cs5345_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
  54. {
  55. if (ctrl->id == V4L2_CID_AUDIO_MUTE) {
  56. ctrl->value = (cs5345_read(sd, 0x04) & 0x08) != 0;
  57. return 0;
  58. }
  59. if (ctrl->id != V4L2_CID_AUDIO_VOLUME)
  60. return -EINVAL;
  61. ctrl->value = cs5345_read(sd, 0x07) & 0x3f;
  62. if (ctrl->value >= 32)
  63. ctrl->value = ctrl->value - 64;
  64. return 0;
  65. }
  66. static int cs5345_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
  67. {
  68. if (ctrl->id == V4L2_CID_AUDIO_MUTE) {
  69. cs5345_write(sd, 0x04, ctrl->value ? 0x80 : 0);
  70. return 0;
  71. }
  72. if (ctrl->id != V4L2_CID_AUDIO_VOLUME)
  73. return -EINVAL;
  74. if (ctrl->value > 24 || ctrl->value < -24)
  75. return -EINVAL;
  76. cs5345_write(sd, 0x07, ((u8)ctrl->value) & 0x3f);
  77. cs5345_write(sd, 0x08, ((u8)ctrl->value) & 0x3f);
  78. return 0;
  79. }
  80. #ifdef CONFIG_VIDEO_ADV_DEBUG
  81. static int cs5345_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
  82. {
  83. struct i2c_client *client = v4l2_get_subdevdata(sd);
  84. if (!v4l2_chip_match_i2c_client(client, &reg->match))
  85. return -EINVAL;
  86. if (!capable(CAP_SYS_ADMIN))
  87. return -EPERM;
  88. reg->size = 1;
  89. reg->val = cs5345_read(sd, reg->reg & 0x1f);
  90. return 0;
  91. }
  92. static int cs5345_s_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
  93. {
  94. struct i2c_client *client = v4l2_get_subdevdata(sd);
  95. if (!v4l2_chip_match_i2c_client(client, &reg->match))
  96. return -EINVAL;
  97. if (!capable(CAP_SYS_ADMIN))
  98. return -EPERM;
  99. cs5345_write(sd, reg->reg & 0x1f, reg->val & 0xff);
  100. return 0;
  101. }
  102. #endif
  103. static int cs5345_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip)
  104. {
  105. struct i2c_client *client = v4l2_get_subdevdata(sd);
  106. return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_CS5345, 0);
  107. }
  108. static int cs5345_log_status(struct v4l2_subdev *sd)
  109. {
  110. u8 v = cs5345_read(sd, 0x09) & 7;
  111. u8 m = cs5345_read(sd, 0x04);
  112. int vol = cs5345_read(sd, 0x08) & 0x3f;
  113. v4l2_info(sd, "Input: %d%s\n", v,
  114. (m & 0x80) ? " (muted)" : "");
  115. if (vol >= 32)
  116. vol = vol - 64;
  117. v4l2_info(sd, "Volume: %d dB\n", vol);
  118. return 0;
  119. }
  120. static int cs5345_command(struct i2c_client *client, unsigned cmd, void *arg)
  121. {
  122. return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg);
  123. }
  124. /* ----------------------------------------------------------------------- */
  125. static const struct v4l2_subdev_core_ops cs5345_core_ops = {
  126. .log_status = cs5345_log_status,
  127. .g_chip_ident = cs5345_g_chip_ident,
  128. .g_ctrl = cs5345_g_ctrl,
  129. .s_ctrl = cs5345_s_ctrl,
  130. #ifdef CONFIG_VIDEO_ADV_DEBUG
  131. .g_register = cs5345_g_register,
  132. .s_register = cs5345_s_register,
  133. #endif
  134. };
  135. static const struct v4l2_subdev_audio_ops cs5345_audio_ops = {
  136. .s_routing = cs5345_s_routing,
  137. };
  138. static const struct v4l2_subdev_ops cs5345_ops = {
  139. .core = &cs5345_core_ops,
  140. .audio = &cs5345_audio_ops,
  141. };
  142. /* ----------------------------------------------------------------------- */
  143. static int cs5345_probe(struct i2c_client *client,
  144. const struct i2c_device_id *id)
  145. {
  146. struct v4l2_subdev *sd;
  147. /* Check if the adapter supports the needed features */
  148. if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  149. return -EIO;
  150. v4l_info(client, "chip found @ 0x%x (%s)\n",
  151. client->addr << 1, client->adapter->name);
  152. sd = kzalloc(sizeof(struct v4l2_subdev), GFP_KERNEL);
  153. if (sd == NULL)
  154. return -ENOMEM;
  155. v4l2_i2c_subdev_init(sd, client, &cs5345_ops);
  156. cs5345_write(sd, 0x02, 0x00);
  157. cs5345_write(sd, 0x04, 0x01);
  158. cs5345_write(sd, 0x09, 0x01);
  159. return 0;
  160. }
  161. /* ----------------------------------------------------------------------- */
  162. static int cs5345_remove(struct i2c_client *client)
  163. {
  164. struct v4l2_subdev *sd = i2c_get_clientdata(client);
  165. v4l2_device_unregister_subdev(sd);
  166. kfree(sd);
  167. return 0;
  168. }
  169. /* ----------------------------------------------------------------------- */
  170. static const struct i2c_device_id cs5345_id[] = {
  171. { "cs5345", 0 },
  172. { }
  173. };
  174. MODULE_DEVICE_TABLE(i2c, cs5345_id);
  175. static struct v4l2_i2c_driver_data v4l2_i2c_data = {
  176. .name = "cs5345",
  177. .driverid = I2C_DRIVERID_CS5345,
  178. .command = cs5345_command,
  179. .probe = cs5345_probe,
  180. .remove = cs5345_remove,
  181. .id_table = cs5345_id,
  182. };