iPXE
Functions | Variables
ncm.c File Reference

CDC-NCM USB Ethernet driver. More...

#include <string.h>
#include <errno.h>
#include <ipxe/netdevice.h>
#include <ipxe/ethernet.h>
#include <ipxe/if_ether.h>
#include <ipxe/profile.h>
#include <ipxe/usb.h>
#include <ipxe/usbnet.h>
#include "ecm.h"
#include "ncm.h"

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
 FILE_SECBOOT (PERMITTED)
 
static void ncm_intr_complete (struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
 Complete interrupt transfer. More...
 
static int ncm_in_prefill (struct ncm_device *ncm)
 Prefill bulk IN endpoint. More...
 
static void ncm_in_complete (struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
 Complete bulk IN transfer. More...
 
static int ncm_out_transmit (struct ncm_device *ncm, struct io_buffer *iobuf)
 Transmit packet. More...
 
static void ncm_out_complete (struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
 Complete bulk OUT transfer. More...
 
static int ncm_open (struct net_device *netdev)
 Open network device. More...
 
static void ncm_close (struct net_device *netdev)
 Close network device. More...
 
static int ncm_transmit (struct net_device *netdev, struct io_buffer *iobuf)
 Transmit packet. More...
 
static void ncm_poll (struct net_device *netdev)
 Poll for completed and received packets. More...
 
static int ncm_probe (struct usb_function *func, struct usb_configuration_descriptor *config)
 Probe device. More...
 
static void ncm_remove (struct usb_function *func)
 Remove device. More...
 

Variables

static struct profiler ncm_intr_profiler __profiler
 Interrupt completion profiler. More...
 
static struct usb_endpoint_driver_operations ncm_intr_operations
 Interrupt endpoint operations. More...
 
static struct usb_endpoint_driver_operations ncm_in_operations
 Bulk IN endpoint operations. More...
 
static struct usb_endpoint_driver_operations ncm_out_operations
 Bulk OUT endpoint operations. More...
 
static struct net_device_operations ncm_operations
 CDC-NCM network device operations. More...
 
static struct usb_device_id ncm_ids []
 CDC-NCM device IDs. More...
 
struct usb_driver ncm_driver __usb_driver
 CDC-NCM driver. More...
 

Detailed Description

CDC-NCM USB Ethernet driver.

Definition in file ncm.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED  )

◆ ncm_intr_complete()

static void ncm_intr_complete ( struct usb_endpoint ep,
struct io_buffer iobuf,
int  rc 
)
static

Complete interrupt transfer.

Parameters
epUSB endpoint
iobufI/O buffer
rcCompletion status code

Definition at line 74 of file ncm.c.

75  {
76  struct ncm_device *ncm = container_of ( ep, struct ncm_device,
77  usbnet.intr );
78  struct net_device *netdev = ncm->netdev;
79  struct usb_setup_packet *message;
80  size_t len = iob_len ( iobuf );
81 
82  /* Profile completions */
83  profile_start ( &ncm_intr_profiler );
84 
85  /* Ignore packets cancelled when the endpoint closes */
86  if ( ! ep->open )
87  goto ignore;
88 
89  /* Ignore packets with errors */
90  if ( rc != 0 ) {
91  DBGC ( ncm, "NCM %p interrupt failed: %s\n",
92  ncm, strerror ( rc ) );
93  DBGC_HDA ( ncm, 0, iobuf->data, iob_len ( iobuf ) );
94  goto error;
95  }
96 
97  /* Extract message header */
98  if ( len < sizeof ( *message ) ) {
99  DBGC ( ncm, "NCM %p underlength interrupt:\n", ncm );
100  DBGC_HDA ( ncm, 0, iobuf->data, iob_len ( iobuf ) );
101  rc = -EINVAL;
102  goto error;
103  }
104  message = iobuf->data;
105 
106  /* Parse message header */
107  switch ( message->request ) {
108 
110  if ( message->value ) {
111  DBGC ( ncm, "NCM %p link up\n", ncm );
113  } else {
114  DBGC ( ncm, "NCM %p link down\n", ncm );
116  }
117  break;
118 
120  /* Ignore */
121  break;
122 
123  default:
124  DBGC ( ncm, "NCM %p unrecognised interrupt:\n", ncm );
125  DBGC_HDA ( ncm, 0, iobuf->data, iob_len ( iobuf ) );
126  goto error;
127  }
128 
129  /* Free I/O buffer */
130  free_iob ( iobuf );
131  profile_stop ( &ncm_intr_profiler );
132 
133  return;
134 
135  error:
136  netdev_rx_err ( netdev, iob_disown ( iobuf ), rc );
137  ignore:
138  free_iob ( iobuf );
139  return;
140 }
#define EINVAL
Invalid argument.
Definition: errno.h:429
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition: netdevice.c:587
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
Definition: iobuf.c:153
struct arbelprm_completion_with_error error
Definition: arbel.h:12
#define DBGC(...)
Definition: compiler.h:505
void netdev_link_down(struct net_device *netdev)
Mark network device as having link down.
Definition: netdevice.c:231
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
#define iob_disown(iobuf)
Disown an I/O buffer.
Definition: iobuf.h:217
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:36
struct net_device * netdev
Network device.
Definition: ncm.h:143
pseudo_bit_t value[0x00020]
Definition: arbel.h:13
#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
static struct net_device * netdev
Definition: gdbudp.c:52
static void profile_start(struct profiler *profiler)
Start profiling.
Definition: profile.h:161
#define CDC_NETWORK_CONNECTION
Network connection notification.
Definition: cdc.h:50
#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
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:160
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
A network device.
Definition: netdevice.h:353
A USB setup data packet.
Definition: usb.h:83
A CDC-NCM network device.
Definition: ncm.h:137
void * data
Start of data.
Definition: iobuf.h:53
#define cpu_to_le16(value)
Definition: byteswap.h:107
char message[VMCONSOLE_BUFSIZE]
Definition: vmconsole.c:54
if(natsemi->flags &NATSEMI_64BIT) return 1

References CDC_CONNECTION_SPEED_CHANGE, CDC_NETWORK_CONNECTION, container_of, cpu_to_le16, io_buffer::data, DBGC, DBGC_HDA, EINVAL, error, free_iob(), usbnet_device::intr, iob_disown, iob_len(), len, message, netdev, ncm_device::netdev, netdev_link_down(), netdev_link_up(), netdev_rx_err(), usb_endpoint::open, profile_start(), profile_stop(), rc, strerror(), and ncm_device::usbnet.

◆ ncm_in_prefill()

static int ncm_in_prefill ( struct ncm_device ncm)
static

Prefill bulk IN endpoint.

Parameters
ncmCDC-NCM device
Return values
rcReturn status code

Definition at line 160 of file ncm.c.

160  {
161  struct usb_bus *bus = ncm->bus;
162  size_t mtu;
163  unsigned int count;
164  int rc;
165 
166  /* Some devices have a very small number of internal buffers,
167  * and rely on being able to pack multiple packets into each
168  * buffer. We therefore want to use large buffers if
169  * possible. However, large allocations have a reasonable
170  * chance of failure, especially if this is not the first or
171  * only device to be opened.
172  *
173  * We therefore attempt to find a usable buffer size, starting
174  * large and working downwards until allocation succeeds.
175  * Smaller buffers will still work, albeit with a higher
176  * chance of packet loss and so lower overall throughput.
177  */
178  for ( mtu = ncm->mtu ; mtu >= NCM_MIN_NTB_INPUT_SIZE ; mtu >>= 1 ) {
179 
180  /* Attempt allocation at this MTU */
181  if ( mtu > NCM_MAX_NTB_INPUT_SIZE )
182  continue;
183  if ( mtu > bus->mtu )
184  continue;
185  count = ( NCM_IN_MIN_SIZE / mtu );
186  if ( count < NCM_IN_MIN_COUNT )
188  if ( ( count * mtu ) > NCM_IN_MAX_SIZE )
189  continue;
190  usb_refill_init ( &ncm->usbnet.in, 0, mtu, count );
191  if ( ( rc = usb_prefill ( &ncm->usbnet.in ) ) != 0 ) {
192  DBGC ( ncm, "NCM %p could not prefill %dx %zd-byte "
193  "buffers for bulk IN\n", ncm, count, mtu );
194  continue;
195  }
196 
197  DBGC ( ncm, "NCM %p using %dx %zd-byte buffers for bulk IN\n",
198  ncm, count, mtu );
199  return 0;
200  }
201 
202  DBGC ( ncm, "NCM %p could not prefill bulk IN endpoint\n", ncm );
203  return -ENOMEM;
204 }
#define NCM_IN_MIN_SIZE
Bulk IN ring minimum total buffer size.
Definition: ncm.h:165
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
size_t mtu
Maximum supported NTB input size.
Definition: ncm.h:148
#define DBGC(...)
Definition: compiler.h:505
int usb_prefill(struct usb_endpoint *ep)
Prefill endpoint recycled buffer list.
Definition: usb.c:620
#define NCM_MIN_NTB_INPUT_SIZE
Minimum allowed NTB input size.
Definition: ncm.h:72
#define ENOMEM
Not enough space.
Definition: errno.h:535
#define NCM_IN_MIN_COUNT
Bulk IN ring minimum buffer count.
Definition: ncm.h:159
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 unsigned int count
Number of entries.
Definition: dwmac.h:225
#define NCM_MAX_NTB_INPUT_SIZE
Maximum allowed NTB input size (16-bit)
Definition: ncm.h:75
#define NCM_IN_MAX_SIZE
Bulk IN ring maximum total buffer size.
Definition: ncm.h:171
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
struct usb_endpoint in
Bulk IN endpoint.
Definition: usbnet.h:30
uint32_t mtu
Maximum MTU.
Definition: ena.h:28
A USB bus.
Definition: usb.h:966
uint8_t bus
Bus.
Definition: edd.h:15
struct usb_bus * bus
USB bus.
Definition: ncm.h:141

References bus, ncm_device::bus, count, DBGC, ENOMEM, usbnet_device::in, mtu, ncm_device::mtu, NCM_IN_MAX_SIZE, NCM_IN_MIN_COUNT, NCM_IN_MIN_SIZE, NCM_MAX_NTB_INPUT_SIZE, NCM_MIN_NTB_INPUT_SIZE, rc, usb_prefill(), usb_refill_init(), and ncm_device::usbnet.

Referenced by ncm_open().

◆ ncm_in_complete()

static void ncm_in_complete ( struct usb_endpoint ep,
struct io_buffer iobuf,
int  rc 
)
static

Complete bulk IN transfer.

Parameters
epUSB endpoint
iobufI/O buffer
rcCompletion status code

Definition at line 213 of file ncm.c.

214  {
215  struct ncm_device *ncm = container_of ( ep, struct ncm_device,
216  usbnet.in );
217  struct net_device *netdev = ncm->netdev;
218  struct ncm_transfer_header *nth;
219  struct ncm_datagram_pointer *ndp;
221  struct io_buffer *pkt;
222  unsigned int remaining;
223  size_t ndp_offset;
224  size_t ndp_len;
225  size_t pkt_offset;
226  size_t pkt_len;
227  size_t headroom;
228  size_t len;
229 
230  /* Profile overall bulk IN completion */
231  profile_start ( &ncm_in_profiler );
232 
233  /* Ignore packets cancelled when the endpoint closes */
234  if ( ! ep->open )
235  goto ignore;
236 
237  /* Record USB errors against the network device */
238  if ( rc != 0 ) {
239  DBGC ( ncm, "NCM %p bulk IN failed: %s\n",
240  ncm, strerror ( rc ) );
241  goto error;
242  }
243 
244  /* Locate transfer header */
245  len = iob_len ( iobuf );
246  if ( sizeof ( *nth ) > len ) {
247  DBGC ( ncm, "NCM %p packet too short for NTH:\n", ncm );
248  rc = -EINVAL;
249  goto error;
250  }
251  nth = iobuf->data;
252 
253  /* Locate datagram pointer */
254  ndp_offset = le16_to_cpu ( nth->offset );
255  if ( ( ndp_offset + sizeof ( *ndp ) ) > len ) {
256  DBGC ( ncm, "NCM %p packet too short for NDP:\n", ncm );
257  rc = -EINVAL;
258  goto error;
259  }
260  ndp = ( iobuf->data + ndp_offset );
261  ndp_len = le16_to_cpu ( ndp->header_len );
262  if ( ndp_len < offsetof ( typeof ( *ndp ), desc ) ) {
263  DBGC ( ncm, "NCM %p NDP header length too short:\n", ncm );
264  rc = -EINVAL;
265  goto error;
266  }
267  if ( ( ndp_offset + ndp_len ) > len ) {
268  DBGC ( ncm, "NCM %p packet too short for NDP:\n", ncm );
269  rc = -EINVAL;
270  goto error;
271  }
272 
273  /* Process datagrams */
274  remaining = ( ( ndp_len - offsetof ( typeof ( *ndp ), desc ) ) /
275  sizeof ( ndp->desc[0] ) );
276  for ( desc = ndp->desc ; remaining && desc->offset ; remaining-- ) {
277 
278  /* Profile individual datagrams */
279  profile_start ( &ncm_in_datagram_profiler );
280 
281  /* Locate datagram */
282  pkt_offset = le16_to_cpu ( desc->offset );
283  pkt_len = le16_to_cpu ( desc->len );
284  if ( pkt_len < ETH_HLEN ) {
285  DBGC ( ncm, "NCM %p underlength datagram:\n", ncm );
286  rc = -EINVAL;
287  goto error;
288  }
289  if ( ( pkt_offset + pkt_len ) > len ) {
290  DBGC ( ncm, "NCM %p datagram exceeds packet:\n", ncm );
291  rc = -EINVAL;
292  goto error;
293  }
294 
295  /* Move to next descriptor */
296  desc++;
297 
298  /* Copy data to a new I/O buffer. Our USB buffers may
299  * be very large and so we choose to recycle the
300  * buffers directly rather than attempt reallocation
301  * while the device is running. We therefore copy the
302  * data to a new I/O buffer even if this is the only
303  * (or last) packet within the buffer.
304  *
305  * We reserve enough space at the start of each buffer
306  * to allow for our own transmission header, to
307  * support protocols such as ARP which may modify the
308  * received packet and reuse the same I/O buffer for
309  * transmission.
310  */
311  headroom = ( sizeof ( struct ncm_ntb_header ) + ncm->padding );
312  pkt = alloc_iob ( headroom + pkt_len );
313  if ( ! pkt ) {
314  /* Record error and continue */
316  continue;
317  }
318  iob_reserve ( pkt, headroom );
319  memcpy ( iob_put ( pkt, pkt_len ),
320  ( iobuf->data + pkt_offset ), pkt_len );
321 
322  /* Strip CRC, if present */
324  iob_unput ( pkt, 4 /* CRC32 */ );
325 
326  /* Hand off to network stack */
327  netdev_rx ( netdev, pkt );
328  profile_stop ( &ncm_in_datagram_profiler );
329  }
330 
331  /* Recycle I/O buffer */
332  usb_recycle ( &ncm->usbnet.in, iobuf );
333  profile_stop ( &ncm_in_profiler );
334 
335  return;
336 
337  error:
338  /* Record error against network device */
339  DBGC_HDA ( ncm, 0, iobuf->data, iob_len ( iobuf ) );
340  netdev_rx_err ( netdev, NULL, rc );
341  ignore:
342  usb_recycle ( &ncm->usbnet.in, iobuf );
343 }
#define EINVAL
Invalid argument.
Definition: errno.h:429
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
#define iob_put(iobuf, len)
Definition: iobuf.h:125
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition: netdevice.c:587
struct ncm_datagram_pointer ndp
Datagram pointer.
Definition: ncm.h:131
CDC-NCM datagram pointer (16-bit)
Definition: ncm.h:103
struct arbelprm_completion_with_error error
Definition: arbel.h:12
CDC-NCM transfer header (16-bit)
Definition: ncm.h:78
#define DBGC(...)
Definition: compiler.h:505
#define offsetof(type, field)
Get offset of a field within a structure.
Definition: stddef.h:25
int open
Endpoint is open.
Definition: usb.h:419
static void profile_stop(struct profiler *profiler)
Stop profiling.
Definition: profile.h:174
struct io_buffer * alloc_iob(size_t len)
Allocate I/O buffer.
Definition: iobuf.c:131
struct ncm_datagram_descriptor desc[0]
Datagram descriptors.
Definition: ncm.h:114
uint16_t offset
Offset of first datagram pointer.
Definition: ncm.h:88
struct ena_llq_option desc
Descriptor counts.
Definition: ena.h:20
#define ENOMEM
Not enough space.
Definition: errno.h:535
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define ETH_HLEN
Definition: if_ether.h:10
static void usb_recycle(struct usb_endpoint *ep, struct io_buffer *iobuf)
Recycle I/O buffer.
Definition: usb.h:633
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:36
struct net_device * netdev
Network device.
Definition: ncm.h:143
#define DBGC_HDA(...)
Definition: compiler.h:506
uint16_t header_len
Header length.
Definition: ncm.h:107
ring len
Length.
Definition: dwmac.h:231
CDC-NCM datagram descriptor (16-bit)
Definition: ncm.h:95
static struct net_device * netdev
Definition: gdbudp.c:52
static void profile_start(struct profiler *profiler)
Start profiling.
Definition: profile.h:161
#define cpu_to_le32(value)
Definition: byteswap.h:108
#define iob_unput(iobuf, len)
Definition: iobuf.h:140
#define NCM_DATAGRAM_POINTER_MAGIC_CRC
CDC-NCM datagram pointer CRC present flag.
Definition: ncm.h:121
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:79
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:160
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
A network device.
Definition: netdevice.h:353
struct usb_endpoint in
Bulk IN endpoint.
Definition: usbnet.h:30
uint16_t pkt_len
Definition: aqc1xx.h:37
#define le16_to_cpu(value)
Definition: byteswap.h:113
A CDC-NCM network device.
Definition: ncm.h:137
void netdev_rx(struct net_device *netdev, struct io_buffer *iobuf)
Add packet to receive queue.
Definition: netdevice.c:549
uint32_t magic
Signature.
Definition: ncm.h:105
#define iob_reserve(iobuf, len)
Definition: iobuf.h:72
void * data
Start of data.
Definition: iobuf.h:53
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:48
NTB constructed for transmitted packets (excluding padding)
Definition: ncm.h:127
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
A persistent I/O buffer.
Definition: iobuf.h:38

References alloc_iob(), container_of, cpu_to_le32, io_buffer::data, DBGC, DBGC_HDA, desc, ncm_datagram_pointer::desc, EINVAL, ENOMEM, error, ETH_HLEN, ncm_datagram_pointer::header_len, usbnet_device::in, iob_len(), iob_put, iob_reserve, iob_unput, le16_to_cpu, len, ncm_datagram_pointer::magic, memcpy(), NCM_DATAGRAM_POINTER_MAGIC_CRC, ncm_ntb_header::ndp, netdev, ncm_device::netdev, netdev_rx(), netdev_rx_err(), NULL, ncm_transfer_header::offset, offsetof, usb_endpoint::open, pkt_len, profile_start(), profile_stop(), rc, strerror(), typeof(), usb_recycle(), and ncm_device::usbnet.

◆ ncm_out_transmit()

static int ncm_out_transmit ( struct ncm_device ncm,
struct io_buffer iobuf 
)
static

Transmit packet.

Parameters
ncmCDC-NCM device
iobufI/O buffer
Return values
rcReturn status code

Definition at line 357 of file ncm.c.

358  {
359  struct ncm_ntb_header *header;
360  size_t len = iob_len ( iobuf );
361  size_t header_len = ( sizeof ( *header ) + ncm->padding );
362  int rc;
363 
364  /* Profile transmissions */
365  profile_start ( &ncm_out_profiler );
366 
367  /* Prepend header */
368  if ( ( rc = iob_ensure_headroom ( iobuf, header_len ) ) != 0 )
369  return rc;
370  header = iob_push ( iobuf, header_len );
371 
372  /* Populate header */
374  header->nth.header_len = cpu_to_le16 ( sizeof ( header->nth ) );
375  header->nth.sequence = cpu_to_le16 ( ncm->sequence );
376  header->nth.len = cpu_to_le16 ( iob_len ( iobuf ) );
377  header->nth.offset =
378  cpu_to_le16 ( offsetof ( typeof ( *header ), ndp ) );
380  header->ndp.header_len = cpu_to_le16 ( sizeof ( header->ndp ) +
381  sizeof ( header->desc ) );
382  header->ndp.offset = cpu_to_le16 ( 0 );
383  header->desc[0].offset = cpu_to_le16 ( header_len );
384  header->desc[0].len = cpu_to_le16 ( len );
385  memset ( &header->desc[1], 0, sizeof ( header->desc[1] ) );
386 
387  /* Enqueue I/O buffer */
388  if ( ( rc = usb_stream ( &ncm->usbnet.out, iobuf, 0 ) ) != 0 )
389  return rc;
390 
391  /* Increment sequence number */
392  ncm->sequence++;
393 
394  profile_stop ( &ncm_out_profiler );
395  return 0;
396 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct ncm_datagram_pointer ndp
Datagram pointer.
Definition: ncm.h:131
#define iob_push(iobuf, len)
Definition: iobuf.h:89
int usb_stream(struct usb_endpoint *ep, struct io_buffer *iobuf, int terminate)
Enqueue USB stream transfer.
Definition: usb.c:546
#define offsetof(type, field)
Get offset of a field within a structure.
Definition: stddef.h:25
static void profile_stop(struct profiler *profiler)
Stop profiling.
Definition: profile.h:174
struct usb_endpoint out
Bulk OUT endpoint.
Definition: usbnet.h:32
uint16_t sequence
Transmitted packet sequence number.
Definition: ncm.h:150
ring len
Length.
Definition: dwmac.h:231
static void profile_start(struct profiler *profiler)
Start profiling.
Definition: profile.h:161
#define cpu_to_le32(value)
Definition: byteswap.h:108
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition: iobuf.h:160
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
struct ena_llq_option header
Header locations.
Definition: ena.h:16
#define cpu_to_le16(value)
Definition: byteswap.h:107
#define NCM_DATAGRAM_POINTER_MAGIC
CDC-NCM datagram pointer magic.
Definition: ncm.h:118
typeof(acpi_finder=acpi_find)
ACPI table finder.
Definition: acpi.c:48
NTB constructed for transmitted packets (excluding padding)
Definition: ncm.h:127
#define NCM_TRANSFER_HEADER_MAGIC
CDC-NCM transfer header magic.
Definition: ncm.h:92
int iob_ensure_headroom(struct io_buffer *iobuf, size_t len)
Ensure I/O buffer has sufficient headroom.
Definition: iobuf.c:235
size_t padding
Alignment padding required on transmitted packets.
Definition: ncm.h:152
void * memset(void *dest, int character, size_t len) __nonnull

References cpu_to_le16, cpu_to_le32, header, iob_ensure_headroom(), iob_len(), iob_push, len, memset(), NCM_DATAGRAM_POINTER_MAGIC, NCM_TRANSFER_HEADER_MAGIC, ncm_ntb_header::ndp, offsetof, usbnet_device::out, ncm_device::padding, profile_start(), profile_stop(), rc, ncm_device::sequence, typeof(), usb_stream(), and ncm_device::usbnet.

Referenced by ncm_transmit().

◆ ncm_out_complete()

static void ncm_out_complete ( struct usb_endpoint ep,
struct io_buffer iobuf,
int  rc 
)
static

Complete bulk OUT transfer.

Parameters
epUSB endpoint
iobufI/O buffer
rcCompletion status code

Definition at line 405 of file ncm.c.

406  {
407  struct ncm_device *ncm = container_of ( ep, struct ncm_device,
408  usbnet.out );
409  struct net_device *netdev = ncm->netdev;
410 
411  /* Report TX completion */
412  netdev_tx_complete_err ( netdev, iobuf, rc );
413 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
struct usb_endpoint out
Bulk OUT endpoint.
Definition: usbnet.h:32
#define container_of(ptr, type, field)
Get containing structure.
Definition: stddef.h:36
struct net_device * netdev
Network device.
Definition: ncm.h:143
static struct net_device * netdev
Definition: gdbudp.c:52
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
A network device.
Definition: netdevice.h:353
A CDC-NCM network device.
Definition: ncm.h:137
void netdev_tx_complete_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Complete network transmission.
Definition: netdevice.c:471

References container_of, netdev, ncm_device::netdev, netdev_tx_complete_err(), usbnet_device::out, rc, and ncm_device::usbnet.

◆ ncm_open()

static int ncm_open ( struct net_device netdev)
static

Open network device.

Parameters
netdevNetwork device
Return values
rcReturn status code

Definition at line 433 of file ncm.c.

433  {
434  struct ncm_device *ncm = netdev->priv;
435  struct usb_device *usb = ncm->usb;
437  int rc;
438 
439  /* Reset sequence number */
440  ncm->sequence = 0;
441 
442  /* Prefill I/O buffers */
443  if ( ( rc = ncm_in_prefill ( ncm ) ) != 0 )
444  goto err_prefill;
445 
446  /* Set maximum input size */
447  memset ( &size, 0, sizeof ( size ) );
448  size.mtu = cpu_to_le32 ( ncm->usbnet.in.len );
449  if ( ( rc = usb_control ( usb, NCM_SET_NTB_INPUT_SIZE, 0,
450  ncm->usbnet.comms, &size,
451  sizeof ( size ) ) ) != 0 ) {
452  DBGC ( ncm, "NCM %p could not set input size to %zd: %s\n",
453  ncm, ncm->usbnet.in.len, strerror ( rc ) );
454  goto err_set_ntb_input_size;
455  }
456 
457  /* Set MAC address */
458  if ( ( rc = usb_control ( usb, NCM_SET_NET_ADDRESS, 0,
459  ncm->usbnet.comms, netdev->ll_addr,
460  netdev->ll_protocol->ll_addr_len ) ) != 0 ) {
461  DBGC ( ncm, "NCM %p could not set MAC address: %s\n",
462  ncm, strerror ( rc ) );
463  /* Ignore error and continue */
464  }
465 
466  /* Open USB network device */
467  if ( ( rc = usbnet_open ( &ncm->usbnet ) ) != 0 ) {
468  DBGC ( ncm, "NCM %p could not open: %s\n",
469  ncm, strerror ( rc ) );
470  goto err_open;
471  }
472 
473  return 0;
474 
475  usbnet_close ( &ncm->usbnet );
476  err_open:
477  err_set_ntb_input_size:
478  usb_flush ( &ncm->usbnet.in );
479  err_prefill:
480  return rc;
481 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
unsigned int comms
Communications interface.
Definition: usbnet.h:21
uint8_t ll_addr_len
Link-layer address length.
Definition: netdevice.h:199
uint16_t size
Buffer size.
Definition: dwmac.h:14
size_t len
Refill buffer payload length.
Definition: usb.h:438
static int ncm_in_prefill(struct ncm_device *ncm)
Prefill bulk IN endpoint.
Definition: ncm.c:160
#define DBGC(...)
Definition: compiler.h:505
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
Set NTB input size.
Definition: ncm.h:66
uint16_t sequence
Transmitted packet sequence number.
Definition: ncm.h:150
#define NCM_SET_NTB_INPUT_SIZE
Set NTB input size.
Definition: ncm.h:61
void * priv
Driver private data.
Definition: netdevice.h:432
static struct net_device * netdev
Definition: gdbudp.c:52
struct usb_device * usb
USB device.
Definition: ncm.h:139
#define cpu_to_le32(value)
Definition: byteswap.h:108
A USB device.
Definition: usb.h:723
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:79
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
struct usb_endpoint in
Bulk IN endpoint.
Definition: usbnet.h:30
#define NCM_SET_NET_ADDRESS
Set MAC address.
Definition: ncm.h:56
A CDC-NCM network device.
Definition: ncm.h:137
void usb_flush(struct usb_endpoint *ep)
Discard endpoint recycled buffer list.
Definition: usb.c:720
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:388
void usbnet_close(struct usbnet_device *usbnet)
Close USB network device.
Definition: usbnet.c:128
struct ll_protocol * ll_protocol
Link-layer protocol.
Definition: netdevice.h:373
void * memset(void *dest, int character, size_t len) __nonnull
int usbnet_open(struct usbnet_device *usbnet)
Open USB network device.
Definition: usbnet.c:55

References usbnet_device::comms, cpu_to_le32, DBGC, usbnet_device::in, usb_endpoint::len, net_device::ll_addr, ll_protocol::ll_addr_len, net_device::ll_protocol, memset(), ncm_in_prefill(), NCM_SET_NET_ADDRESS, NCM_SET_NTB_INPUT_SIZE, netdev, net_device::priv, rc, ncm_device::sequence, size, strerror(), ncm_device::usb, usb_control(), usb_flush(), ncm_device::usbnet, usbnet_close(), and usbnet_open().

◆ ncm_close()

static void ncm_close ( struct net_device netdev)
static

Close network device.

Parameters
netdevNetwork device

Definition at line 488 of file ncm.c.

488  {
489  struct ncm_device *ncm = netdev->priv;
490 
491  /* Close USB network device */
492  usbnet_close ( &ncm->usbnet );
493 }
void * priv
Driver private data.
Definition: netdevice.h:432
static struct net_device * netdev
Definition: gdbudp.c:52
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
A CDC-NCM network device.
Definition: ncm.h:137
void usbnet_close(struct usbnet_device *usbnet)
Close USB network device.
Definition: usbnet.c:128

References netdev, net_device::priv, ncm_device::usbnet, and usbnet_close().

◆ ncm_transmit()

static int ncm_transmit ( struct net_device netdev,
struct io_buffer iobuf 
)
static

Transmit packet.

Parameters
netdevNetwork device
iobufI/O buffer
Return values
rcReturn status code

Definition at line 502 of file ncm.c.

503  {
504  struct ncm_device *ncm = netdev->priv;
505  int rc;
506 
507  /* Transmit packet */
508  if ( ( rc = ncm_out_transmit ( ncm, iobuf ) ) != 0 )
509  return rc;
510 
511  return 0;
512 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void * priv
Driver private data.
Definition: netdevice.h:432
static struct net_device * netdev
Definition: gdbudp.c:52
static int ncm_out_transmit(struct ncm_device *ncm, struct io_buffer *iobuf)
Transmit packet.
Definition: ncm.c:357
A CDC-NCM network device.
Definition: ncm.h:137

References ncm_out_transmit(), netdev, net_device::priv, and rc.

◆ ncm_poll()

static void ncm_poll ( struct net_device netdev)
static

Poll for completed and received packets.

Parameters
netdevNetwork device

Definition at line 519 of file ncm.c.

519  {
520  struct ncm_device *ncm = netdev->priv;
521  int rc;
522 
523  /* Poll USB bus */
524  usb_poll ( ncm->bus );
525 
526  /* Refill endpoints */
527  if ( ( rc = usbnet_refill ( &ncm->usbnet ) ) != 0 )
528  netdev_rx_err ( netdev, NULL, rc );
529 
530 }
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition: netdevice.c:587
void * priv
Driver private data.
Definition: netdevice.h:432
static struct net_device * netdev
Definition: gdbudp.c:52
int usbnet_refill(struct usbnet_device *usbnet)
Refill USB network device bulk IN and interrupt endpoints.
Definition: usbnet.c:152
static void usb_poll(struct usb_bus *bus)
Poll USB bus.
Definition: usb.h:1072
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
A CDC-NCM network device.
Definition: ncm.h:137
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
struct usb_bus * bus
USB bus.
Definition: ncm.h:141

References ncm_device::bus, netdev, netdev_rx_err(), NULL, net_device::priv, rc, usb_poll(), ncm_device::usbnet, and usbnet_refill().

◆ ncm_probe()

static int ncm_probe ( struct usb_function func,
struct usb_configuration_descriptor config 
)
static

Probe device.

Parameters
funcUSB function
configConfiguration descriptor
Return values
rcReturn status code

Definition at line 554 of file ncm.c.

555  {
556  struct usb_device *usb = func->usb;
557  struct net_device *netdev;
558  struct ncm_device *ncm;
559  struct usb_interface_descriptor *comms;
560  struct ecm_ethernet_descriptor *ethernet;
561  struct ncm_ntb_parameters params;
562  unsigned int remainder;
563  unsigned int divisor;
564  int rc;
565 
566  /* Allocate and initialise structure */
567  netdev = alloc_etherdev ( sizeof ( *ncm ) );
568  if ( ! netdev ) {
569  rc = -ENOMEM;
570  goto err_alloc;
571  }
573  netdev->dev = &func->dev;
574  ncm = netdev->priv;
575  memset ( ncm, 0, sizeof ( *ncm ) );
576  ncm->usb = usb;
577  ncm->bus = usb->port->hub->bus;
578  ncm->netdev = netdev;
579  usbnet_init ( &ncm->usbnet, func, &ncm_intr_operations,
581  usb_refill_init ( &ncm->usbnet.intr, 0, 0, NCM_INTR_COUNT );
582  DBGC ( ncm, "NCM %p on %s\n", ncm, func->name );
583 
584  /* Describe USB network device */
585  if ( ( rc = usbnet_describe ( &ncm->usbnet, config ) ) != 0 ) {
586  DBGC ( ncm, "NCM %p could not describe: %s\n",
587  ncm, strerror ( rc ) );
588  goto err_describe;
589  }
590 
591  /* Locate Ethernet descriptor */
592  comms = usb_interface_descriptor ( config, ncm->usbnet.comms, 0 );
593  assert ( comms != NULL );
594  ethernet = ecm_ethernet_descriptor ( config, comms );
595  if ( ! ethernet ) {
596  DBGC ( ncm, "NCM %p has no Ethernet descriptor\n", ncm );
597  rc = -EINVAL;
598  goto err_ethernet;
599  }
600 
601  /* Fetch MAC address */
602  if ( ( rc = ecm_fetch_mac ( func, ethernet, netdev ) ) != 0 ) {
603  DBGC ( ncm, "NCM %p could not fetch MAC address: %s\n",
604  ncm, strerror ( rc ) );
605  goto err_fetch_mac;
606  }
607 
608  /* Get NTB parameters */
609  if ( ( rc = usb_control ( usb, NCM_GET_NTB_PARAMETERS, 0,
610  ncm->usbnet.comms, &params,
611  sizeof ( params ) ) ) != 0 ) {
612  DBGC ( ncm, "NCM %p could not get NTB parameters: %s\n",
613  ncm, strerror ( rc ) );
614  goto err_ntb_parameters;
615  }
616 
617  /* Get maximum supported input size */
618  ncm->mtu = le32_to_cpu ( params.in.mtu );
619  DBGC2 ( ncm, "NCM %p maximum IN size is %zd bytes\n", ncm, ncm->mtu );
620 
621  /* Calculate transmit padding */
622  divisor = ( params.out.divisor ?
623  le16_to_cpu ( params.out.divisor ) : 1 );
624  remainder = le16_to_cpu ( params.out.remainder );
625  ncm->padding = ( ( remainder - sizeof ( struct ncm_ntb_header ) -
626  ETH_HLEN ) & ( divisor - 1 ) );
627  DBGC2 ( ncm, "NCM %p using %zd-byte transmit padding\n",
628  ncm, ncm->padding );
629  assert ( ( ( sizeof ( struct ncm_ntb_header ) + ncm->padding +
630  ETH_HLEN ) % divisor ) == remainder );
631 
632  /* Register network device */
633  if ( ( rc = register_netdev ( netdev ) ) != 0 )
634  goto err_register;
635 
636  usb_func_set_drvdata ( func, ncm );
637  return 0;
638 
640  err_register:
641  err_ntb_parameters:
642  err_fetch_mac:
643  err_ethernet:
644  err_describe:
646  netdev_put ( netdev );
647  err_alloc:
648  return rc;
649 }
#define EINVAL
Invalid argument.
Definition: errno.h:429
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
An Ethernet Functional Descriptor.
Definition: ecm.h:40
unsigned int comms
Communications interface.
Definition: usbnet.h:21
const char * name
Name.
Definition: usb.h:676
size_t mtu
Maximum supported NTB input size.
Definition: ncm.h:148
#define le32_to_cpu(value)
Definition: byteswap.h:114
#define NCM_GET_NTB_PARAMETERS
Get NTB parameters.
Definition: ncm.h:23
#define DBGC(...)
Definition: compiler.h:505
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 void netdev_init(struct net_device *netdev, struct net_device_operations *op)
Initialise a network device.
Definition: netdevice.h:519
static struct usb_endpoint_driver_operations ncm_in_operations
Bulk IN endpoint operations.
Definition: ncm.c:346
#define ENOMEM
Not enough space.
Definition: errno.h:535
A USB interface descriptor.
Definition: usb.h:245
#define ETH_HLEN
Definition: if_ether.h:10
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
struct net_device * netdev
Network device.
Definition: ncm.h:143
void * priv
Driver private data.
Definition: netdevice.h:432
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 struct net_device * netdev
Definition: gdbudp.c:52
struct usb_device * usb
USB device.
Definition: ncm.h:139
static void usb_func_set_drvdata(struct usb_function *func, void *priv)
Set USB function driver private data.
Definition: usb.h:707
void unregister_netdev(struct net_device *netdev)
Unregister network device.
Definition: netdevice.c:942
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
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:79
int register_netdev(struct net_device *netdev)
Register network device.
Definition: netdevice.c:760
NTB parameters.
Definition: ncm.h:40
struct usbnet_device usbnet
USB network device.
Definition: ncm.h:145
A network device.
Definition: netdevice.h:353
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
Definition: netdevice.h:532
struct usb_device * usb
USB device.
Definition: usb.h:678
#define le16_to_cpu(value)
Definition: byteswap.h:113
A CDC-NCM network device.
Definition: ncm.h:137
static struct usb_endpoint_driver_operations ncm_out_operations
Bulk OUT endpoint operations.
Definition: ncm.c:416
struct device * dev
Underlying hardware device.
Definition: netdevice.h:365
static struct net_device_operations ncm_operations
CDC-NCM network device operations.
Definition: ncm.c:533
#define DBGC2(...)
Definition: compiler.h:522
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
struct usb_hub * hub
USB hub.
Definition: usb.h:815
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
struct net_device * alloc_etherdev(size_t priv_size)
Allocate Ethernet device.
Definition: ethernet.c:265
int usbnet_describe(struct usbnet_device *usbnet, struct usb_configuration_descriptor *config)
Describe USB network device interfaces.
Definition: usbnet.c:278
NTB constructed for transmitted packets (excluding padding)
Definition: ncm.h:127
struct device dev
Generic device.
Definition: usb.h:682
struct usb_bus * bus
USB bus.
Definition: usb.h:845
size_t padding
Alignment padding required on transmitted packets.
Definition: ncm.h:152
#define NULL
NULL pointer (VOID *)
Definition: Base.h:322
static struct usb_endpoint_driver_operations ncm_intr_operations
Interrupt endpoint operations.
Definition: ncm.c:143
#define NCM_INTR_COUNT
Interrupt ring buffer count.
Definition: ncm.h:177
struct usb_bus * bus
USB bus.
Definition: ncm.h:141
void * memset(void *dest, int character, size_t len) __nonnull

References alloc_etherdev(), assert(), ncm_device::bus, usb_hub::bus, usbnet_device::comms, DBGC, DBGC2, net_device::dev, usb_function::dev, ncm_ntb_datagram_parameters::divisor, ecm_ethernet_descriptor(), ecm_fetch_mac(), EINVAL, ENOMEM, ETH_HLEN, usb_port::hub, ncm_ntb_parameters::in, usbnet_device::intr, le16_to_cpu, le32_to_cpu, memset(), ncm_ntb_datagram_parameters::mtu, ncm_device::mtu, usb_function::name, NCM_GET_NTB_PARAMETERS, ncm_in_operations, NCM_INTR_COUNT, ncm_intr_operations, ncm_operations, ncm_out_operations, netdev, ncm_device::netdev, netdev_init(), netdev_nullify(), netdev_put(), NULL, ncm_ntb_parameters::out, ncm_device::padding, usb_device::port, net_device::priv, rc, register_netdev(), ncm_ntb_datagram_parameters::remainder, strerror(), unregister_netdev(), ncm_device::usb, usb_function::usb, usb_control(), usb_func_set_drvdata(), usb_interface_descriptor(), usb_refill_init(), ncm_device::usbnet, usbnet_describe(), and usbnet_init().

◆ ncm_remove()

static void ncm_remove ( struct usb_function func)
static

Remove device.

Parameters
funcUSB function

Definition at line 656 of file ncm.c.

656  {
657  struct ncm_device *ncm = usb_func_get_drvdata ( func );
658  struct net_device *netdev = ncm->netdev;
659 
662  netdev_put ( netdev );
663 }
static void * usb_func_get_drvdata(struct usb_function *func)
Get USB function driver private data.
Definition: usb.h:718
static void netdev_put(struct net_device *netdev)
Drop reference to network device.
Definition: netdevice.h:576
struct net_device * netdev
Network device.
Definition: ncm.h:143
static struct net_device * netdev
Definition: gdbudp.c:52
void unregister_netdev(struct net_device *netdev)
Unregister network device.
Definition: netdevice.c:942
A network device.
Definition: netdevice.h:353
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
Definition: netdevice.h:532
A CDC-NCM network device.
Definition: ncm.h:137

References netdev, ncm_device::netdev, netdev_nullify(), netdev_put(), unregister_netdev(), and usb_func_get_drvdata().

Variable Documentation

◆ __profiler

struct profiler ncm_out_profiler __profiler
static
Initial value:
=
{ .name = "ncm.intr" }

Interrupt completion profiler.

Bulk OUT profiler.

Bulk IN per-datagram profiler.

Bulk IN completion profiler.

Definition at line 45 of file ncm.c.

◆ ncm_intr_operations

struct usb_endpoint_driver_operations ncm_intr_operations
static
Initial value:
= {
.complete = ncm_intr_complete,
}
static void ncm_intr_complete(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete interrupt transfer.
Definition: ncm.c:74

Interrupt endpoint operations.

Definition at line 143 of file ncm.c.

Referenced by ncm_probe().

◆ ncm_in_operations

struct usb_endpoint_driver_operations ncm_in_operations
static
Initial value:
= {
.complete = ncm_in_complete,
}
static void ncm_in_complete(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete bulk IN transfer.
Definition: ncm.c:213

Bulk IN endpoint operations.

Definition at line 346 of file ncm.c.

Referenced by ncm_probe().

◆ ncm_out_operations

struct usb_endpoint_driver_operations ncm_out_operations
static
Initial value:
= {
.complete = ncm_out_complete,
}
static void ncm_out_complete(struct usb_endpoint *ep, struct io_buffer *iobuf, int rc)
Complete bulk OUT transfer.
Definition: ncm.c:405

Bulk OUT endpoint operations.

Definition at line 416 of file ncm.c.

Referenced by ncm_probe().

◆ ncm_operations

struct net_device_operations ncm_operations
static
Initial value:
= {
.open = ncm_open,
.close = ncm_close,
.transmit = ncm_transmit,
.poll = ncm_poll,
}
static void ncm_poll(struct net_device *netdev)
Poll for completed and received packets.
Definition: ncm.c:519
static int ncm_open(struct net_device *netdev)
Open network device.
Definition: ncm.c:433
static void ncm_close(struct net_device *netdev)
Close network device.
Definition: ncm.c:488
static int ncm_transmit(struct net_device *netdev, struct io_buffer *iobuf)
Transmit packet.
Definition: ncm.c:502

CDC-NCM network device operations.

Definition at line 533 of file ncm.c.

Referenced by ncm_probe().

◆ ncm_ids

struct usb_device_id ncm_ids[]
static
Initial value:
= {
{
.name = "cdc-ncm",
.vendor = USB_ANY_ID,
.product = USB_ANY_ID,
},
}
#define USB_ANY_ID
Match-anything ID.
Definition: usb.h:1373

CDC-NCM device IDs.

Definition at line 666 of file ncm.c.

◆ __usb_driver

struct usb_driver ncm_driver __usb_driver
Initial value:
= {
.ids = ncm_ids,
.id_count = ( sizeof ( ncm_ids ) / sizeof ( ncm_ids[0] ) ),
.score = USB_SCORE_NORMAL,
.probe = ncm_probe,
.remove = ncm_remove,
}
static int ncm_probe(struct usb_function *func, struct usb_configuration_descriptor *config)
Probe device.
Definition: ncm.c:554
#define USB_SUBCLASS_CDC_NCM
CDC-NCM subclass.
Definition: ncm.h:20
#define USB_CLASS_ID(base, subclass, protocol)
Construct USB class ID.
Definition: usb.h:1389
Normal driver.
Definition: usb.h:1453
#define USB_CLASS_CDC
Class code for communications devices.
Definition: cdc.h:16
static void ncm_remove(struct usb_function *func)
Remove device.
Definition: ncm.c:656
static struct usb_device_id ncm_ids[]
CDC-NCM device IDs.
Definition: ncm.c:666

CDC-NCM driver.

Definition at line 675 of file ncm.c.