| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /* --------------------------------------------------------------------------
- * Copyright (c) 2013-2016 ARM Limited. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * $Date: 02. March 2016
- * $Revision: V1.1
- *
- * Project: USB common (Device and Host) module for NXP LPC18xx
- * -------------------------------------------------------------------------- */
- /* History:
- * Version 1.1
- * Improved support for Host and Device
- * Version 1.0
- * Initial release
- */
- #include "LPC18xx.h"
- #include "SCU_LPC18xx.h"
- #include "Driver_USB.h"
- #include "RTE_Device.h"
- #include "RTE_Components.h"
- volatile uint8_t USB0_role = ARM_USB_ROLE_NONE;
- volatile uint8_t USB0_state = 0U;
- #ifdef RTE_Drivers_USBH0
- extern void USBH0_IRQ (void);
- #endif
- #ifdef RTE_Drivers_USBD0
- extern void USBD0_IRQ (void);
- #endif
- // Common IRQ Routine **********************************************************
- /**
- \fn void USB0_IRQHandler (void)
- \brief USB Interrupt Routine (IRQ).
- */
- void USB0_IRQHandler (void) {
- #if (defined(RTE_Drivers_USBH0) && defined(RTE_Drivers_USBD0))
- switch (USB0_role) {
- #ifdef RTE_Drivers_USBH0
- case ARM_USB_ROLE_HOST:
- USBH0_IRQ ();
- break;
- #endif
- #ifdef RTE_Drivers_USBD0
- case ARM_USB_ROLE_DEVICE:
- USBD0_IRQ ();
- break;
- #endif
- default:
- break;
- }
- #else
- #ifdef RTE_Drivers_USBH0
- USBH0_IRQ ();
- #else
- USBD0_IRQ ();
- #endif
- #endif
- }
- // Public Functions ************************************************************
- /**
- \fn void USB0_PinsConfigure (void)
- \brief Configure USB pins
- */
- void USB0_PinsConfigure (void) {
- // Common (Device and Host) Pins
- #if (RTE_USB0_IND0_PIN_EN)
- SCU_PinConfigure(RTE_USB0_IND0_PORT, RTE_USB0_IND0_BIT, RTE_USB0_IND0_FUNC);
- #endif
- #if (RTE_USB0_IND1_PIN_EN)
- SCU_PinConfigure(RTE_USB0_IND1_PORT, RTE_USB0_IND1_BIT, RTE_USB0_IND1_FUNC);
- #endif
- // Host Pins
- if (USB0_role == ARM_USB_ROLE_HOST) {
- #if (RTE_USB0_PPWR_PIN_EN)
- SCU_PinConfigure(RTE_USB0_PPWR_PORT, RTE_USB0_PPWR_BIT, RTE_USB0_PPWR_FUNC);
- #endif
- #if (RTE_USB0_PWR_FAULT_PIN_EN)
- SCU_PinConfigure(RTE_USB0_PWR_FAULT_PORT, RTE_USB0_PWR_FAULT_BIT, RTE_USB0_PWR_FAULT_FUNC);
- #endif
- }
- }
- /**
- \fn void USB0_PinsUnconfigure (void)
- \brief De-configure USB pins
- */
- void USB0_PinsUnconfigure (void) {
- // Common (Device and Host) Pins
- #if (RTE_USB0_IND0_PIN_EN)
- SCU_PinConfigure(RTE_USB0_IND0_PORT, RTE_USB0_IND0_BIT, 0);
- #endif
- #if (RTE_USB0_IND1_PIN_EN)
- SCU_PinConfigure(RTE_USB0_IND1_PORT, RTE_USB0_IND1_BIT, 0);
- #endif
- // Host Pins
- if (USB0_role == ARM_USB_ROLE_HOST) {
- #if (RTE_USB0_PPWR_PIN_EN)
- SCU_PinConfigure(RTE_USB0_PPWR_PORT, RTE_USB0_PPWR_BIT, 0);
- #endif
- #if (RTE_USB0_PWR_FAULT_PIN_EN)
- SCU_PinConfigure(RTE_USB0_PWR_FAULT_PORT, RTE_USB0_PWR_FAULT_BIT, 0);
- #endif
- }
- }
|