1 // SPDX-License-Identifier: GPL-2.0+
3 * printer.c -- Printer gadget driver
5 * Copyright (C) 2003-2005 David Brownell
6 * Copyright (C) 2006 Craig W. Nadler
9 #include <linux/module.h>
10 #include <linux/kernel.h>
11 #include <asm/byteorder.h>
13 #include <linux/usb/ch9.h>
14 #include <linux/usb/composite.h>
15 #include <linux/usb/gadget.h>
16 #include <linux/usb/g_printer.h>
18 USB_GADGET_COMPOSITE_OPTIONS();
20 #define DRIVER_DESC "Printer Gadget"
21 #define DRIVER_VERSION "2015 FEB 17"
23 static const char shortname
[] = "printer";
25 #include "u_printer.h"
27 /*-------------------------------------------------------------------------*/
29 /* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
30 * Instead: allocate your own, using normal USB-IF procedures.
33 /* Thanks to NetChip Technologies for donating this product ID.
35 #define PRINTER_VENDOR_NUM 0x0525 /* NetChip */
36 #define PRINTER_PRODUCT_NUM 0xa4a8 /* Linux-USB Printer Gadget */
38 /* Some systems will want different product identifiers published in the
39 * device descriptor, either numbers or strings or both. These string
40 * parameters are in UTF-8 (superset of ASCII's 7 bit characters).
43 module_param_named(iSerialNum
, coverwrite
.serial_number
, charp
, S_IRUGO
);
44 MODULE_PARM_DESC(iSerialNum
, "1");
46 static char *iPNPstring
;
47 module_param(iPNPstring
, charp
, S_IRUGO
);
48 MODULE_PARM_DESC(iPNPstring
, "MFG:linux;MDL:g_printer;CLS:PRINTER;SN:1;");
50 /* Number of requests to allocate per endpoint, not used for ep0. */
51 static unsigned qlen
= 10;
52 module_param(qlen
, uint
, S_IRUGO
|S_IWUSR
);
56 static struct usb_function_instance
*fi_printer
;
57 static struct usb_function
*f_printer
;
59 /*-------------------------------------------------------------------------*/
62 * DESCRIPTORS ... most are static, but strings and (full) configuration
63 * descriptors are built on demand.
66 static struct usb_device_descriptor device_desc
= {
67 .bLength
= sizeof device_desc
,
68 .bDescriptorType
= USB_DT_DEVICE
,
69 /* .bcdUSB = DYNAMIC */
70 .bDeviceClass
= USB_CLASS_PER_INTERFACE
,
73 .idVendor
= cpu_to_le16(PRINTER_VENDOR_NUM
),
74 .idProduct
= cpu_to_le16(PRINTER_PRODUCT_NUM
),
75 .bNumConfigurations
= 1
78 static const struct usb_descriptor_header
*otg_desc
[2];
80 /*-------------------------------------------------------------------------*/
82 /* descriptors that are built on-demand */
84 static char product_desc
[40] = DRIVER_DESC
;
85 static char serial_num
[40] = "1";
86 static char *pnp_string
=
87 "MFG:linux;MDL:g_printer;CLS:PRINTER;SN:1;";
89 /* static strings, in UTF-8 */
90 static struct usb_string strings
[] = {
91 [USB_GADGET_MANUFACTURER_IDX
].s
= "",
92 [USB_GADGET_PRODUCT_IDX
].s
= product_desc
,
93 [USB_GADGET_SERIAL_IDX
].s
= serial_num
,
97 static struct usb_gadget_strings stringtab_dev
= {
98 .language
= 0x0409, /* en-us */
102 static struct usb_gadget_strings
*dev_strings
[] = {
107 static struct usb_configuration printer_cfg_driver
= {
109 .bConfigurationValue
= 1,
110 .bmAttributes
= USB_CONFIG_ATT_ONE
| USB_CONFIG_ATT_SELFPOWER
,
113 static int printer_do_config(struct usb_configuration
*c
)
115 struct usb_gadget
*gadget
= c
->cdev
->gadget
;
118 usb_ep_autoconfig_reset(gadget
);
120 usb_gadget_set_selfpowered(gadget
);
122 if (gadget_is_otg(gadget
)) {
123 printer_cfg_driver
.descriptors
= otg_desc
;
124 printer_cfg_driver
.bmAttributes
|= USB_CONFIG_ATT_WAKEUP
;
127 f_printer
= usb_get_function(fi_printer
);
128 if (IS_ERR(f_printer
))
129 return PTR_ERR(f_printer
);
131 status
= usb_add_function(c
, f_printer
);
133 usb_put_function(f_printer
);
138 static int printer_bind(struct usb_composite_dev
*cdev
)
140 struct f_printer_opts
*opts
;
143 fi_printer
= usb_get_function_instance("printer");
144 if (IS_ERR(fi_printer
))
145 return PTR_ERR(fi_printer
);
147 opts
= container_of(fi_printer
, struct f_printer_opts
, func_inst
);
151 opts
->pnp_string
= kstrdup(iPNPstring
, GFP_KERNEL
);
152 if (!opts
->pnp_string
) {
154 goto fail_put_func_inst
;
156 opts
->pnp_string_allocated
= true;
158 * we don't free this memory in case of error
159 * as printer cleanup func will do this for us
162 opts
->pnp_string
= pnp_string
;
165 ret
= usb_string_ids_tab(cdev
, strings
);
167 goto fail_put_func_inst
;
169 device_desc
.iManufacturer
= strings
[USB_GADGET_MANUFACTURER_IDX
].id
;
170 device_desc
.iProduct
= strings
[USB_GADGET_PRODUCT_IDX
].id
;
171 device_desc
.iSerialNumber
= strings
[USB_GADGET_SERIAL_IDX
].id
;
173 if (gadget_is_otg(cdev
->gadget
) && !otg_desc
[0]) {
174 struct usb_descriptor_header
*usb_desc
;
176 usb_desc
= usb_otg_descriptor_alloc(cdev
->gadget
);
179 goto fail_put_func_inst
;
181 usb_otg_descriptor_init(cdev
->gadget
, usb_desc
);
182 otg_desc
[0] = usb_desc
;
186 ret
= usb_add_config(cdev
, &printer_cfg_driver
, printer_do_config
);
188 goto fail_free_otg_desc
;
190 usb_composite_overwrite_options(cdev
, &coverwrite
);
197 usb_put_function_instance(fi_printer
);
201 static int printer_unbind(struct usb_composite_dev
*cdev
)
203 usb_put_function(f_printer
);
204 usb_put_function_instance(fi_printer
);
212 static struct usb_composite_driver printer_driver
= {
215 .strings
= dev_strings
,
216 .max_speed
= USB_SPEED_SUPER
,
217 .bind
= printer_bind
,
218 .unbind
= printer_unbind
,
221 module_usb_composite_driver(printer_driver
);
223 MODULE_DESCRIPTION(DRIVER_DESC
);
224 MODULE_AUTHOR("Craig Nadler");
225 MODULE_LICENSE("GPL");