blob: a3dfc77578ea1200129d69e693740900b8721109 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Sam Hocevar5638e4d2006-08-30 02:34:56 +02002/*
3 * PlayStation 2 Trance Vibrator driver
4 *
5 * Copyright (C) 2006 Sam Hocevar <sam@zoy.org>
Sam Hocevar5638e4d2006-08-30 02:34:56 +02006 */
7
8/* Standard include files */
9#include <linux/kernel.h>
10#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Sam Hocevar5638e4d2006-08-30 02:34:56 +020012#include <linux/module.h>
13#include <linux/usb.h>
14
Sam Hocevar5638e4d2006-08-30 02:34:56 +020015#define DRIVER_AUTHOR "Sam Hocevar, sam@zoy.org"
16#define DRIVER_DESC "PlayStation 2 Trance Vibrator driver"
17
18#define TRANCEVIBRATOR_VENDOR_ID 0x0b49 /* ASCII Corporation */
19#define TRANCEVIBRATOR_PRODUCT_ID 0x064f /* Trance Vibrator */
20
Németh Márton33b9e162010-01-10 15:34:45 +010021static const struct usb_device_id id_table[] = {
Sam Hocevar5638e4d2006-08-30 02:34:56 +020022 { USB_DEVICE(TRANCEVIBRATOR_VENDOR_ID, TRANCEVIBRATOR_PRODUCT_ID) },
23 { },
24};
25MODULE_DEVICE_TABLE (usb, id_table);
26
27/* Driver-local specific stuff */
28struct trancevibrator {
29 struct usb_device *udev;
30 unsigned int speed;
31};
32
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +010033static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
Sam Hocevar5638e4d2006-08-30 02:34:56 +020034 char *buf)
35{
36 struct usb_interface *intf = to_usb_interface(dev);
37 struct trancevibrator *tv = usb_get_intfdata(intf);
38
39 return sprintf(buf, "%d\n", tv->speed);
40}
41
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +010042static ssize_t speed_store(struct device *dev, struct device_attribute *attr,
Sam Hocevar5638e4d2006-08-30 02:34:56 +020043 const char *buf, size_t count)
44{
45 struct usb_interface *intf = to_usb_interface(dev);
46 struct trancevibrator *tv = usb_get_intfdata(intf);
Oliver Neukum0cc5e2e2008-01-30 16:06:03 +010047 int temp, retval, old;
Sam Hocevar5638e4d2006-08-30 02:34:56 +020048
Ding Xiang9d20bca2018-08-30 17:31:18 +080049 retval = kstrtoint(buf, 10, &temp);
50 if (retval)
51 return retval;
Sam Hocevar5638e4d2006-08-30 02:34:56 +020052 if (temp > 255)
53 temp = 255;
54 else if (temp < 0)
55 temp = 0;
Oliver Neukum0cc5e2e2008-01-30 16:06:03 +010056 old = tv->speed;
Sam Hocevar5638e4d2006-08-30 02:34:56 +020057 tv->speed = temp;
58
59 dev_dbg(&tv->udev->dev, "speed = %d\n", tv->speed);
60
61 /* Set speed */
62 retval = usb_control_msg(tv->udev, usb_sndctrlpipe(tv->udev, 0),
63 0x01, /* vendor request: set speed */
64 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
65 tv->speed, /* speed value */
66 0, NULL, 0, USB_CTRL_GET_TIMEOUT);
67 if (retval) {
Oliver Neukum0cc5e2e2008-01-30 16:06:03 +010068 tv->speed = old;
Sam Hocevar5638e4d2006-08-30 02:34:56 +020069 dev_dbg(&tv->udev->dev, "retval = %d\n", retval);
70 return retval;
71 }
72 return count;
73}
Greg Kroah-Hartmaned5bd7a2018-01-23 11:24:05 +010074static DEVICE_ATTR_RW(speed);
Sam Hocevar5638e4d2006-08-30 02:34:56 +020075
Greg Kroah-Hartmanf9bbcbe2019-08-06 16:45:00 +020076static struct attribute *tv_attrs[] = {
77 &dev_attr_speed.attr,
78 NULL,
79};
80ATTRIBUTE_GROUPS(tv);
81
Sam Hocevar5638e4d2006-08-30 02:34:56 +020082static int tv_probe(struct usb_interface *interface,
83 const struct usb_device_id *id)
84{
85 struct usb_device *udev = interface_to_usbdev(interface);
86 struct trancevibrator *dev;
87 int retval;
88
89 dev = kzalloc(sizeof(struct trancevibrator), GFP_KERNEL);
Wolfram Sang58e61402016-08-25 19:39:21 +020090 if (!dev) {
Sam Hocevar5638e4d2006-08-30 02:34:56 +020091 retval = -ENOMEM;
92 goto error;
93 }
94
95 dev->udev = usb_get_dev(udev);
96 usb_set_intfdata(interface, dev);
Sam Hocevar5638e4d2006-08-30 02:34:56 +020097
98 return 0;
99
Sam Hocevar5638e4d2006-08-30 02:34:56 +0200100error:
101 kfree(dev);
102 return retval;
103}
104
105static void tv_disconnect(struct usb_interface *interface)
106{
107 struct trancevibrator *dev;
108
109 dev = usb_get_intfdata (interface);
Oliver Neukum96ca0142006-11-24 12:55:59 +0100110 usb_set_intfdata(interface, NULL);
Sam Hocevar5638e4d2006-08-30 02:34:56 +0200111 usb_put_dev(dev->udev);
112 kfree(dev);
113}
114
115/* USB subsystem object */
116static struct usb_driver tv_driver = {
117 .name = "trancevibrator",
118 .probe = tv_probe,
119 .disconnect = tv_disconnect,
120 .id_table = id_table,
Greg Kroah-Hartmanf9bbcbe2019-08-06 16:45:00 +0200121 .dev_groups = tv_groups,
Sam Hocevar5638e4d2006-08-30 02:34:56 +0200122};
123
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800124module_usb_driver(tv_driver);
Sam Hocevar5638e4d2006-08-30 02:34:56 +0200125
126MODULE_AUTHOR(DRIVER_AUTHOR);
127MODULE_DESCRIPTION(DRIVER_DESC);
128MODULE_LICENSE("GPL");