|
@@ -65,8 +65,6 @@ struct moschip_port {
|
|
struct urb *write_urb_pool[NUM_URBS];
|
|
struct urb *write_urb_pool[NUM_URBS];
|
|
};
|
|
};
|
|
|
|
|
|
-static struct usb_serial_driver moschip7720_2port_driver;
|
|
|
|
-
|
|
|
|
#define USB_VENDOR_ID_MOSCHIP 0x9710
|
|
#define USB_VENDOR_ID_MOSCHIP 0x9710
|
|
#define MOSCHIP_DEVICE_ID_7720 0x7720
|
|
#define MOSCHIP_DEVICE_ID_7720 0x7720
|
|
#define MOSCHIP_DEVICE_ID_7715 0x7715
|
|
#define MOSCHIP_DEVICE_ID_7715 0x7715
|
|
@@ -970,25 +968,6 @@ static void mos7720_bulk_out_data_callback(struct urb *urb)
|
|
tty_port_tty_wakeup(&mos7720_port->port->port);
|
|
tty_port_tty_wakeup(&mos7720_port->port->port);
|
|
}
|
|
}
|
|
|
|
|
|
-/*
|
|
|
|
- * mos77xx_probe
|
|
|
|
- * this function installs the appropriate read interrupt endpoint callback
|
|
|
|
- * depending on whether the device is a 7720 or 7715, thus avoiding costly
|
|
|
|
- * run-time checks in the high-frequency callback routine itself.
|
|
|
|
- */
|
|
|
|
-static int mos77xx_probe(struct usb_serial *serial,
|
|
|
|
- const struct usb_device_id *id)
|
|
|
|
-{
|
|
|
|
- if (id->idProduct == MOSCHIP_DEVICE_ID_7715)
|
|
|
|
- moschip7720_2port_driver.read_int_callback =
|
|
|
|
- mos7715_interrupt_callback;
|
|
|
|
- else
|
|
|
|
- moschip7720_2port_driver.read_int_callback =
|
|
|
|
- mos7720_interrupt_callback;
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static int mos77xx_calc_num_ports(struct usb_serial *serial)
|
|
static int mos77xx_calc_num_ports(struct usb_serial *serial)
|
|
{
|
|
{
|
|
u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
|
|
u16 product = le16_to_cpu(serial->dev->descriptor.idProduct);
|
|
@@ -1917,6 +1896,11 @@ static int mos7720_startup(struct usb_serial *serial)
|
|
u16 product;
|
|
u16 product;
|
|
int ret_val;
|
|
int ret_val;
|
|
|
|
|
|
|
|
+ if (serial->num_bulk_in < 2 || serial->num_bulk_out < 2) {
|
|
|
|
+ dev_err(&serial->interface->dev, "missing bulk endpoints\n");
|
|
|
|
+ return -ENODEV;
|
|
|
|
+ }
|
|
|
|
+
|
|
product = le16_to_cpu(serial->dev->descriptor.idProduct);
|
|
product = le16_to_cpu(serial->dev->descriptor.idProduct);
|
|
dev = serial->dev;
|
|
dev = serial->dev;
|
|
|
|
|
|
@@ -1941,19 +1925,18 @@ static int mos7720_startup(struct usb_serial *serial)
|
|
tmp->interrupt_in_endpointAddress;
|
|
tmp->interrupt_in_endpointAddress;
|
|
serial->port[1]->interrupt_in_urb = NULL;
|
|
serial->port[1]->interrupt_in_urb = NULL;
|
|
serial->port[1]->interrupt_in_buffer = NULL;
|
|
serial->port[1]->interrupt_in_buffer = NULL;
|
|
|
|
+
|
|
|
|
+ if (serial->port[0]->interrupt_in_urb) {
|
|
|
|
+ struct urb *urb = serial->port[0]->interrupt_in_urb;
|
|
|
|
+
|
|
|
|
+ urb->complete = mos7715_interrupt_callback;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/* setting configuration feature to one */
|
|
/* setting configuration feature to one */
|
|
usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
|
|
usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
|
|
(__u8)0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5000);
|
|
(__u8)0x03, 0x00, 0x01, 0x00, NULL, 0x00, 5000);
|
|
|
|
|
|
- /* start the interrupt urb */
|
|
|
|
- ret_val = usb_submit_urb(serial->port[0]->interrupt_in_urb, GFP_KERNEL);
|
|
|
|
- if (ret_val)
|
|
|
|
- dev_err(&dev->dev,
|
|
|
|
- "%s - Error %d submitting control urb\n",
|
|
|
|
- __func__, ret_val);
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_USB_SERIAL_MOS7715_PARPORT
|
|
#ifdef CONFIG_USB_SERIAL_MOS7715_PARPORT
|
|
if (product == MOSCHIP_DEVICE_ID_7715) {
|
|
if (product == MOSCHIP_DEVICE_ID_7715) {
|
|
ret_val = mos7715_parport_init(serial);
|
|
ret_val = mos7715_parport_init(serial);
|
|
@@ -1961,6 +1944,13 @@ static int mos7720_startup(struct usb_serial *serial)
|
|
return ret_val;
|
|
return ret_val;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
+ /* start the interrupt urb */
|
|
|
|
+ ret_val = usb_submit_urb(serial->port[0]->interrupt_in_urb, GFP_KERNEL);
|
|
|
|
+ if (ret_val) {
|
|
|
|
+ dev_err(&dev->dev, "failed to submit interrupt urb: %d\n",
|
|
|
|
+ ret_val);
|
|
|
|
+ }
|
|
|
|
+
|
|
/* LSR For Port 1 */
|
|
/* LSR For Port 1 */
|
|
read_mos_reg(serial, 0, MOS7720_LSR, &data);
|
|
read_mos_reg(serial, 0, MOS7720_LSR, &data);
|
|
dev_dbg(&dev->dev, "LSR:%x\n", data);
|
|
dev_dbg(&dev->dev, "LSR:%x\n", data);
|
|
@@ -1970,6 +1960,8 @@ static int mos7720_startup(struct usb_serial *serial)
|
|
|
|
|
|
static void mos7720_release(struct usb_serial *serial)
|
|
static void mos7720_release(struct usb_serial *serial)
|
|
{
|
|
{
|
|
|
|
+ usb_kill_urb(serial->port[0]->interrupt_in_urb);
|
|
|
|
+
|
|
#ifdef CONFIG_USB_SERIAL_MOS7715_PARPORT
|
|
#ifdef CONFIG_USB_SERIAL_MOS7715_PARPORT
|
|
/* close the parallel port */
|
|
/* close the parallel port */
|
|
|
|
|
|
@@ -2019,11 +2011,6 @@ static int mos7720_port_probe(struct usb_serial_port *port)
|
|
if (!mos7720_port)
|
|
if (!mos7720_port)
|
|
return -ENOMEM;
|
|
return -ENOMEM;
|
|
|
|
|
|
- /* Initialize all port interrupt end point to port 0 int endpoint.
|
|
|
|
- * Our device has only one interrupt endpoint common to all ports.
|
|
|
|
- */
|
|
|
|
- port->interrupt_in_endpointAddress =
|
|
|
|
- port->serial->port[0]->interrupt_in_endpointAddress;
|
|
|
|
mos7720_port->port = port;
|
|
mos7720_port->port = port;
|
|
|
|
|
|
usb_set_serial_port_data(port, mos7720_port);
|
|
usb_set_serial_port_data(port, mos7720_port);
|
|
@@ -2053,7 +2040,6 @@ static struct usb_serial_driver moschip7720_2port_driver = {
|
|
.close = mos7720_close,
|
|
.close = mos7720_close,
|
|
.throttle = mos7720_throttle,
|
|
.throttle = mos7720_throttle,
|
|
.unthrottle = mos7720_unthrottle,
|
|
.unthrottle = mos7720_unthrottle,
|
|
- .probe = mos77xx_probe,
|
|
|
|
.attach = mos7720_startup,
|
|
.attach = mos7720_startup,
|
|
.release = mos7720_release,
|
|
.release = mos7720_release,
|
|
.port_probe = mos7720_port_probe,
|
|
.port_probe = mos7720_port_probe,
|
|
@@ -2067,7 +2053,7 @@ static struct usb_serial_driver moschip7720_2port_driver = {
|
|
.chars_in_buffer = mos7720_chars_in_buffer,
|
|
.chars_in_buffer = mos7720_chars_in_buffer,
|
|
.break_ctl = mos7720_break,
|
|
.break_ctl = mos7720_break,
|
|
.read_bulk_callback = mos7720_bulk_in_callback,
|
|
.read_bulk_callback = mos7720_bulk_in_callback,
|
|
- .read_int_callback = NULL /* dynamically assigned in probe() */
|
|
|
|
|
|
+ .read_int_callback = mos7720_interrupt_callback,
|
|
};
|
|
};
|
|
|
|
|
|
static struct usb_serial_driver * const serial_drivers[] = {
|
|
static struct usb_serial_driver * const serial_drivers[] = {
|