2 * Mirics MSi001 silicon tuner driver
4 * Copyright (C) 2013 Antti Palosaari <crope@iki.fi>
5 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/module.h>
19 #include <linux/gcd.h>
20 #include <media/v4l2-device.h>
21 #include <media/v4l2-ctrls.h>
23 static const struct v4l2_frequency_band bands[] = {
25 .type = V4L2_TUNER_RF,
27 .capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS,
29 .rangehigh = 263000000,
31 .type = V4L2_TUNER_RF,
33 .capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS,
34 .rangelow = 390000000,
35 .rangehigh = 960000000,
40 struct spi_device *spi;
41 struct v4l2_subdev sd;
44 struct v4l2_ctrl_handler hdl;
45 struct v4l2_ctrl *bandwidth_auto;
46 struct v4l2_ctrl *bandwidth;
47 struct v4l2_ctrl *lna_gain;
48 struct v4l2_ctrl *mixer_gain;
49 struct v4l2_ctrl *if_gain;
54 static inline struct msi001_dev *sd_to_msi001_dev(struct v4l2_subdev *sd)
56 return container_of(sd, struct msi001_dev, sd);
59 static int msi001_wreg(struct msi001_dev *dev, u32 data)
61 /* Register format: 4 bits addr + 20 bits value */
62 return spi_write(dev->spi, &data, 3);
65 static int msi001_set_gain(struct msi001_dev *dev, int lna_gain, int mixer_gain,
68 struct spi_device *spi = dev->spi;
72 dev_dbg(&spi->dev, "lna=%d mixer=%d if=%d\n",
73 lna_gain, mixer_gain, if_gain);
76 reg |= (59 - if_gain) << 4;
78 reg |= (1 - mixer_gain) << 12;
79 reg |= (1 - lna_gain) << 13;
82 ret = msi001_wreg(dev, reg);
88 dev_dbg(&spi->dev, "failed %d\n", ret);
92 static int msi001_set_tuner(struct msi001_dev *dev)
94 struct spi_device *spi = dev->spi;
96 unsigned int uitmp, div_n, k, k_thresh, k_frac, div_lo, f_if1;
101 static const struct {
106 { 50000000, 0xe1, 16}, /* AM_MODE2, antenna 2 */
107 {108000000, 0x42, 32}, /* VHF_MODE */
108 {330000000, 0x44, 16}, /* B3_MODE */
109 {960000000, 0x48, 4}, /* B45_MODE */
110 { ~0U, 0x50, 2}, /* BL_MODE */
112 static const struct {
116 { 0, 0x03}, /* Zero IF */
117 { 450000, 0x02}, /* 450 kHz IF */
118 {1620000, 0x01}, /* 1.62 MHz IF */
119 {2048000, 0x00}, /* 2.048 MHz IF */
121 static const struct {
124 } bandwidth_lut[] = {
125 { 200000, 0x00}, /* 200 kHz */
126 { 300000, 0x01}, /* 300 kHz */
127 { 600000, 0x02}, /* 600 kHz */
128 {1536000, 0x03}, /* 1.536 MHz */
129 {5000000, 0x04}, /* 5 MHz */
130 {6000000, 0x05}, /* 6 MHz */
131 {7000000, 0x06}, /* 7 MHz */
132 {8000000, 0x07}, /* 8 MHz */
135 unsigned int f_rf = dev->f_tuner;
139 * 200000, 300000, 600000, 1536000, 5000000, 6000000, 7000000, 8000000
141 unsigned int bandwidth;
144 * intermediate frequency (Hz)
145 * 0, 450000, 1620000, 2048000
147 unsigned int f_if = 0;
148 #define F_REF 24000000
150 #define F_VCO_STEP div_lo
152 dev_dbg(&spi->dev, "f_rf=%d f_if=%d\n", f_rf, f_if);
154 for (i = 0; i < ARRAY_SIZE(band_lut); i++) {
155 if (f_rf <= band_lut[i].rf) {
156 mode = band_lut[i].mode;
157 div_lo = band_lut[i].div_lo;
161 if (i == ARRAY_SIZE(band_lut)) {
166 /* AM_MODE is upconverted */
167 if ((mode >> 0) & 0x1)
172 for (i = 0; i < ARRAY_SIZE(if_freq_lut); i++) {
173 if (f_if == if_freq_lut[i].freq) {
174 filter_mode = if_freq_lut[i].filter_mode;
178 if (i == ARRAY_SIZE(if_freq_lut)) {
184 bandwidth = dev->bandwidth->val;
185 bandwidth = clamp(bandwidth, 200000U, 8000000U);
187 for (i = 0; i < ARRAY_SIZE(bandwidth_lut); i++) {
188 if (bandwidth <= bandwidth_lut[i].freq) {
189 bandwidth = bandwidth_lut[i].val;
193 if (i == ARRAY_SIZE(bandwidth_lut)) {
198 dev->bandwidth->val = bandwidth_lut[i].freq;
200 dev_dbg(&spi->dev, "bandwidth selected=%d\n", bandwidth_lut[i].freq);
203 * Fractional-N synthesizer
205 * +---------------------------------------+
207 * Fref +----+ +-------+ +----+ +------+ +---+
208 * ------> | PD | --> | VCO | ------> | /4 | --> | /N.F | <-- | K |
209 * +----+ +-------+ +----+ +------+ +---+
218 /* Calculate PLL integer and fractional control word. */
219 f_vco = (u64) (f_rf + f_if + f_if1) * div_lo;
220 div_n = div_u64_rem(f_vco, DIV_PRE_N * F_REF, &k);
221 k_thresh = (DIV_PRE_N * F_REF) / F_VCO_STEP;
222 k_frac = div_u64((u64) k * k_thresh, (DIV_PRE_N * F_REF));
224 /* Find out greatest common divisor and divide to smaller. */
225 uitmp = gcd(k_thresh, k_frac);
229 /* Force divide to reg max. Resolution will be reduced. */
230 uitmp = DIV_ROUND_UP(k_thresh, 4095);
231 k_thresh = DIV_ROUND_CLOSEST(k_thresh, uitmp);
232 k_frac = DIV_ROUND_CLOSEST(k_frac, uitmp);
234 /* Calculate real RF set. */
235 uitmp = (unsigned int) F_REF * DIV_PRE_N * div_n;
236 uitmp += (unsigned int) F_REF * DIV_PRE_N * k_frac / k_thresh;
240 "f_rf=%u:%u f_vco=%llu div_n=%u k_thresh=%u k_frac=%u div_lo=%u\n",
241 f_rf, uitmp, f_vco, div_n, k_thresh, k_frac, div_lo);
243 ret = msi001_wreg(dev, 0x00000e);
247 ret = msi001_wreg(dev, 0x000003);
253 reg |= filter_mode << 12;
254 reg |= bandwidth << 14;
257 ret = msi001_wreg(dev, reg);
262 reg |= k_thresh << 4;
265 ret = msi001_wreg(dev, reg);
272 ret = msi001_wreg(dev, reg);
276 ret = msi001_set_gain(dev, dev->lna_gain->cur.val,
277 dev->mixer_gain->cur.val, dev->if_gain->cur.val);
284 ret = msi001_wreg(dev, reg);
290 dev_dbg(&spi->dev, "failed %d\n", ret);
294 static int msi001_s_power(struct v4l2_subdev *sd, int on)
296 struct msi001_dev *dev = sd_to_msi001_dev(sd);
297 struct spi_device *spi = dev->spi;
300 dev_dbg(&spi->dev, "on=%d\n", on);
305 ret = msi001_wreg(dev, 0x000000);
310 static const struct v4l2_subdev_core_ops msi001_core_ops = {
311 .s_power = msi001_s_power,
314 static int msi001_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *v)
316 struct msi001_dev *dev = sd_to_msi001_dev(sd);
317 struct spi_device *spi = dev->spi;
319 dev_dbg(&spi->dev, "index=%d\n", v->index);
321 strlcpy(v->name, "Mirics MSi001", sizeof(v->name));
322 v->type = V4L2_TUNER_RF;
323 v->capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS;
324 v->rangelow = 49000000;
325 v->rangehigh = 960000000;
330 static int msi001_s_tuner(struct v4l2_subdev *sd, const struct v4l2_tuner *v)
332 struct msi001_dev *dev = sd_to_msi001_dev(sd);
333 struct spi_device *spi = dev->spi;
335 dev_dbg(&spi->dev, "index=%d\n", v->index);
339 static int msi001_g_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *f)
341 struct msi001_dev *dev = sd_to_msi001_dev(sd);
342 struct spi_device *spi = dev->spi;
344 dev_dbg(&spi->dev, "tuner=%d\n", f->tuner);
345 f->frequency = dev->f_tuner;
349 static int msi001_s_frequency(struct v4l2_subdev *sd,
350 const struct v4l2_frequency *f)
352 struct msi001_dev *dev = sd_to_msi001_dev(sd);
353 struct spi_device *spi = dev->spi;
356 dev_dbg(&spi->dev, "tuner=%d type=%d frequency=%u\n",
357 f->tuner, f->type, f->frequency);
359 if (f->frequency < ((bands[0].rangehigh + bands[1].rangelow) / 2))
363 dev->f_tuner = clamp_t(unsigned int, f->frequency,
364 bands[band].rangelow, bands[band].rangehigh);
366 return msi001_set_tuner(dev);
369 static int msi001_enum_freq_bands(struct v4l2_subdev *sd,
370 struct v4l2_frequency_band *band)
372 struct msi001_dev *dev = sd_to_msi001_dev(sd);
373 struct spi_device *spi = dev->spi;
375 dev_dbg(&spi->dev, "tuner=%d type=%d index=%d\n",
376 band->tuner, band->type, band->index);
378 if (band->index >= ARRAY_SIZE(bands))
381 band->capability = bands[band->index].capability;
382 band->rangelow = bands[band->index].rangelow;
383 band->rangehigh = bands[band->index].rangehigh;
388 static const struct v4l2_subdev_tuner_ops msi001_tuner_ops = {
389 .g_tuner = msi001_g_tuner,
390 .s_tuner = msi001_s_tuner,
391 .g_frequency = msi001_g_frequency,
392 .s_frequency = msi001_s_frequency,
393 .enum_freq_bands = msi001_enum_freq_bands,
396 static const struct v4l2_subdev_ops msi001_ops = {
397 .core = &msi001_core_ops,
398 .tuner = &msi001_tuner_ops,
401 static int msi001_s_ctrl(struct v4l2_ctrl *ctrl)
403 struct msi001_dev *dev = container_of(ctrl->handler, struct msi001_dev, hdl);
404 struct spi_device *spi = dev->spi;
408 dev_dbg(&spi->dev, "id=%d name=%s val=%d min=%lld max=%lld step=%lld\n",
409 ctrl->id, ctrl->name, ctrl->val, ctrl->minimum, ctrl->maximum,
413 case V4L2_CID_RF_TUNER_BANDWIDTH_AUTO:
414 case V4L2_CID_RF_TUNER_BANDWIDTH:
415 ret = msi001_set_tuner(dev);
417 case V4L2_CID_RF_TUNER_LNA_GAIN:
418 ret = msi001_set_gain(dev, dev->lna_gain->val,
419 dev->mixer_gain->cur.val,
420 dev->if_gain->cur.val);
422 case V4L2_CID_RF_TUNER_MIXER_GAIN:
423 ret = msi001_set_gain(dev, dev->lna_gain->cur.val,
424 dev->mixer_gain->val,
425 dev->if_gain->cur.val);
427 case V4L2_CID_RF_TUNER_IF_GAIN:
428 ret = msi001_set_gain(dev, dev->lna_gain->cur.val,
429 dev->mixer_gain->cur.val,
433 dev_dbg(&spi->dev, "unknown control %d\n", ctrl->id);
440 static const struct v4l2_ctrl_ops msi001_ctrl_ops = {
441 .s_ctrl = msi001_s_ctrl,
444 static int msi001_probe(struct spi_device *spi)
446 struct msi001_dev *dev;
449 dev_dbg(&spi->dev, "\n");
451 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
458 dev->f_tuner = bands[0].rangelow;
459 v4l2_spi_subdev_init(&dev->sd, spi, &msi001_ops);
461 /* Register controls */
462 v4l2_ctrl_handler_init(&dev->hdl, 5);
463 dev->bandwidth_auto = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops,
464 V4L2_CID_RF_TUNER_BANDWIDTH_AUTO, 0, 1, 1, 1);
465 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops,
466 V4L2_CID_RF_TUNER_BANDWIDTH, 200000, 8000000, 1, 200000);
467 v4l2_ctrl_auto_cluster(2, &dev->bandwidth_auto, 0, false);
468 dev->lna_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops,
469 V4L2_CID_RF_TUNER_LNA_GAIN, 0, 1, 1, 1);
470 dev->mixer_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops,
471 V4L2_CID_RF_TUNER_MIXER_GAIN, 0, 1, 1, 1);
472 dev->if_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops,
473 V4L2_CID_RF_TUNER_IF_GAIN, 0, 59, 1, 0);
474 if (dev->hdl.error) {
475 ret = dev->hdl.error;
476 dev_err(&spi->dev, "Could not initialize controls\n");
477 /* control init failed, free handler */
478 goto err_ctrl_handler_free;
481 dev->sd.ctrl_handler = &dev->hdl;
483 err_ctrl_handler_free:
484 v4l2_ctrl_handler_free(&dev->hdl);
490 static int msi001_remove(struct spi_device *spi)
492 struct v4l2_subdev *sd = spi_get_drvdata(spi);
493 struct msi001_dev *dev = sd_to_msi001_dev(sd);
495 dev_dbg(&spi->dev, "\n");
498 * Registered by v4l2_spi_new_subdev() from master driver, but we must
499 * unregister it from here. Weird.
501 v4l2_device_unregister_subdev(&dev->sd);
502 v4l2_ctrl_handler_free(&dev->hdl);
507 static const struct spi_device_id msi001_id_table[] = {
511 MODULE_DEVICE_TABLE(spi, msi001_id_table);
513 static struct spi_driver msi001_driver = {
516 .suppress_bind_attrs = true,
518 .probe = msi001_probe,
519 .remove = msi001_remove,
520 .id_table = msi001_id_table,
522 module_spi_driver(msi001_driver);
524 MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
525 MODULE_DESCRIPTION("Mirics MSi001");
526 MODULE_LICENSE("GPL");