viperboard.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Nano River Technologies viperboard driver
  3. *
  4. * This is the core driver for the viperboard. There are cell drivers
  5. * available for I2C, ADC and both GPIOs. SPI is not yet supported.
  6. * The drivers do not support all features the board exposes. See user
  7. * manual of the viperboard.
  8. *
  9. * (C) 2012 by Lemonage GmbH
  10. * Author: Lars Poeschel <poeschel@lemonage.de>
  11. * All rights reserved.
  12. *
  13. * This program is free software; you can redistribute it and/or modify it
  14. * under the terms of the GNU General Public License as published by the
  15. * Free Software Foundation; either version 2 of the License, or (at your
  16. * option) any later version.
  17. *
  18. */
  19. #include <linux/kernel.h>
  20. #include <linux/errno.h>
  21. #include <linux/module.h>
  22. #include <linux/slab.h>
  23. #include <linux/types.h>
  24. #include <linux/mutex.h>
  25. #include <linux/mfd/core.h>
  26. #include <linux/mfd/viperboard.h>
  27. #include <linux/usb.h>
  28. static const struct usb_device_id vprbrd_table[] = {
  29. { USB_DEVICE(0x2058, 0x1005) }, /* Nano River Technologies */
  30. { } /* Terminating entry */
  31. };
  32. MODULE_DEVICE_TABLE(usb, vprbrd_table);
  33. static struct mfd_cell vprbrd_devs[] = {
  34. };
  35. static int vprbrd_probe(struct usb_interface *interface,
  36. const struct usb_device_id *id)
  37. {
  38. struct vprbrd *vb;
  39. u16 version = 0;
  40. int pipe, ret;
  41. unsigned char buf[1];
  42. /* allocate memory for our device state and initialize it */
  43. vb = kzalloc(sizeof(*vb), GFP_KERNEL);
  44. if (vb == NULL) {
  45. dev_err(&interface->dev, "Out of memory\n");
  46. return -ENOMEM;
  47. }
  48. mutex_init(&vb->lock);
  49. vb->usb_dev = usb_get_dev(interface_to_usbdev(interface));
  50. /* save our data pointer in this interface device */
  51. usb_set_intfdata(interface, vb);
  52. dev_set_drvdata(&vb->pdev.dev, vb);
  53. /* get version information, major first, minor then */
  54. pipe = usb_rcvctrlpipe(vb->usb_dev, 0);
  55. ret = usb_control_msg(vb->usb_dev, pipe, VPRBRD_USB_REQUEST_MAJOR,
  56. VPRBRD_USB_TYPE_IN, 0x0000, 0x0000, buf, 1,
  57. VPRBRD_USB_TIMEOUT_MS);
  58. if (ret == 1)
  59. version = buf[0];
  60. ret = usb_control_msg(vb->usb_dev, pipe, VPRBRD_USB_REQUEST_MINOR,
  61. VPRBRD_USB_TYPE_IN, 0x0000, 0x0000, buf, 1,
  62. VPRBRD_USB_TIMEOUT_MS);
  63. if (ret == 1) {
  64. version <<= 8;
  65. version = version | buf[0];
  66. }
  67. dev_info(&interface->dev,
  68. "version %x.%02x found at bus %03d address %03d\n",
  69. version >> 8, version & 0xff,
  70. vb->usb_dev->bus->busnum, vb->usb_dev->devnum);
  71. ret = mfd_add_devices(&interface->dev, -1, vprbrd_devs,
  72. ARRAY_SIZE(vprbrd_devs), NULL, 0, NULL);
  73. if (ret != 0) {
  74. dev_err(&interface->dev, "Failed to add mfd devices to core.");
  75. goto error;
  76. }
  77. return 0;
  78. error:
  79. if (vb) {
  80. usb_put_dev(vb->usb_dev);
  81. kfree(vb);
  82. }
  83. return ret;
  84. }
  85. static void vprbrd_disconnect(struct usb_interface *interface)
  86. {
  87. struct vprbrd *vb = usb_get_intfdata(interface);
  88. mfd_remove_devices(&interface->dev);
  89. usb_set_intfdata(interface, NULL);
  90. usb_put_dev(vb->usb_dev);
  91. kfree(vb);
  92. dev_dbg(&interface->dev, "disconnected\n");
  93. }
  94. static struct usb_driver vprbrd_driver = {
  95. .name = "viperboard",
  96. .probe = vprbrd_probe,
  97. .disconnect = vprbrd_disconnect,
  98. .id_table = vprbrd_table,
  99. };
  100. module_usb_driver(vprbrd_driver);
  101. MODULE_DESCRIPTION("Nano River Technologies viperboard mfd core driver");
  102. MODULE_AUTHOR("Lars Poeschel <poeschel@lemonage.de>");
  103. MODULE_LICENSE("GPL");