2 * USB Empeg empeg-car player driver
4 * Copyright (C) 2000, 2001
5 * Gary Brubaker (xavyer@ix.netcom.com)
7 * Copyright (C) 1999 - 2001
8 * Greg Kroah-Hartman (greg@kroah.com)
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.
14 * See Documentation/usb/usb-serial.txt for more information on using this
18 #include <linux/kernel.h>
19 #include <linux/errno.h>
20 #include <linux/slab.h>
21 #include <linux/tty.h>
22 #include <linux/tty_driver.h>
23 #include <linux/tty_flip.h>
24 #include <linux/module.h>
25 #include <linux/spinlock.h>
26 #include <linux/uaccess.h>
27 #include <linux/usb.h>
28 #include <linux/usb/serial.h>
30 #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Gary Brubaker <xavyer@ix.netcom.com>"
31 #define DRIVER_DESC "USB Empeg Mark I/II Driver"
33 #define EMPEG_VENDOR_ID 0x084f
34 #define EMPEG_PRODUCT_ID 0x0001
36 /* function prototypes for an empeg-car player */
37 static int empeg_startup(struct usb_serial
*serial
);
38 static void empeg_init_termios(struct tty_struct
*tty
);
40 static const struct usb_device_id id_table
[] = {
41 { USB_DEVICE(EMPEG_VENDOR_ID
, EMPEG_PRODUCT_ID
) },
42 { } /* Terminating entry */
45 MODULE_DEVICE_TABLE(usb
, id_table
);
47 static struct usb_serial_driver empeg_device
= {
55 .throttle
= usb_serial_generic_throttle
,
56 .unthrottle
= usb_serial_generic_unthrottle
,
57 .attach
= empeg_startup
,
58 .init_termios
= empeg_init_termios
,
61 static struct usb_serial_driver
* const serial_drivers
[] = {
65 static int empeg_startup(struct usb_serial
*serial
)
69 if (serial
->dev
->actconfig
->desc
.bConfigurationValue
!= 1) {
70 dev_err(&serial
->dev
->dev
, "active config #%d != 1 ??\n",
71 serial
->dev
->actconfig
->desc
.bConfigurationValue
);
75 r
= usb_reset_configuration(serial
->dev
);
77 /* continue on with initialization */
81 static void empeg_init_termios(struct tty_struct
*tty
)
83 struct ktermios
*termios
= &tty
->termios
;
86 * The empeg-car player wants these particular tty settings.
87 * You could, for example, change the baud rate, however the
88 * player only supports 115200 (currently), so there is really
89 * no point in support for changes to the tty settings.
92 * The default requirements for this device are:
95 &= ~(IGNBRK
/* disable ignore break */
96 | BRKINT
/* disable break causes interrupt */
97 | PARMRK
/* disable mark parity errors */
98 | ISTRIP
/* disable clear high bit of input characters */
99 | INLCR
/* disable translate NL to CR */
100 | IGNCR
/* disable ignore CR */
101 | ICRNL
/* disable translate CR to NL */
102 | IXON
); /* disable enable XON/XOFF flow control */
105 &= ~OPOST
; /* disable postprocess output characters */
108 &= ~(ECHO
/* disable echo input characters */
109 | ECHONL
/* disable echo new line */
110 | ICANON
/* disable erase, kill, werase, and rprnt special characters */
111 | ISIG
/* disable interrupt, quit, and suspend special characters */
112 | IEXTEN
); /* disable non-POSIX special characters */
115 &= ~(CSIZE
/* no size */
116 | PARENB
/* disable parity bit */
117 | CBAUD
); /* clear current baud rate */
120 |= CS8
; /* character size 8 bits */
122 tty_encode_baud_rate(tty
, 115200, 115200);
125 module_usb_serial_driver(serial_drivers
, id_table
);
127 MODULE_AUTHOR(DRIVER_AUTHOR
);
128 MODULE_DESCRIPTION(DRIVER_DESC
);
129 MODULE_LICENSE("GPL");