Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * USB Empeg empeg-car player driver |
| 3 | * |
| 4 | * Copyright (C) 2000, 2001 |
| 5 | * Gary Brubaker (xavyer@ix.netcom.com) |
| 6 | * |
| 7 | * Copyright (C) 1999 - 2001 |
| 8 | * Greg Kroah-Hartman (greg@kroah.com) |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License, as published by |
| 12 | * the Free Software Foundation, version 2. |
| 13 | * |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 14 | * See Documentation/usb/usb-serial.txt for more information on using this |
| 15 | * driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/errno.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/tty.h> |
| 23 | #include <linux/tty_driver.h> |
| 24 | #include <linux/tty_flip.h> |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/spinlock.h> |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 27 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/usb.h> |
Greg Kroah-Hartman | a969888 | 2006-07-11 21:22:58 -0700 | [diff] [blame] | 29 | #include <linux/usb/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 31 | static bool debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * Version Information |
| 35 | */ |
Johan Hovold | 695aaae | 2010-05-15 17:53:45 +0200 | [diff] [blame] | 36 | #define DRIVER_VERSION "v1.3" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Gary Brubaker <xavyer@ix.netcom.com>" |
| 38 | #define DRIVER_DESC "USB Empeg Mark I/II Driver" |
| 39 | |
| 40 | #define EMPEG_VENDOR_ID 0x084f |
| 41 | #define EMPEG_PRODUCT_ID 0x0001 |
| 42 | |
| 43 | /* function prototypes for an empeg-car player */ |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 44 | static int empeg_startup(struct usb_serial *serial); |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 45 | static void empeg_init_termios(struct tty_struct *tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Németh Márton | 7d40d7e | 2010-01-10 15:34:24 +0100 | [diff] [blame] | 47 | static const struct usb_device_id id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { USB_DEVICE(EMPEG_VENDOR_ID, EMPEG_PRODUCT_ID) }, |
| 49 | { } /* Terminating entry */ |
| 50 | }; |
| 51 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 52 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | static struct usb_driver empeg_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | .name = "empeg", |
| 56 | .probe = usb_serial_probe, |
| 57 | .disconnect = usb_serial_disconnect, |
| 58 | .id_table = id_table, |
| 59 | }; |
| 60 | |
Greg Kroah-Hartman | ea65370 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 61 | static struct usb_serial_driver empeg_device = { |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 62 | .driver = { |
| 63 | .owner = THIS_MODULE, |
Greg Kroah-Hartman | 269bda1 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 64 | .name = "empeg", |
Greg Kroah-Hartman | 18fcac3 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 65 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | .id_table = id_table, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | .num_ports = 1, |
Johan Hovold | 695aaae | 2010-05-15 17:53:45 +0200 | [diff] [blame] | 68 | .bulk_out_size = 256, |
| 69 | .throttle = usb_serial_generic_throttle, |
| 70 | .unthrottle = usb_serial_generic_unthrottle, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | .attach = empeg_startup, |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 72 | .init_termios = empeg_init_termios, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Alan Stern | 97b6b6d | 2012-02-23 14:56:32 -0500 | [diff] [blame] | 75 | static struct usb_serial_driver * const serial_drivers[] = { |
| 76 | &empeg_device, NULL |
| 77 | }; |
| 78 | |
Johan Hovold | 695aaae | 2010-05-15 17:53:45 +0200 | [diff] [blame] | 79 | static int empeg_startup(struct usb_serial *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
| 81 | int r; |
| 82 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 83 | dbg("%s", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | if (serial->dev->actconfig->desc.bConfigurationValue != 1) { |
Greg Kroah-Hartman | 194343d | 2008-08-20 16:56:34 -0700 | [diff] [blame] | 86 | dev_err(&serial->dev->dev, "active config #%d != 1 ??\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | serial->dev->actconfig->desc.bConfigurationValue); |
| 88 | return -ENODEV; |
| 89 | } |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 90 | dbg("%s - reset config", __func__); |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 91 | r = usb_reset_configuration(serial->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
| 93 | /* continue on with initialization */ |
| 94 | return r; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 97 | static void empeg_init_termios(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 99 | struct ktermios *termios = tty->termios; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 102 | * The empeg-car player wants these particular tty settings. |
| 103 | * You could, for example, change the baud rate, however the |
| 104 | * player only supports 115200 (currently), so there is really |
| 105 | * no point in support for changes to the tty settings. |
| 106 | * (at least for now) |
| 107 | * |
| 108 | * The default requirements for this device are: |
| 109 | */ |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 110 | termios->c_iflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | &= ~(IGNBRK /* disable ignore break */ |
| 112 | | BRKINT /* disable break causes interrupt */ |
| 113 | | PARMRK /* disable mark parity errors */ |
| 114 | | ISTRIP /* disable clear high bit of input characters */ |
| 115 | | INLCR /* disable translate NL to CR */ |
| 116 | | IGNCR /* disable ignore CR */ |
| 117 | | ICRNL /* disable translate CR to NL */ |
| 118 | | IXON); /* disable enable XON/XOFF flow control */ |
| 119 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 120 | termios->c_oflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | &= ~OPOST; /* disable postprocess output characters */ |
| 122 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 123 | termios->c_lflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | &= ~(ECHO /* disable echo input characters */ |
| 125 | | ECHONL /* disable echo new line */ |
| 126 | | ICANON /* disable erase, kill, werase, and rprnt special characters */ |
| 127 | | ISIG /* disable interrupt, quit, and suspend special characters */ |
| 128 | | IEXTEN); /* disable non-POSIX special characters */ |
| 129 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 130 | termios->c_cflag |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | &= ~(CSIZE /* no size */ |
| 132 | | PARENB /* disable parity bit */ |
| 133 | | CBAUD); /* clear current baud rate */ |
| 134 | |
Alan Cox | 998e863 | 2007-10-18 01:24:19 -0700 | [diff] [blame] | 135 | termios->c_cflag |
| 136 | |= CS8; /* character size 8 bits */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Alan Cox | 95da310 | 2008-07-22 11:09:07 +0100 | [diff] [blame] | 138 | tty_encode_baud_rate(tty, 115200, 115200); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Greg Kroah-Hartman | 10a6b9c | 2012-02-28 13:11:42 -0800 | [diff] [blame] | 141 | module_usb_serial_driver(empeg_driver, serial_drivers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Alan Cox | 93c4679 | 2008-07-22 11:11:11 +0100 | [diff] [blame] | 143 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 144 | MODULE_DESCRIPTION(DRIVER_DESC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | MODULE_LICENSE("GPL"); |
| 146 | |
| 147 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
| 148 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |