onetouch.c 8.3 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Support for the Maxtor OneTouch USB hard drive's button
 *
 * Current development and maintenance by:
 *	Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu>
 *
 * Initial work by:
8
 *	Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se>
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 *
 * Based on usbmouse.c (Vojtech Pavlik) and xpad.c (Marko Friedemann)
 *
 */

/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 */

#include <linux/kernel.h>
#include <linux/input.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
36
#include <linux/usb/input.h>
37 38 39
#include "usb.h"
#include "debug.h"

40 41 42 43
MODULE_DESCRIPTION("Maxtor USB OneTouch hard drive button driver");
MODULE_AUTHOR("Nick Sillik <n.sillik@temple.edu>");
MODULE_LICENSE("GPL");

44 45 46 47
#define ONETOUCH_PKT_LEN        0x02
#define ONETOUCH_BUTTON         KEY_PROG1

static int onetouch_connect_input(struct us_data *ss);
48
static void onetouch_release_input(void *onetouch_);
49 50 51 52

struct usb_onetouch {
	char name[128];
	char phys[64];
53
	struct input_dev *dev;	/* input device interface */
54 55 56 57 58
	struct usb_device *udev;	/* usb device */

	struct urb *irq;	/* urb for interrupt in report */
	unsigned char *data;	/* input data */
	dma_addr_t data_dma;
59
	unsigned int is_open:1;
60 61
};

62 63 64 65 66 67 68 69 70 71

/*
 * The table of devices
 */
#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
		    vendorName, productName, useProtocol, useTransport, \
		    initFunction, flags) \
{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
  .driver_info = (flags)|(USB_US_TYPE_STOR<<24) }

72
static struct usb_device_id onetouch_usb_ids[] = {
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
#	include "unusual_onetouch.h"
	{ }		/* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, onetouch_usb_ids);

#undef UNUSUAL_DEV

/*
 * The flags table
 */
#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
		    vendor_name, product_name, use_protocol, use_transport, \
		    init_function, Flags) \
{ \
	.vendorName = vendor_name,	\
	.productName = product_name,	\
	.useProtocol = use_protocol,	\
	.useTransport = use_transport,	\
	.initFunction = init_function,	\
}

static struct us_unusual_dev onetouch_unusual_dev_list[] = {
#	include "unusual_onetouch.h"
	{ }		/* Terminating entry */
};

#undef UNUSUAL_DEV


102
static void usb_onetouch_irq(struct urb *urb)
103 104 105
{
	struct usb_onetouch *onetouch = urb->context;
	signed char *data = onetouch->data;
106
	struct input_dev *dev = onetouch->dev;
107 108
	int status = urb->status;
	int retval;
109

110
	switch (status) {
111 112 113 114 115 116 117 118 119 120 121
	case 0:			/* success */
		break;
	case -ECONNRESET:	/* unlink */
	case -ENOENT:
	case -ESHUTDOWN:
		return;
	/* -EPIPE:  should clear the halt */
	default:		/* error */
		goto resubmit;
	}

122
	input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02);
123
	input_sync(dev);
124

125
resubmit:
126 127
	retval = usb_submit_urb (urb, GFP_ATOMIC);
	if (retval)
128 129
		dev_err(&dev->dev, "can't resubmit intr, %s-%s/input0, "
			"retval %d\n", onetouch->udev->bus->bus_name,
130
			onetouch->udev->devpath, retval);
131 132 133 134
}

static int usb_onetouch_open(struct input_dev *dev)
{
135
	struct usb_onetouch *onetouch = input_get_drvdata(dev);
136

137
	onetouch->is_open = 1;
138 139
	onetouch->irq->dev = onetouch->udev;
	if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) {
140
		dev_err(&dev->dev, "usb_submit_urb failed\n");
141 142 143 144 145 146 147 148
		return -EIO;
	}

	return 0;
}

static void usb_onetouch_close(struct input_dev *dev)
{
149
	struct usb_onetouch *onetouch = input_get_drvdata(dev);
150 151

	usb_kill_urb(onetouch->irq);
152
	onetouch->is_open = 0;
153 154
}

155 156 157 158 159 160 161 162 163 164 165
#ifdef CONFIG_PM
static void usb_onetouch_pm_hook(struct us_data *us, int action)
{
	struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra;

	if (onetouch->is_open) {
		switch (action) {
		case US_SUSPEND:
			usb_kill_urb(onetouch->irq);
			break;
		case US_RESUME:
166
			if (usb_submit_urb(onetouch->irq, GFP_NOIO) != 0)
167 168
				dev_err(&onetouch->irq->dev->dev,
					"usb_submit_urb failed\n");
169 170 171 172 173 174 175 176
			break;
		default:
			break;
		}
	}
}
#endif /* CONFIG_PM */

177
static int onetouch_connect_input(struct us_data *ss)
178 179 180 181 182
{
	struct usb_device *udev = ss->pusb_dev;
	struct usb_host_interface *interface;
	struct usb_endpoint_descriptor *endpoint;
	struct usb_onetouch *onetouch;
183
	struct input_dev *input_dev;
184
	int pipe, maxp;
185
	int error = -ENOMEM;
186 187 188

	interface = ss->pusb_intf->cur_altsetting;

189 190 191
	if (interface->desc.bNumEndpoints != 3)
		return -ENODEV;

192
	endpoint = &interface->endpoint[2].desc;
193
	if (!usb_endpoint_is_int_in(endpoint))
194 195 196 197 198
		return -ENODEV;

	pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress);
	maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe));

199 200 201 202
	onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL);
	input_dev = input_allocate_device();
	if (!onetouch || !input_dev)
		goto fail1;
203

204 205
	onetouch->data = usb_alloc_coherent(udev, ONETOUCH_PKT_LEN,
					    GFP_KERNEL, &onetouch->data_dma);
206 207
	if (!onetouch->data)
		goto fail1;
208 209

	onetouch->irq = usb_alloc_urb(0, GFP_KERNEL);
210 211
	if (!onetouch->irq)
		goto fail2;
212 213

	onetouch->udev = udev;
214
	onetouch->dev = input_dev;
215

216 217 218 219 220 221 222 223
	if (udev->manufacturer)
		strlcpy(onetouch->name, udev->manufacturer,
			sizeof(onetouch->name));
	if (udev->product) {
		if (udev->manufacturer)
			strlcat(onetouch->name, " ", sizeof(onetouch->name));
		strlcat(onetouch->name, udev->product, sizeof(onetouch->name));
	}
224

225 226 227 228 229
	if (!strlen(onetouch->name))
		snprintf(onetouch->name, sizeof(onetouch->name),
			 "Maxtor Onetouch %04x:%04x",
			 le16_to_cpu(udev->descriptor.idVendor),
			 le16_to_cpu(udev->descriptor.idProduct));
230

231 232
	usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys));
	strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys));
233

234 235 236
	input_dev->name = onetouch->name;
	input_dev->phys = onetouch->phys;
	usb_to_input_id(udev, &input_dev->id);
237
	input_dev->dev.parent = &udev->dev;
238

239 240 241
	set_bit(EV_KEY, input_dev->evbit);
	set_bit(ONETOUCH_BUTTON, input_dev->keybit);
	clear_bit(0, input_dev->keybit);
242

243 244
	input_set_drvdata(input_dev, onetouch);

245 246
	input_dev->open = usb_onetouch_open;
	input_dev->close = usb_onetouch_close;
247 248 249 250 251 252 253 254 255

	usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data,
			 (maxp > 8 ? 8 : maxp),
			 usb_onetouch_irq, onetouch, endpoint->bInterval);
	onetouch->irq->transfer_dma = onetouch->data_dma;
	onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;

	ss->extra_destructor = onetouch_release_input;
	ss->extra = onetouch;
256 257 258
#ifdef CONFIG_PM
	ss->suspend_resume_hook = usb_onetouch_pm_hook;
#endif
259

260 261 262
	error = input_register_device(onetouch->dev);
	if (error)
		goto fail3;
263 264

	return 0;
265

266
 fail3:	usb_free_urb(onetouch->irq);
267 268
 fail2:	usb_free_coherent(udev, ONETOUCH_PKT_LEN,
			  onetouch->data, onetouch->data_dma);
269 270
 fail1:	kfree(onetouch);
	input_free_device(input_dev);
271
	return error;
272 273
}

274
static void onetouch_release_input(void *onetouch_)
275 276 277 278 279
{
	struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_;

	if (onetouch) {
		usb_kill_urb(onetouch->irq);
280
		input_unregister_device(onetouch->dev);
281
		usb_free_urb(onetouch->irq);
282 283
		usb_free_coherent(onetouch->udev, ONETOUCH_PKT_LEN,
				  onetouch->data, onetouch->data_dma);
284 285
	}
}
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328

static int onetouch_probe(struct usb_interface *intf,
			 const struct usb_device_id *id)
{
	struct us_data *us;
	int result;

	result = usb_stor_probe1(&us, intf, id,
			(id - onetouch_usb_ids) + onetouch_unusual_dev_list);
	if (result)
		return result;

	/* Use default transport and protocol */

	result = usb_stor_probe2(us);
	return result;
}

static struct usb_driver onetouch_driver = {
	.name =		"ums-onetouch",
	.probe =	onetouch_probe,
	.disconnect =	usb_stor_disconnect,
	.suspend =	usb_stor_suspend,
	.resume =	usb_stor_resume,
	.reset_resume =	usb_stor_reset_resume,
	.pre_reset =	usb_stor_pre_reset,
	.post_reset =	usb_stor_post_reset,
	.id_table =	onetouch_usb_ids,
	.soft_unbind =	1,
};

static int __init onetouch_init(void)
{
	return usb_register(&onetouch_driver);
}

static void __exit onetouch_exit(void)
{
	usb_deregister(&onetouch_driver);
}

module_init(onetouch_init);
module_exit(onetouch_exit);