iPXE
ecm.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 FILE_SECBOOT ( PERMITTED );
26 
27 #include <stdint.h>
28 #include <errno.h>
29 #include <ipxe/netdevice.h>
30 #include <ipxe/ethernet.h>
31 #include <ipxe/if_ether.h>
32 #include <ipxe/base16.h>
33 #include <ipxe/profile.h>
34 #include <ipxe/acpimac.h>
35 #include <ipxe/usb.h>
36 #include "ecm.h"
37 
38 /** @file
39  *
40  * CDC-ECM USB Ethernet driver
41  *
42  */
43 
44 /** Interrupt completion profiler */
45 static struct profiler ecm_intr_profiler __profiler =
46  { .name = "ecm.intr" };
47 
48 /** Bulk IN completion profiler */
49 static struct profiler ecm_in_profiler __profiler =
50  { .name = "ecm.in" };
51 
52 /** Bulk OUT profiler */
53 static struct profiler ecm_out_profiler __profiler =
54  { .name = "ecm.out" };
55 
56 /******************************************************************************
57  *
58  * Ethernet functional descriptor
59  *
60  ******************************************************************************
61  */
62 
63 /**
64  * Locate Ethernet functional descriptor
65  *
66  * @v config Configuration descriptor
67  * @v interface Interface descriptor
68  * @ret desc Descriptor, or NULL if not found
69  */
74 
76  if ( ( desc->header.type == USB_CS_INTERFACE_DESCRIPTOR ) &&
77  ( desc->subtype == CDC_SUBTYPE_ETHERNET ) )
78  return desc;
79  }
80  return NULL;
81 }
82 
83 /**
84  * Get hardware MAC address
85  *
86  * @v func USB function
87  * @v desc Ethernet functional descriptor
88  * @v netdev Network device
89  * @ret rc Return status code
90  */
91 int ecm_fetch_mac ( struct usb_function *func,
93  struct net_device *netdev ) {
94  struct usb_device *usb = func->usb;
95  char buf[ base16_encoded_len ( ETH_ALEN ) + 1 /* NUL */ ];
96  uint8_t amac[ETH_ALEN];
97  int len;
98  int rc;
99 
100  /* Fetch MAC address string */
101  buf[ sizeof ( buf ) - 1 ] = '\0';
102  len = usb_get_string_descriptor ( usb, desc->mac, 0, buf,
103  ( sizeof ( buf ) - 1 ) );
104  if ( len < 0 ) {
105  rc = len;
106  return rc;
107  }
108 
109  /* Sanity check */
110  if ( len != ( ( int ) ( sizeof ( buf ) - 1 /* NUL */ ) ) ) {
111  DBGC ( usb, "USB %s has invalid ECM MAC \"%s\"\n",
112  func->name, buf );
113  return -EINVAL;
114  }
115 
116  /* Decode MAC address */
117  len = base16_decode ( buf, netdev->hw_addr, ETH_ALEN );
118  if ( len < 0 ) {
119  rc = len;
120  DBGC ( usb, "USB %s could not decode ECM MAC \"%s\": %s\n",
121  func->name, buf, strerror ( rc ) );
122  return rc;
123  }
124 
125  /* Apply system-specific MAC address as current link-layer
126  * address, if present.
127  */
128  if ( ( rc = acpi_mac ( amac ) ) == 0 ) {
129  memcpy ( netdev->ll_addr, amac, ETH_ALEN );
130  DBGC ( usb, "USB %s using system-specific MAC %s\n",
131  func->name, eth_ntoa ( netdev->ll_addr ) );
132  }
133 
134  return 0;
135 }
136 
137 /******************************************************************************
138  *
139  * CDC-ECM communications interface
140  *
141  ******************************************************************************
142  */
143 
144 /**
145  * Complete interrupt transfer
146  *
147  * @v ep USB endpoint
148  * @v iobuf I/O buffer
149  * @v rc Completion status code
150  */
151 static void ecm_intr_complete ( struct usb_endpoint *ep,
152  struct io_buffer *iobuf, int rc ) {
153  struct ecm_device *ecm = container_of ( ep, struct ecm_device,
154  usbnet.intr );
155  struct net_device *netdev = ecm->netdev;
156  struct usb_setup_packet *message;
157  size_t len = iob_len ( iobuf );
158 
159  /* Profile completions */
160  profile_start ( &ecm_intr_profiler );
161 
162  /* Ignore packets cancelled when the endpoint closes */
163  if ( ! ep->open )
164  goto ignore;
165 
166  /* Drop packets with errors */
167  if ( rc != 0 ) {
168  DBGC ( ecm, "ECM %p interrupt failed: %s\n",
169  ecm, strerror ( rc ) );
170  DBGC_HDA ( ecm, 0, iobuf->data, iob_len ( iobuf ) );
171  goto error;
172  }
173 
174  /* Extract message header */
175  if ( len < sizeof ( *message ) ) {
176  DBGC ( ecm, "ECM %p underlength interrupt:\n", ecm );
177  DBGC_HDA ( ecm, 0, iobuf->data, iob_len ( iobuf ) );
178  rc = -EINVAL;
179  goto error;
180  }
181  message = iobuf->data;
182 
183  /* Parse message header */
184  switch ( message->request ) {
185 
187  if ( message->value && ! netdev_link_ok ( netdev ) ) {
188  DBGC ( ecm, "ECM %p link up\n", ecm );
190  } else if ( netdev_link_ok ( netdev ) && ! message->value ) {
191  DBGC ( ecm, "ECM %p link down\n", ecm );
193  }
194  break;
195 
197  /* Ignore */
198  break;
199 
200  default:
201  DBGC ( ecm, "ECM %p unrecognised interrupt:\n", ecm );
202  DBGC_HDA ( ecm, 0, iobuf->data, iob_len ( iobuf ) );
203  rc = -ENOTSUP;
204  goto error;
205  }
206 
207  /* Free I/O buffer */
208  free_iob ( iobuf );
209  profile_stop ( &ecm_intr_profiler );
210 
211  return;
212 
213  error:
214  netdev_rx_err ( netdev, iob_disown ( iobuf ), rc );
215  ignore:
216  free_iob ( iobuf );
217  return;
218 }
219 
220 /** Interrupt endpoint operations */
223 };
224 
225 /******************************************************************************
226  *
227  * CDC-ECM data interface
228  *
229  ******************************************************************************
230  */
231 
232 /**
233  * Complete bulk IN transfer
234  *
235  * @v ep USB endpoint
236  * @v iobuf I/O buffer
237  * @v rc Completion status code
238  */
239 static void ecm_in_complete ( struct usb_endpoint *ep, struct io_buffer *iobuf,
240  int rc ) {
241  struct ecm_device *ecm = container_of ( ep, struct ecm_device,
242  usbnet.in );
243  struct net_device *netdev = ecm->netdev;
244 
245  /* Profile receive completions */
246  profile_start ( &ecm_in_profiler );
247 
248  /* Ignore packets cancelled when the endpoint closes */
249  if ( ! ep->open )
250  goto ignore;
251 
252  /* Record USB errors against the network device */
253  if ( rc != 0 ) {
254  DBGC ( ecm, "ECM %p bulk IN failed: %s\n",
255  ecm, strerror ( rc ) );
256  goto error;
257  }
258 
259  /* Hand off to network stack */
260  netdev_rx ( netdev, iob_disown ( iobuf ) );
261 
262  profile_stop ( &ecm_in_profiler );
263  return;
264 
265  error:
266  netdev_rx_err ( netdev, iob_disown ( iobuf ), rc );
267  ignore:
268  free_iob ( iobuf );
269 }
270 
271 /** Bulk IN endpoint operations */
274 };
275 
276 /**
277  * Transmit packet
278  *
279  * @v ecm CDC-ECM device
280  * @v iobuf I/O buffer
281  * @ret rc Return status code
282  */
283 static int ecm_out_transmit ( struct ecm_device *ecm,
284  struct io_buffer *iobuf ) {
285  int rc;
286 
287  /* Profile transmissions */
288  profile_start ( &ecm_out_profiler );
289 
290  /* Enqueue I/O buffer */
291  if ( ( rc = usb_stream ( &ecm->usbnet.out, iobuf, 1 ) ) != 0 )
292  return rc;
293 
294  profile_stop ( &ecm_out_profiler );
295  return 0;
296 }
297 
298 /**
299  * Complete bulk OUT transfer
300  *
301  * @v ep USB endpoint
302  * @v iobuf I/O buffer
303  * @v rc Completion status code
304  */
305 static void ecm_out_complete ( struct usb_endpoint *ep, struct io_buffer *iobuf,
306  int rc ) {
307  struct ecm_device *ecm = container_of ( ep, struct ecm_device,
308  usbnet.out );
309  struct net_device *netdev = ecm->netdev;
310 
311  /* Report TX completion */
312  netdev_tx_complete_err ( netdev, iobuf, rc );
313 }
314 
315 /** Bulk OUT endpoint operations */
318 };
319 
320 /******************************************************************************
321  *
322  * Network device interface
323  *
324  ******************************************************************************
325  */
326 
327 /**
328  * Open network device
329  *
330  * @v netdev Network device
331  * @ret rc Return status code
332  */
333 static int ecm_open ( struct net_device *netdev ) {
334  struct ecm_device *ecm = netdev->priv;
335  struct usb_device *usb = ecm->usb;
336  unsigned int filter;
337  int rc;
338 
339  /* Open USB network device */
340  if ( ( rc = usbnet_open ( &ecm->usbnet ) ) != 0 ) {
341  DBGC ( ecm, "ECM %p could not open: %s\n",
342  ecm, strerror ( rc ) );
343  goto err_open;
344  }
345 
346  /* Set packet filter */
352  filter, ecm->usbnet.comms, NULL, 0 ) ) != 0 ){
353  DBGC ( ecm, "ECM %p could not set packet filter: %s\n",
354  ecm, strerror ( rc ) );
355  goto err_set_filter;
356  }
357 
358  return 0;
359 
360  err_set_filter:
361  usbnet_close ( &ecm->usbnet );
362  err_open:
363  return rc;
364 }
365 
366 /**
367  * Close network device
368  *
369  * @v netdev Network device
370  */
371 static void ecm_close ( struct net_device *netdev ) {
372  struct ecm_device *ecm = netdev->priv;
373 
374  /* Close USB network device */
375  usbnet_close ( &ecm->usbnet );
376 }
377 
378 /**
379  * Transmit packet
380  *
381  * @v netdev Network device
382  * @v iobuf I/O buffer
383  * @ret rc Return status code
384  */
385 static int ecm_transmit ( struct net_device *netdev,
386  struct io_buffer *iobuf ) {
387  struct ecm_device *ecm = netdev->priv;
388  int rc;
389 
390  /* Transmit packet */
391  if ( ( rc = ecm_out_transmit ( ecm, iobuf ) ) != 0 )
392  return rc;
393 
394  return 0;
395 }
396 
397 /**
398  * Poll for completed and received packets
399  *
400  * @v netdev Network device
401  */
402 static void ecm_poll ( struct net_device *netdev ) {
403  struct ecm_device *ecm = netdev->priv;
404  int rc;
405 
406  /* Poll USB bus */
407  usb_poll ( ecm->bus );
408 
409  /* Refill endpoints */
410  if ( ( rc = usbnet_refill ( &ecm->usbnet ) ) != 0 )
411  netdev_rx_err ( netdev, NULL, rc );
412 }
413 
414 /** CDC-ECM network device operations */
416  .open = ecm_open,
417  .close = ecm_close,
418  .transmit = ecm_transmit,
419  .poll = ecm_poll,
420 };
421 
422 /******************************************************************************
423  *
424  * USB interface
425  *
426  ******************************************************************************
427  */
428 
429 /**
430  * Probe device
431  *
432  * @v func USB function
433  * @v config Configuration descriptor
434  * @ret rc Return status code
435  */
436 static int ecm_probe ( struct usb_function *func,
437  struct usb_configuration_descriptor *config ) {
438  struct usb_device *usb = func->usb;
439  struct net_device *netdev;
440  struct ecm_device *ecm;
441  struct usb_interface_descriptor *comms;
442  struct ecm_ethernet_descriptor *ethernet;
443  int rc;
444 
445  /* Allocate and initialise structure */
446  netdev = alloc_etherdev ( sizeof ( *ecm ) );
447  if ( ! netdev ) {
448  rc = -ENOMEM;
449  goto err_alloc;
450  }
452  netdev->dev = &func->dev;
453  ecm = netdev->priv;
454  memset ( ecm, 0, sizeof ( *ecm ) );
455  ecm->usb = usb;
456  ecm->bus = usb->port->hub->bus;
457  ecm->netdev = netdev;
458  usbnet_init ( &ecm->usbnet, func, &ecm_intr_operations,
460  usb_refill_init ( &ecm->usbnet.intr, 0, 0, ECM_INTR_MAX_FILL );
462  DBGC ( ecm, "ECM %p on %s\n", ecm, func->name );
463 
464  /* Describe USB network device */
465  if ( ( rc = usbnet_describe ( &ecm->usbnet, config ) ) != 0 ) {
466  DBGC ( ecm, "ECM %p could not describe: %s\n",
467  ecm, strerror ( rc ) );
468  goto err_describe;
469  }
470 
471  /* Locate Ethernet descriptor */
472  comms = usb_interface_descriptor ( config, ecm->usbnet.comms, 0 );
473  assert ( comms != NULL );
474  ethernet = ecm_ethernet_descriptor ( config, comms );
475  if ( ! ethernet ) {
476  DBGC ( ecm, "ECM %p has no Ethernet descriptor\n", ecm );
477  rc = -EINVAL;
478  goto err_ethernet;
479  }
480 
481  /* Fetch MAC address */
482  if ( ( rc = ecm_fetch_mac ( func, ethernet, netdev ) ) != 0 ) {
483  DBGC ( ecm, "ECM %p could not fetch MAC address: %s\n",
484  ecm, strerror ( rc ) );
485  goto err_fetch_mac;
486  }
487 
488  /* Register network device */
489  if ( ( rc = register_netdev ( netdev ) ) != 0 )
490  goto err_register;
491 
492  usb_func_set_drvdata ( func, ecm );
493  return 0;
494 
496  err_register:
497  err_fetch_mac:
498  err_ethernet:
499  err_describe:
501  netdev_put ( netdev );
502  err_alloc:
503  return rc;
504 }
505 
506 /**
507  * Remove device
508  *
509  * @v func USB function
510  */
511 static void ecm_remove ( struct usb_function *func ) {
512  struct ecm_device *ecm = usb_func_get_drvdata ( func );
513  struct net_device *netdev = ecm->netdev;
514 
517  netdev_put ( netdev );
518 }
519 
520 /** CDC-ECM device IDs */
521 static struct usb_device_id ecm_ids[] = {
522  {
523  .name = "cdc-ecm",
524  .vendor = USB_ANY_ID,
525  .product = USB_ANY_ID,
526  },
527 };
528 
529 /** CDC-ECM driver */
530 struct usb_driver ecm_driver __usb_driver = {
531  .ids = ecm_ids,
532  .id_count = ( sizeof ( ecm_ids ) / sizeof ( ecm_ids[0] ) ),
534  .score = USB_SCORE_NORMAL,
535  .probe = ecm_probe,
536  .remove = ecm_remove,
537 };
A USB driver.
Definition: usb.h:1407
#define EINVAL
Invalid argument.
Definition: errno.h:429
Unicast packets.
Definition: ecm.h:32
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
A USB device ID.
Definition: usb.h:1361
void(* complete)(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete transfer.
Definition: usb.h:496
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition: netdevice.c:587
An Ethernet Functional Descriptor.
Definition: ecm.h:40
unsigned int comms
Communications interface.
Definition: usbnet.h:21
static void * usb_func_get_drvdata(struct usb_function *func)
Get USB function driver private data.
Definition: usb.h:718
CDC-ECM USB Ethernet driver.
const char * name
Name.
Definition: usb.h:676
#define USB_SUBCLASS_CDC_ECM
CDC-ECM subclass.
Definition: ecm.h:18
int(* open)(struct net_device *netdev)
Open network device.
Definition: netdevice.h:223
const char * name
Name.
Definition: usb.h:1363
static void ecm_in_complete(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete bulk IN transfer.
Definition: ecm.c:239
UINT8_t filter
Receive packet filter.
Definition: pxe_api.h:68
Error codes.
static struct net_device_operations ecm_operations
CDC-ECM network device operations.
Definition: ecm.c:415
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition: iobuf.c:153
#define CDC_SUBTYPE_ETHERNET
Ethernet descriptor subtype.
Definition: cdc.h:42
struct arbelprm_completion_with_error error
Definition: arbel.h:12
struct usbnet_device usbnet
USB network device.
Definition: ecm.h:66
#define DBGC(...)
Definition: compiler.h:505
#define ECM_IN_MAX_FILL
Bulk IN maximum fill level.
Definition: ecm.h:79
#define ECM_SET_ETHERNET_PACKET_FILTER
Set Ethernet packet filter.
Definition: ecm.h:21
int usb_stream(struct usb_endpoint *ep, struct io_buffer *iobuf, int terminate)
Enqueue USB stream transfer.
Definition: usb.c:546
#define for_each_interface_descriptor(desc, config, interface)
Iterate over all configuration descriptors within an interface descriptor.
Definition: usb.h:394
static struct usb_endpoint_driver_operations ecm_intr_operations
Interrupt endpoint operations.
Definition: ecm.c:221
void netdev_link_down(struct net_device *netdev)
Mark network device as having link down.
Definition: netdevice.c:231
static int ecm_transmit(struct net_device *netdev, struct io_buffer *iobuf)
Transmit packet.
Definition: ecm.c:385
A data structure for storing profiling information.
Definition: profile.h:27
int open
Endpoint is open.
Definition: usb.h:419
static void profile_stop(struct profiler *profiler)
Stop profiling.
Definition: profile.h:174
struct usb_endpoint intr
Interrupt endpoint.
Definition: usbnet.h:28
int usb_control(struct usb_device *usb, unsigned int request, unsigned int value, unsigned int index, void *data, size_t len)
Issue USB control transaction.
Definition: usb.c:784
static int ecm_out_transmit(struct ecm_device *ecm, struct io_buffer *iobuf)
Transmit packet.
Definition: ecm.c:283
static void ecm_remove(struct usb_function *func)
Remove device.
Definition: ecm.c:511
#define ENOTSUP
Operation not supported.
Definition: errno.h:590
static size_t base16_encoded_len(size_t raw_len)
Calculate length of base16-encoded data.
Definition: base16.h:25
struct usb_endpoint out
Bulk OUT endpoint.
Definition: usbnet.h:32
static void netdev_init(struct net_device *netdev, struct net_device_operations *op)
Initialise a network device.
Definition: netdevice.h:519
struct ena_llq_option desc
Descriptor counts.
Definition: ena.h:20
#define ENOMEM
Not enough space.
Definition: errno.h:535
#define iob_disown(iobuf)
Disown an I/O buffer.
Definition: iobuf.h:217
A USB endpoint.
Definition: usb.h:404
void * memcpy(void *dest, const void *src, size_t len) __nonnull
static struct usb_endpoint_driver_operations ecm_in_operations
Bulk IN endpoint operations.
Definition: ecm.c:272
Promiscuous mode.
Definition: ecm.h:28
const char * name
Name.
Definition: profile.h:29
A USB interface descriptor.
Definition: usb.h:245
int acpi_mac(uint8_t *hw_addr)
Extract MAC address from DSDT/SSDT.
Definition: acpimac.c:235
struct usb_port * port
USB port.
Definition: usb.h:727
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
static void netdev_put(struct net_device *netdev)
Drop reference to network device.
Definition: netdevice.h:576
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:36
Ethernet protocol.
An object interface.
Definition: interface.h:125
All multicast packets.
Definition: ecm.h:30
void * priv
Driver private data.
Definition: netdevice.h:432
#define DBGC_HDA(...)
Definition: compiler.h:506
static void netdev_link_up(struct net_device *netdev)
Mark network device as having link up.
Definition: netdevice.h:789
ring len
Length.
Definition: dwmac.h:231
struct ecm_ethernet_descriptor * ecm_ethernet_descriptor(struct usb_configuration_descriptor *config, struct usb_interface_descriptor *interface)
Locate Ethernet functional descriptor.
Definition: ecm.c:71
static void usb_refill_init(struct usb_endpoint *ep, size_t reserve, size_t len, unsigned int max)
Initialise USB endpoint refill.
Definition: usb.h:617
static int netdev_link_ok(struct net_device *netdev)
Check link state of network device.
Definition: netdevice.h:640
static struct net_device * netdev
Definition: gdbudp.c:52
struct usb_device * usb
USB device.
Definition: ecm.h:60
static void usb_func_set_drvdata(struct usb_function *func, void *priv)
Set USB function driver private data.
Definition: usb.h:707
static void profile_start(struct profiler *profiler)
Start profiling.
Definition: profile.h:161
#define ECM_IN_MTU
Bulk IN buffer size.
Definition: ecm.h:85
Profiling.
#define USB_CS_INTERFACE_DESCRIPTOR
A class-specific interface descriptor.
Definition: usb.h:346
void unregister_netdev(struct net_device *netdev)
Unregister network device.
Definition: netdevice.c:942
int usbnet_refill(struct usbnet_device *usbnet)
Refill USB network device bulk IN and interrupt endpoints.
Definition: usbnet.c:152
A USB device.
Definition: usb.h:723
struct usb_interface_descriptor * usb_interface_descriptor(struct usb_configuration_descriptor *config, unsigned int interface, unsigned int alternate)
Locate USB interface descriptor.
Definition: usb.c:144
#define CDC_NETWORK_CONNECTION
Network connection notification.
Definition: cdc.h:50
static void usb_poll(struct usb_bus *bus)
Poll USB bus.
Definition: usb.h:1072
FILE_SECBOOT(PERMITTED)
#define CDC_CONNECTION_SPEED_CHANGE
Connection speed change notification.
Definition: cdc.h:55
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:79
#define ECM_INTR_MAX_FILL
Interrupt maximum fill level.
Definition: ecm.h:73
int register_netdev(struct net_device *netdev)
Register network device.
Definition: netdevice.c:760
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:160
const char * eth_ntoa(const void *ll_addr)
Transcribe Ethernet address.
Definition: ethernet.c:176
#define USB_CLASS_ID(base, subclass, protocol)
Construct USB class ID.
Definition: usb.h:1389
A network device.
Definition: netdevice.h:353
static void ecm_close(struct net_device *netdev)
Close network device.
Definition: ecm.c:371
struct usb_endpoint in
Bulk IN endpoint.
Definition: usbnet.h:30
static void ecm_out_complete(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete bulk OUT transfer.
Definition: ecm.c:305
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
Definition: netdevice.h:532
Normal driver.
Definition: usb.h:1453
struct usb_bus * bus
USB bus.
Definition: ecm.h:62
unsigned char uint8_t
Definition: stdint.h:10
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
#define ETH_ALEN
Definition: if_ether.h:9
static int ecm_open(struct net_device *netdev)
Open network device.
Definition: ecm.c:333
struct usb_device * usb
USB device.
Definition: usb.h:678
A USB setup data packet.
Definition: usb.h:83
static void ecm_intr_complete(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete interrupt transfer.
Definition: ecm.c:151
#define USB_CLASS_CDC
Class code for communications devices.
Definition: cdc.h:16
Network device operations.
Definition: netdevice.h:214
void netdev_rx(struct net_device *netdev, struct io_buffer *iobuf)
Add packet to receive queue.
Definition: netdevice.c:549
struct device * dev
Underlying hardware device.
Definition: netdevice.h:365
static int ecm_probe(struct usb_function *func, struct usb_configuration_descriptor *config)
Probe device.
Definition: ecm.c:436
Network device management.
A CDC-ECM network device.
Definition: ecm.h:58
A USB configuration descriptor.
Definition: usb.h:210
void netdev_tx_complete_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Complete network transmission.
Definition: netdevice.c:471
#define USB_ANY_ID
Match-anything ID.
Definition: usb.h:1373
Universal Serial Bus (USB)
static void usbnet_init(struct usbnet_device *usbnet, struct usb_function *func, struct usb_endpoint_driver_operations *intr, struct usb_endpoint_driver_operations *in, struct usb_endpoint_driver_operations *out)
Initialise USB network device.
Definition: usbnet.h:45
void * data
Start of data.
Definition: iobuf.h:53
struct usb_hub * hub
USB hub.
Definition: usb.h:815
static struct usb_device_id ecm_ids[]
CDC-ECM device IDs.
Definition: ecm.c:521
int ecm_fetch_mac(struct usb_function *func, struct ecm_ethernet_descriptor *desc, struct net_device *netdev)
Get hardware MAC address.
Definition: ecm.c:91
static struct usb_endpoint_driver_operations ecm_out_operations
Bulk OUT endpoint operations.
Definition: ecm.c:316
struct usb_endpoint * ep[32]
Endpoint list.
Definition: usb.h:745
struct net_device * alloc_etherdev(size_t priv_size)
Allocate Ethernet device.
Definition: ethernet.c:265
#define cpu_to_le16(value)
Definition: byteswap.h:107
struct usb_driver ecm_driver __usb_driver
CDC-ECM driver.
Definition: ecm.c:530
ACPI MAC address.
int usbnet_describe(struct usbnet_device *usbnet, struct usb_configuration_descriptor *config)
Describe USB network device interfaces.
Definition: usbnet.c:278
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:388
char message[VMCONSOLE_BUFSIZE]
Definition: vmconsole.c:54
void usbnet_close(struct usbnet_device *usbnet)
Close USB network device.
Definition: usbnet.c:128
USB endpoint driver operations.
Definition: usb.h:489
struct device dev
Generic device.
Definition: usb.h:682
A USB function.
Definition: usb.h:674
static void ecm_poll(struct net_device *netdev)
Poll for completed and received packets.
Definition: ecm.c:402
struct usb_bus * bus
USB bus.
Definition: usb.h:845
Broadcast packets.
Definition: ecm.h:34
uint8_t hw_addr[MAX_HW_ADDR_LEN]
Hardware address.
Definition: netdevice.h:382
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
struct net_device * netdev
Network device.
Definition: ecm.h:64
struct usb_device_id * ids
USB ID table.
Definition: usb.h:1409
int usb_get_string_descriptor(struct usb_device *usb, unsigned int index, unsigned int language, char *buf, size_t len)
Get USB string descriptor.
Definition: usb.c:916
void * memset(void *dest, int character, size_t len) __nonnull
Base16 encoding.
A persistent I/O buffer.
Definition: iobuf.h:38
static struct profiler ecm_intr_profiler __profiler
Interrupt completion profiler.
Definition: ecm.c:45
int usbnet_open(struct usbnet_device *usbnet)
Open USB network device.
Definition: usbnet.c:55