/* * 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_dci.h" #include "usb_device_ch9.h" /******************************************************************************* * Definitions ******************************************************************************/ /*! * @brief Standard request callback function typedef. * * This function is used to handle the standard request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @return A USB error code or kStatus_USB_Success. */ typedef usb_status_t (*usb_standard_request_callback_t)(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); /******************************************************************************* * Prototypes ******************************************************************************/ /*! * @brief Get the setup packet buffer. * * The function is used to get the setup packet buffer to save the setup packet data. * * @param handle The device handle. * @param setupBuffer It is an OUT parameter, return the setup buffer address to the caller. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceGetSetupBuffer(usb_device_handle handle, usb_setup_struct_t **setupBuffer); /*! * @brief Handle the class request. * * The function is used to handle the class request. * * @param handle The device handle. * @param setup The setup packet buffer address. * @param length It is an OUT parameter, return the data length need to be sent to host. * @param buffer It is an OUT parameter, return the data buffer address. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceProcessClassRequest(usb_device_handle handle, usb_setup_struct_t *setup, uint32_t *length, uint8_t **buffer); /*! * @brief Get the buffer to save the class specific data sent from host. * * The function is used to get the buffer to save the class specific data sent from host. * The function will be called when the device receives a setup packet, and the host needs to send data to the device in * the data stage. * * @param handle The device handle. * @param setup The setup packet buffer address. * @param length Pass the length the host needs to sent. * @param buffer It is an OUT parameter, return the data buffer address to save the host's data. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceGetClassReceiveBuffer(usb_device_handle handle, usb_setup_struct_t *setup, uint32_t *length, uint8_t **buffer); /* standard request */ /*! * @brief Get the descriptor. * * The function is used to get the descriptor, including the device descriptor, configuration descriptor, and string * descriptor, etc. * * @param handle The device handle. * @param setup The setup packet buffer address. * @param length It is an OUT parameter, return the data length need to be sent to host. * @param buffer It is an OUT parameter, return the data buffer address. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceGetDescriptor(usb_device_handle handle, usb_setup_struct_t *setup, uint32_t *length, uint8_t **buffer); /*! * @brief Set the device configuration. * * The function is used to set the device configuration. * * @param handle The device handle. * @param configure The configuration value. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceSetConfigure(usb_device_handle handle, uint8_t configure); /*! * @brief Get the device configuration. * * The function is used to get the device configuration. * * @param handle The device handle. * @param configure It is an OUT parameter, save the current configuration value. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceGetConfigure(usb_device_handle handle, uint8_t *configure); /*! * @brief Set an interface alternate setting. * * The function is used to set an interface alternate setting. * * @param handle The device handle. * @param interface The interface index. * @param alternateSetting The new alternate setting value. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceSetInterface(usb_device_handle handle, uint8_t interface, uint8_t alternateSetting); /*! * @brief Get an interface alternate setting. * * The function is used to get an interface alternate setting. * * @param handle The device handle. * @param interface The interface index. * @param alternateSetting It is an OUT parameter, save the new alternate setting value of the interface. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceGetInterface(usb_device_handle handle, uint8_t interface, uint8_t *alternateSetting); /*! * @brief Configure a specified endpoint status. * * The function is used to configure a specified endpoint status, idle or halt. * * @param handle The device handle. * @param endpointAddress The endpoint address, the BIT7 is the direction, 0 - USB_OUT, 1 - USB_IN. * @param status The new status of the endpoint, 0 - idle, 1 - halt. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceConfigureEndpointStatus(usb_device_handle handle, uint8_t endpointAddress, uint8_t status); /*! * @brief Configure the device remote wakeup feature. * * The function is used to configure the device remote wakeup feature, enable or disable the remote wakeup feature. * * @param handle The device handle. * @param enable The new feature value of the device remote wakeup, 0 - disable, 1 - enable. * * @return A USB error code or kStatus_USB_Success. */ extern usb_status_t USB_DeviceConfigureRemoteWakeup(usb_device_handle handle, uint8_t enable); static usb_status_t USB_DeviceCh9GetStatus(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9SetClearFeature(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9SetAddress(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9GetDescriptor(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9GetConfiguration(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9SetConfiguration(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9GetInterface(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9SetInterface(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); static usb_status_t USB_DeviceCh9SynchFrame(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length); /******************************************************************************* * Variables ******************************************************************************/ /* The function list to handle the standard request. */ static const usb_standard_request_callback_t s_UsbDeviceStandardRequest[] = { USB_DeviceCh9GetStatus, USB_DeviceCh9SetClearFeature, (usb_standard_request_callback_t)NULL, USB_DeviceCh9SetClearFeature, (usb_standard_request_callback_t)NULL, USB_DeviceCh9SetAddress, USB_DeviceCh9GetDescriptor, (usb_standard_request_callback_t)NULL, /* USB_DeviceCh9SetDescriptor */ USB_DeviceCh9GetConfiguration, USB_DeviceCh9SetConfiguration, USB_DeviceCh9GetInterface, USB_DeviceCh9SetInterface, USB_DeviceCh9SynchFrame, }; /* * The internal global variable. * This variable is used in: * get status request * get configuration request * get interface request * set interface request * get sync frame request */ static uint16_t s_UsbDeviceStandardRx; /******************************************************************************* * Code ******************************************************************************/ /*! * @brief Handle get status request. * * This function is used to handle get status request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9GetStatus(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { usb_status_t error = kStatus_USB_InvalidRequest; uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_IN) || (setup->wValue != 0U) || (setup->wLength != 2U)) { return error; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if ((kUSB_DeviceStateAddress != state) && (kUSB_DeviceStateConfigured != state)) { return error; } if ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) == USB_REQUEST_TYPE_RECIPIENT_DEVICE) { /* Get the device status */ error = USB_DeviceGetStatus(handle, kUSB_DeviceStatusDevice, &s_UsbDeviceStandardRx); s_UsbDeviceStandardRx = s_UsbDeviceStandardRx & USB_GET_STATUS_DEVICE_MASK; s_UsbDeviceStandardRx = USB_SHORT_TO_LITTLE_ENDIAN(s_UsbDeviceStandardRx); /* The device status length must be USB_DEVICE_STATUS_SIZE. */ *length = USB_DEVICE_STATUS_SIZE; } else if ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) == USB_REQUEST_TYPE_RECIPIENT_INTERFACE) { /* Get the interface status */ error = kStatus_USB_Success; s_UsbDeviceStandardRx = 0U; /* The interface status length must be USB_INTERFACE_STATUS_SIZE. */ *length = USB_INTERFACE_STATUS_SIZE; } else if ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) == USB_REQUEST_TYPE_RECIPIENT_ENDPOINT) { /* Get the endpoint status */ usb_device_endpoint_status_struct_t endpointStatus; endpointStatus.endpointAddress = (uint8_t)setup->wIndex; endpointStatus.endpointStatus = kUSB_DeviceEndpointStateIdle; error = USB_DeviceGetStatus(handle, kUSB_DeviceStatusEndpoint, &endpointStatus); s_UsbDeviceStandardRx = endpointStatus.endpointStatus & USB_GET_STATUS_ENDPOINT_MASK; s_UsbDeviceStandardRx = USB_SHORT_TO_LITTLE_ENDIAN(s_UsbDeviceStandardRx); /* The endpoint status length must be USB_INTERFACE_STATUS_SIZE. */ *length = USB_ENDPOINT_STATUS_SIZE; } else { } *buffer = (uint8_t *)&s_UsbDeviceStandardRx; return error; } /*! * @brief Handle set or clear device feature request. * * This function is used to handle set or clear device feature request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9SetClearFeature(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { usb_status_t error = kStatus_USB_InvalidRequest; uint8_t state; uint8_t isSet = 0U; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_OUT) || (setup->wLength != 0U)) { return error; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if ((kUSB_DeviceStateAddress != state) && (kUSB_DeviceStateConfigured != state)) { return error; } /* Identify the request is set or clear the feature. */ if (USB_REQUEST_STANDARD_SET_FEATURE == setup->bRequest) { isSet = 1U; } if ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) == USB_REQUEST_TYPE_RECIPIENT_DEVICE) { /* Set or Clear the device feature. */ if (USB_REQUEST_STANDARD_FEATURE_SELECTOR_DEVICE_REMOTE_WAKEUP == setup->wValue) { #if ((defined(USB_DEVICE_CONFIG_REMOTE_WAKEUP)) && (USB_DEVICE_CONFIG_REMOTE_WAKEUP > 0U)) USB_DeviceSetStatus(handle, kUSB_DeviceStatusRemoteWakeup, &isSet); #endif /* Set or Clear the device remote wakeup feature. */ error = USB_DeviceConfigureRemoteWakeup(handle, isSet); } #if (defined(USB_DEVICE_CONFIG_EHCI) && (USB_DEVICE_CONFIG_EHCI > 0U)) && \ (defined(USB_DEVICE_CONFIG_USB20_TEST_MODE) && (USB_DEVICE_CONFIG_USB20_TEST_MODE > 0U)) else if (USB_REQUEST_STANDARD_FEATURE_SELECTOR_DEVICE_TEST_MODE == setup->wValue) { state = kUSB_DeviceStateTestMode; error = USB_DeviceSetStatus(handle, kUSB_DeviceStatusDeviceState, &state); } #endif else { } } else if ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) == USB_REQUEST_TYPE_RECIPIENT_ENDPOINT) { /* Set or Clear the endpoint feature. */ if (USB_REQUEST_STANDARD_FEATURE_SELECTOR_ENDPOINT_HALT == setup->wValue) { if (USB_CONTROL_ENDPOINT == (setup->wIndex & USB_ENDPOINT_NUMBER_MASK)) { /* Set or Clear the control endpoint status(halt or not). */ if (isSet) { USB_DeviceStallEndpoint(handle, (uint8_t)setup->wIndex); } else { USB_DeviceUnstallEndpoint(handle, (uint8_t)setup->wIndex); } } /* Set or Clear the endpoint status feature. */ error = USB_DeviceConfigureEndpointStatus(handle, setup->wIndex, isSet); } else { } } else { } return error; } /*! * @brief Handle set address request. * * This function is used to handle set address request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state. */ static usb_status_t USB_DeviceCh9SetAddress(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { usb_status_t error = kStatus_USB_InvalidRequest; uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_OUT) || ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) != USB_REQUEST_TYPE_RECIPIENT_DEVICE) || (setup->wIndex != 0U) || (setup->wLength != 0U)) { return error; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if ((kUSB_DeviceStateAddressing != state) && (kUSB_DeviceStateAddress != state) && (kUSB_DeviceStateDefault != state)) { return error; } if (kUSB_DeviceStateAddressing != state) { /* If the device address is not setting, pass the address and the device state will change to * kUSB_DeviceStateAddressing internally. */ state = setup->wValue & 0xFFU; error = USB_DeviceSetStatus(handle, kUSB_DeviceStatusAddress, &state); } else { /* If the device address is setting, set device address and the address will be write into the controller * internally. */ error = USB_DeviceSetStatus(handle, kUSB_DeviceStatusAddress, NULL); /* And then change the device state to kUSB_DeviceStateAddress. */ if (kStatus_USB_Success == error) { state = kUSB_DeviceStateAddress; error = USB_DeviceSetStatus(handle, kUSB_DeviceStatusDeviceState, &state); } } return error; } /*! * @brief Handle get descriptor request. * * This function is used to handle get descriptor request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9GetDescriptor(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { uint8_t state; if ((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_IN) { return kStatus_USB_InvalidRequest; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if ((kUSB_DeviceStateAddress != state) && (kUSB_DeviceStateConfigured != state) && (kUSB_DeviceStateDefault != state)) { return kStatus_USB_InvalidRequest; } return USB_DeviceGetDescriptor(handle, setup, length, buffer); } /*! * @brief Handle get current configuration request. * * This function is used to handle get current configuration request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9GetConfiguration(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_IN) || ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) != USB_REQUEST_TYPE_RECIPIENT_DEVICE) || (setup->wValue != 0U) || (setup->wIndex != 0U) || (setup->wLength != 1U)) { return kStatus_USB_InvalidRequest; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if ((kUSB_DeviceStateAddress != state) && ((kUSB_DeviceStateConfigured != state))) { return kStatus_USB_InvalidRequest; } *length = USB_CONFIGURE_SIZE; *buffer = (uint8_t *)&s_UsbDeviceStandardRx; return USB_DeviceGetConfigure(handle, (uint8_t *)&s_UsbDeviceStandardRx); } /*! * @brief Handle set current configuration request. * * This function is used to handle set current configuration request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9SetConfiguration(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_OUT) || ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) != USB_REQUEST_TYPE_RECIPIENT_DEVICE) || (setup->wIndex != 0U) || (setup->wLength != 0U)) { return kStatus_USB_InvalidRequest; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if ((kUSB_DeviceStateAddress != state) && (kUSB_DeviceStateConfigured != state)) { return kStatus_USB_InvalidRequest; } /* The device state is changed to kUSB_DeviceStateConfigured */ state = kUSB_DeviceStateConfigured; USB_DeviceSetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if (!setup->wValue) { /* If the new configuration is zero, the device state is changed to kUSB_DeviceStateAddress */ state = kUSB_DeviceStateAddress; USB_DeviceSetStatus(handle, kUSB_DeviceStatusDeviceState, &state); } return USB_DeviceSetConfigure(handle, setup->wValue); } /*! * @brief Handle get the alternate setting of a interface request. * * This function is used to handle get the alternate setting of a interface request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9GetInterface(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { usb_status_t error = kStatus_USB_InvalidRequest; uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_IN) || ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) != USB_REQUEST_TYPE_RECIPIENT_INTERFACE) || (setup->wValue != 0U) || (setup->wLength != 1U)) { return error; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if (state != kUSB_DeviceStateConfigured) { return error; } *length = USB_INTERFACE_SIZE; *buffer = (uint8_t *)&s_UsbDeviceStandardRx; return USB_DeviceGetInterface(handle, setup->wIndex & 0xFFU, (uint8_t *)&s_UsbDeviceStandardRx); } /*! * @brief Handle set the alternate setting of a interface request. * * This function is used to handle set the alternate setting of a interface request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9SetInterface(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_OUT) || ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) != USB_REQUEST_TYPE_RECIPIENT_INTERFACE) || (setup->wLength != 0U)) { return kStatus_USB_InvalidRequest; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if (state != kUSB_DeviceStateConfigured) { return kStatus_USB_InvalidRequest; } return USB_DeviceSetInterface(handle, (setup->wIndex & 0xFFU), (setup->wValue & 0xFFU)); } /*! * @brief Handle get sync frame request. * * This function is used to handle get sync frame request. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @retval kStatus_USB_Success The request is handled successfully. * @retval kStatus_USB_InvalidRequest The request can not be handle in current device state, * or, the request is unsupported. */ static usb_status_t USB_DeviceCh9SynchFrame(usb_device_handle handle, usb_setup_struct_t *setup, uint8_t **buffer, uint32_t *length) { usb_status_t error = kStatus_USB_InvalidRequest; uint8_t state; if (((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) != USB_REQUEST_TYPE_DIR_IN) || ((setup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) != USB_REQUEST_TYPE_RECIPIENT_ENDPOINT) || (setup->wValue != 0U) || (setup->wLength != 2U)) { return error; } USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if (state != kUSB_DeviceStateConfigured) { return error; } s_UsbDeviceStandardRx = setup->wIndex; /* Get the sync frame value */ error = USB_DeviceGetStatus(handle, kUSB_DeviceStatusSynchFrame, &s_UsbDeviceStandardRx); *buffer = (uint8_t *)&s_UsbDeviceStandardRx; *length = sizeof(s_UsbDeviceStandardRx); return error; } /*! * @brief Send the response to the host. * * This function is used to send the response to the host. * * There are two cases this function will be called. * Case one when a setup packet is received in control endpoint callback function: * 1. If there is not data phase in the setup transfer, the function will prime an IN transfer with the data * length is zero for status phase. * 2. If there is an IN data phase, the function will prime an OUT transfer with the actual length to need to * send for data phase. And then prime an IN transfer with the data length is zero for status phase. * 3. If there is an OUT data phase, the function will prime an IN transfer with the actual length to want to * receive for data phase. * * Case two when is not a setup packet received in control endpoint callback function: * 1. The function will prime an IN transfer with data length is zero for status phase. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param setup The pointer of the setup packet. * @param error The error code returned from the standard request function. * @param stage The stage of the control transfer. * @param buffer It is an out parameter, is used to save the buffer address to response the host's request. * @param length It is an out parameter, the data length. * * @return A USB error code or kStatus_USB_Success. */ static usb_status_t USB_DeviceControlCallbackFeedback(usb_device_handle handle, usb_setup_struct_t *setup, usb_status_t error, usb_device_control_read_write_sequence_t stage, uint8_t **buffer, uint32_t *length) { usb_status_t errorCode = kStatus_USB_Error; if (kStatus_USB_InvalidRequest == error) { errorCode = USB_DeviceStallEndpoint(handle, (uint8_t)USB_CONTROL_ENDPOINT); } else { if (*length > setup->wLength) { *length = setup->wLength; } if (kStatus_USB_Success == error) { errorCode = USB_DeviceSendRequest(handle, (USB_CONTROL_ENDPOINT), *buffer, *length); } else { errorCode = USB_DeviceSendRequest(handle, (USB_CONTROL_ENDPOINT), (uint8_t *)NULL, 0U); } if ((kStatus_USB_Success == errorCode) && (USB_REQUEST_TYPE_DIR_IN == (setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK))) { errorCode = USB_DeviceRecvRequest(handle, (USB_CONTROL_ENDPOINT), (uint8_t *)NULL, 0U); } } return errorCode; } /*! * @brief Control endpoint callback function. * * This callback function is used to notify upper layer the transfered result of a transfer. * This callback pointer is passed when a specified endpoint initialized by calling API USB_DeviceInitEndpoint. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param message The result of a transfer, includes transfer buffer, transfer length and whether is in setup * phase for control pipe. * @param callbackParam The parameter for this callback. It is same with * usb_device_endpoint_callback_struct_t::callbackParam. * * @return A USB error code or kStatus_USB_Success. */ usb_status_t USB_DeviceControlCallback(usb_device_handle handle, usb_device_endpoint_callback_message_struct_t *message, void *callbackParam) { usb_setup_struct_t *deviceSetup; uint8_t *setupOutBuffer = (uint8_t *)NULL; uint8_t *buffer = (uint8_t *)NULL; uint32_t length = 0U; usb_status_t error = kStatus_USB_InvalidRequest; uint8_t state; /* endpoint callback length is USB_CANCELLED_TRANSFER_LENGTH (0xFFFFFFFFU) when transfer is canceled */ if (USB_CANCELLED_TRANSFER_LENGTH == message->length) { return error; } USB_DeviceGetSetupBuffer(handle, &deviceSetup); USB_DeviceGetStatus(handle, kUSB_DeviceStatusDeviceState, &state); if (message->isSetup) { if ((USB_SETUP_PACKET_SIZE != message->length) || (NULL == message->buffer)) { /* If a invalid setup is received, the control pipes should be de-init and init again. * Due to the IP can not meet this require, it is reserved for feature. */ /* USB_DeviceDeinitEndpoint(handle, USB_CONTROL_ENDPOINT | (USB_IN << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT)); USB_DeviceDeinitEndpoint(handle, USB_CONTROL_ENDPOINT | (USB_OUT << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT)); USB_DeviceControlPipeInit(handle); */ return error; } /* Receive a setup request */ usb_setup_struct_t *setup = (usb_setup_struct_t *)(message->buffer); /* Copy the setup packet to the application buffer */ deviceSetup->wValue = USB_SHORT_FROM_LITTLE_ENDIAN(setup->wValue); deviceSetup->wIndex = USB_SHORT_FROM_LITTLE_ENDIAN(setup->wIndex); deviceSetup->wLength = USB_SHORT_FROM_LITTLE_ENDIAN(setup->wLength); deviceSetup->bRequest = setup->bRequest; deviceSetup->bmRequestType = setup->bmRequestType; /* Check the invalid value */ if ((deviceSetup->bmRequestType & USB_REQUEST_TYPE_RECIPIENT_MASK) > USB_REQUEST_TYPE_RECIPIENT_OTHER) { USB_DeviceControlCallbackFeedback(handle, deviceSetup, kStatus_USB_InvalidRequest, kUSB_DeviceControlPipeSetupStage, NULL, 0U); return error; } if ((deviceSetup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK) == USB_REQUEST_TYPE_TYPE_STANDARD) { /* Handle the standard request */ /* Handle the standard request, only handle the request in request array. */ if (deviceSetup->bRequest < (sizeof(s_UsbDeviceStandardRequest) / 4U)) { if (s_UsbDeviceStandardRequest[deviceSetup->bRequest] != (usb_standard_request_callback_t)NULL) { error = s_UsbDeviceStandardRequest[deviceSetup->bRequest](handle, deviceSetup, &buffer, &length); } } } else { if ((deviceSetup->wLength) && ((deviceSetup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) == USB_REQUEST_TYPE_DIR_OUT)) { /* Class or vendor request with the OUT data phase. */ if ((deviceSetup->wLength) && ((deviceSetup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK) == USB_REQUEST_TYPE_TYPE_CLASS)) { /* Get data buffer to receive the data from the host. */ length = deviceSetup->wLength; error = USB_DeviceGetClassReceiveBuffer(handle, deviceSetup, &length, &setupOutBuffer); } else { } if (kStatus_USB_Success == error) { /* Prime an OUT transfer */ if (length > deviceSetup->wLength) { length = deviceSetup->wLength; } error = USB_DeviceRecvRequest(handle, USB_CONTROL_ENDPOINT, setupOutBuffer, length); return error; } else { /* Other error codes, will stall control endpoint */ error = kStatus_USB_InvalidRequest; } } else { /* Class or vendor request with the IN data phase. */ if (((deviceSetup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK) == USB_REQUEST_TYPE_TYPE_CLASS)) { /* Get data buffer to response the host. */ error = USB_DeviceProcessClassRequest(handle, deviceSetup, &length, &buffer); } else { } } } /* Buffer that is equal to NULL means the application or classs driver does not prepare a buffer for sending or receiving the data, so control endpoint will be stalled here. */ if ((0U != length) && (NULL == buffer)) { error = kStatus_USB_InvalidRequest; } /* Send the response to the host. */ error = USB_DeviceControlCallbackFeedback(handle, deviceSetup, error, kUSB_DeviceControlPipeSetupStage, &buffer, &length); } else if (kUSB_DeviceStateAddressing == state) { /* Set the device address to controller. */ if (USB_REQUEST_STANDARD_SET_ADDRESS == deviceSetup->bRequest) { error = s_UsbDeviceStandardRequest[deviceSetup->bRequest](handle, deviceSetup, &buffer, &length); } } #if (defined(USB_DEVICE_CONFIG_EHCI) && (USB_DEVICE_CONFIG_EHCI > 0U)) && \ (defined(USB_DEVICE_CONFIG_USB20_TEST_MODE) && (USB_DEVICE_CONFIG_USB20_TEST_MODE > 0U)) else if (kUSB_DeviceStateTestMode == state) { uint8_t portTestControl = (uint8_t)(deviceSetup->wIndex >> 8); /* Set the controller.into test mode. */ error = USB_DeviceSetStatus(handle, kUSB_DeviceStatusTestMode, &portTestControl); } #endif else if ((message->length) && (deviceSetup->wLength) && ((deviceSetup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) == USB_REQUEST_TYPE_DIR_OUT)) { if (((deviceSetup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK) == USB_REQUEST_TYPE_TYPE_CLASS)) { /* Data received in OUT phase, and notify the class driver. */ error = USB_DeviceProcessClassRequest(handle, deviceSetup, &message->length, &message->buffer); } else { } /* Send the response to the host. */ error = USB_DeviceControlCallbackFeedback(handle, deviceSetup, error, kUSB_DeviceControlPipeDataStage, &buffer, &length); } else { } return error; } /*! * @brief Control endpoint initialization function. * * This callback function is used to initialize the control pipes. * * @param handle The device handle. It equals the value returned from USB_DeviceInit. * @param param The up layer handle. * * @return A USB error code or kStatus_USB_Success. */ usb_status_t USB_DeviceControlPipeInit(usb_device_handle handle) { usb_device_endpoint_init_struct_t epInitStruct; usb_device_endpoint_callback_struct_t epCallback; usb_status_t error; epCallback.callbackFn = USB_DeviceControlCallback; epCallback.callbackParam = handle; epInitStruct.zlt = 1U; epInitStruct.interval = 0U; epInitStruct.transferType = USB_ENDPOINT_CONTROL; epInitStruct.endpointAddress = USB_CONTROL_ENDPOINT | (USB_IN << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT); epInitStruct.maxPacketSize = USB_CONTROL_MAX_PACKET_SIZE; /* Initialize the control IN pipe */ error = USB_DeviceInitEndpoint(handle, &epInitStruct, &epCallback); if (kStatus_USB_Success != error) { return error; } epInitStruct.endpointAddress = USB_CONTROL_ENDPOINT | (USB_OUT << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT); /* Initialize the control OUT pipe */ error = USB_DeviceInitEndpoint(handle, &epInitStruct, &epCallback); if (kStatus_USB_Success != error) { USB_DeviceDeinitEndpoint(handle, USB_CONTROL_ENDPOINT | (USB_IN << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT)); return error; } return kStatus_USB_Success; }