usb: gadget: u_ether: convert into module
[deliverable/linux.git] / drivers / usb / gadget / ncm.c
CommitLineData
6c34d288
YK
1/*
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.
6c34d288
YK
17 */
18
19/* #define DEBUG */
20/* #define VERBOSE_DEBUG */
21
22#include <linux/kernel.h>
721e2e91
SAS
23#include <linux/module.h>
24#include <linux/usb/composite.h>
6c34d288
YK
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 */
6c34d288 39#include "f_ncm.c"
6c34d288
YK
40
41/*-------------------------------------------------------------------------*/
42
43/* DO NOT REUSE THESE IDs with a protocol-incompatible driver!! Ever!!
44 * Instead: allocate your own, using normal USB-IF procedures.
45 */
46
47/* Thanks to NetChip Technologies for donating this product ID.
48 * It's for devices with only CDC Ethernet configurations.
49 */
50#define CDC_VENDOR_NUM 0x0525 /* NetChip */
51#define CDC_PRODUCT_NUM 0xa4a1 /* Linux-USB Ethernet Gadget */
52
53/*-------------------------------------------------------------------------*/
7d16e8d3 54USB_GADGET_COMPOSITE_OPTIONS();
6c34d288 55
f1a1823f
AP
56USB_ETHERNET_MODULE_PARAMETERS();
57
6c34d288
YK
58static struct usb_device_descriptor device_desc = {
59 .bLength = sizeof device_desc,
60 .bDescriptorType = USB_DT_DEVICE,
61
62 .bcdUSB = cpu_to_le16 (0x0200),
63
64 .bDeviceClass = USB_CLASS_COMM,
65 .bDeviceSubClass = 0,
66 .bDeviceProtocol = 0,
67 /* .bMaxPacketSize0 = f(hardware) */
68
69 /* Vendor and product id defaults change according to what configs
70 * we support. (As does bNumConfigurations.) These values can
71 * also be overridden by module parameters.
72 */
73 .idVendor = cpu_to_le16 (CDC_VENDOR_NUM),
74 .idProduct = cpu_to_le16 (CDC_PRODUCT_NUM),
75 /* .bcdDevice = f(hardware) */
76 /* .iManufacturer = DYNAMIC */
77 /* .iProduct = DYNAMIC */
78 /* NO SERIAL NUMBER */
79 .bNumConfigurations = 1,
80};
81
82static struct usb_otg_descriptor otg_descriptor = {
83 .bLength = sizeof otg_descriptor,
84 .bDescriptorType = USB_DT_OTG,
85
86 /* REVISIT SRP-only hardware is possible, although
87 * it would not be called "OTG" ...
88 */
89 .bmAttributes = USB_OTG_SRP | USB_OTG_HNP,
90};
91
92static const struct usb_descriptor_header *otg_desc[] = {
93 (struct usb_descriptor_header *) &otg_descriptor,
94 NULL,
95};
96
6c34d288 97/* string IDs are assigned dynamically */
6c34d288 98static struct usb_string strings_dev[] = {
cc2683c3 99 [USB_GADGET_MANUFACTURER_IDX].s = "",
276e2e4f
SAS
100 [USB_GADGET_PRODUCT_IDX].s = DRIVER_DESC,
101 [USB_GADGET_SERIAL_IDX].s = "",
6c34d288
YK
102 { } /* end of list */
103};
104
105static struct usb_gadget_strings stringtab_dev = {
106 .language = 0x0409, /* en-us */
107 .strings = strings_dev,
108};
109
110static struct usb_gadget_strings *dev_strings[] = {
111 &stringtab_dev,
112 NULL,
113};
114
d6a01439 115struct eth_dev *the_dev;
f1a1823f 116static u8 host_mac[ETH_ALEN];
6c34d288
YK
117
118/*-------------------------------------------------------------------------*/
119
120static int __init ncm_do_config(struct usb_configuration *c)
121{
122 /* FIXME alloc iConfiguration string, set it in c->strings */
123
124 if (gadget_is_otg(c->cdev->gadget)) {
125 c->descriptors = otg_desc;
126 c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
127 }
128
f1a1823f 129 return ncm_bind_config(c, host_mac, the_dev);
6c34d288
YK
130}
131
132static struct usb_configuration ncm_config_driver = {
133 /* .label = f(hardware) */
134 .label = "CDC Ethernet (NCM)",
135 .bConfigurationValue = 1,
136 /* .iConfiguration = DYNAMIC */
137 .bmAttributes = USB_CONFIG_ATT_SELFPOWER,
138};
139
140/*-------------------------------------------------------------------------*/
141
142static int __init gncm_bind(struct usb_composite_dev *cdev)
143{
6c34d288
YK
144 struct usb_gadget *gadget = cdev->gadget;
145 int status;
146
147 /* set up network link layer */
f1a1823f
AP
148 the_dev = gether_setup(cdev->gadget, dev_addr, host_addr, host_mac,
149 qmult);
d6a01439
SAS
150 if (IS_ERR(the_dev))
151 return PTR_ERR(the_dev);
6c34d288 152
6c34d288
YK
153 /* Allocate string descriptor numbers ... note that string
154 * contents can be overridden by the composite_dev glue.
155 */
156
e1f15ccb 157 status = usb_string_ids_tab(cdev, strings_dev);
6c34d288
YK
158 if (status < 0)
159 goto fail;
276e2e4f
SAS
160 device_desc.iManufacturer = strings_dev[USB_GADGET_MANUFACTURER_IDX].id;
161 device_desc.iProduct = strings_dev[USB_GADGET_PRODUCT_IDX].id;
6c34d288
YK
162
163 status = usb_add_config(cdev, &ncm_config_driver,
164 ncm_do_config);
165 if (status < 0)
166 goto fail;
167
7d16e8d3 168 usb_composite_overwrite_options(cdev, &coverwrite);
6c34d288
YK
169 dev_info(&gadget->dev, "%s\n", DRIVER_DESC);
170
171 return 0;
172
173fail:
d6a01439 174 gether_cleanup(the_dev);
6c34d288
YK
175 return status;
176}
177
178static int __exit gncm_unbind(struct usb_composite_dev *cdev)
179{
d6a01439 180 gether_cleanup(the_dev);
6c34d288
YK
181 return 0;
182}
183
c2ec75c2 184static __refdata struct usb_composite_driver ncm_driver = {
6c34d288
YK
185 .name = "g_ncm",
186 .dev = &device_desc,
187 .strings = dev_strings,
35a0e0bf 188 .max_speed = USB_SPEED_HIGH,
03e42bd5 189 .bind = gncm_bind,
6c34d288
YK
190 .unbind = __exit_p(gncm_unbind),
191};
192
193MODULE_DESCRIPTION(DRIVER_DESC);
194MODULE_AUTHOR("Yauheni Kaliuta");
195MODULE_LICENSE("GPL");
196
197static int __init init(void)
198{
03e42bd5 199 return usb_composite_probe(&ncm_driver);
6c34d288
YK
200}
201module_init(init);
202
203static void __exit cleanup(void)
204{
205 usb_composite_unregister(&ncm_driver);
206}
207module_exit(cleanup);
This page took 0.209116 seconds and 5 git commands to generate.