cs5345.c 6.6 KB

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