123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947 |
- /*
- * The Clear BSD License
- * Copyright (c) 2015 - 2016, Freescale Semiconductor, Inc.
- * Copyright 2016-2017 NXP
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted (subject to the limitations in the disclaimer below) provided
- * that the following conditions are met:
- *
- * o Redistributions of source code must retain the above copyright notice, this list
- * of conditions and the following disclaimer.
- *
- * o Redistributions in binary form must reproduce the above copyright notice, this
- * list of conditions and the following disclaimer in the documentation and/or
- * other materials provided with the distribution.
- *
- * o Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #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 pakcet, 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 descritpor.
- *
- * The function is used to get the descritpor, including the device descritpor, 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 disbale 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 requst 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;
- 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 requst 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;
- 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 featrue. */
- if (USB_REQUEST_STANDARD_FEATURE_SELECTOR_DEVICE_REMOTE_WAKEUP == setup->wValue)
- {
- /* Set or Clear the device remote wakeup featrue. */
- error = USB_DeviceConfigureRemoteWakeup(handle, isSet);
- }
- #if (defined(USB_DEVICE_CONFIG_EHCI) && (USB_DEVICE_CONFIG_EHCI > 0U)) && \
- (defined(USB_DEVICE_CONFIG_EHCI_TEST_MODE) && (USB_DEVICE_CONFIG_EHCI_TEST_MODE > 0U))
- else if (USB_REQUEST_STANDARD_FEATURE_SELECTOR_DEVICE_TEST_MODE == setup->wValue)
- {
- state = kUSB_DeviceStateTestMode;
- error = USB_DeviceSetStatus(classHandle->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 featrue. */
- 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 featrue. */
- 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 requst 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;
- 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 requst 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;
- 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 requst 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;
- 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 requst 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;
- 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 requst 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;
- 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 requst 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;
- 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 requst 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;
- 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 reponse to the host.
- *
- * This function is used to send the reponse 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 fucntion.
- * @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;
- uint8_t direction = USB_IN;
- if (kStatus_USB_InvalidRequest == error)
- {
- /* Stall the control pipe when the request is unsupported. */
- if ((!((setup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK) == USB_REQUEST_TYPE_TYPE_STANDARD)) &&
- ((setup->bmRequestType & USB_REQUEST_TYPE_DIR_MASK) == USB_REQUEST_TYPE_DIR_OUT) && (setup->wLength) &&
- (kUSB_DeviceControlPipeSetupStage == stage))
- {
- direction = USB_OUT;
- }
- errorCode = USB_DeviceStallEndpoint(
- handle,
- (USB_CONTROL_ENDPOINT) | (uint8_t)((uint32_t)direction << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_SHIFT));
- }
- else
- {
- if (*length > setup->wLength)
- {
- *length = setup->wLength;
- }
- errorCode = USB_DeviceSendRequest(handle, (USB_CONTROL_ENDPOINT), *buffer, *length);
- 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 uplayer the tranfser result of a transfer.
- * This callback pointer is passed when a sepcified endpoint initialied 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 paramter 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 *buffer = (uint8_t *)NULL;
- uint32_t length = 0U;
- usb_status_t error = kStatus_USB_InvalidRequest;
- uint8_t state;
- if (USB_UNINITIALIZED_VAL_32 == 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 revesed 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;
- if ((deviceSetup->bmRequestType & USB_REQUEST_TYPE_TYPE_MASK) == USB_REQUEST_TYPE_TYPE_STANDARD)
- {
- /* Handle the standard request */
- 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_CLASS) == 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);
- length = 0U;
- }
- else
- {
- }
- if (kStatus_USB_Success == error)
- {
- /* Prime an OUT transfer */
- error = USB_DeviceRecvRequest(handle, USB_CONTROL_ENDPOINT, setupOutBuffer, deviceSetup->wLength);
- return error;
- }
- }
- else
- {
- /* Class or vendor request with the IN data phase. */
- if (((deviceSetup->bmRequestType & USB_REQUEST_TYPE_TYPE_CLASS) == USB_REQUEST_TYPE_TYPE_CLASS))
- {
- /* Get data buffer to response the host. */
- error = USB_DeviceProcessClassRequest(handle, deviceSetup, &length, &buffer);
- }
- else
- {
- }
- }
- }
- /* Send the reponse to the host. */
- error = USB_DeviceControlCallbackFeedback(handle, deviceSetup, error, kUSB_DeviceControlPipeSetupStage, &buffer,
- &length);
- }
- else if (kUSB_DeviceStateAddressing == state)
- {
- /* Set the device address to controller. */
- error = s_UsbDeviceStandardRequest[deviceSetup->bRequest](handle, deviceSetup, &buffer, &length);
- }
- #if (defined(USB_DEVICE_CONFIG_EHCI) && (USB_DEVICE_CONFIG_EHCI > 0U)) && \
- (defined(USB_DEVICE_CONFIG_EHCI_TEST_MODE) && (USB_DEVICE_CONFIG_EHCI_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_CLASS) == 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 reponse 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 endpointCallback;
- usb_status_t error;
- endpointCallback.callbackFn = USB_DeviceControlCallback;
- endpointCallback.callbackParam = handle;
- epInitStruct.zlt = 1U;
- 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, &endpointCallback);
- 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, &endpointCallback);
- 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;
- }
|