fuchsia.hardware.usb.endpoint

Added: HEAD

PROTOCOLS

Endpoint

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Endpoint Interface. Pre-registered VMOs associated with the Endpoint are tied to the lifetime of the Endpoint. When the Endpoint is closed, all outstanding registered VMOs are unregistered, references to their handles dropped and any necessary actions for DisableEndpoint will be called.

CancelAll

Cancels all requests. Returns

  • ZX_ERR_IO_NOT_PRESENT: If device is not running, disconnected, or inactive.
  • ZX_ERR_IO: If cancel failed due to an unsuccessful request.

Request

<EMPTY>

Response

NameType
payload Endpoint_CancelAll_Result

GetInfo

Gets endpoint information

Request

<EMPTY>

Response

NameType
payload Endpoint_GetInfo_Result

OnCompletion

Called on a completion to notify the device driver of an completion event. Note that if more than REQUEST_MAX successful requests with defer_completion == true have been seen, driver may call OnCompletion multiple times when defer_completion == false is seen (or failure happens) to return all seen requests to the client.

Response

NameType
completion vector<Completion>:300

QueueRequests

Submit Requests to queue. Processed starting with the 0th Request. Submitting a vector of Requests allows for pre-buffering.

Clients are responsible for cache management and ensuring cache coherency.

After read requests:

  • Call zx_cache_flush with ZX_CACHE_FLUSH_DATA | ZX_CACHE_FLUSH_INVALIDATE on buffers that have been mapped by the client.
  • Call zx_vmo_op_range with ZX_VMO_OP_CACHE_CLEAN_INVALIDATE on all other buffers.

Note that writing to any portion of a buffer before OnCompletion is called for that buffer can corrupt the received data.

Before write requests:

  • Call zx_cache_flush with ZX_CACHE_FLUSH_DATA on buffers that have been mapped by the client.
  • Call zx_vmo_op_range with ZX_VMO_OP_CACHE_CLEAN on all other buffers.

Requests may be pre-buffered. In other words, requests may be queued for data that is not present/ready in the buffer yet. The USB Endpoint Server consuming requests does not care if the data in the buffer is ready or not and will always process requests on schedule. It is the responsibility of the USB Endpoint Client that submits requests to ensure that data is ready on schedule.

  • Definition of "on schedule" varies for different endpoints and controllers. In general, this will be communicated by the lead_time parameter returned by GetInfo.

Request

NameType
req vector<fuchsia.hardware.usb.request/Request>:300

RegisterVmos

Registers and pins VMOs to the vmo_ids. Returns

  • vmo: Handles to successfully registered vmo_ids. VMO IDs that are already are registered to will fail.

Request

NameType
vmo_ids vector<VmoInfo>:300

Response

NameType
vmos vector<VmoHandle>:300

UnregisterVmos

Unregisters the VMOs corresponding to the vmo_ids. Returns

  • failed_vmo_ids: vmo_ids that failed to unregister.
  • errors: Error values that correspond 1:1 to failed_vmo_ids above.

Request

NameType
vmo_ids vector<fuchsia.hardware.usb.request/VmoId>:300

Response

NameType
failed_vmo_ids vector<fuchsia.hardware.usb.request/VmoId>:300
errors vector<zx/Status>:300

STRUCTS

Endpoint_CancelAll_Response

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

<EMPTY>

Endpoint_GetInfo_Response

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

FieldTypeDescriptionDefault
info EndpointInfo No default

TABLES

BulkEndpointInfo

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Bulk Endpoint Information

OrdinalFieldTypeDescription

Completion resource

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Completion

OrdinalFieldTypeDescription
request fuchsia.hardware.usb.request/Request

Request completed.

status zx/Status

Completion status.

transfer_size uint64

Bytes successfully transferred.

ControlEndpointInfo

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Control Endpoint Information

OrdinalFieldTypeDescription

InterruptEndpointInfo

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Interrupt Endpoint Information

OrdinalFieldTypeDescription

IsochronousEndpointInfo

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Isochronous Endpoint Information

OrdinalFieldTypeDescription
lead_time uint64

Lead time described in number of transfers.

VmoHandle resource

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

VMO handle returned for registered VMOs. Only used as a return value for UnregisterVmos() to associate a VMO handle with the VmoId it was registered to.

OrdinalFieldTypeDescription
id fuchsia.hardware.usb.request/VmoId

ID corresponding to the registered VMO as passed in by RegisterVmos() through VmoInfo.

vmo handle<vmo>

Handle to VMO.

VmoInfo

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

VMO information for registering VMOs. Only used for RegisterVmos() to convey the ID to register a VMO to and its size.

OrdinalFieldTypeDescription
id fuchsia.hardware.usb.request/VmoId

ID corresponding to the VMO to be registered.

size uint64

Size of VMO to register.

UNIONS

EndpointInfo flexible

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

Endpoint Information

OrdinalVariantTypeDescription
bulk BulkEndpointInfo

Bulk endpoint information

control ControlEndpointInfo

Control endpoint information

isochronous IsochronousEndpointInfo

Isochronous endpoint information

interrupt InterruptEndpointInfo

Interrupt endpoint information

Endpoint_CancelAll_Result strict

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

OrdinalVariantTypeDescription
response Endpoint_CancelAll_Response
err zx/Status

Endpoint_GetInfo_Result strict

Defined in fuchsia.hardware.usb.endpoint/endpoint.fidl

OrdinalVariantTypeDescription
response Endpoint_GetInfo_Response
err zx/Status

CONSTANTS

NameValueTypeDescription
REQUEST_MAX 300 uint32

Arbitrary limit on the number of Requests in one call to QueueRequest().

VMO_VECTOR_MAX 300 uint32

Arbitrary limit on the number of VMOs in one call to RegisterVmos() or UnregisterVmos().