123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /*
- * Copyright 2013 Cisco Systems, Inc. and/or its affiliates.
- * All rights reserved.
- *
- * This program is free software; you may redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
- /* kernel includes */
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/usb.h>
- #include <linux/init.h>
- #include <linux/slab.h>
- #include <linux/input.h>
- #include <linux/mutex.h>
- #include <linux/i2c.h>
- /* V4l includes */
- #include <linux/videodev2.h>
- #include <media/v4l2-common.h>
- #include <media/v4l2-device.h>
- #include <media/v4l2-ioctl.h>
- #include <media/v4l2-event.h>
- #include <media/si4713.h>
- #include "si4713.h"
- /* driver and module definitions */
- MODULE_AUTHOR("Dinesh Ram <dinesh.ram@cern.ch>");
- MODULE_DESCRIPTION("Si4713 FM Transmitter USB driver");
- MODULE_LICENSE("GPL v2");
- /* The Device announces itself as Cygnal Integrated Products, Inc. */
- #define USB_SI4713_VENDOR 0x10c4
- #define USB_SI4713_PRODUCT 0x8244
- #define BUFFER_LENGTH 64
- #define USB_TIMEOUT 1000
- #define USB_RESP_TIMEOUT 50000
- /* USB Device ID List */
- static struct usb_device_id usb_si4713_usb_device_table[] = {
- {USB_DEVICE_AND_INTERFACE_INFO(USB_SI4713_VENDOR, USB_SI4713_PRODUCT,
- USB_CLASS_HID, 0, 0) },
- { } /* Terminating entry */
- };
- MODULE_DEVICE_TABLE(usb, usb_si4713_usb_device_table);
- struct si4713_usb_device {
- struct usb_device *usbdev;
- struct usb_interface *intf;
- struct video_device vdev;
- struct v4l2_device v4l2_dev;
- struct v4l2_subdev *v4l2_subdev;
- struct mutex lock;
- struct i2c_adapter i2c_adapter;
- u8 *buffer;
- };
- static inline struct si4713_usb_device *to_si4713_dev(struct v4l2_device *v4l2_dev)
- {
- return container_of(v4l2_dev, struct si4713_usb_device, v4l2_dev);
- }
- static int vidioc_querycap(struct file *file, void *priv,
- struct v4l2_capability *v)
- {
- struct si4713_usb_device *radio = video_drvdata(file);
- strlcpy(v->driver, "radio-usb-si4713", sizeof(v->driver));
- strlcpy(v->card, "Si4713 FM Transmitter", sizeof(v->card));
- usb_make_path(radio->usbdev, v->bus_info, sizeof(v->bus_info));
- v->device_caps = V4L2_CAP_MODULATOR | V4L2_CAP_RDS_OUTPUT;
- v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS;
- return 0;
- }
- static int vidioc_g_modulator(struct file *file, void *priv,
- struct v4l2_modulator *vm)
- {
- struct si4713_usb_device *radio = video_drvdata(file);
- return v4l2_subdev_call(radio->v4l2_subdev, tuner, g_modulator, vm);
- }
- static int vidioc_s_modulator(struct file *file, void *priv,
- const struct v4l2_modulator *vm)
- {
- struct si4713_usb_device *radio = video_drvdata(file);
- return v4l2_subdev_call(radio->v4l2_subdev, tuner, s_modulator, vm);
- }
- static int vidioc_s_frequency(struct file *file, void *priv,
- const struct v4l2_frequency *vf)
- {
- struct si4713_usb_device *radio = video_drvdata(file);
- return v4l2_subdev_call(radio->v4l2_subdev, tuner, s_frequency, vf);
- }
- static int vidioc_g_frequency(struct file *file, void *priv,
- struct v4l2_frequency *vf)
- {
- struct si4713_usb_device *radio = video_drvdata(file);
- return v4l2_subdev_call(radio->v4l2_subdev, tuner, g_frequency, vf);
- }
- static const struct v4l2_ioctl_ops usb_si4713_ioctl_ops = {
- .vidioc_querycap = vidioc_querycap,
- .vidioc_g_modulator = vidioc_g_modulator,
- .vidioc_s_modulator = vidioc_s_modulator,
- .vidioc_g_frequency = vidioc_g_frequency,
- .vidioc_s_frequency = vidioc_s_frequency,
- .vidioc_log_status = v4l2_ctrl_log_status,
- .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
- .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
- };
- /* File system interface */
- static const struct v4l2_file_operations usb_si4713_fops = {
- .owner = THIS_MODULE,
- .open = v4l2_fh_open,
- .release = v4l2_fh_release,
- .poll = v4l2_ctrl_poll,
- .unlocked_ioctl = video_ioctl2,
- };
- static void usb_si4713_video_device_release(struct v4l2_device *v4l2_dev)
- {
- struct si4713_usb_device *radio = to_si4713_dev(v4l2_dev);
- struct i2c_adapter *adapter = &radio->i2c_adapter;
- i2c_del_adapter(adapter);
- v4l2_device_unregister(&radio->v4l2_dev);
- kfree(radio->buffer);
- kfree(radio);
- }
- /*
- * This command sequence emulates the behaviour of the Windows driver.
- * The structure of these commands was determined by sniffing the
- * usb traffic of the device during startup.
- * Most likely, these commands make some queries to the device.
- * Commands are sent to enquire parameters like the bus mode,
- * component revision, boot mode, the device serial number etc.
- *
- * These commands are necessary to be sent in this order during startup.
- * The device fails to powerup if these commands are not sent.
- *
- * The complete list of startup commands is given in the start_seq table below.
- */
- static int si4713_send_startup_command(struct si4713_usb_device *radio)
- {
- unsigned long until_jiffies = jiffies + usecs_to_jiffies(USB_RESP_TIMEOUT) + 1;
- u8 *buffer = radio->buffer;
- int retval;
- /* send the command */
- retval = usb_control_msg(radio->usbdev, usb_sndctrlpipe(radio->usbdev, 0),
- 0x09, 0x21, 0x033f, 0, radio->buffer,
- BUFFER_LENGTH, USB_TIMEOUT);
- if (retval < 0)
- return retval;
- for (;;) {
- /* receive the response */
- retval = usb_control_msg(radio->usbdev, usb_rcvctrlpipe(radio->usbdev, 0),
- 0x01, 0xa1, 0x033f, 0, radio->buffer,
- BUFFER_LENGTH, USB_TIMEOUT);
- if (retval < 0)
- return retval;
- if (!radio->buffer[1]) {
- /* USB traffic sniffing showed that some commands require
- * additional checks. */
- switch (buffer[1]) {
- case 0x32:
- if (radio->buffer[2] == 0)
- return 0;
- break;
- case 0x14:
- case 0x12:
- if (radio->buffer[2] & SI4713_CTS)
- return 0;
- break;
- case 0x06:
- if ((radio->buffer[2] & SI4713_CTS) && radio->buffer[9] == 0x08)
- return 0;
- break;
- default:
- return 0;
- }
- }
- if (time_is_before_jiffies(until_jiffies))
- return -EIO;
- msleep(3);
- }
- return retval;
- }
- struct si4713_start_seq_table {
- int len;
- u8 payload[8];
- };
- /*
- * Some of the startup commands that could be recognized are :
- * (0x03): Get serial number of the board (Response : CB000-00-00)
- * (0x06, 0x03, 0x03, 0x08, 0x01, 0x0f) : Get Component revision
- */
- static const struct si4713_start_seq_table start_seq[] = {
- { 1, { 0x03 } },
- { 2, { 0x32, 0x7f } },
- { 6, { 0x06, 0x03, 0x03, 0x08, 0x01, 0x0f } },
- { 2, { 0x14, 0x02 } },
- { 2, { 0x09, 0x90 } },
- { 3, { 0x08, 0x90, 0xfa } },
- { 2, { 0x36, 0x01 } },
- { 2, { 0x05, 0x03 } },
- { 7, { 0x06, 0x00, 0x06, 0x0e, 0x01, 0x0f, 0x05 } },
- { 1, { 0x12 } },
- /* Commands that are sent after pressing the 'Initialize'
- button in the windows application */
- { 1, { 0x03 } },
- { 1, { 0x01 } },
- { 2, { 0x09, 0x90 } },
- { 3, { 0x08, 0x90, 0xfa } },
- { 1, { 0x34 } },
- { 2, { 0x35, 0x01 } },
- { 2, { 0x36, 0x01 } },
- { 2, { 0x30, 0x09 } },
- { 4, { 0x30, 0x06, 0x00, 0xe2 } },
- { 3, { 0x31, 0x01, 0x30 } },
- { 3, { 0x31, 0x04, 0x09 } },
- { 2, { 0x05, 0x02 } },
- { 6, { 0x06, 0x03, 0x03, 0x08, 0x01, 0x0f } },
- };
- static int si4713_start_seq(struct si4713_usb_device *radio)
- {
- int retval = 0;
- int i;
- radio->buffer[0] = 0x3f;
- for (i = 0; i < ARRAY_SIZE(start_seq); i++) {
- int len = start_seq[i].len;
- const u8 *payload = start_seq[i].payload;
- memcpy(radio->buffer + 1, payload, len);
- memset(radio->buffer + len + 1, 0, BUFFER_LENGTH - 1 - len);
- retval = si4713_send_startup_command(radio);
- }
- return retval;
- }
- static struct i2c_board_info si4713_board_info = {
- I2C_BOARD_INFO("si4713", SI4713_I2C_ADDR_BUSEN_HIGH),
- };
- struct si4713_command_table {
- int command_id;
- u8 payload[8];
- };
- /*
- * Structure of a command :
- * Byte 1 : 0x3f (always)
- * Byte 2 : 0x06 (send a command)
- * Byte 3 : Unknown
- * Byte 4 : Number of arguments + 1 (for the command byte)
- * Byte 5 : Number of response bytes
- */
- static struct si4713_command_table command_table[] = {
- { SI4713_CMD_POWER_UP, { 0x00, SI4713_PWUP_NARGS + 1, SI4713_PWUP_NRESP} },
- { SI4713_CMD_GET_REV, { 0x03, 0x01, SI4713_GETREV_NRESP } },
- { SI4713_CMD_POWER_DOWN, { 0x00, 0x01, SI4713_PWDN_NRESP} },
- { SI4713_CMD_SET_PROPERTY, { 0x00, SI4713_SET_PROP_NARGS + 1, SI4713_SET_PROP_NRESP } },
- { SI4713_CMD_GET_PROPERTY, { 0x00, SI4713_GET_PROP_NARGS + 1, SI4713_GET_PROP_NRESP } },
- { SI4713_CMD_TX_TUNE_FREQ, { 0x03, SI4713_TXFREQ_NARGS + 1, SI4713_TXFREQ_NRESP } },
- { SI4713_CMD_TX_TUNE_POWER, { 0x03, SI4713_TXPWR_NARGS + 1, SI4713_TXPWR_NRESP } },
- { SI4713_CMD_TX_TUNE_MEASURE, { 0x03, SI4713_TXMEA_NARGS + 1, SI4713_TXMEA_NRESP } },
- { SI4713_CMD_TX_TUNE_STATUS, { 0x00, SI4713_TXSTATUS_NARGS + 1, SI4713_TXSTATUS_NRESP } },
- { SI4713_CMD_TX_ASQ_STATUS, { 0x03, SI4713_ASQSTATUS_NARGS + 1, SI4713_ASQSTATUS_NRESP } },
- { SI4713_CMD_GET_INT_STATUS, { 0x03, 0x01, SI4713_GET_STATUS_NRESP } },
- { SI4713_CMD_TX_RDS_BUFF, { 0x03, SI4713_RDSBUFF_NARGS + 1, SI4713_RDSBUFF_NRESP } },
- { SI4713_CMD_TX_RDS_PS, { 0x00, SI4713_RDSPS_NARGS + 1, SI4713_RDSPS_NRESP } },
- };
- static int send_command(struct si4713_usb_device *radio, u8 *payload, char *data, int len)
- {
- int retval;
- radio->buffer[0] = 0x3f;
- radio->buffer[1] = 0x06;
- memcpy(radio->buffer + 2, payload, 3);
- memcpy(radio->buffer + 5, data, len);
- memset(radio->buffer + 5 + len, 0, BUFFER_LENGTH - 5 - len);
- /* send the command */
- retval = usb_control_msg(radio->usbdev, usb_sndctrlpipe(radio->usbdev, 0),
- 0x09, 0x21, 0x033f, 0, radio->buffer,
- BUFFER_LENGTH, USB_TIMEOUT);
- return retval < 0 ? retval : 0;
- }
- static int si4713_i2c_read(struct si4713_usb_device *radio, char *data, int len)
- {
- unsigned long until_jiffies = jiffies + usecs_to_jiffies(USB_RESP_TIMEOUT) + 1;
- int retval;
- /* receive the response */
- for (;;) {
- retval = usb_control_msg(radio->usbdev,
- usb_rcvctrlpipe(radio->usbdev, 0),
- 0x01, 0xa1, 0x033f, 0, radio->buffer,
- BUFFER_LENGTH, USB_TIMEOUT);
- if (retval < 0)
- return retval;
- /*
- * Check that we get a valid reply back (buffer[1] == 0) and
- * that CTS is set before returning, otherwise we wait and try
- * again. The i2c driver also does the CTS check, but the timeouts
- * used there are much too small for this USB driver, so we wait
- * for it here.
- */
- if (radio->buffer[1] == 0 && (radio->buffer[2] & SI4713_CTS)) {
- memcpy(data, radio->buffer + 2, len);
- return 0;
- }
- if (time_is_before_jiffies(until_jiffies)) {
- /* Zero the status value, ensuring CTS isn't set */
- data[0] = 0;
- return 0;
- }
- msleep(3);
- }
- }
- static int si4713_i2c_write(struct si4713_usb_device *radio, char *data, int len)
- {
- int retval = -EINVAL;
- int i;
- if (len > BUFFER_LENGTH - 5)
- return -EINVAL;
- for (i = 0; i < ARRAY_SIZE(command_table); i++) {
- if (data[0] == command_table[i].command_id)
- retval = send_command(radio, command_table[i].payload,
- data, len);
- }
- return retval < 0 ? retval : 0;
- }
- static int si4713_transfer(struct i2c_adapter *i2c_adapter,
- struct i2c_msg *msgs, int num)
- {
- struct si4713_usb_device *radio = i2c_get_adapdata(i2c_adapter);
- int retval = -EINVAL;
- int i;
- if (num <= 0)
- return 0;
- for (i = 0; i < num; i++) {
- if (msgs[i].flags & I2C_M_RD)
- retval = si4713_i2c_read(radio, msgs[i].buf, msgs[i].len);
- else
- retval = si4713_i2c_write(radio, msgs[i].buf, msgs[i].len);
- if (retval)
- break;
- }
- return retval ? retval : num;
- }
- static u32 si4713_functionality(struct i2c_adapter *adapter)
- {
- return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
- }
- static struct i2c_algorithm si4713_algo = {
- .master_xfer = si4713_transfer,
- .functionality = si4713_functionality,
- };
- /* This name value shows up in the sysfs filename associated
- with this I2C adapter */
- static struct i2c_adapter si4713_i2c_adapter_template = {
- .name = "si4713-i2c",
- .owner = THIS_MODULE,
- .algo = &si4713_algo,
- };
- static int si4713_register_i2c_adapter(struct si4713_usb_device *radio)
- {
- radio->i2c_adapter = si4713_i2c_adapter_template;
- /* set up sysfs linkage to our parent device */
- radio->i2c_adapter.dev.parent = &radio->usbdev->dev;
- i2c_set_adapdata(&radio->i2c_adapter, radio);
- return i2c_add_adapter(&radio->i2c_adapter);
- }
- /* check if the device is present and register with v4l and usb if it is */
- static int usb_si4713_probe(struct usb_interface *intf,
- const struct usb_device_id *id)
- {
- struct si4713_usb_device *radio;
- struct i2c_adapter *adapter;
- struct v4l2_subdev *sd;
- int retval = -ENOMEM;
- dev_info(&intf->dev, "Si4713 development board discovered: (%04X:%04X)\n",
- id->idVendor, id->idProduct);
- /* Initialize local device structure */
- radio = kzalloc(sizeof(struct si4713_usb_device), GFP_KERNEL);
- if (radio)
- radio->buffer = kmalloc(BUFFER_LENGTH, GFP_KERNEL);
- if (!radio || !radio->buffer) {
- dev_err(&intf->dev, "kmalloc for si4713_usb_device failed\n");
- kfree(radio);
- return -ENOMEM;
- }
- mutex_init(&radio->lock);
- radio->usbdev = interface_to_usbdev(intf);
- radio->intf = intf;
- usb_set_intfdata(intf, &radio->v4l2_dev);
- retval = si4713_start_seq(radio);
- if (retval < 0)
- goto err_v4l2;
- retval = v4l2_device_register(&intf->dev, &radio->v4l2_dev);
- if (retval < 0) {
- dev_err(&intf->dev, "couldn't register v4l2_device\n");
- goto err_v4l2;
- }
- retval = si4713_register_i2c_adapter(radio);
- if (retval < 0) {
- dev_err(&intf->dev, "could not register i2c device\n");
- goto err_i2cdev;
- }
- adapter = &radio->i2c_adapter;
- sd = v4l2_i2c_new_subdev_board(&radio->v4l2_dev, adapter,
- &si4713_board_info, NULL);
- radio->v4l2_subdev = sd;
- if (!sd) {
- dev_err(&intf->dev, "cannot get v4l2 subdevice\n");
- retval = -ENODEV;
- goto del_adapter;
- }
- radio->vdev.ctrl_handler = sd->ctrl_handler;
- radio->v4l2_dev.release = usb_si4713_video_device_release;
- strlcpy(radio->vdev.name, radio->v4l2_dev.name,
- sizeof(radio->vdev.name));
- radio->vdev.v4l2_dev = &radio->v4l2_dev;
- radio->vdev.fops = &usb_si4713_fops;
- radio->vdev.ioctl_ops = &usb_si4713_ioctl_ops;
- radio->vdev.lock = &radio->lock;
- radio->vdev.release = video_device_release_empty;
- radio->vdev.vfl_dir = VFL_DIR_TX;
- video_set_drvdata(&radio->vdev, radio);
- retval = video_register_device(&radio->vdev, VFL_TYPE_RADIO, -1);
- if (retval < 0) {
- dev_err(&intf->dev, "could not register video device\n");
- goto del_adapter;
- }
- dev_info(&intf->dev, "V4L2 device registered as %s\n",
- video_device_node_name(&radio->vdev));
- return 0;
- del_adapter:
- i2c_del_adapter(adapter);
- err_i2cdev:
- v4l2_device_unregister(&radio->v4l2_dev);
- err_v4l2:
- kfree(radio->buffer);
- kfree(radio);
- return retval;
- }
- static void usb_si4713_disconnect(struct usb_interface *intf)
- {
- struct si4713_usb_device *radio = to_si4713_dev(usb_get_intfdata(intf));
- dev_info(&intf->dev, "Si4713 development board now disconnected\n");
- mutex_lock(&radio->lock);
- usb_set_intfdata(intf, NULL);
- video_unregister_device(&radio->vdev);
- v4l2_device_disconnect(&radio->v4l2_dev);
- mutex_unlock(&radio->lock);
- v4l2_device_put(&radio->v4l2_dev);
- }
- /* USB subsystem interface */
- static struct usb_driver usb_si4713_driver = {
- .name = "radio-usb-si4713",
- .probe = usb_si4713_probe,
- .disconnect = usb_si4713_disconnect,
- .id_table = usb_si4713_usb_device_table,
- };
- module_usb_driver(usb_si4713_driver);
|