initial check in based on SVN revision 575
This commit is contained in:
878
usb/device/class/cdc/usb_device_cdc_acm.c
Normal file
878
usb/device/class/cdc/usb_device_cdc_acm.c
Normal file
@@ -0,0 +1,878 @@
|
||||
/*
|
||||
* Copyright (c) 2015, Freescale Semiconductor, Inc.
|
||||
* Copyright 2016, 2019 NXP
|
||||
* All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "usb_device_config.h"
|
||||
#include "usb.h"
|
||||
#include "usb_device.h"
|
||||
|
||||
#include "usb_device_class.h"
|
||||
|
||||
#if USB_DEVICE_CONFIG_CDC_ACM
|
||||
#include "usb_device_cdc_acm.h"
|
||||
|
||||
/*******************************************************************************
|
||||
* Definitions
|
||||
******************************************************************************/
|
||||
#define USB_CDC_ACM_ENTER_CRITICAL() \
|
||||
OSA_SR_ALLOC(); \
|
||||
OSA_ENTER_CRITICAL()
|
||||
|
||||
#define USB_CDC_ACM_EXIT_CRITICAL() OSA_EXIT_CRITICAL()
|
||||
|
||||
/*******************************************************************************
|
||||
* Variables
|
||||
******************************************************************************/
|
||||
/* CDC ACM device instance */
|
||||
|
||||
USB_GLOBAL USB_RAM_ADDRESS_ALIGNMENT(USB_DATA_ALIGN_SIZE) static usb_device_cdc_acm_struct_t
|
||||
g_cdcAcmHandle[USB_DEVICE_CONFIG_CDC_ACM];
|
||||
|
||||
/*******************************************************************************
|
||||
* Code
|
||||
******************************************************************************/
|
||||
|
||||
/*!
|
||||
* @brief Allocates the CDC ACM device handle.
|
||||
*
|
||||
* This function allocates the CDC ACM device handle.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmAllocateHandle(usb_device_cdc_acm_struct_t **handle)
|
||||
{
|
||||
uint32_t count;
|
||||
for (count = 0; count < (uint32_t)USB_DEVICE_CONFIG_CDC_ACM; count++)
|
||||
{
|
||||
if (NULL == g_cdcAcmHandle[count].handle)
|
||||
{
|
||||
*handle = &g_cdcAcmHandle[count];
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
}
|
||||
|
||||
return kStatus_USB_Busy;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Frees the CDC ACM device handle.
|
||||
*
|
||||
* This function frees the CDC ACM device handle.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmFreeHandle(usb_device_cdc_acm_struct_t *handle)
|
||||
{
|
||||
handle->handle = NULL;
|
||||
handle->configStruct = NULL;
|
||||
handle->configuration = 0;
|
||||
handle->alternate = 0;
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Responds to the interrupt in endpoint event.
|
||||
*
|
||||
* This function responds to the interrupt in endpoint event.
|
||||
*
|
||||
* @param handle The device handle of the CDC ACM device.
|
||||
* @param message The pointer to the message of the endpoint callback.
|
||||
* @param callbackParam The pointer to the parameter of the callback.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmInterruptIn(usb_device_handle handle,
|
||||
usb_device_endpoint_callback_message_struct_t *message,
|
||||
void *callbackParam)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t error = kStatus_USB_Error;
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)callbackParam;
|
||||
if (NULL == cdcAcmHandle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
|
||||
cdcAcmHandle->interruptIn.isBusy = 0U;
|
||||
|
||||
if ((NULL != cdcAcmHandle->configStruct) && (NULL != cdcAcmHandle->configStruct->classCallback))
|
||||
{
|
||||
/*classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventSerialStateNotif, message);
|
||||
}
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Responds to the bulk in endpoint event.
|
||||
*
|
||||
* This function responds to the bulk in endpoint event.
|
||||
*
|
||||
* @param handle The device handle of the CDC ACM device.
|
||||
* @param message The pointer to the message of the endpoint callback.
|
||||
* @param callbackParam The pointer to the parameter of the callback.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmBulkIn(usb_device_handle handle,
|
||||
usb_device_endpoint_callback_message_struct_t *message,
|
||||
void *callbackParam)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t status = kStatus_USB_Error;
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)callbackParam;
|
||||
|
||||
if (NULL == cdcAcmHandle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
|
||||
cdcAcmHandle->bulkIn.isBusy = 0;
|
||||
|
||||
if ((NULL != cdcAcmHandle->configStruct) && (NULL != cdcAcmHandle->configStruct->classCallback))
|
||||
{
|
||||
/*classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
status = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventSendResponse, message);
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Responds to the bulk out endpoint event.
|
||||
*
|
||||
* This function responds to the bulk out endpoint event.
|
||||
*
|
||||
* @param handle The device handle of the CDC ACM device.
|
||||
* @param message The pointer to the message of the endpoint callback.
|
||||
* @param callbackParam The pointer to the parameter of the callback.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmBulkOut(usb_device_handle handle,
|
||||
usb_device_endpoint_callback_message_struct_t *message,
|
||||
void *callbackParam)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t status = kStatus_USB_Error;
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)callbackParam;
|
||||
|
||||
if (NULL == cdcAcmHandle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
|
||||
cdcAcmHandle->bulkOut.isBusy = 0U;
|
||||
|
||||
if ((NULL != cdcAcmHandle->configStruct) && (NULL != cdcAcmHandle->configStruct->classCallback))
|
||||
{
|
||||
/*classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
status = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventRecvResponse, message);
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Initializes the endpoints in CDC ACM class.
|
||||
*
|
||||
* This function initializes the endpoints in CDC ACM class.
|
||||
*
|
||||
* @param cdcAcmHandle The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmEndpointsInit(usb_device_cdc_acm_struct_t *cdcAcmHandle)
|
||||
{
|
||||
usb_device_interface_list_t *interfaceList;
|
||||
usb_device_interface_struct_t *interface = NULL;
|
||||
usb_status_t error = kStatus_USB_Error;
|
||||
uint32_t count;
|
||||
uint32_t index;
|
||||
|
||||
if (NULL == cdcAcmHandle)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
/* return error when configuration is invalid (0 or more than the configuration number) */
|
||||
if ((cdcAcmHandle->configuration == 0U) ||
|
||||
(cdcAcmHandle->configuration > cdcAcmHandle->configStruct->classInfomation->configurations))
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
interfaceList = &cdcAcmHandle->configStruct->classInfomation->interfaceList[cdcAcmHandle->configuration - 1U];
|
||||
|
||||
for (count = 0; count < interfaceList->count; count++)
|
||||
{
|
||||
if (USB_DEVICE_CONFIG_CDC_COMM_CLASS_CODE == interfaceList->interfaces[count].classCode)
|
||||
{
|
||||
for (index = 0; index < interfaceList->interfaces[count].count; index++)
|
||||
{
|
||||
if (interfaceList->interfaces[count].interface[index].alternateSetting == cdcAcmHandle->alternate)
|
||||
{
|
||||
interface = &interfaceList->interfaces[count].interface[index];
|
||||
break;
|
||||
}
|
||||
}
|
||||
cdcAcmHandle->interfaceNumber = interfaceList->interfaces[count].interfaceNumber;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (NULL == interface)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
cdcAcmHandle->commInterfaceHandle = interface;
|
||||
for (count = 0; count < interface->endpointList.count; count++)
|
||||
{
|
||||
usb_device_endpoint_init_struct_t epInitStruct;
|
||||
usb_device_endpoint_callback_struct_t epCallback;
|
||||
epInitStruct.zlt = 0;
|
||||
epInitStruct.interval = interface->endpointList.endpoint[count].interval;
|
||||
epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress;
|
||||
epInitStruct.maxPacketSize = interface->endpointList.endpoint[count].maxPacketSize;
|
||||
epInitStruct.transferType = interface->endpointList.endpoint[count].transferType;
|
||||
|
||||
if ((USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >>
|
||||
USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT)) &&
|
||||
(USB_ENDPOINT_INTERRUPT == epInitStruct.transferType))
|
||||
{
|
||||
cdcAcmHandle->interruptIn.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK);
|
||||
cdcAcmHandle->interruptIn.isBusy = 0;
|
||||
cdcAcmHandle->interruptIn.pipeDataBuffer = (uint8_t *)USB_INVALID_TRANSFER_BUFFER;
|
||||
cdcAcmHandle->interruptIn.pipeStall = 0U;
|
||||
cdcAcmHandle->interruptIn.pipeDataLen = 0U;
|
||||
epCallback.callbackFn = USB_DeviceCdcAcmInterruptIn;
|
||||
}
|
||||
|
||||
epCallback.callbackParam = cdcAcmHandle;
|
||||
|
||||
error = USB_DeviceInitEndpoint(cdcAcmHandle->handle, &epInitStruct, &epCallback);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
for (count = 0; count < interfaceList->count; count++)
|
||||
{
|
||||
if (USB_DEVICE_CONFIG_CDC_DATA_CLASS_CODE == interfaceList->interfaces[count].classCode)
|
||||
{
|
||||
for (index = 0; index < interfaceList->interfaces[count].count; index++)
|
||||
{
|
||||
if (interfaceList->interfaces[count].interface[index].alternateSetting == cdcAcmHandle->alternate)
|
||||
{
|
||||
interface = &interfaceList->interfaces[count].interface[index];
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
cdcAcmHandle->dataInterfaceHandle = interface;
|
||||
|
||||
for (count = 0; count < interface->endpointList.count; count++)
|
||||
{
|
||||
usb_device_endpoint_init_struct_t epInitStruct;
|
||||
usb_device_endpoint_callback_struct_t epCallback;
|
||||
epInitStruct.zlt = 0;
|
||||
epInitStruct.interval = interface->endpointList.endpoint[count].interval;
|
||||
epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress;
|
||||
epInitStruct.maxPacketSize = interface->endpointList.endpoint[count].maxPacketSize;
|
||||
epInitStruct.transferType = interface->endpointList.endpoint[count].transferType;
|
||||
|
||||
if ((USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >>
|
||||
USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT)) &&
|
||||
(USB_ENDPOINT_BULK == epInitStruct.transferType))
|
||||
{
|
||||
cdcAcmHandle->bulkIn.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK);
|
||||
cdcAcmHandle->bulkIn.isBusy = 0;
|
||||
cdcAcmHandle->bulkIn.pipeDataBuffer = (uint8_t *)USB_INVALID_TRANSFER_BUFFER;
|
||||
cdcAcmHandle->bulkIn.pipeStall = 0U;
|
||||
cdcAcmHandle->bulkIn.pipeDataLen = 0U;
|
||||
epCallback.callbackFn = USB_DeviceCdcAcmBulkIn;
|
||||
}
|
||||
else if ((USB_OUT == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >>
|
||||
USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT)) &&
|
||||
(USB_ENDPOINT_BULK == epInitStruct.transferType))
|
||||
{
|
||||
cdcAcmHandle->bulkOut.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK);
|
||||
cdcAcmHandle->bulkOut.isBusy = 0;
|
||||
cdcAcmHandle->bulkOut.pipeDataBuffer = (uint8_t *)USB_INVALID_TRANSFER_BUFFER;
|
||||
cdcAcmHandle->bulkOut.pipeStall = 0U;
|
||||
cdcAcmHandle->bulkOut.pipeDataLen = 0U;
|
||||
epCallback.callbackFn = USB_DeviceCdcAcmBulkOut;
|
||||
}
|
||||
else
|
||||
{
|
||||
/*no action*/
|
||||
}
|
||||
epCallback.callbackParam = cdcAcmHandle;
|
||||
|
||||
error = USB_DeviceInitEndpoint(cdcAcmHandle->handle, &epInitStruct, &epCallback);
|
||||
}
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief De-initializes the endpoints in CDC ACM class.
|
||||
*
|
||||
* This function de-initializes the endpoints in CDC ACM class.
|
||||
*
|
||||
* @param cdcAcmHandle The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
static usb_status_t USB_DeviceCdcAcmEndpointsDeinit(usb_device_cdc_acm_struct_t *cdcAcmHandle)
|
||||
{
|
||||
usb_status_t status = kStatus_USB_Error;
|
||||
uint32_t count;
|
||||
|
||||
if ((NULL == cdcAcmHandle->commInterfaceHandle) || (NULL == cdcAcmHandle->dataInterfaceHandle))
|
||||
{
|
||||
return status;
|
||||
}
|
||||
for (count = 0; count < cdcAcmHandle->commInterfaceHandle->endpointList.count; count++)
|
||||
{
|
||||
status = USB_DeviceDeinitEndpoint(
|
||||
cdcAcmHandle->handle, cdcAcmHandle->commInterfaceHandle->endpointList.endpoint[count].endpointAddress);
|
||||
}
|
||||
for (count = 0; count < cdcAcmHandle->dataInterfaceHandle->endpointList.count; count++)
|
||||
{
|
||||
status = USB_DeviceDeinitEndpoint(
|
||||
cdcAcmHandle->handle, cdcAcmHandle->dataInterfaceHandle->endpointList.endpoint[count].endpointAddress);
|
||||
}
|
||||
cdcAcmHandle->commInterfaceHandle = NULL;
|
||||
cdcAcmHandle->dataInterfaceHandle = NULL;
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Handles the CDC ACM class event.
|
||||
*
|
||||
* This function responses to various events including the common device events and the class specific events.
|
||||
* For class specific events, it calls the class callback defined in the application to deal with the class specific
|
||||
* event.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @param event The event type.
|
||||
* @param param The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceCdcAcmEvent(void *handle, uint32_t event, void *param)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_device_cdc_acm_request_param_struct_t reqParam;
|
||||
usb_status_t error = kStatus_USB_Error;
|
||||
uint32_t count;
|
||||
uint16_t interfaceAlternate;
|
||||
uint8_t *temp8;
|
||||
uint8_t alternate;
|
||||
usb_device_class_event_t eventCode = (usb_device_class_event_t)event;
|
||||
if ((NULL == param) || (NULL == handle))
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)handle;
|
||||
|
||||
switch (eventCode)
|
||||
{
|
||||
case kUSB_DeviceClassEventDeviceReset:
|
||||
/* Bus reset, clear the configuration. */
|
||||
cdcAcmHandle->configuration = 0;
|
||||
break;
|
||||
case kUSB_DeviceClassEventSetConfiguration:
|
||||
temp8 = ((uint8_t *)param);
|
||||
if (NULL == cdcAcmHandle->configStruct)
|
||||
{
|
||||
break;
|
||||
}
|
||||
if (*temp8 == cdcAcmHandle->configuration)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
error = USB_DeviceCdcAcmEndpointsDeinit(cdcAcmHandle);
|
||||
cdcAcmHandle->configuration = *temp8;
|
||||
cdcAcmHandle->alternate = 0U;
|
||||
error = USB_DeviceCdcAcmEndpointsInit(cdcAcmHandle);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("kUSB_DeviceClassEventSetConfiguration, USB_DeviceInitEndpoint fail\r\n");
|
||||
#endif
|
||||
}
|
||||
break;
|
||||
case kUSB_DeviceClassEventSetInterface:
|
||||
if (NULL == cdcAcmHandle->configStruct)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
interfaceAlternate = *((uint16_t *)param);
|
||||
alternate = (uint8_t)(interfaceAlternate & 0xFFU);
|
||||
|
||||
if (cdcAcmHandle->interfaceNumber != ((uint8_t)(interfaceAlternate >> 8U)))
|
||||
{
|
||||
break;
|
||||
}
|
||||
if (alternate == cdcAcmHandle->alternate)
|
||||
{
|
||||
break;
|
||||
}
|
||||
error = USB_DeviceCdcAcmEndpointsDeinit(cdcAcmHandle);
|
||||
cdcAcmHandle->alternate = alternate;
|
||||
error = USB_DeviceCdcAcmEndpointsInit(cdcAcmHandle);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("kUSB_DeviceClassEventSetInterface, USB_DeviceInitEndpoint fail\r\n");
|
||||
#endif
|
||||
}
|
||||
break;
|
||||
case kUSB_DeviceClassEventSetEndpointHalt:
|
||||
if ((NULL == cdcAcmHandle->configStruct) || (NULL == cdcAcmHandle->commInterfaceHandle) ||
|
||||
(NULL == cdcAcmHandle->dataInterfaceHandle))
|
||||
{
|
||||
break;
|
||||
}
|
||||
temp8 = ((uint8_t *)param);
|
||||
for (count = 0; count < cdcAcmHandle->commInterfaceHandle->endpointList.count; count++)
|
||||
{
|
||||
if (*temp8 == cdcAcmHandle->commInterfaceHandle->endpointList.endpoint[count].endpointAddress)
|
||||
{
|
||||
cdcAcmHandle->interruptIn.pipeStall = 1U;
|
||||
error = USB_DeviceStallEndpoint(cdcAcmHandle->handle, *temp8);
|
||||
}
|
||||
}
|
||||
for (count = 0; count < cdcAcmHandle->dataInterfaceHandle->endpointList.count; count++)
|
||||
{
|
||||
if (*temp8 == cdcAcmHandle->dataInterfaceHandle->endpointList.endpoint[count].endpointAddress)
|
||||
{
|
||||
if (USB_IN == (((*temp8) & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >>
|
||||
USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT))
|
||||
{
|
||||
cdcAcmHandle->bulkIn.pipeStall = 1U;
|
||||
}
|
||||
else
|
||||
{
|
||||
cdcAcmHandle->bulkOut.pipeStall = 1U;
|
||||
}
|
||||
error = USB_DeviceStallEndpoint(cdcAcmHandle->handle, *temp8);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case kUSB_DeviceClassEventClearEndpointHalt:
|
||||
if ((NULL == cdcAcmHandle->configStruct) || (NULL == cdcAcmHandle->commInterfaceHandle) ||
|
||||
(NULL == cdcAcmHandle->dataInterfaceHandle))
|
||||
{
|
||||
break;
|
||||
}
|
||||
temp8 = ((uint8_t *)param);
|
||||
for (count = 0; count < cdcAcmHandle->commInterfaceHandle->endpointList.count; count++)
|
||||
{
|
||||
if (*temp8 == cdcAcmHandle->commInterfaceHandle->endpointList.endpoint[count].endpointAddress)
|
||||
{
|
||||
error = USB_DeviceUnstallEndpoint(cdcAcmHandle->handle, *temp8);
|
||||
if (USB_IN == (((*temp8) & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >>
|
||||
USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT))
|
||||
{
|
||||
if (0U != cdcAcmHandle->interruptIn.pipeStall)
|
||||
{
|
||||
cdcAcmHandle->interruptIn.pipeStall = 0U;
|
||||
if ((uint8_t *)USB_INVALID_TRANSFER_BUFFER != cdcAcmHandle->interruptIn.pipeDataBuffer)
|
||||
{
|
||||
error = USB_DeviceSendRequest(cdcAcmHandle->handle, (cdcAcmHandle->interruptIn.ep),
|
||||
cdcAcmHandle->interruptIn.pipeDataBuffer,
|
||||
cdcAcmHandle->interruptIn.pipeDataLen);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
usb_device_endpoint_callback_message_struct_t endpointCallbackMessage;
|
||||
endpointCallbackMessage.buffer = cdcAcmHandle->interruptIn.pipeDataBuffer;
|
||||
endpointCallbackMessage.length = cdcAcmHandle->interruptIn.pipeDataLen;
|
||||
endpointCallbackMessage.isSetup = 0U;
|
||||
(void)USB_DeviceCdcAcmBulkIn(cdcAcmHandle->handle, (void *)&endpointCallbackMessage,
|
||||
handle);
|
||||
}
|
||||
cdcAcmHandle->interruptIn.pipeDataBuffer = (uint8_t *)USB_INVALID_TRANSFER_BUFFER;
|
||||
cdcAcmHandle->interruptIn.pipeDataLen = 0U;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
for (count = 0; count < cdcAcmHandle->dataInterfaceHandle->endpointList.count; count++)
|
||||
{
|
||||
if (*temp8 == cdcAcmHandle->dataInterfaceHandle->endpointList.endpoint[count].endpointAddress)
|
||||
{
|
||||
error = USB_DeviceUnstallEndpoint(cdcAcmHandle->handle, *temp8);
|
||||
if (USB_IN == (((*temp8) & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >>
|
||||
USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT))
|
||||
{
|
||||
if (0U != cdcAcmHandle->bulkIn.pipeStall)
|
||||
{
|
||||
cdcAcmHandle->bulkIn.pipeStall = 0U;
|
||||
if ((uint8_t *)USB_INVALID_TRANSFER_BUFFER != cdcAcmHandle->bulkIn.pipeDataBuffer)
|
||||
{
|
||||
error = USB_DeviceSendRequest(cdcAcmHandle->handle, (cdcAcmHandle->bulkIn.ep),
|
||||
cdcAcmHandle->bulkIn.pipeDataBuffer,
|
||||
cdcAcmHandle->bulkIn.pipeDataLen);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
usb_device_endpoint_callback_message_struct_t endpointCallbackMessage;
|
||||
endpointCallbackMessage.buffer = cdcAcmHandle->bulkIn.pipeDataBuffer;
|
||||
endpointCallbackMessage.length = cdcAcmHandle->bulkIn.pipeDataLen;
|
||||
endpointCallbackMessage.isSetup = 0U;
|
||||
(void)USB_DeviceCdcAcmBulkIn(cdcAcmHandle->handle, (void *)&endpointCallbackMessage,
|
||||
handle);
|
||||
}
|
||||
cdcAcmHandle->bulkIn.pipeDataBuffer = (uint8_t *)USB_INVALID_TRANSFER_BUFFER;
|
||||
cdcAcmHandle->bulkIn.pipeDataLen = 0U;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (0U != cdcAcmHandle->bulkOut.pipeStall)
|
||||
{
|
||||
cdcAcmHandle->bulkOut.pipeStall = 0U;
|
||||
if ((uint8_t *)USB_INVALID_TRANSFER_BUFFER != cdcAcmHandle->bulkOut.pipeDataBuffer)
|
||||
{
|
||||
error = USB_DeviceRecvRequest(cdcAcmHandle->handle, (cdcAcmHandle->bulkOut.ep),
|
||||
cdcAcmHandle->bulkOut.pipeDataBuffer,
|
||||
cdcAcmHandle->bulkOut.pipeDataLen);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
usb_device_endpoint_callback_message_struct_t endpointCallbackMessage;
|
||||
endpointCallbackMessage.buffer = cdcAcmHandle->bulkOut.pipeDataBuffer;
|
||||
endpointCallbackMessage.length = cdcAcmHandle->bulkOut.pipeDataLen;
|
||||
endpointCallbackMessage.isSetup = 0U;
|
||||
(void)USB_DeviceCdcAcmBulkOut(cdcAcmHandle->handle,
|
||||
(void *)&endpointCallbackMessage, handle);
|
||||
}
|
||||
cdcAcmHandle->bulkOut.pipeDataBuffer = (uint8_t *)USB_INVALID_TRANSFER_BUFFER;
|
||||
cdcAcmHandle->bulkOut.pipeDataLen = 0U;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case kUSB_DeviceClassEventClassRequest:
|
||||
|
||||
{
|
||||
usb_device_control_request_struct_t *controlRequest = (usb_device_control_request_struct_t *)param;
|
||||
|
||||
if ((controlRequest->setup->wIndex & 0xFFU) != cdcAcmHandle->interfaceNumber)
|
||||
{
|
||||
break;
|
||||
}
|
||||
/* Standard CDC request */
|
||||
if (USB_REQUEST_TYPE_TYPE_CLASS == (controlRequest->setup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK))
|
||||
{
|
||||
reqParam.buffer = &(controlRequest->buffer);
|
||||
reqParam.length = &(controlRequest->length);
|
||||
reqParam.interfaceIndex = controlRequest->setup->wIndex;
|
||||
reqParam.setupValue = controlRequest->setup->wValue;
|
||||
reqParam.isSetup = controlRequest->isSetup;
|
||||
switch (controlRequest->setup->bRequest)
|
||||
{
|
||||
case USB_DEVICE_CDC_REQUEST_SEND_ENCAPSULATED_COMMAND:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback(
|
||||
(class_handle_t)cdcAcmHandle, kUSB_DeviceCdcEventSendEncapsulatedCommand, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_GET_ENCAPSULATED_RESPONSE:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback(
|
||||
(class_handle_t)cdcAcmHandle, kUSB_DeviceCdcEventGetEncapsulatedResponse, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_SET_COMM_FEATURE:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventSetCommFeature, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_GET_COMM_FEATURE:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventGetCommFeature, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_CLEAR_COMM_FEATURE:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback(
|
||||
(class_handle_t)cdcAcmHandle, kUSB_DeviceCdcEventClearCommFeature, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_GET_LINE_CODING:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventGetLineCoding, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_SET_LINE_CODING:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventSetLineCoding, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_SET_CONTROL_LINE_STATE:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback(
|
||||
(class_handle_t)cdcAcmHandle, kUSB_DeviceCdcEventSetControlLineState, &reqParam);
|
||||
break;
|
||||
case USB_DEVICE_CDC_REQUEST_SEND_BREAK:
|
||||
/* classCallback is initialized in classInit of s_UsbDeviceClassInterfaceMap,
|
||||
it is from the second parameter of classInit */
|
||||
error = cdcAcmHandle->configStruct->classCallback((class_handle_t)cdcAcmHandle,
|
||||
kUSB_DeviceCdcEventSendBreak, &reqParam);
|
||||
break;
|
||||
default:
|
||||
error = kStatus_USB_InvalidRequest;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
/*no action*/
|
||||
break;
|
||||
}
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Initializes the USB CDC ACM class.
|
||||
*
|
||||
* This function obtains a usb device handle according to the controller id, initializes the CDC ACM class
|
||||
* with the class configure parameters and creates the mutex for each pipe.
|
||||
*
|
||||
* @param controllerId The id of the controller. The value can be choosen from kUSB_ControllerKhci0,
|
||||
* kUSB_ControllerKhci1, kUSB_ControllerEhci0 or kUSB_ControllerEhci1.
|
||||
* @param config The user configuration structure of type usb_device_class_config_struct_t. The user
|
||||
* populates the members of this structure and passes the pointer of this structure
|
||||
* into this function.
|
||||
* @param handle It is out parameter. The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceCdcAcmInit(uint8_t controllerId,
|
||||
usb_device_class_config_struct_t *config,
|
||||
class_handle_t *handle)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t error;
|
||||
|
||||
error = USB_DeviceCdcAcmAllocateHandle(&cdcAcmHandle);
|
||||
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
error = USB_DeviceClassGetDeviceHandle(controllerId, &cdcAcmHandle->handle);
|
||||
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
if (NULL == cdcAcmHandle->handle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
cdcAcmHandle->configStruct = config;
|
||||
cdcAcmHandle->configuration = 0;
|
||||
cdcAcmHandle->alternate = 0xFF;
|
||||
|
||||
cdcAcmHandle->bulkIn.mutex = (osa_mutex_handle_t)&cdcAcmHandle->bulkIn.mutexBuffer[0];
|
||||
if (KOSA_StatusSuccess != OSA_MutexCreate((cdcAcmHandle->bulkIn.mutex)))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("mutex create error!");
|
||||
#endif
|
||||
}
|
||||
cdcAcmHandle->bulkOut.mutex = (osa_mutex_handle_t)&cdcAcmHandle->bulkOut.mutexBuffer[0];
|
||||
if (KOSA_StatusSuccess != OSA_MutexCreate((cdcAcmHandle->bulkOut.mutex)))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("mutex create error!");
|
||||
#endif
|
||||
}
|
||||
cdcAcmHandle->interruptIn.mutex = (osa_mutex_handle_t)&cdcAcmHandle->interruptIn.mutexBuffer[0];
|
||||
if (KOSA_StatusSuccess != OSA_MutexCreate((cdcAcmHandle->interruptIn.mutex)))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("mutex create error!");
|
||||
#endif
|
||||
}
|
||||
*handle = (class_handle_t)cdcAcmHandle;
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief De-Initializes the USB CDC ACM class.
|
||||
*
|
||||
* This function destroys the mutex for each pipe, deinit each endpoint of the CDC ACM class and free
|
||||
* the CDC ACM class handle.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceCdcAcmDeinit(class_handle_t handle)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t error;
|
||||
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)handle;
|
||||
|
||||
if (NULL == cdcAcmHandle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
if (KOSA_StatusSuccess != OSA_MutexDestroy((cdcAcmHandle->bulkIn.mutex)))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("mutex destroy error!");
|
||||
#endif
|
||||
}
|
||||
if (KOSA_StatusSuccess != OSA_MutexDestroy((cdcAcmHandle->bulkOut.mutex)))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("mutex destroy error!");
|
||||
#endif
|
||||
}
|
||||
if (KOSA_StatusSuccess != OSA_MutexDestroy((cdcAcmHandle->interruptIn.mutex)))
|
||||
{
|
||||
#ifdef DEBUG
|
||||
(void)usb_echo("mutex destroy error!");
|
||||
#endif
|
||||
}
|
||||
error = USB_DeviceCdcAcmEndpointsDeinit(cdcAcmHandle);
|
||||
(void)USB_DeviceCdcAcmFreeHandle(cdcAcmHandle);
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Prime the endpoint to send packet to host.
|
||||
*
|
||||
* This function checks whether the endpoint is sending packet, then it primes the endpoint
|
||||
* with the buffer address and the buffer length if the pipe is not busy. Otherwise, it ignores this transfer by
|
||||
* returning an error code.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @param ep The endpoint number of the transfer.
|
||||
* @param buffer The pointer to the buffer to be transferred.
|
||||
* @param length The length of the buffer to be transferred.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceCdcAcmSend(class_handle_t handle, uint8_t ep, uint8_t *buffer, uint32_t length)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t status = kStatus_USB_Error;
|
||||
usb_device_cdc_acm_pipe_t *cdcAcmPipe = NULL;
|
||||
|
||||
if (NULL == handle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)handle;
|
||||
|
||||
if (cdcAcmHandle->bulkIn.ep == ep)
|
||||
{
|
||||
cdcAcmPipe = &(cdcAcmHandle->bulkIn);
|
||||
}
|
||||
else if (cdcAcmHandle->interruptIn.ep == ep)
|
||||
{
|
||||
cdcAcmPipe = &(cdcAcmHandle->interruptIn);
|
||||
}
|
||||
else
|
||||
{
|
||||
/*no action*/
|
||||
}
|
||||
|
||||
if (NULL != cdcAcmPipe)
|
||||
{
|
||||
if (1U == cdcAcmPipe->isBusy)
|
||||
{
|
||||
return kStatus_USB_Busy;
|
||||
}
|
||||
cdcAcmPipe->isBusy = 1U;
|
||||
|
||||
if (0u != cdcAcmPipe->pipeStall)
|
||||
{
|
||||
cdcAcmPipe->pipeDataBuffer = buffer;
|
||||
cdcAcmPipe->pipeDataLen = length;
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
|
||||
status = USB_DeviceSendRequest(cdcAcmHandle->handle, ep, buffer, length);
|
||||
if (kStatus_USB_Success != status)
|
||||
{
|
||||
cdcAcmPipe->isBusy = 0U;
|
||||
}
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Prime the endpoint to receive packet from host.
|
||||
*
|
||||
* This function checks whether the endpoint is receiving packet, then it primes the endpoint
|
||||
* with the buffer address and the buffer length if the pipe is not busy. Otherwise, it ignores this transfer by
|
||||
* returning an error code.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @param ep The endpoint number of the transfer.
|
||||
* @param buffer The pointer to the buffer to be transferred.
|
||||
* @param length The length of the buffer to be transferred.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceCdcAcmRecv(class_handle_t handle, uint8_t ep, uint8_t *buffer, uint32_t length)
|
||||
{
|
||||
usb_device_cdc_acm_struct_t *cdcAcmHandle;
|
||||
usb_status_t status;
|
||||
if (NULL == handle)
|
||||
{
|
||||
return kStatus_USB_InvalidHandle;
|
||||
}
|
||||
cdcAcmHandle = (usb_device_cdc_acm_struct_t *)handle;
|
||||
|
||||
if (1U == cdcAcmHandle->bulkOut.isBusy)
|
||||
{
|
||||
return kStatus_USB_Busy;
|
||||
}
|
||||
cdcAcmHandle->bulkOut.isBusy = 1U;
|
||||
|
||||
if (0U != cdcAcmHandle->bulkOut.pipeStall)
|
||||
{
|
||||
cdcAcmHandle->bulkOut.pipeDataBuffer = buffer;
|
||||
cdcAcmHandle->bulkOut.pipeDataLen = length;
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
|
||||
status = USB_DeviceRecvRequest(cdcAcmHandle->handle, ep, buffer, length);
|
||||
if (kStatus_USB_Success != status)
|
||||
{
|
||||
cdcAcmHandle->bulkOut.isBusy = 0U;
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
#endif /* USB_DEVICE_CONFIG_CDC_ACM */
|
||||
270
usb/device/class/cdc/usb_device_cdc_acm.h
Normal file
270
usb/device/class/cdc/usb_device_cdc_acm.h
Normal file
@@ -0,0 +1,270 @@
|
||||
/*
|
||||
* Copyright (c) 2015, Freescale Semiconductor, Inc.
|
||||
* Copyright 2016,2019 NXP
|
||||
* All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
#ifndef _USB_DEVICE_CDC_ACM_H_
|
||||
#define _USB_DEVICE_CDC_ACM_H_
|
||||
|
||||
/*!
|
||||
* @addtogroup cdc_acm
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*******************************************************************************
|
||||
* Definitions
|
||||
******************************************************************************/
|
||||
#define USB_DEVICE_CONFIG_CDC_ACM_MAX_INSTANCE (1U) /*!< The maximum number of CDC device instance. */
|
||||
#define USB_DEVICE_CONFIG_CDC_COMM_CLASS_CODE (0x02U) /*!< The CDC communication class code. */
|
||||
#define USB_DEVICE_CONFIG_CDC_DATA_CLASS_CODE (0x0AU) /*!< The CDC data class code. */
|
||||
|
||||
#define USB_DEVICE_CDC_REQUEST_SEND_ENCAPSULATED_COMMAND \
|
||||
(0x00) /*!< The CDC class request code for SEND_ENCAPSULATED_COMMAND. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_ENCAPSULATED_RESPONSE \
|
||||
(0x01) /*!< The CDC class request code for GET_ENCAPSULATED_RESPONSE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_COMM_FEATURE (0x02) /*!< The CDC class request code for SET_COMM_FEATURE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_COMM_FEATURE (0x03) /*!< The CDC class request code for GET_COMM_FEATURE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_CLEAR_COMM_FEATURE (0x04) /*!< The CDC class request code for CLEAR_COMM_FEATURE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_AUX_LINE_STATE (0x10) /*!< The CDC class request code for SET_AUX_LINE_STATE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_HOOK_STATE (0x11) /*!< The CDC class request code for SET_HOOK_STATE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_PULSE_SETUP (0x12) /*!< The CDC class request code for PULSE_SETUP. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SEND_PULSE (0x13) /*!< The CDC class request code for SEND_PULSE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_PULSE_TIME (0x14) /*!< The CDC class request code for SET_PULSE_TIME. */
|
||||
#define USB_DEVICE_CDC_REQUEST_RING_AUX_JACK (0x15) /*!< The CDC class request code for RING_AUX_JACK. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_LINE_CODING (0x20) /*!< The CDC class request code for SET_LINE_CODING. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_LINE_CODING (0x21) /*!< The CDC class request code for GET_LINE_CODING. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_CONTROL_LINE_STATE \
|
||||
(0x22) /*!< The CDC class request code for SET_CONTROL_LINE_STATE. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SEND_BREAK (0x23) /*!< The CDC class request code for SEND_BREAK. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_RINGER_PARAMS (0x30) /*!< The CDC class request code for SET_RINGER_PARAMS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_RINGER_PARAMS (0x31) /*!< The CDC class request code for GET_RINGER_PARAMS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_OPERATION_PARAM (0x32) /*!< The CDC class request code for SET_OPERATION_PARAM. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_OPERATION_PARAM (0x33) /*!< The CDC class request code for GET_OPERATION_PARAM. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_LINE_PARAMS (0x34) /*!< The CDC class request code for SET_LINE_PARAMS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_LINE_PARAMS (0x35) /*!< The CDC class request code for GET_LINE_PARAMS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_DIAL_DIGITS (0x36) /*!< The CDC class request code for DIAL_DIGITS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_UNIT_PARAMETER (0x37) /*!< The CDC class request code for SET_UNIT_PARAMETER. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_UNIT_PARAMETER (0x38) /*!< The CDC class request code for GET_UNIT_PARAMETER. */
|
||||
#define USB_DEVICE_CDC_REQUEST_CLEAR_UNIT_PARAMETER \
|
||||
(0x39) /*!< The CDC class request code for CLEAR_UNIT_PARAMETER. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_ETHERNET_MULTICAST_FILTERS \
|
||||
(0x40) /*!< The CDC class request code for SET_ETHERNET_MULTICAST_FILTERS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_ETHERNET_POW_PATTER_FILTER \
|
||||
(0x41) /*!< The CDC class request code for SET_ETHERNET_POW_PATTER_FILTER. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_ETHERNET_POW_PATTER_FILTER \
|
||||
(0x42) /*!< The CDC class request code for GET_ETHERNET_POW_PATTER_FILTER. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_ETHERNET_PACKET_FILTER \
|
||||
(0x43) /*!< The CDC class request code for SET_ETHERNET_PACKET_FILTER. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_ETHERNET_STATISTIC \
|
||||
(0x44) /*!< The CDC class request code for GET_ETHERNET_STATISTIC. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_ATM_DATA_FORMAT (0x50) /*!< The CDC class request code for SET_ATM_DATA_FORMAT. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_ATM_DEVICE_STATISTICS \
|
||||
(0x51) /*!< The CDC class request code for GET_ATM_DEVICE_STATISTICS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_SET_ATM_DEFAULT_VC (0x52) /*!< The CDC class request code for SET_ATM_DEFAULT_VC. */
|
||||
#define USB_DEVICE_CDC_REQUEST_GET_ATM_VC_STATISTICS \
|
||||
(0x53) /*!< The CDC class request code for GET_ATM_VC_STATISTICS. */
|
||||
#define USB_DEVICE_CDC_REQUEST_MDLM_SPECIFIC_REQUESTS_MASK \
|
||||
(0x7F) /*!< The CDC class request code for MDLM_SPECIFIC_REQUESTS_MASK. */
|
||||
|
||||
#define USB_DEVICE_CDC_NOTIF_NETWORK_CONNECTION (0x00) /*!< The CDC class notify code for NETWORK_CONNECTION. */
|
||||
#define USB_DEVICE_CDC_NOTIF_RESPONSE_AVAIL (0x01) /*!< The CDC class notify code for RESPONSE_AVAIL. */
|
||||
#define USB_DEVICE_CDC_NOTIF_AUX_JACK_HOOK_STATE (0x08) /*!< The CDC class notify code for AUX_JACK_HOOK_STATE. */
|
||||
#define USB_DEVICE_CDC_NOTIF_RING_DETECT (0x09) /*!< The CDC class notify code for RING_DETECT. */
|
||||
#define USB_DEVICE_CDC_NOTIF_SERIAL_STATE (0x20) /*!< The CDC class notify code for SERIAL_STATE. */
|
||||
#define USB_DEVICE_CDC_NOTIF_CALL_STATE_CHANGE (0x28) /*!< The CDC class notify code for CALL_STATE_CHANGE. */
|
||||
#define USB_DEVICE_CDC_NOTIF_LINE_STATE_CHANGE (0x29) /*!< The CDC class notify code for LINE_STATE_CHANGE. */
|
||||
#define USB_DEVICE_CDC_NOTIF_CONNECTION_SPEED_CHANGE \
|
||||
(0x2A) /*!< The CDC class notify code for CONNECTION_SPEED_CHANGE. */
|
||||
|
||||
#define USB_DEVICE_CDC_FEATURE_ABSTRACT_STATE (0x01) /*!< The CDC class feature select code for ABSTRACT_STATE. */
|
||||
#define USB_DEVICE_CDC_FEATURE_COUNTRY_SETTING (0x02) /*!< The CDC class feature select code for COUNTRY_SETTING. */
|
||||
|
||||
#define USB_DEVICE_CDC_CONTROL_SIG_BITMAP_CARRIER_ACTIVATION \
|
||||
(0x02) /*!< The CDC class control signal bitmap value for CARRIER_ACTIVATION. */
|
||||
#define USB_DEVICE_CDC_CONTROL_SIG_BITMAP_DTE_PRESENCE \
|
||||
(0x01) /*!< The CDC class control signal bitmap value for DTE_PRESENCE. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_RX_CARRIER (0x01) /*!< The UART state bitmap value of RX_CARRIER. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_TX_CARRIER (0x02) /*!< The UART state bitmap value of TX_CARRIER. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_BREAK (0x04) /*!< The UART state bitmap value of BREAK. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_RING_SIGNAL (0x08) /*!< The UART state bitmap value of RING_SIGNAL. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_FRAMING (0x10) /*!< The UART state bitmap value of FRAMING. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_PARITY (0x20) /*!< The UART state bitmap value of PARITY. */
|
||||
#define USB_DEVICE_CDC_UART_STATE_OVERRUN (0x40) /*!< The UART state bitmap value of OVERRUN. */
|
||||
|
||||
/*! @brief Definition of CDC class event. */
|
||||
typedef enum _usb_device_cdc_acm_event
|
||||
{
|
||||
kUSB_DeviceCdcEventSendResponse = 0x01, /*!< This event indicates the bulk send transfer is complete or cancelled etc. */
|
||||
kUSB_DeviceCdcEventRecvResponse, /*!< This event indicates the bulk receive transfer is complete or cancelled etc.. */
|
||||
kUSB_DeviceCdcEventSerialStateNotif, /*!< This event indicates the serial state has been sent to the host. */
|
||||
kUSB_DeviceCdcEventSendEncapsulatedCommand, /*!< This event indicates the device received the
|
||||
SEND_ENCAPSULATED_COMMAND request. */
|
||||
kUSB_DeviceCdcEventGetEncapsulatedResponse, /*!< This event indicates the device received the
|
||||
GET_ENCAPSULATED_RESPONSE request. */
|
||||
kUSB_DeviceCdcEventSetCommFeature, /*!< This event indicates the device received the SET_COMM_FEATURE request. */
|
||||
kUSB_DeviceCdcEventGetCommFeature, /*!< This event indicates the device received the GET_COMM_FEATURE request. */
|
||||
kUSB_DeviceCdcEventClearCommFeature, /*!< This event indicates the device received the CLEAR_COMM_FEATURE request.
|
||||
*/
|
||||
kUSB_DeviceCdcEventGetLineCoding, /*!< This event indicates the device received the GET_LINE_CODING request. */
|
||||
kUSB_DeviceCdcEventSetLineCoding, /*!< This event indicates the device received the SET_LINE_CODING request. */
|
||||
kUSB_DeviceCdcEventSetControlLineState, /*!< This event indicates the device received the SET_CONTRL_LINE_STATE
|
||||
request. */
|
||||
kUSB_DeviceCdcEventSendBreak /*!< This event indicates the device received the SEND_BREAK request. */
|
||||
} usb_device_cdc_acm_event_t;
|
||||
|
||||
/*! @brief Definition of parameters for CDC ACM request. */
|
||||
typedef struct _usb_device_cdc_acm_request_param_struct
|
||||
{
|
||||
uint8_t **buffer; /*!< The pointer to the address of the buffer for CDC class request. */
|
||||
uint32_t *length; /*!< The pointer to the length of the buffer for CDC class request. */
|
||||
uint16_t interfaceIndex; /*!< The interface index of the setup packet. */
|
||||
uint16_t setupValue; /*!< The wValue field of the setup packet. */
|
||||
uint8_t isSetup; /*!< The flag indicates if it is a setup packet, 1: yes, 0: no. */
|
||||
} usb_device_cdc_acm_request_param_struct_t;
|
||||
|
||||
/*! @brief Definition of pipe structure. */
|
||||
typedef struct _usb_device_cdc_acm_pipe
|
||||
{
|
||||
osa_mutex_handle_t mutex; /*!< The mutex of the pipe. */
|
||||
uint32_t mutexBuffer[(OSA_MUTEX_HANDLE_SIZE + 3)/4];
|
||||
uint8_t *pipeDataBuffer; /*!< pipe data buffer backup when stall */
|
||||
uint32_t pipeDataLen; /*!< pipe data length backup when stall */
|
||||
uint8_t pipeStall; /*!< pipe is stall */
|
||||
uint8_t ep; /*!< The endpoint number of the pipe. */
|
||||
uint8_t isBusy; /*!< 1: The pipe is transferring packet, 0: The pipe is idle. */
|
||||
} usb_device_cdc_acm_pipe_t;
|
||||
|
||||
/*! @brief Definition of structure for CDC ACM device. */
|
||||
typedef struct _usb_device_cdc_acm_struct
|
||||
{
|
||||
usb_device_handle handle; /*!< The handle of the USB device. */
|
||||
usb_device_class_config_struct_t *configStruct; /*!< The class configure structure. */
|
||||
usb_device_interface_struct_t *commInterfaceHandle; /*!< The CDC communication interface handle. */
|
||||
usb_device_interface_struct_t *dataInterfaceHandle; /*!< The CDC data interface handle. */
|
||||
usb_device_cdc_acm_pipe_t bulkIn; /*!< The bulk in pipe for sending packet to host. */
|
||||
usb_device_cdc_acm_pipe_t bulkOut; /*!< The bulk out pipe for receiving packet from host. */
|
||||
usb_device_cdc_acm_pipe_t interruptIn; /*!< The interrupt in pipe for notifying the device state to host. */
|
||||
uint8_t configuration; /*!< The current configuration value. */
|
||||
uint8_t interfaceNumber; /*!< The current interface number. */
|
||||
uint8_t alternate; /*!< The alternate setting value of the interface. */
|
||||
uint8_t hasSentState; /*!< 1: The device has primed the state in interrupt pipe, 0: Not primed the state. */
|
||||
} usb_device_cdc_acm_struct_t;
|
||||
|
||||
/*******************************************************************************
|
||||
* API
|
||||
******************************************************************************/
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* @name USB CDC ACM Class Driver
|
||||
* @{
|
||||
*/
|
||||
/*!
|
||||
* @brief Initializes the USB CDC ACM class.
|
||||
*
|
||||
* This function obtains a USB device handle according to the controller ID, initializes the CDC ACM class
|
||||
* with the class configure parameters and creates the mutex for each pipe.
|
||||
*
|
||||
* @param controllerId The ID of the controller. The value can be chosen from the kUSB_ControllerKhci0,
|
||||
* kUSB_ControllerKhci1, kUSB_ControllerEhci0, or kUSB_ControllerEhci1.
|
||||
* @param config The user configuration structure of type usb_device_class_config_struct_t. The user
|
||||
* populates the members of this structure and passes the pointer of this structure
|
||||
* into this function.
|
||||
* @param handle It is out parameter. The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success The CDC ACM class is initialized successfully.
|
||||
* @retval kStatus_USB_Busy No CDC ACM device handle available for allocation.
|
||||
* @retval kStatus_USB_InvalidHandle The CDC ACM device handle allocation failure.
|
||||
* @retval kStatus_USB_InvalidParameter The USB device handle allocation failure.
|
||||
*/
|
||||
extern usb_status_t USB_DeviceCdcAcmInit(uint8_t controllerId,
|
||||
usb_device_class_config_struct_t *config,
|
||||
class_handle_t *handle);
|
||||
/*!
|
||||
* @brief Deinitializes the USB CDC ACM class.
|
||||
*
|
||||
* This function destroys the mutex for each pipe, deinitializes each endpoint of the CDC ACM class and frees
|
||||
* the CDC ACM class handle.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success The CDC ACM class is de-initialized successfully.
|
||||
* @retval kStatus_USB_Error The endpoint deinitialization failure.
|
||||
* @retval kStatus_USB_InvalidHandle The CDC ACM device handle or the CDC ACM class handle is invalid.
|
||||
* @retval kStatus_USB_InvalidParameter The endpoint number of the CDC ACM class handle is invalid.
|
||||
*/
|
||||
extern usb_status_t USB_DeviceCdcAcmDeinit(class_handle_t handle);
|
||||
/*!
|
||||
* @brief Handles the CDC ACM class event.
|
||||
*
|
||||
* This function responds to various events including the common device events and the class-specific events.
|
||||
* For class-specific events, it calls the class callback defined in the application to deal with the class-specific
|
||||
* event.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @param event The event type.
|
||||
* @param param The class handle of the CDC ACM class.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success The CDC ACM class is de-initialized successfully.
|
||||
* @retval kStatus_USB_Error The configure structure of the CDC ACM class handle is invalid.
|
||||
* @retval kStatus_USB_InvalidHandle The CDC ACM device handle or the CDC ACM class handle is invalid.
|
||||
* @retval kStatus_USB_InvalidParameter The endpoint number of the CDC ACM class handle is invalid.
|
||||
* @retval Others The error code returned by class callback in application.
|
||||
*/
|
||||
extern usb_status_t USB_DeviceCdcAcmEvent(void *handle, uint32_t event, void *param);
|
||||
|
||||
/*!
|
||||
* @brief Primes the endpoint to send packet to host.
|
||||
*
|
||||
* This function checks whether the endpoint is sending packet, then it primes the endpoint
|
||||
* with the buffer address and the buffer length if the pipe is not busy. Otherwise, it ignores this transfer by
|
||||
* returning an error code.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @param ep The endpoint number of the transfer.
|
||||
* @param buffer The pointer to the buffer to be transferred.
|
||||
* @param length The length of the buffer to be transferred.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success Prime to send packet successfully.
|
||||
* @retval kStatus_USB_Busy The endpoint is busy in transferring.
|
||||
* @retval kStatus_USB_InvalidHandle The CDC ACM device handle or the CDC ACM class handle is invalid.
|
||||
* @retval kStatus_USB_ControllerNotFound The controller interface is invalid.
|
||||
*
|
||||
* @note The function can only be called in the same context.
|
||||
*/
|
||||
extern usb_status_t USB_DeviceCdcAcmSend(class_handle_t handle, uint8_t ep, uint8_t *buffer, uint32_t length);
|
||||
/*!
|
||||
* @brief Primes the endpoint to receive packet from host.
|
||||
*
|
||||
* This function checks whether the endpoint is receiving packet, then it primes the endpoint
|
||||
* with the buffer address and the buffer length if the pipe is not busy. Otherwise, it ignores this transfer by
|
||||
* returning an error code.
|
||||
*
|
||||
* @param handle The class handle of the CDC ACM class.
|
||||
* @param ep The endpoint number of the transfer.
|
||||
* @param buffer The pointer to the buffer to be transferred.
|
||||
* @param length The length of the buffer to be transferred.
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success Prime to receive packet successfully.
|
||||
* @retval kStatus_USB_Busy The endpoint is busy in transferring.
|
||||
* @retval kStatus_USB_InvalidHandle The CDC ACM device handle or the CDC ACM class handle is invalid.
|
||||
* @retval kStatus_USB_ControllerNotFound The controller interface is invalid.
|
||||
*
|
||||
* @note The function can only be called in the same context.
|
||||
*/
|
||||
extern usb_status_t USB_DeviceCdcAcmRecv(class_handle_t handle, uint8_t ep, uint8_t *buffer, uint32_t length);
|
||||
|
||||
/*! @}*/
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
/*! @}*/
|
||||
|
||||
#endif /* _USB_DEVICE_CDC_ACM_H_ */
|
||||
595
usb/device/class/usb_device_class.c
Normal file
595
usb/device/class/usb_device_class.c
Normal file
@@ -0,0 +1,595 @@
|
||||
/*
|
||||
* Copyright (c) 2015 - 2016, Freescale Semiconductor, Inc.
|
||||
* Copyright 2016, 2019 NXP
|
||||
* All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include "usb_device_config.h"
|
||||
#include "usb.h"
|
||||
|
||||
#include "usb_device.h"
|
||||
#include "usb_device_ch9.h"
|
||||
#include "usb_device_class.h"
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_NUM)) && (USB_DEVICE_CONFIG_NUM > 0U))
|
||||
/* Include the class drivers according to the usb_device_config.h. */
|
||||
#if ((defined(USB_DEVICE_CONFIG_HID)) && (USB_DEVICE_CONFIG_HID > 0U))
|
||||
#include "usb_device_hid.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_CDC_ACM)) && (USB_DEVICE_CONFIG_CDC_ACM > 0U))
|
||||
#include "usb_device_cdc_acm.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_MSC)) && (USB_DEVICE_CONFIG_MSC > 0U))
|
||||
#include "usb_device_msc.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_MTP)) && (USB_DEVICE_CONFIG_MTP > 0U))
|
||||
#include "usb_device_mtp.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_AUDIO)) && (USB_DEVICE_CONFIG_AUDIO > 0U))
|
||||
#include "usb_device_audio.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_PHDC)) && (USB_DEVICE_CONFIG_PHDC > 0U))
|
||||
#include "usb_device_phdc.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_VIDEO)) && (USB_DEVICE_CONFIG_VIDEO > 0U))
|
||||
#include "usb_device_video.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_PRINTER)) && (USB_DEVICE_CONFIG_PRINTER > 0U))
|
||||
#include "usb_device_printer.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_DFU)) && (USB_DEVICE_CONFIG_DFU > 0U))
|
||||
#include "usb_device_dfu.h"
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_CCID)) && (USB_DEVICE_CONFIG_CCID > 0U))
|
||||
#include "usb_device_ccid.h"
|
||||
#endif
|
||||
|
||||
/*******************************************************************************
|
||||
* Definitions
|
||||
******************************************************************************/
|
||||
|
||||
/*******************************************************************************
|
||||
* Prototypes
|
||||
******************************************************************************/
|
||||
static usb_status_t USB_DeviceClassAllocateHandle(uint8_t controllerId, usb_device_common_class_struct_t **handle);
|
||||
static usb_status_t USB_DeviceClassFreeHandle(uint8_t controllerId);
|
||||
static usb_status_t USB_DeviceClassGetHandleByControllerId(uint8_t controllerId,
|
||||
usb_device_common_class_struct_t **handle);
|
||||
static usb_status_t USB_DeviceClassGetHandleByDeviceHandle(usb_device_handle deviceHandle,
|
||||
usb_device_common_class_struct_t **handle);
|
||||
|
||||
/*******************************************************************************
|
||||
* Variables
|
||||
******************************************************************************/
|
||||
|
||||
/* The device class driver list. */
|
||||
static const usb_device_class_map_t s_UsbDeviceClassInterfaceMap[] = {
|
||||
#if ((defined(USB_DEVICE_CONFIG_HID)) && (USB_DEVICE_CONFIG_HID > 0U))
|
||||
{USB_DeviceHidInit, USB_DeviceHidDeinit, USB_DeviceHidEvent, kUSB_DeviceClassTypeHid},
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_CDC_ACM)) && (USB_DEVICE_CONFIG_CDC_ACM > 0U))
|
||||
{USB_DeviceCdcAcmInit, USB_DeviceCdcAcmDeinit, USB_DeviceCdcAcmEvent, kUSB_DeviceClassTypeCdc},
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_MSC)) && (USB_DEVICE_CONFIG_MSC > 0U))
|
||||
{USB_DeviceMscInit, USB_DeviceMscDeinit, USB_DeviceMscEvent, kUSB_DeviceClassTypeMsc},
|
||||
#endif
|
||||
|
||||
#if ((defined(USB_DEVICE_CONFIG_MTP)) && (USB_DEVICE_CONFIG_MTP > 0U))
|
||||
{USB_DeviceMtpInit, USB_DeviceMtpDeinit, USB_DeviceMtpEvent, kUSB_DeviceClassTypeMtp},
|
||||
#endif
|
||||
|
||||
#if ((defined USB_DEVICE_CONFIG_AUDIO) && (USB_DEVICE_CONFIG_AUDIO > 0U))
|
||||
{USB_DeviceAudioInit, USB_DeviceAudioDeinit, USB_DeviceAudioEvent, kUSB_DeviceClassTypeAudio},
|
||||
#endif
|
||||
|
||||
#if ((defined USB_DEVICE_CONFIG_PHDC) && (USB_DEVICE_CONFIG_PHDC > 0U))
|
||||
{USB_DevicePhdcInit, USB_DevicePhdcDeinit, USB_DevicePhdcEvent, kUSB_DeviceClassTypePhdc},
|
||||
#endif
|
||||
|
||||
#if ((defined USB_DEVICE_CONFIG_VIDEO) && (USB_DEVICE_CONFIG_VIDEO > 0U))
|
||||
{USB_DeviceVideoInit, USB_DeviceVideoDeinit, USB_DeviceVideoEvent, kUSB_DeviceClassTypeVideo},
|
||||
#endif
|
||||
|
||||
#if ((defined USB_DEVICE_CONFIG_PRINTER) && (USB_DEVICE_CONFIG_PRINTER > 0U))
|
||||
{USB_DevicePrinterInit, USB_DevicePrinterDeinit, USB_DevicePrinterEvent, kUSB_DeviceClassTypePrinter},
|
||||
#endif
|
||||
|
||||
#if ((defined USB_DEVICE_CONFIG_DFU) && (USB_DEVICE_CONFIG_DFU > 0U))
|
||||
{USB_DeviceDfuInit, USB_DeviceDfuDeinit, USB_DeviceDfuEvent, kUSB_DeviceClassTypeDfu},
|
||||
#endif
|
||||
|
||||
#if ((defined USB_DEVICE_CONFIG_CCID) && (USB_DEVICE_CONFIG_CCID > 0U))
|
||||
{USB_DeviceCcidInit, USB_DeviceCcidDeinit, USB_DeviceCcidEvent, kUSB_DeviceClassTypeCcid},
|
||||
#endif
|
||||
|
||||
/* please make sure the following member is in the end of s_UsbDeviceClassInterfaceMap*/
|
||||
{(usb_device_class_init_call_t)NULL, (usb_device_class_deinit_call_t)NULL, (usb_device_class_event_callback_t)NULL,
|
||||
(usb_device_class_type_t)0},
|
||||
};
|
||||
|
||||
USB_GLOBAL USB_RAM_ADDRESS_ALIGNMENT(USB_DATA_ALIGN_SIZE) static usb_device_common_class_struct_t
|
||||
s_UsbDeviceCommonClassStruct[USB_DEVICE_CONFIG_NUM];
|
||||
USB_GLOBAL USB_RAM_ADDRESS_ALIGNMENT(USB_DATA_ALIGN_SIZE) static uint8_t
|
||||
s_UsbDeviceSetupBuffer[USB_DEVICE_CONFIG_NUM][USB_DATA_ALIGN_SIZE_MULTIPLE(USB_SETUP_PACKET_SIZE)];
|
||||
|
||||
/*******************************************************************************
|
||||
* Code
|
||||
******************************************************************************/
|
||||
|
||||
/*!
|
||||
* @brief Allocate a device common class handle.
|
||||
*
|
||||
* This function allocates a a device common class handle.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
* @param handle It is out parameter, is used to return pointer of the device common class handle to the
|
||||
* caller.
|
||||
*
|
||||
* @retval kStatus_USB_Success Get a device handle successfully.
|
||||
* @retval kStatus_USB_Busy Cannot allocate a common class handle.
|
||||
* @retval kStatus_USB_Error The common class has been initialized.
|
||||
*/
|
||||
static usb_status_t USB_DeviceClassAllocateHandle(uint8_t controllerId, usb_device_common_class_struct_t **handle)
|
||||
{
|
||||
uint32_t count;
|
||||
OSA_SR_ALLOC();
|
||||
|
||||
OSA_ENTER_CRITICAL();
|
||||
/* Check the controller is initialized or not. */
|
||||
for (count = 0U; count < USB_DEVICE_CONFIG_NUM; count++)
|
||||
{
|
||||
if ((NULL != s_UsbDeviceCommonClassStruct[count].handle) &&
|
||||
(controllerId == s_UsbDeviceCommonClassStruct[count].controllerId))
|
||||
{
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Error;
|
||||
}
|
||||
}
|
||||
/* Get a free common class handle. */
|
||||
for (count = 0U; count < USB_DEVICE_CONFIG_NUM; count++)
|
||||
{
|
||||
if (NULL == s_UsbDeviceCommonClassStruct[count].handle)
|
||||
{
|
||||
s_UsbDeviceCommonClassStruct[count].controllerId = controllerId;
|
||||
s_UsbDeviceCommonClassStruct[count].setupBuffer = s_UsbDeviceSetupBuffer[count];
|
||||
*handle = &s_UsbDeviceCommonClassStruct[count];
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
}
|
||||
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Busy;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Free a device common class handle.
|
||||
*
|
||||
* This function frees a device common class handle.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
*
|
||||
* @retval kStatus_USB_Success Free device handle successfully.
|
||||
* @retval kStatus_USB_InvalidParameter The common class can not be found.
|
||||
*/
|
||||
static usb_status_t USB_DeviceClassFreeHandle(uint8_t controllerId)
|
||||
{
|
||||
uint32_t count = 0U;
|
||||
OSA_SR_ALLOC();
|
||||
|
||||
OSA_ENTER_CRITICAL();
|
||||
for (; count < USB_DEVICE_CONFIG_NUM; count++)
|
||||
{
|
||||
if ((NULL != s_UsbDeviceCommonClassStruct[count].handle) &&
|
||||
(controllerId == s_UsbDeviceCommonClassStruct[count].controllerId))
|
||||
{
|
||||
s_UsbDeviceCommonClassStruct[count].handle = NULL;
|
||||
s_UsbDeviceCommonClassStruct[count].configList = (usb_device_class_config_list_struct_t *)NULL;
|
||||
s_UsbDeviceCommonClassStruct[count].controllerId = 0U;
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
}
|
||||
OSA_EXIT_CRITICAL();
|
||||
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Get the device common class handle according to the controller id.
|
||||
*
|
||||
* This function gets the device common class handle according to the controller id.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
* @param handle It is out parameter, is used to return pointer of the device common class handle to the
|
||||
* caller.
|
||||
*
|
||||
* @retval kStatus_USB_Success Free device handle successfully.
|
||||
* @retval kStatus_USB_InvalidParameter The common class can not be found.
|
||||
*/
|
||||
static usb_status_t USB_DeviceClassGetHandleByControllerId(uint8_t controllerId,
|
||||
usb_device_common_class_struct_t **handle)
|
||||
{
|
||||
uint32_t count = 0U;
|
||||
OSA_SR_ALLOC();
|
||||
|
||||
OSA_ENTER_CRITICAL();
|
||||
for (; count < USB_DEVICE_CONFIG_NUM; count++)
|
||||
{
|
||||
if ((NULL != s_UsbDeviceCommonClassStruct[count].handle) &&
|
||||
(controllerId == s_UsbDeviceCommonClassStruct[count].controllerId))
|
||||
{
|
||||
*handle = &s_UsbDeviceCommonClassStruct[count];
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
}
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Get the device common class handle according to the device handle.
|
||||
*
|
||||
* This function gets the device common class handle according to the device handle.
|
||||
*
|
||||
* @param deviceHandle The device handle, got from the USB_DeviceInit.
|
||||
* @param handle It is out parameter, is used to return pointer of the device common class handle to the
|
||||
* caller.
|
||||
*
|
||||
* @retval kStatus_USB_Success Free device handle successfully.
|
||||
* @retval kStatus_USB_InvalidParameter The common class can not be found.
|
||||
*/
|
||||
static usb_status_t USB_DeviceClassGetHandleByDeviceHandle(usb_device_handle deviceHandle,
|
||||
usb_device_common_class_struct_t **handle)
|
||||
{
|
||||
uint32_t count = 0U;
|
||||
OSA_SR_ALLOC();
|
||||
|
||||
OSA_ENTER_CRITICAL();
|
||||
for (; count < USB_DEVICE_CONFIG_NUM; count++)
|
||||
{
|
||||
if (deviceHandle == s_UsbDeviceCommonClassStruct[count].handle)
|
||||
{
|
||||
*handle = &s_UsbDeviceCommonClassStruct[count];
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
}
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Get the device handle according to the controller id.
|
||||
*
|
||||
* This function gets the device handle according to the controller id.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
* @param handle It is out parameter, is used to return pointer of the device handle to the caller.
|
||||
*
|
||||
* @retval kStatus_USB_Success Free device handle successfully.
|
||||
* @retval kStatus_USB_InvalidParameter The device handle not be found.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassGetDeviceHandle(uint8_t controllerId, usb_device_handle *handle)
|
||||
{
|
||||
uint32_t count = 0U;
|
||||
OSA_SR_ALLOC();
|
||||
|
||||
OSA_ENTER_CRITICAL();
|
||||
for (; count < USB_DEVICE_CONFIG_NUM; count++)
|
||||
{
|
||||
if ((NULL != s_UsbDeviceCommonClassStruct[count].handle) &&
|
||||
(controllerId == s_UsbDeviceCommonClassStruct[count].controllerId))
|
||||
{
|
||||
*handle = s_UsbDeviceCommonClassStruct[count].handle;
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_Success;
|
||||
}
|
||||
}
|
||||
OSA_EXIT_CRITICAL();
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Handle the event passed to the class drivers.
|
||||
*
|
||||
* This function handles the event passed to the class drivers.
|
||||
*
|
||||
* @param handle The device handle, got from the USB_DeviceInit.
|
||||
* @param event The event codes. Please refer to the enumeration usb_device_class_event_t.
|
||||
* @param param The param type is determined by the event code.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success A valid request has been handled.
|
||||
* @retval kStatus_USB_InvalidParameter The device handle not be found.
|
||||
* @retval kStatus_USB_InvalidRequest The request is invalid, and the control pipe will be stalled by the caller.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassEvent(usb_device_handle handle, usb_device_class_event_t event, void *param)
|
||||
{
|
||||
usb_device_common_class_struct_t *classHandle;
|
||||
uint8_t mapIndex;
|
||||
uint8_t classIndex;
|
||||
usb_status_t errorReturn;
|
||||
usb_status_t status = kStatus_USB_Error;
|
||||
|
||||
if (NULL == param)
|
||||
{
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
/* Get the common class handle according to the device handle. */
|
||||
errorReturn = USB_DeviceClassGetHandleByDeviceHandle(handle, &classHandle);
|
||||
if (kStatus_USB_Success != errorReturn)
|
||||
{
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
for (classIndex = 0U; classIndex < classHandle->configList->count; classIndex++)
|
||||
{
|
||||
for (mapIndex = 0U; mapIndex < (ARRAY_SIZE(s_UsbDeviceClassInterfaceMap) - 1U); mapIndex++)
|
||||
{
|
||||
if (s_UsbDeviceClassInterfaceMap[mapIndex].type ==
|
||||
classHandle->configList->config[classIndex].classInfomation->type)
|
||||
{
|
||||
/* Call class event callback of supported class */
|
||||
errorReturn = s_UsbDeviceClassInterfaceMap[mapIndex].classEventCallback(
|
||||
(void *)classHandle->configList->config[classIndex].classHandle, event, param);
|
||||
/* Return the error code kStatus_USB_InvalidRequest immediately, when a class returns
|
||||
* kStatus_USB_InvalidRequest. */
|
||||
if (kStatus_USB_InvalidRequest == errorReturn)
|
||||
{
|
||||
return kStatus_USB_InvalidRequest;
|
||||
}
|
||||
/* For composite device, it should return kStatus_USB_Success once a valid request has been handled */
|
||||
if (kStatus_USB_Success == errorReturn)
|
||||
{
|
||||
status = kStatus_USB_Success;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Handle the common class callback.
|
||||
*
|
||||
* This function handles the common class callback.
|
||||
*
|
||||
* @param handle The device handle, got from the USB_DeviceInit.
|
||||
* @param event The event codes. Please refer to the enumeration usb_device_event_t.
|
||||
* @param param The param type is determined by the event code.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassCallback(usb_device_handle handle, uint32_t event, void *param)
|
||||
{
|
||||
usb_device_common_class_struct_t *classHandle;
|
||||
usb_status_t status;
|
||||
|
||||
/* Get the common class handle according to the device handle. */
|
||||
status = USB_DeviceClassGetHandleByDeviceHandle(handle, &classHandle);
|
||||
if (kStatus_USB_Success != status)
|
||||
{
|
||||
return status;
|
||||
}
|
||||
|
||||
if ((uint32_t)kUSB_DeviceEventBusReset == event)
|
||||
{
|
||||
/* Initialize the control pipes */
|
||||
(void)USB_DeviceControlPipeInit(handle, classHandle);
|
||||
|
||||
/* Notify the classes the USB bus reset signal detected. */
|
||||
(void)USB_DeviceClassEvent(handle, kUSB_DeviceClassEventDeviceReset, classHandle);
|
||||
}
|
||||
|
||||
/* Call the application device callback function. deviceCallback is from the second parameter of
|
||||
USB_DeviceClassInit */
|
||||
status = classHandle->configList->deviceCallback(handle, event, param);
|
||||
return status;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Initialize the common class and the supported classes.
|
||||
*
|
||||
* This function is used to initialize the common class and the supported classes.
|
||||
*
|
||||
* @param[in] controllerId The controller id of the USB IP. Please refer to the enumeration #usb_controller_index_t.
|
||||
* @param[in] configList The class configurations. The pointer must point to the global variable.
|
||||
* Please refer to the structure #usb_device_class_config_list_struct_t.
|
||||
* @param[out] handle It is out parameter, is used to return pointer of the device handle to the caller.
|
||||
* The value of parameter is a pointer points the device handle, and this design is used to
|
||||
* make simple device align with composite device. For composite device, there are many
|
||||
* kinds of class handle, but there is only one device handle. So the handle points to
|
||||
* a device instead of a class. And the class handle can be got from the
|
||||
* #usb_device_class_config_struct_t::classHandle after the function successfully.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassInit(
|
||||
uint8_t controllerId, /*!< [IN] Controller ID */
|
||||
usb_device_class_config_list_struct_t *configList, /*!< [IN] Pointer to class configuration list */
|
||||
usb_device_handle *handle /*!< [OUT] Pointer to the device handle */
|
||||
)
|
||||
{
|
||||
usb_device_common_class_struct_t *classHandle;
|
||||
usb_status_t error;
|
||||
uint8_t mapIndex;
|
||||
uint8_t classIndex;
|
||||
|
||||
if ((NULL == handle) || (NULL == configList) || ((usb_device_callback_t)NULL == configList->deviceCallback))
|
||||
{
|
||||
return kStatus_USB_InvalidParameter;
|
||||
}
|
||||
|
||||
/* Allocate a common class driver handle. */
|
||||
error = USB_DeviceClassAllocateHandle(controllerId, &classHandle);
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
/* Save the configuration list */
|
||||
classHandle->configList = configList;
|
||||
|
||||
/* Initialize the device stack. */
|
||||
error = USB_DeviceInit(controllerId, USB_DeviceClassCallback, &classHandle->handle);
|
||||
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
(void)USB_DeviceDeinit(classHandle->handle);
|
||||
(void)USB_DeviceClassFreeHandle(controllerId);
|
||||
return error;
|
||||
}
|
||||
|
||||
/* Initialize the all supported classes according to the configuration list. */
|
||||
for (classIndex = 0U; classIndex < classHandle->configList->count; classIndex++)
|
||||
{
|
||||
for (mapIndex = 0U; mapIndex < (sizeof(s_UsbDeviceClassInterfaceMap) / sizeof(usb_device_class_map_t));
|
||||
mapIndex++)
|
||||
{
|
||||
if (classHandle->configList->config[classIndex].classInfomation->type ==
|
||||
s_UsbDeviceClassInterfaceMap[mapIndex].type)
|
||||
{
|
||||
(void)s_UsbDeviceClassInterfaceMap[mapIndex].classInit(
|
||||
controllerId, &classHandle->configList->config[classIndex],
|
||||
&classHandle->configList->config[classIndex].classHandle);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
*handle = classHandle->handle;
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief De-initialize the common class and the supported classes.
|
||||
*
|
||||
* This function is used to de-initialize the common class and the supported classes.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassDeinit(uint8_t controllerId /*!< [IN] Controller ID */
|
||||
)
|
||||
{
|
||||
usb_device_common_class_struct_t *classHandle;
|
||||
usb_status_t error;
|
||||
uint8_t mapIndex;
|
||||
uint8_t classIndex;
|
||||
|
||||
/* Get the common class handle according to the controller id. */
|
||||
error = USB_DeviceClassGetHandleByControllerId(controllerId, &classHandle);
|
||||
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
/* De-initialize the all supported classes according to the configuration list. */
|
||||
for (classIndex = 0U; classIndex < classHandle->configList->count; classIndex++)
|
||||
{
|
||||
for (mapIndex = 0U; mapIndex < (sizeof(s_UsbDeviceClassInterfaceMap) / sizeof(usb_device_class_map_t));
|
||||
mapIndex++)
|
||||
{
|
||||
if (classHandle->configList->config[classIndex].classInfomation->type ==
|
||||
s_UsbDeviceClassInterfaceMap[mapIndex].type)
|
||||
{
|
||||
(void)s_UsbDeviceClassInterfaceMap[mapIndex].classDeinit(
|
||||
classHandle->configList->config[classIndex].classHandle);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* De-initialize the USB device stack. */
|
||||
error = USB_DeviceDeinit(classHandle->handle);
|
||||
if (kStatus_USB_Success == error)
|
||||
{
|
||||
/* Free the common class handle. */
|
||||
(void)USB_DeviceClassFreeHandle(controllerId);
|
||||
}
|
||||
return error;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Get the USB bus speed.
|
||||
*
|
||||
* This function is used to get the USB bus speed.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
* @param speed It is an OUT parameter, return current speed of the controller.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassGetSpeed(uint8_t controllerId, /*!< [IN] Controller ID */
|
||||
uint8_t *speed /*!< [OUT] Current speed */
|
||||
)
|
||||
{
|
||||
usb_device_common_class_struct_t *classHandle;
|
||||
usb_status_t error;
|
||||
|
||||
/* Get the common class handle according to the controller id. */
|
||||
error = USB_DeviceClassGetHandleByControllerId(controllerId, &classHandle);
|
||||
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
/* Get the current speed. */
|
||||
error = USB_DeviceGetStatus(classHandle->handle, kUSB_DeviceStatusSpeed, speed);
|
||||
|
||||
return error;
|
||||
}
|
||||
|
||||
#if defined(USB_DEVICE_CONFIG_GET_SOF_COUNT) && (USB_DEVICE_CONFIG_GET_SOF_COUNT > 0U)
|
||||
/*!
|
||||
* @brief Get the USB SOF count.
|
||||
*
|
||||
* This function is used to get the USB SOF count.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
* @param currentFrameCount It is an OUT parameter, return current sof count of the controller.
|
||||
* HS: micro frame count, FS: frame count
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassGetCurrentFrameCount(uint8_t controllerId, /*!< [IN] Controller ID */
|
||||
uint32_t *currentFrameCount /*!< [OUT] Current frame count */
|
||||
)
|
||||
{
|
||||
usb_device_common_class_struct_t *classHandle;
|
||||
usb_status_t error;
|
||||
|
||||
/* Get the common class handle according to the controller id. */
|
||||
error = USB_DeviceClassGetHandleByControllerId(controllerId, &classHandle);
|
||||
|
||||
if (kStatus_USB_Success != error)
|
||||
{
|
||||
return error;
|
||||
}
|
||||
|
||||
/* Get the current frame count. */
|
||||
error = USB_DeviceGetStatus(classHandle->handle, kUSB_DeviceStatusGetCurrentFrameCount, currentFrameCount);
|
||||
|
||||
return error;
|
||||
}
|
||||
#endif /* USB_DEVICE_CONFIG_GET_SOF_COUNT */
|
||||
|
||||
#endif /* USB_DEVICE_CONFIG_NUM */
|
||||
439
usb/device/class/usb_device_class.h
Normal file
439
usb/device/class/usb_device_class.h
Normal file
@@ -0,0 +1,439 @@
|
||||
/*
|
||||
* Copyright (c) 2015 - 2016, Freescale Semiconductor, Inc.
|
||||
* Copyright 2016 NXP
|
||||
* All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef __USB_DEVICE_CLASS_H__
|
||||
#define __USB_DEVICE_CLASS_H__
|
||||
|
||||
/*!
|
||||
* @addtogroup usb_device_class_driver
|
||||
* @{
|
||||
*/
|
||||
|
||||
/*******************************************************************************
|
||||
* Definitions
|
||||
******************************************************************************/
|
||||
|
||||
/*! @brief Macro to define class handle */
|
||||
typedef void *class_handle_t;
|
||||
|
||||
/*! @brief Available class types. */
|
||||
typedef enum _usb_usb_device_class_type
|
||||
{
|
||||
kUSB_DeviceClassTypeHid = 1U,
|
||||
kUSB_DeviceClassTypeCdc,
|
||||
kUSB_DeviceClassTypeMsc,
|
||||
kUSB_DeviceClassTypeMtp,
|
||||
kUSB_DeviceClassTypeAudio,
|
||||
kUSB_DeviceClassTypePhdc,
|
||||
kUSB_DeviceClassTypeVideo,
|
||||
kUSB_DeviceClassTypePrinter,
|
||||
kUSB_DeviceClassTypeDfu,
|
||||
kUSB_DeviceClassTypeCcid,
|
||||
} usb_device_class_type_t;
|
||||
|
||||
/*! @brief Available common class events. */
|
||||
typedef enum _usb_device_class_event
|
||||
{
|
||||
kUSB_DeviceClassEventClassRequest = 1U,
|
||||
kUSB_DeviceClassEventDeviceReset,
|
||||
kUSB_DeviceClassEventSetConfiguration,
|
||||
kUSB_DeviceClassEventSetInterface,
|
||||
kUSB_DeviceClassEventSetEndpointHalt,
|
||||
kUSB_DeviceClassEventClearEndpointHalt,
|
||||
} usb_device_class_event_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the endpoint data structure.
|
||||
*
|
||||
* Define the endpoint data structure.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_endpoint_struct
|
||||
{
|
||||
uint8_t endpointAddress; /*!< Endpoint address*/
|
||||
uint8_t transferType; /*!< Endpoint transfer type*/
|
||||
uint16_t maxPacketSize; /*!< Endpoint maximum packet size */
|
||||
uint8_t interval; /*!< Endpoint interval*/
|
||||
} usb_device_endpoint_struct_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the endpoint group.
|
||||
*
|
||||
* Structure representing endpoints and the number of endpoints that the user wants.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_endpoint_list
|
||||
{
|
||||
uint8_t count; /*!< How many endpoints in current interface*/
|
||||
usb_device_endpoint_struct_t *endpoint; /*!< Endpoint structure list*/
|
||||
} usb_device_endpoint_list_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the interface list data structure.
|
||||
*
|
||||
* Structure representing an interface.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_interface_struct
|
||||
{
|
||||
uint8_t alternateSetting; /*!< Alternate setting number*/
|
||||
usb_device_endpoint_list_t endpointList; /*!< Endpoints of the interface*/
|
||||
void *classSpecific; /*!< Class specific structure handle*/
|
||||
} usb_device_interface_struct_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the interface data structure.
|
||||
*
|
||||
* Structure representing interface.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_interfaces_struct
|
||||
{
|
||||
uint8_t classCode; /*!< Class code of the interface*/
|
||||
uint8_t subclassCode; /*!< Subclass code of the interface*/
|
||||
uint8_t protocolCode; /*!< Protocol code of the interface*/
|
||||
uint8_t interfaceNumber; /*!< Interface number*/
|
||||
usb_device_interface_struct_t *interface; /*!< Interface structure list*/
|
||||
uint8_t count; /*!< Number of interfaces in the current interface*/
|
||||
} usb_device_interfaces_struct_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the interface group.
|
||||
*
|
||||
* Structure representing how many interfaces in one class type.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_interface_list
|
||||
{
|
||||
uint8_t count; /*!< Number of interfaces of the class*/
|
||||
usb_device_interfaces_struct_t *interfaces; /*!< All interfaces*/
|
||||
} usb_device_interface_list_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the class data structure.
|
||||
*
|
||||
* Structure representing how many configurations in one class type.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_class_struct
|
||||
{
|
||||
usb_device_interface_list_t *interfaceList; /*!< Interfaces of the class*/
|
||||
usb_device_class_type_t type; /*!< Class type*/
|
||||
uint8_t configurations; /*!< Number of configurations of the class*/
|
||||
} usb_device_class_struct_t;
|
||||
|
||||
/*callback function pointer structure for application to provide class parameters*/
|
||||
typedef usb_status_t (*usb_device_class_callback_t)(class_handle_t classHandle,
|
||||
uint32_t callbackEvent,
|
||||
void *eventParam);
|
||||
|
||||
/*!
|
||||
* @brief Obtains the device class information structure.
|
||||
*
|
||||
* Structure representing the device class information. This structure only can be stored in RAM space.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_class_config_struct
|
||||
{
|
||||
usb_device_class_callback_t classCallback; /*!< Class callback function to handle the device status-related event
|
||||
for the specified type of class*/
|
||||
class_handle_t classHandle; /*!< The class handle of the class, filled by the common driver.*/
|
||||
usb_device_class_struct_t *classInfomation; /*!< Detailed information of the class*/
|
||||
} usb_device_class_config_struct_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the device class configuration structure.
|
||||
*
|
||||
* Structure representing the device class configuration information.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_class_config_list_struct
|
||||
{
|
||||
usb_device_class_config_struct_t *config; /*!< Array of class configuration structures */
|
||||
usb_device_callback_t deviceCallback; /*!< Device callback function */
|
||||
uint8_t count; /*!< Number of class supported */
|
||||
} usb_device_class_config_list_struct_t;
|
||||
|
||||
/*!
|
||||
* @brief Obtains the control request structure.
|
||||
*
|
||||
* This structure is used to pass the control request information.
|
||||
* The structure is used in following two cases.
|
||||
* 1. Case one, the host wants to send data to the device in the control data stage: @n
|
||||
* a. If a setup packet is received, the structure is used to pass the setup packet data and wants to get the
|
||||
* buffer to receive data sent from the host.
|
||||
* The field isSetup is 1.
|
||||
* The length is the requested buffer length.
|
||||
* The buffer is filled by the class or application by using the valid buffer address.
|
||||
* The setup is the setup packet address.
|
||||
* b. If the data received is sent by the host, the structure is used to pass the data buffer address and the
|
||||
* data
|
||||
* length sent by the host.
|
||||
* In this way, the field isSetup is 0.
|
||||
* The buffer is the address of the data sent from the host.
|
||||
* The length is the received data length.
|
||||
* The setup is the setup packet address. @n
|
||||
* 2. Case two, the host wants to get data from the device in control data stage: @n
|
||||
* If the setup packet is received, the structure is used to pass the setup packet data and wants to get the
|
||||
* data buffer address to send data to the host.
|
||||
* The field isSetup is 1.
|
||||
* The length is the requested data length.
|
||||
* The buffer is filled by the class or application by using the valid buffer address.
|
||||
* The setup is the setup packet address.
|
||||
*
|
||||
*/
|
||||
typedef struct _usb_device_control_request_struct
|
||||
{
|
||||
usb_setup_struct_t *setup; /*!< The pointer of the setup packet data. */
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length or requested length. */
|
||||
uint8_t isSetup; /*!< Indicates whether a setup packet is received. */
|
||||
} usb_device_control_request_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get descriptor request common structure. */
|
||||
typedef struct _usb_device_get_descriptor_common_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
} usb_device_get_descriptor_common_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get device descriptor request structure. */
|
||||
typedef struct _usb_device_get_device_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
} usb_device_get_device_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get device qualifier descriptor request structure. */
|
||||
typedef struct _usb_device_get_device_qualifier_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
} usb_device_get_device_qualifier_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get configuration descriptor request structure. */
|
||||
typedef struct _usb_device_get_configuration_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
uint8_t configuration; /*!< The configuration number. */
|
||||
} usb_device_get_configuration_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get bos descriptor request structure. */
|
||||
typedef struct _usb_device_get_bos_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
} usb_device_get_bos_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get string descriptor request structure. */
|
||||
typedef struct _usb_device_get_string_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
uint16_t languageId; /*!< Language ID. */
|
||||
uint8_t stringIndex; /*!< String index. */
|
||||
} usb_device_get_string_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get HID descriptor request structure. */
|
||||
typedef struct _usb_device_get_hid_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
uint8_t interfaceNumber; /*!< The interface number. */
|
||||
} usb_device_get_hid_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get HID report descriptor request structure. */
|
||||
typedef struct _usb_device_get_hid_report_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
uint8_t interfaceNumber; /*!< The interface number. */
|
||||
} usb_device_get_hid_report_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get HID physical descriptor request structure. */
|
||||
typedef struct _usb_device_get_hid_physical_descriptor_struct
|
||||
{
|
||||
uint8_t *buffer; /*!< Pass the buffer address. */
|
||||
uint32_t length; /*!< Pass the buffer length. */
|
||||
uint8_t index; /*!< Physical index */
|
||||
uint8_t interfaceNumber; /*!< The interface number. */
|
||||
} usb_device_get_hid_physical_descriptor_struct_t;
|
||||
|
||||
/*! @brief Obtains the control get descriptor request common union. */
|
||||
typedef union _usb_device_get_descriptor_common_union
|
||||
{
|
||||
usb_device_get_descriptor_common_struct_t commonDescriptor; /*!< Common structure. */
|
||||
usb_device_get_device_descriptor_struct_t deviceDescriptor; /*!< The structure to get device descriptor. */
|
||||
usb_device_get_device_qualifier_descriptor_struct_t
|
||||
deviceQualifierDescriptor; /*!< The structure to get device qualifier descriptor. */
|
||||
usb_device_get_configuration_descriptor_struct_t
|
||||
configurationDescriptor; /*!< The structure to get configuration descriptor. */
|
||||
usb_device_get_string_descriptor_struct_t stringDescriptor; /*!< The structure to get string descriptor. */
|
||||
usb_device_get_hid_descriptor_struct_t hidDescriptor; /*!< The structure to get HID descriptor. */
|
||||
usb_device_get_hid_report_descriptor_struct_t
|
||||
hidReportDescriptor; /*!< The structure to get HID report descriptor. */
|
||||
usb_device_get_hid_physical_descriptor_struct_t
|
||||
hidPhysicalDescriptor; /*!< The structure to get HID physical descriptor. */
|
||||
} usb_device_get_descriptor_common_union_t;
|
||||
|
||||
/*! @brief Define function type for class device instance initialization */
|
||||
typedef usb_status_t (*usb_device_class_init_call_t)(uint8_t controllerId,
|
||||
usb_device_class_config_struct_t *classConfig,
|
||||
class_handle_t *classHandle);
|
||||
/*! @brief Define function type for class device instance deinitialization, internal */
|
||||
typedef usb_status_t (*usb_device_class_deinit_call_t)(class_handle_t handle);
|
||||
/*! @brief Define function type for class device instance Event change */
|
||||
typedef usb_status_t (*usb_device_class_event_callback_t)(void *classHandle, uint32_t event, void *param);
|
||||
|
||||
/*! @brief Define class driver interface structure. */
|
||||
typedef struct _usb_device_class_map
|
||||
{
|
||||
usb_device_class_init_call_t classInit; /*!< Class driver initialization- entry of the class driver */
|
||||
usb_device_class_deinit_call_t classDeinit; /*!< Class driver de-initialization*/
|
||||
usb_device_class_event_callback_t classEventCallback; /*!< Class driver event callback*/
|
||||
usb_device_class_type_t type; /*!< Class type*/
|
||||
} usb_device_class_map_t;
|
||||
|
||||
/*! @brief Structure holding common class state information */
|
||||
typedef struct _usb_device_common_class_struct
|
||||
{
|
||||
usb_device_handle handle; /*!< USB device handle*/
|
||||
usb_device_class_config_list_struct_t *configList; /*!< USB device configure list*/
|
||||
uint8_t *setupBuffer; /*!< Setup packet data buffer*/
|
||||
uint16_t standardTranscationBuffer; /*!<
|
||||
* This variable is used in:
|
||||
* get status request
|
||||
* get configuration request
|
||||
* get interface request
|
||||
* set interface request
|
||||
* get sync frame request
|
||||
*/
|
||||
uint8_t controllerId; /*!< Controller ID*/
|
||||
} usb_device_common_class_struct_t;
|
||||
|
||||
/*******************************************************************************
|
||||
* API
|
||||
******************************************************************************/
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* @brief Initializes the common class and the supported classes.
|
||||
*
|
||||
* This function is used to initialize the common class and the supported classes.
|
||||
*
|
||||
* @param[in] controllerId The controller ID of the USB IP. See the enumeration #usb_controller_index_t.
|
||||
* @param[in] configList The class configurations. The pointer must point to the global variable.
|
||||
* See the structure #usb_device_class_config_list_struct_t.
|
||||
* @param[out] handle A parameter used to return pointer of the device handle to the caller.
|
||||
* The value of the parameter is a pointer to the device handle. This design is used to
|
||||
* make a simple device align with the composite device. For the composite device, there are
|
||||
* many
|
||||
* kinds of class handles. However, there is only one device handle. Therefore, the handle
|
||||
* points to
|
||||
* a device instead of a class. The class handle can be received from the
|
||||
* #usb_device_class_config_struct_t::classHandle after the function successfully.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassInit(uint8_t controllerId,
|
||||
usb_device_class_config_list_struct_t *configList,
|
||||
usb_device_handle *handle);
|
||||
|
||||
/*!
|
||||
* @brief Deinitializes the common class and the supported classes.
|
||||
*
|
||||
* This function is used to deinitialize the common class and the supported classes.
|
||||
*
|
||||
* @param[in] controllerId The controller ID of the USB IP. See the enumeration #usb_controller_index_t.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassDeinit(uint8_t controllerId);
|
||||
|
||||
/*!
|
||||
* @brief Gets the USB bus speed.
|
||||
*
|
||||
* This function is used to get the USB bus speed.
|
||||
*
|
||||
* @param[in] controllerId The controller ID of the USB IP. See the enumeration #usb_controller_index_t.
|
||||
* @param[out] speed It is an OUT parameter, which returns the current speed of the controller.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassGetSpeed(uint8_t controllerId, uint8_t *speed);
|
||||
|
||||
/*!
|
||||
* @brief Handles the event passed to the class drivers.
|
||||
*
|
||||
* This function handles the event passed to the class drivers.
|
||||
*
|
||||
* @param[in] handle The device handle received from the #USB_DeviceInit.
|
||||
* @param[in] event The event codes. See the enumeration #usb_device_class_event_t.
|
||||
* @param[in,out] param The parameter type is determined by the event code.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
* @retval kStatus_USB_Success A valid request has been handled.
|
||||
* @retval kStatus_USB_InvalidParameter The device handle not be found.
|
||||
* @retval kStatus_USB_InvalidRequest The request is invalid, and the control pipe is stalled by the caller.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassEvent(usb_device_handle handle, usb_device_class_event_t event, void *param);
|
||||
|
||||
/*!
|
||||
* @brief Handles the common class callback.
|
||||
*
|
||||
* This function handles the common class callback.
|
||||
*
|
||||
* @param[in] handle The device handle received from the #USB_DeviceInit.
|
||||
* @param[in] event The event codes. See the enumeration #usb_device_event_t.
|
||||
* @param[in,out] param The parameter type is determined by the event code.
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassCallback(usb_device_handle handle, uint32_t event, void *param);
|
||||
|
||||
/*!
|
||||
* @brief Gets the device handle according to the controller ID.
|
||||
*
|
||||
* This function gets the device handle according to the controller ID.
|
||||
*
|
||||
* @param[in] controllerId The controller ID of the USB IP. See the enumeration #usb_controller_index_t.
|
||||
* @param[out] handle An out parameter used to return the pointer of the device handle to the caller.
|
||||
*
|
||||
* @retval kStatus_USB_Success Get device handle successfully.
|
||||
* @retval kStatus_USB_InvalidParameter The device handle can't be found.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassGetDeviceHandle(uint8_t controllerId, usb_device_handle *handle);
|
||||
|
||||
#if defined(USB_DEVICE_CONFIG_GET_SOF_COUNT) && (USB_DEVICE_CONFIG_GET_SOF_COUNT > 0U)
|
||||
/*!
|
||||
* @brief Get the USB SOF count.
|
||||
*
|
||||
* This function is used to get the USB SOF count.
|
||||
*
|
||||
* @param controllerId The controller id of the USB IP. Please refer to the enumeration usb_controller_index_t.
|
||||
* @param currentFrameCount It is an OUT parameter, return current sof count of the controller.
|
||||
* HS: micro frame count, FS: frame count
|
||||
*
|
||||
* @return A USB error code or kStatus_USB_Success.
|
||||
*/
|
||||
usb_status_t USB_DeviceClassGetCurrentFrameCount(uint8_t controllerId, /*!< [IN] Controller ID */
|
||||
uint32_t *currentFrameCount /*!< [OUT] Current frame count */
|
||||
);
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
/*! @}*/
|
||||
|
||||
#endif /* __USB_DEVICE_CLASS_H__ */
|
||||
Reference in New Issue
Block a user