blob: 0f1b45e3abd1a1ead7b2776be10a2a5747960136 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +02002/*
3 * ncm.c -- NCM gadget driver
4 *
5 * Copyright (C) 2010 Nokia Corporation
6 * Contact: Yauheni Kaliuta <yauheni.kaliuta@nokia.com>
7 *
8 * The driver borrows from ether.c which is:
9 *
10 * Copyright (C) 2003-2005,2008 David Brownell
11 * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger
12 * Copyright (C) 2008 Nokia Corporation
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020013 */
14
15/* #define DEBUG */
16/* #define VERBOSE_DEBUG */
17
18#include <linux/kernel.h>
Sebastian Andrzej Siewior721e2e92012-09-06 20:11:27 +020019#include <linux/module.h>
20#include <linux/usb/composite.h>
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020021
22#include "u_ether.h"
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +020023#include "u_ncm.h"
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020024
25#define DRIVER_DESC "NCM Gadget"
26
27/*-------------------------------------------------------------------------*/
28
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020029/* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
30 * Instead: allocate your own, using normal USB-IF procedures.
31 */
32
33/* Thanks to NetChip Technologies for donating this product ID.
34 * It's for devices with only CDC Ethernet configurations.
35 */
36#define CDC_VENDOR_NUM 0x0525 /* NetChip */
37#define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
38
39/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +020040USB_GADGET_COMPOSITE_OPTIONS();
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020041
Andrzej Pietrasiewiczf1a18232013-05-23 09:22:03 +020042USB_ETHERNET_MODULE_PARAMETERS();
43
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020044static struct usb_device_descriptor device_desc = {
45 .bLength = sizeof device_desc,
46 .bDescriptorType = USB_DT_DEVICE,
47
Igor Kotrasinski0aecfc12015-10-20 18:33:13 +020048 /* .bcdUSB = DYNAMIC */
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020049
50 .bDeviceClass = USB_CLASS_COMM,
51 .bDeviceSubClass = 0,
52 .bDeviceProtocol = 0,
53 /* .bMaxPacketSize0 = f(hardware) */
54
55 /* Vendor and product id defaults change according to what configs
56 * we support. (As does bNumConfigurations.) These values can
57 * also be overridden by module parameters.
58 */
59 .idVendor = cpu_to_le16 (CDC_VENDOR_NUM),
60 .idProduct = cpu_to_le16 (CDC_PRODUCT_NUM),
61 /* .bcdDevice = f(hardware) */
62 /* .iManufacturer = DYNAMIC */
63 /* .iProduct = DYNAMIC */
64 /* NO SERIAL NUMBER */
65 .bNumConfigurations = 1,
66};
67
Li Jun1156e912015-07-09 15:18:57 +080068static const struct usb_descriptor_header *otg_desc[2];
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020069
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020070/* string IDs are assigned dynamically */
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020071static struct usb_string strings_dev[] = {
Sebastian Andrzej Siewiorcc2683c2012-09-10 15:01:58 +020072 [USB_GADGET_MANUFACTURER_IDX].s = "",
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +020073 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
74 [USB_GADGET_SERIAL_IDX].s = "",
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020075 { } /* end of list */
76};
77
78static struct usb_gadget_strings stringtab_dev = {
79 .language = 0x0409, /* en-us */
80 .strings = strings_dev,
81};
82
83static struct usb_gadget_strings *dev_strings[] = {
84 &stringtab_dev,
85 NULL,
86};
87
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +020088static struct usb_function_instance *f_ncm_inst;
89static struct usb_function *f_ncm;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020090
91/*-------------------------------------------------------------------------*/
92
Arnd Bergmannc94e2892015-04-11 00:14:21 +020093static int ncm_do_config(struct usb_configuration *c)
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020094{
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +020095 int status;
96
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020097 /* FIXME alloc iConfiguration string, set it in c->strings */
98
99 if (gadget_is_otg(c->cdev->gadget)) {
100 c->descriptors = otg_desc;
101 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
102 }
103
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +0200104 f_ncm = usb_get_function(f_ncm_inst);
Gustavo A. R. Silva0cb58182018-01-18 16:25:51 -0600105 if (IS_ERR(f_ncm))
106 return PTR_ERR(f_ncm);
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +0200107
108 status = usb_add_function(c, f_ncm);
109 if (status < 0) {
110 usb_put_function(f_ncm);
111 return status;
112 }
113
114 return 0;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200115}
116
117static struct usb_configuration ncm_config_driver = {
118 /* .label = f(hardware) */
119 .label = "CDC Ethernet (NCM)",
120 .bConfigurationValue = 1,
121 /* .iConfiguration = DYNAMIC */
122 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
123};
124
125/*-------------------------------------------------------------------------*/
126
Arnd Bergmannc94e2892015-04-11 00:14:21 +0200127static int gncm_bind(struct usb_composite_dev *cdev)
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200128{
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200129 struct usb_gadget *gadget = cdev->gadget;
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +0200130 struct f_ncm_opts *ncm_opts;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200131 int status;
132
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +0200133 f_ncm_inst = usb_get_function_instance("ncm");
134 if (IS_ERR(f_ncm_inst))
135 return PTR_ERR(f_ncm_inst);
136
137 ncm_opts = container_of(f_ncm_inst, struct f_ncm_opts, func_inst);
138
139 gether_set_qmult(ncm_opts->net, qmult);
140 if (!gether_set_host_addr(ncm_opts->net, host_addr))
141 pr_info("using host ethernet address: %s", host_addr);
142 if (!gether_set_dev_addr(ncm_opts->net, dev_addr))
143 pr_info("using self ethernet address: %s", dev_addr);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200144
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200145 /* Allocate string descriptor numbers ... note that string
146 * contents can be overridden by the composite_dev glue.
147 */
148
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200149 status = usb_string_ids_tab(cdev, strings_dev);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200150 if (status < 0)
151 goto fail;
Sebastian Andrzej Siewior276e2e42012-09-06 20:11:21 +0200152 device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
153 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200154
Li Jun1156e912015-07-09 15:18:57 +0800155 if (gadget_is_otg(gadget) && !otg_desc[0]) {
156 struct usb_descriptor_header *usb_desc;
157
158 usb_desc = usb_otg_descriptor_alloc(gadget);
Wei Yongjune27d4b32020-05-07 05:13:23 +0000159 if (!usb_desc) {
160 status = -ENOMEM;
Li Jun1156e912015-07-09 15:18:57 +0800161 goto fail;
Wei Yongjune27d4b32020-05-07 05:13:23 +0000162 }
Li Jun1156e912015-07-09 15:18:57 +0800163 usb_otg_descriptor_init(gadget, usb_desc);
164 otg_desc[0] = usb_desc;
165 otg_desc[1] = NULL;
166 }
167
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200168 status = usb_add_config(cdev, &ncm_config_driver,
169 ncm_do_config);
170 if (status < 0)
Li Jun1156e912015-07-09 15:18:57 +0800171 goto fail1;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200172
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200173 usb_composite_overwrite_options(cdev, &coverwrite);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200174 dev_info(&gadget->dev, "%s\n", DRIVER_DESC);
175
176 return 0;
177
Li Jun1156e912015-07-09 15:18:57 +0800178fail1:
179 kfree(otg_desc[0]);
180 otg_desc[0] = NULL;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200181fail:
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +0200182 usb_put_function_instance(f_ncm_inst);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200183 return status;
184}
185
Arnd Bergmannc94e2892015-04-11 00:14:21 +0200186static int gncm_unbind(struct usb_composite_dev *cdev)
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200187{
Andrzej Pietrasiewicz9575bcf2013-05-23 09:22:07 +0200188 if (!IS_ERR_OR_NULL(f_ncm))
189 usb_put_function(f_ncm);
190 if (!IS_ERR_OR_NULL(f_ncm_inst))
191 usb_put_function_instance(f_ncm_inst);
Li Jun1156e912015-07-09 15:18:57 +0800192 kfree(otg_desc[0]);
193 otg_desc[0] = NULL;
194
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200195 return 0;
196}
197
Arnd Bergmannc94e2892015-04-11 00:14:21 +0200198static struct usb_composite_driver ncm_driver = {
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200199 .name = "g_ncm",
200 .dev = &device_desc,
201 .strings = dev_strings,
Roger Quadros463f67a2019-12-23 08:47:35 +0200202 .max_speed = USB_SPEED_SUPER,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200203 .bind = gncm_bind,
Arnd Bergmannc94e2892015-04-11 00:14:21 +0200204 .unbind = gncm_unbind,
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200205};
206
Tobias Klauser909346a2014-07-09 18:09:56 +0200207module_usb_composite_driver(ncm_driver);
208
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200209MODULE_DESCRIPTION(DRIVER_DESC);
210MODULE_AUTHOR("Yauheni Kaliuta");
211MODULE_LICENSE("GPL");