1 // SPDX-License-Identifier: GPL-2.0
3 Some of this code is credited to Linux USB open source files that are
4 distributed with Linux.
6 Copyright: 2007 Metrologic Instruments. All rights reserved.
7 Copyright: 2011 Azimut Ltd. <http://azimutrzn.ru/>
10 #include <linux/kernel.h>
11 #include <linux/tty.h>
12 #include <linux/module.h>
13 #include <linux/usb.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/tty_driver.h>
17 #include <linux/tty_flip.h>
18 #include <linux/moduleparam.h>
19 #include <linux/spinlock.h>
20 #include <linux/uaccess.h>
21 #include <linux/usb/serial.h>
23 #define DRIVER_DESC "Metrologic Instruments Inc. - USB-POS driver"
25 /* Product information. */
26 #define FOCUS_VENDOR_ID 0x0C2E
27 #define FOCUS_PRODUCT_ID_BI 0x0720
28 #define FOCUS_PRODUCT_ID_UNI 0x0700
30 #define METROUSB_SET_REQUEST_TYPE 0x40
31 #define METROUSB_SET_MODEM_CTRL_REQUEST 10
32 #define METROUSB_SET_BREAK_REQUEST 0x40
33 #define METROUSB_MCR_NONE 0x08 /* Deactivate DTR and RTS. */
34 #define METROUSB_MCR_RTS 0x0a /* Activate RTS. */
35 #define METROUSB_MCR_DTR 0x09 /* Activate DTR. */
36 #define WDR_TIMEOUT 5000 /* default urb timeout. */
38 /* Private data structure. */
39 struct metrousb_private
{
42 unsigned long control_state
;
45 /* Device table list. */
46 static const struct usb_device_id id_table
[] = {
47 { USB_DEVICE(FOCUS_VENDOR_ID
, FOCUS_PRODUCT_ID_BI
) },
48 { USB_DEVICE(FOCUS_VENDOR_ID
, FOCUS_PRODUCT_ID_UNI
) },
49 { USB_DEVICE_INTERFACE_CLASS(0x0c2e, 0x0730, 0xff) }, /* MS7820 */
50 { }, /* Terminating entry. */
52 MODULE_DEVICE_TABLE(usb
, id_table
);
54 /* UNI-Directional mode commands for device configure */
55 #define UNI_CMD_OPEN 0x80
56 #define UNI_CMD_CLOSE 0xFF
58 static int metrousb_is_unidirectional_mode(struct usb_serial
*serial
)
60 u16 product_id
= le16_to_cpu(serial
->dev
->descriptor
.idProduct
);
62 return product_id
== FOCUS_PRODUCT_ID_UNI
;
65 static int metrousb_calc_num_ports(struct usb_serial
*serial
,
66 struct usb_serial_endpoints
*epds
)
68 if (metrousb_is_unidirectional_mode(serial
)) {
69 if (epds
->num_interrupt_out
== 0) {
70 dev_err(&serial
->interface
->dev
, "interrupt-out endpoint missing\n");
78 static int metrousb_send_unidirectional_cmd(u8 cmd
, struct usb_serial_port
*port
)
82 u8
*buffer_cmd
= NULL
;
84 if (!metrousb_is_unidirectional_mode(port
->serial
))
87 buffer_cmd
= kzalloc(sizeof(cmd
), GFP_KERNEL
);
93 ret
= usb_interrupt_msg(port
->serial
->dev
,
94 usb_sndintpipe(port
->serial
->dev
, port
->interrupt_out_endpointAddress
),
95 buffer_cmd
, sizeof(cmd
),
96 &actual_len
, USB_CTRL_SET_TIMEOUT
);
102 else if (actual_len
!= sizeof(cmd
))
107 static void metrousb_read_int_callback(struct urb
*urb
)
109 struct usb_serial_port
*port
= urb
->context
;
110 struct metrousb_private
*metro_priv
= usb_get_serial_port_data(port
);
111 unsigned char *data
= urb
->transfer_buffer
;
114 unsigned long flags
= 0;
116 dev_dbg(&port
->dev
, "%s\n", __func__
);
118 switch (urb
->status
) {
120 /* Success status, read from the port. */
125 /* urb has been terminated. */
127 "%s - urb shutting down, error code=%d\n",
128 __func__
, urb
->status
);
132 "%s - non-zero urb received, error code=%d\n",
133 __func__
, urb
->status
);
138 /* Set the data read from the usb port into the serial port buffer. */
139 if (urb
->actual_length
) {
140 /* Loop through the data copying each byte to the tty layer. */
141 tty_insert_flip_string(&port
->port
, data
, urb
->actual_length
);
143 /* Force the data to the tty layer. */
144 tty_flip_buffer_push(&port
->port
);
147 /* Set any port variables. */
148 spin_lock_irqsave(&metro_priv
->lock
, flags
);
149 throttled
= metro_priv
->throttled
;
150 spin_unlock_irqrestore(&metro_priv
->lock
, flags
);
155 /* Try to resubmit the urb. */
156 result
= usb_submit_urb(urb
, GFP_ATOMIC
);
159 "%s - failed submitting interrupt in urb, error code=%d\n",
163 static void metrousb_cleanup(struct usb_serial_port
*port
)
165 usb_kill_urb(port
->interrupt_in_urb
);
167 metrousb_send_unidirectional_cmd(UNI_CMD_CLOSE
, port
);
170 static int metrousb_open(struct tty_struct
*tty
, struct usb_serial_port
*port
)
172 struct usb_serial
*serial
= port
->serial
;
173 struct metrousb_private
*metro_priv
= usb_get_serial_port_data(port
);
174 unsigned long flags
= 0;
177 /* Set the private data information for the port. */
178 spin_lock_irqsave(&metro_priv
->lock
, flags
);
179 metro_priv
->control_state
= 0;
180 metro_priv
->throttled
= 0;
181 spin_unlock_irqrestore(&metro_priv
->lock
, flags
);
183 /* Clear the urb pipe. */
184 usb_clear_halt(serial
->dev
, port
->interrupt_in_urb
->pipe
);
186 /* Start reading from the device */
187 usb_fill_int_urb(port
->interrupt_in_urb
, serial
->dev
,
188 usb_rcvintpipe(serial
->dev
, port
->interrupt_in_endpointAddress
),
189 port
->interrupt_in_urb
->transfer_buffer
,
190 port
->interrupt_in_urb
->transfer_buffer_length
,
191 metrousb_read_int_callback
, port
, 1);
192 result
= usb_submit_urb(port
->interrupt_in_urb
, GFP_KERNEL
);
196 "%s - failed submitting interrupt in urb, error code=%d\n",
201 /* Send activate cmd to device */
202 result
= metrousb_send_unidirectional_cmd(UNI_CMD_OPEN
, port
);
205 "%s - failed to configure device, error code=%d\n",
213 usb_kill_urb(port
->interrupt_in_urb
);
218 static int metrousb_set_modem_ctrl(struct usb_serial
*serial
, unsigned int control_state
)
221 unsigned char mcr
= METROUSB_MCR_NONE
;
223 dev_dbg(&serial
->dev
->dev
, "%s - control state = %d\n",
224 __func__
, control_state
);
226 /* Set the modem control value. */
227 if (control_state
& TIOCM_DTR
)
228 mcr
|= METROUSB_MCR_DTR
;
229 if (control_state
& TIOCM_RTS
)
230 mcr
|= METROUSB_MCR_RTS
;
232 /* Send the command to the usb port. */
233 retval
= usb_control_msg(serial
->dev
, usb_sndctrlpipe(serial
->dev
, 0),
234 METROUSB_SET_REQUEST_TYPE
, METROUSB_SET_MODEM_CTRL_REQUEST
,
235 control_state
, 0, NULL
, 0, WDR_TIMEOUT
);
237 dev_err(&serial
->dev
->dev
,
238 "%s - set modem ctrl=0x%x failed, error code=%d\n",
239 __func__
, mcr
, retval
);
244 static int metrousb_port_probe(struct usb_serial_port
*port
)
246 struct metrousb_private
*metro_priv
;
248 metro_priv
= kzalloc(sizeof(*metro_priv
), GFP_KERNEL
);
252 spin_lock_init(&metro_priv
->lock
);
254 usb_set_serial_port_data(port
, metro_priv
);
259 static int metrousb_port_remove(struct usb_serial_port
*port
)
261 struct metrousb_private
*metro_priv
;
263 metro_priv
= usb_get_serial_port_data(port
);
269 static void metrousb_throttle(struct tty_struct
*tty
)
271 struct usb_serial_port
*port
= tty
->driver_data
;
272 struct metrousb_private
*metro_priv
= usb_get_serial_port_data(port
);
273 unsigned long flags
= 0;
275 /* Set the private information for the port to stop reading data. */
276 spin_lock_irqsave(&metro_priv
->lock
, flags
);
277 metro_priv
->throttled
= 1;
278 spin_unlock_irqrestore(&metro_priv
->lock
, flags
);
281 static int metrousb_tiocmget(struct tty_struct
*tty
)
283 unsigned long control_state
= 0;
284 struct usb_serial_port
*port
= tty
->driver_data
;
285 struct metrousb_private
*metro_priv
= usb_get_serial_port_data(port
);
286 unsigned long flags
= 0;
288 spin_lock_irqsave(&metro_priv
->lock
, flags
);
289 control_state
= metro_priv
->control_state
;
290 spin_unlock_irqrestore(&metro_priv
->lock
, flags
);
292 return control_state
;
295 static int metrousb_tiocmset(struct tty_struct
*tty
,
296 unsigned int set
, unsigned int clear
)
298 struct usb_serial_port
*port
= tty
->driver_data
;
299 struct usb_serial
*serial
= port
->serial
;
300 struct metrousb_private
*metro_priv
= usb_get_serial_port_data(port
);
301 unsigned long flags
= 0;
302 unsigned long control_state
= 0;
304 dev_dbg(tty
->dev
, "%s - set=%d, clear=%d\n", __func__
, set
, clear
);
306 spin_lock_irqsave(&metro_priv
->lock
, flags
);
307 control_state
= metro_priv
->control_state
;
309 /* Set the RTS and DTR values. */
311 control_state
|= TIOCM_RTS
;
313 control_state
|= TIOCM_DTR
;
314 if (clear
& TIOCM_RTS
)
315 control_state
&= ~TIOCM_RTS
;
316 if (clear
& TIOCM_DTR
)
317 control_state
&= ~TIOCM_DTR
;
319 metro_priv
->control_state
= control_state
;
320 spin_unlock_irqrestore(&metro_priv
->lock
, flags
);
321 return metrousb_set_modem_ctrl(serial
, control_state
);
324 static void metrousb_unthrottle(struct tty_struct
*tty
)
326 struct usb_serial_port
*port
= tty
->driver_data
;
327 struct metrousb_private
*metro_priv
= usb_get_serial_port_data(port
);
328 unsigned long flags
= 0;
331 /* Set the private information for the port to resume reading data. */
332 spin_lock_irqsave(&metro_priv
->lock
, flags
);
333 metro_priv
->throttled
= 0;
334 spin_unlock_irqrestore(&metro_priv
->lock
, flags
);
336 /* Submit the urb to read from the port. */
337 result
= usb_submit_urb(port
->interrupt_in_urb
, GFP_ATOMIC
);
340 "failed submitting interrupt in urb error code=%d\n",
344 static struct usb_serial_driver metrousb_device
= {
346 .owner
= THIS_MODULE
,
349 .description
= "Metrologic USB to Serial",
350 .id_table
= id_table
,
351 .num_interrupt_in
= 1,
352 .calc_num_ports
= metrousb_calc_num_ports
,
353 .open
= metrousb_open
,
354 .close
= metrousb_cleanup
,
355 .read_int_callback
= metrousb_read_int_callback
,
356 .port_probe
= metrousb_port_probe
,
357 .port_remove
= metrousb_port_remove
,
358 .throttle
= metrousb_throttle
,
359 .unthrottle
= metrousb_unthrottle
,
360 .tiocmget
= metrousb_tiocmget
,
361 .tiocmset
= metrousb_tiocmset
,
364 static struct usb_serial_driver
* const serial_drivers
[] = {
369 module_usb_serial_driver(serial_drivers
, id_table
);
371 MODULE_LICENSE("GPL v2");
372 MODULE_AUTHOR("Philip Nicastro");
373 MODULE_AUTHOR("Aleksey Babahin <tamerlan311@gmail.com>");
374 MODULE_DESCRIPTION(DRIVER_DESC
);