blob: 8537cd9c6affffcc6ab1e38a84c7bfddefc038e2 [file] [log] [blame]
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +02001/*
2 * ncm.c -- NCM gadget driver
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 * Contact: Yauheni Kaliuta <yauheni.kaliuta@nokia.com>
6 *
7 * The driver borrows from ether.c which is:
8 *
9 * Copyright (C) 2003-2005,2008 David Brownell
10 * Copyright (C) 2003-2004 Robert Schwebel, Benedikt Spranger
11 * Copyright (C) 2008 Nokia Corporation
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020017 */
18
19/* #define DEBUG */
20/* #define VERBOSE_DEBUG */
21
22#include <linux/kernel.h>
23#include <linux/utsname.h>
24
25
26#include "u_ether.h"
27
28#define DRIVER_DESC "NCM Gadget"
29
30/*-------------------------------------------------------------------------*/
31
32/*
33 * Kbuild is not very cooperative with respect to linking separately
34 * compiled library objects into one module. So for now we won't use
35 * separate compilation ... ensuring init/exit sections work to shrink
36 * the runtime footprint, and giving us at least some parts of what
37 * a "gcc --combine ... part1.c part2.c part3.c ... " build would.
38 */
39#include "composite.c"
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020040
41#include "f_ncm.c"
42#include "u_ether.c"
43
44/*-------------------------------------------------------------------------*/
45
46/* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
47 * Instead: allocate your own, using normal USB-IF procedures.
48 */
49
50/* Thanks to NetChip Technologies for donating this product ID.
51 * It's for devices with only CDC Ethernet configurations.
52 */
53#define CDC_VENDOR_NUM 0x0525 /* NetChip */
54#define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
55
56/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +020057USB_GADGET_COMPOSITE_OPTIONS();
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +020058
59static struct usb_device_descriptor device_desc = {
60 .bLength = sizeof device_desc,
61 .bDescriptorType = USB_DT_DEVICE,
62
63 .bcdUSB = cpu_to_le16 (0x0200),
64
65 .bDeviceClass = USB_CLASS_COMM,
66 .bDeviceSubClass = 0,
67 .bDeviceProtocol = 0,
68 /* .bMaxPacketSize0 = f(hardware) */
69
70 /* Vendor and product id defaults change according to what configs
71 * we support. (As does bNumConfigurations.) These values can
72 * also be overridden by module parameters.
73 */
74 .idVendor = cpu_to_le16 (CDC_VENDOR_NUM),
75 .idProduct = cpu_to_le16 (CDC_PRODUCT_NUM),
76 /* .bcdDevice = f(hardware) */
77 /* .iManufacturer = DYNAMIC */
78 /* .iProduct = DYNAMIC */
79 /* NO SERIAL NUMBER */
80 .bNumConfigurations = 1,
81};
82
83static struct usb_otg_descriptor otg_descriptor = {
84 .bLength = sizeof otg_descriptor,
85 .bDescriptorType = USB_DT_OTG,
86
87 /* REVISIT SRP-only hardware is possible, although
88 * it would not be called "OTG" ...
89 */
90 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
91};
92
93static const struct usb_descriptor_header *otg_desc[] = {
94 (struct usb_descriptor_header *) &otg_descriptor,
95 NULL,
96};
97
98
99/* string IDs are assigned dynamically */
100
101#define STRING_MANUFACTURER_IDX 0
102#define STRING_PRODUCT_IDX 1
103
104static char manufacturer[50];
105
106static struct usb_string strings_dev[] = {
107 [STRING_MANUFACTURER_IDX].s = manufacturer,
108 [STRING_PRODUCT_IDX].s = DRIVER_DESC,
109 { } /* end of list */
110};
111
112static struct usb_gadget_strings stringtab_dev = {
113 .language = 0x0409, /* en-us */
114 .strings = strings_dev,
115};
116
117static struct usb_gadget_strings *dev_strings[] = {
118 &stringtab_dev,
119 NULL,
120};
121
122static u8 hostaddr[ETH_ALEN];
123
124/*-------------------------------------------------------------------------*/
125
126static int __init ncm_do_config(struct usb_configuration *c)
127{
128 /* FIXME alloc iConfiguration string, set it in c->strings */
129
130 if (gadget_is_otg(c->cdev->gadget)) {
131 c->descriptors = otg_desc;
132 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
133 }
134
135 return ncm_bind_config(c, hostaddr);
136}
137
138static struct usb_configuration ncm_config_driver = {
139 /* .label = f(hardware) */
140 .label = "CDC Ethernet (NCM)",
141 .bConfigurationValue = 1,
142 /* .iConfiguration = DYNAMIC */
143 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
144};
145
146/*-------------------------------------------------------------------------*/
147
148static int __init gncm_bind(struct usb_composite_dev *cdev)
149{
150 int gcnum;
151 struct usb_gadget *gadget = cdev->gadget;
152 int status;
153
154 /* set up network link layer */
155 status = gether_setup(cdev->gadget, hostaddr);
156 if (status < 0)
157 return status;
158
159 gcnum = usb_gadget_controller_number(gadget);
160 if (gcnum >= 0)
161 device_desc.bcdDevice = cpu_to_le16(0x0300 | gcnum);
162 else {
163 /* We assume that can_support_ecm() tells the truth;
164 * but if the controller isn't recognized at all then
165 * that assumption is a bit more likely to be wrong.
166 */
167 dev_warn(&gadget->dev,
168 "controller '%s' not recognized; trying %s\n",
169 gadget->name,
170 ncm_config_driver.label);
171 device_desc.bcdDevice =
172 cpu_to_le16(0x0300 | 0x0099);
173 }
174
175
176 /* Allocate string descriptor numbers ... note that string
177 * contents can be overridden by the composite_dev glue.
178 */
179
180 /* device descriptor strings: manufacturer, product */
181 snprintf(manufacturer, sizeof manufacturer, "%s %s with %s",
182 init_utsname()->sysname, init_utsname()->release,
183 gadget->name);
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200184 status = usb_string_ids_tab(cdev, strings_dev);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200185 if (status < 0)
186 goto fail;
Sebastian Andrzej Siewiore1f15cc2012-09-06 20:11:16 +0200187 device_desc.iManufacturer = strings_dev[STRING_MANUFACTURER_IDX].id;
188 device_desc.iProduct = strings_dev[STRING_PRODUCT_IDX].id;
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200189
190 status = usb_add_config(cdev, &ncm_config_driver,
191 ncm_do_config);
192 if (status < 0)
193 goto fail;
194
Sebastian Andrzej Siewior7d16e8d2012-09-10 15:01:53 +0200195 usb_composite_overwrite_options(cdev, &coverwrite);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200196 dev_info(&gadget->dev, "%s\n", DRIVER_DESC);
197
198 return 0;
199
200fail:
201 gether_cleanup();
202 return status;
203}
204
205static int __exit gncm_unbind(struct usb_composite_dev *cdev)
206{
207 gether_cleanup();
208 return 0;
209}
210
Sebastian Andrzej Siewiorc2ec75c2012-09-06 20:11:03 +0200211static __refdata struct usb_composite_driver ncm_driver = {
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200212 .name = "g_ncm",
213 .dev = &device_desc,
214 .strings = dev_strings,
Tatyana Brokhman35a0e0b2011-06-29 16:41:49 +0300215 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200216 .bind = gncm_bind,
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200217 .unbind = __exit_p(gncm_unbind),
218};
219
220MODULE_DESCRIPTION(DRIVER_DESC);
221MODULE_AUTHOR("Yauheni Kaliuta");
222MODULE_LICENSE("GPL");
223
224static int __init init(void)
225{
Sebastian Andrzej Siewior03e42bd2012-09-06 20:11:04 +0200226 return usb_composite_probe(&ncm_driver);
Yauheni Kaliuta6c34d282010-12-08 13:12:06 +0200227}
228module_init(init);
229
230static void __exit cleanup(void)
231{
232 usb_composite_unregister(&ncm_driver);
233}
234module_exit(cleanup);