mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-19 14:06:29 +07:00
USB: pl2303: Move pl2303 vendor specific init to probe function.
Without this fix, the pl2303 usb-serial adapter would not suspend properly unless it had been opened first. A pl2303 type_1 chip will still break if the system is hibernated while the RS-232 connector is powered by another system. This was broken before, and a reset resume does not fix it. All other suspend and autosuspend scenarios work with ATEN pl2303 adaptors with HX and type_1 chips. Signed-off-by: Sarah Sharp <saharabeara@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
eb44da0b3a
commit
3e152505a5
@ -338,8 +338,13 @@ static int pl2303_startup(struct usb_serial *serial)
|
|||||||
{
|
{
|
||||||
struct pl2303_private *priv;
|
struct pl2303_private *priv;
|
||||||
enum pl2303_type type = type_0;
|
enum pl2303_type type = type_0;
|
||||||
|
unsigned char *buf;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
buf = kmalloc(10, GFP_KERNEL);
|
||||||
|
if (buf == NULL)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
if (serial->dev->descriptor.bDeviceClass == 0x02)
|
if (serial->dev->descriptor.bDeviceClass == 0x02)
|
||||||
type = type_0;
|
type = type_0;
|
||||||
else if (serial->dev->descriptor.bMaxPacketSize0 == 0x40)
|
else if (serial->dev->descriptor.bMaxPacketSize0 == 0x40)
|
||||||
@ -364,9 +369,27 @@ static int pl2303_startup(struct usb_serial *serial)
|
|||||||
priv->type = type;
|
priv->type = type;
|
||||||
usb_set_serial_port_data(serial->port[i], priv);
|
usb_set_serial_port_data(serial->port[i], priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pl2303_vendor_read(0x8484, 0, serial, buf);
|
||||||
|
pl2303_vendor_write(0x0404, 0, serial);
|
||||||
|
pl2303_vendor_read(0x8484, 0, serial, buf);
|
||||||
|
pl2303_vendor_read(0x8383, 0, serial, buf);
|
||||||
|
pl2303_vendor_read(0x8484, 0, serial, buf);
|
||||||
|
pl2303_vendor_write(0x0404, 1, serial);
|
||||||
|
pl2303_vendor_read(0x8484, 0, serial, buf);
|
||||||
|
pl2303_vendor_read(0x8383, 0, serial, buf);
|
||||||
|
pl2303_vendor_write(0, 1, serial);
|
||||||
|
pl2303_vendor_write(1, 0, serial);
|
||||||
|
if (type == HX)
|
||||||
|
pl2303_vendor_write(2, 0x44, serial);
|
||||||
|
else
|
||||||
|
pl2303_vendor_write(2, 0x24, serial);
|
||||||
|
|
||||||
|
kfree(buf);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
kfree(buf);
|
||||||
for (--i; i>=0; --i) {
|
for (--i; i>=0; --i) {
|
||||||
priv = usb_get_serial_port_data(serial->port[i]);
|
priv = usb_get_serial_port_data(serial->port[i]);
|
||||||
pl2303_buf_free(priv->buf);
|
pl2303_buf_free(priv->buf);
|
||||||
@ -690,7 +713,6 @@ static int pl2303_open(struct usb_serial_port *port, struct file *filp)
|
|||||||
struct ktermios tmp_termios;
|
struct ktermios tmp_termios;
|
||||||
struct usb_serial *serial = port->serial;
|
struct usb_serial *serial = port->serial;
|
||||||
struct pl2303_private *priv = usb_get_serial_port_data(port);
|
struct pl2303_private *priv = usb_get_serial_port_data(port);
|
||||||
unsigned char *buf;
|
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
dbg("%s - port %d", __FUNCTION__, port->number);
|
dbg("%s - port %d", __FUNCTION__, port->number);
|
||||||
@ -698,35 +720,12 @@ static int pl2303_open(struct usb_serial_port *port, struct file *filp)
|
|||||||
if (priv->type != HX) {
|
if (priv->type != HX) {
|
||||||
usb_clear_halt(serial->dev, port->write_urb->pipe);
|
usb_clear_halt(serial->dev, port->write_urb->pipe);
|
||||||
usb_clear_halt(serial->dev, port->read_urb->pipe);
|
usb_clear_halt(serial->dev, port->read_urb->pipe);
|
||||||
}
|
} else {
|
||||||
|
|
||||||
buf = kmalloc(10, GFP_KERNEL);
|
|
||||||
if (buf==NULL)
|
|
||||||
return -ENOMEM;
|
|
||||||
|
|
||||||
pl2303_vendor_read(0x8484, 0, serial, buf);
|
|
||||||
pl2303_vendor_write(0x0404, 0, serial);
|
|
||||||
pl2303_vendor_read(0x8484, 0, serial, buf);
|
|
||||||
pl2303_vendor_read(0x8383, 0, serial, buf);
|
|
||||||
pl2303_vendor_read(0x8484, 0, serial, buf);
|
|
||||||
pl2303_vendor_write(0x0404, 1, serial);
|
|
||||||
pl2303_vendor_read(0x8484, 0, serial, buf);
|
|
||||||
pl2303_vendor_read(0x8383, 0, serial, buf);
|
|
||||||
pl2303_vendor_write(0, 1, serial);
|
|
||||||
pl2303_vendor_write(1, 0, serial);
|
|
||||||
|
|
||||||
if (priv->type == HX) {
|
|
||||||
/* HX chip */
|
|
||||||
pl2303_vendor_write(2, 0x44, serial);
|
|
||||||
/* reset upstream data pipes */
|
/* reset upstream data pipes */
|
||||||
pl2303_vendor_write(8, 0, serial);
|
pl2303_vendor_write(8, 0, serial);
|
||||||
pl2303_vendor_write(9, 0, serial);
|
pl2303_vendor_write(9, 0, serial);
|
||||||
} else {
|
|
||||||
pl2303_vendor_write(2, 0x24, serial);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
kfree(buf);
|
|
||||||
|
|
||||||
/* Setup termios */
|
/* Setup termios */
|
||||||
if (port->tty) {
|
if (port->tty) {
|
||||||
pl2303_set_termios(port, &tmp_termios);
|
pl2303_set_termios(port, &tmp_termios);
|
||||||
|
Loading…
Reference in New Issue
Block a user