cs5345.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/i2c.h>
  18. #include <linux/videodev2.h>
  19. #include <linux/slab.h>
  20. #include <media/v4l2-device.h>
  21. #include <media/v4l2-ctrls.h>
  22. MODULE_DESCRIPTION("i2c device driver for cs5345 Audio ADC");
  23. MODULE_AUTHOR("Hans Verkuil");
  24. MODULE_LICENSE("GPL");
  25. static bool debug;
  26. module_param(debug, bool, 0644);
  27. MODULE_PARM_DESC(debug, "Debugging messages, 0=Off (default), 1=On");
  28. struct cs5345_state {
  29. struct v4l2_subdev sd;
  30. struct v4l2_ctrl_handler hdl;
  31. };
  32. static inline struct cs5345_state *to_state(struct v4l2_subdev *sd)
  33. {
  34. return container_of(sd, struct cs5345_state, sd);
  35. }
  36. static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
  37. {
  38. return &container_of(ctrl->handler, struct cs5345_state, hdl)->sd;
  39. }
  40. /* ----------------------------------------------------------------------- */
  41. static inline int cs5345_write(struct v4l2_subdev *sd, u8 reg, u8 value)
  42. {
  43. struct i2c_client *client = v4l2_get_subdevdata(sd);
  44. return i2c_smbus_write_byte_data(client, reg, value);
  45. }
  46. static inline int cs5345_read(struct v4l2_subdev *sd, u8 reg)
  47. {
  48. struct i2c_client *client = v4l2_get_subdevdata(sd);
  49. return i2c_smbus_read_byte_data(client, reg);
  50. }
  51. static int cs5345_s_routing(struct v4l2_subdev *sd,
  52. u32 input, u32 output, u32 config)
  53. {
  54. if ((input & 0xf) > 6) {
  55. v4l2_err(sd, "Invalid input %d.\n", input);
  56. return -EINVAL;
  57. }
  58. cs5345_write(sd, 0x09, input & 0xf);
  59. cs5345_write(sd, 0x05, input & 0xf0);
  60. return 0;
  61. }
  62. static int cs5345_s_ctrl(struct v4l2_ctrl *ctrl)
  63. {
  64. struct v4l2_subdev *sd = to_sd(ctrl);
  65. switch (ctrl->id) {
  66. case V4L2_CID_AUDIO_MUTE:
  67. cs5345_write(sd, 0x04, ctrl->val ? 0x80 : 0);
  68. return 0;
  69. case V4L2_CID_AUDIO_VOLUME:
  70. cs5345_write(sd, 0x07, ((u8)ctrl->val) & 0x3f);
  71. cs5345_write(sd, 0x08, ((u8)ctrl->val) & 0x3f);
  72. return 0;
  73. }
  74. return -EINVAL;
  75. }
  76. #ifdef CONFIG_VIDEO_ADV_DEBUG
  77. static int cs5345_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
  78. {
  79. reg->size = 1;
  80. reg->val = cs5345_read(sd, reg->reg & 0x1f);
  81. return 0;
  82. }
  83. static int cs5345_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
  84. {
  85. cs5345_write(sd, reg->reg & 0x1f, reg->val & 0xff);
  86. return 0;
  87. }
  88. #endif
  89. static int cs5345_log_status(struct v4l2_subdev *sd)
  90. {
  91. u8 v = cs5345_read(sd, 0x09) & 7;
  92. u8 m = cs5345_read(sd, 0x04);
  93. int vol = cs5345_read(sd, 0x08) & 0x3f;
  94. v4l2_info(sd, "Input: %d%s\n", v,
  95. (m & 0x80) ? " (muted)" : "");
  96. if (vol >= 32)
  97. vol = vol - 64;
  98. v4l2_info(sd, "Volume: %d dB\n", vol);
  99. return 0;
  100. }
  101. /* ----------------------------------------------------------------------- */
  102. static const struct v4l2_ctrl_ops cs5345_ctrl_ops = {
  103. .s_ctrl = cs5345_s_ctrl,
  104. };
  105. static const struct v4l2_subdev_core_ops cs5345_core_ops = {
  106. .log_status = cs5345_log_status,
  107. #ifdef CONFIG_VIDEO_ADV_DEBUG
  108. .g_register = cs5345_g_register,
  109. .s_register = cs5345_s_register,
  110. #endif
  111. };
  112. static const struct v4l2_subdev_audio_ops cs5345_audio_ops = {
  113. .s_routing = cs5345_s_routing,
  114. };
  115. static const struct v4l2_subdev_ops cs5345_ops = {
  116. .core = &cs5345_core_ops,
  117. .audio = &cs5345_audio_ops,
  118. };
  119. /* ----------------------------------------------------------------------- */
  120. static int cs5345_probe(struct i2c_client *client,
  121. const struct i2c_device_id *id)
  122. {
  123. struct cs5345_state *state;
  124. struct v4l2_subdev *sd;
  125. /* Check if the adapter supports the needed features */
  126. if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  127. return -EIO;
  128. v4l_info(client, "chip found @ 0x%x (%s)\n",
  129. client->addr << 1, client->adapter->name);
  130. state = devm_kzalloc(&client->dev, sizeof(*state), GFP_KERNEL);
  131. if (state == NULL)
  132. return -ENOMEM;
  133. sd = &state->sd;
  134. v4l2_i2c_subdev_init(sd, client, &cs5345_ops);
  135. v4l2_ctrl_handler_init(&state->hdl, 2);
  136. v4l2_ctrl_new_std(&state->hdl, &cs5345_ctrl_ops,
  137. V4L2_CID_AUDIO_MUTE, 0, 1, 1, 0);
  138. v4l2_ctrl_new_std(&state->hdl, &cs5345_ctrl_ops,
  139. V4L2_CID_AUDIO_VOLUME, -24, 24, 1, 0);
  140. sd->ctrl_handler = &state->hdl;
  141. if (state->hdl.error) {
  142. int err = state->hdl.error;
  143. v4l2_ctrl_handler_free(&state->hdl);
  144. return err;
  145. }
  146. /* set volume/mute */
  147. v4l2_ctrl_handler_setup(&state->hdl);
  148. cs5345_write(sd, 0x02, 0x00);
  149. cs5345_write(sd, 0x04, 0x01);
  150. cs5345_write(sd, 0x09, 0x01);
  151. return 0;
  152. }
  153. /* ----------------------------------------------------------------------- */
  154. static int cs5345_remove(struct i2c_client *client)
  155. {
  156. struct v4l2_subdev *sd = i2c_get_clientdata(client);
  157. struct cs5345_state *state = to_state(sd);
  158. v4l2_device_unregister_subdev(sd);
  159. v4l2_ctrl_handler_free(&state->hdl);
  160. return 0;
  161. }
  162. /* ----------------------------------------------------------------------- */
  163. static const struct i2c_device_id cs5345_id[] = {
  164. { "cs5345", 0 },
  165. { }
  166. };
  167. MODULE_DEVICE_TABLE(i2c, cs5345_id);
  168. static struct i2c_driver cs5345_driver = {
  169. .driver = {
  170. .name = "cs5345",
  171. },
  172. .probe = cs5345_probe,
  173. .remove = cs5345_remove,
  174. .id_table = cs5345_id,
  175. };
  176. module_i2c_driver(cs5345_driver);