]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC/ThirdParty/LPCOpen/LPCUSBLib/Drivers/USB/Core/HAL/LPC11UXX/HAL_LPC11Uxx.c
Update LPC18xx FreeRTOS+UDP demo to use LPCOpen USB and Ethernet drivers.
[freertos] / FreeRTOS-Plus / Demo / FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC / ThirdParty / LPCOpen / LPCUSBLib / Drivers / USB / Core / HAL / LPC11UXX / HAL_LPC11Uxx.c
1 /*\r
2  * @brief HAL USB functions for the LPC11Uxx microcontrollers\r
3  *\r
4  * @note\r
5  * Copyright(C) NXP Semiconductors, 2012\r
6  * All rights reserved.\r
7  *\r
8  * @par\r
9  * Software that is described herein is for illustrative purposes only\r
10  * which provides customers with programming information regarding the\r
11  * LPC products.  This software is supplied "AS IS" without any warranties of\r
12  * any kind, and NXP Semiconductors and its licensor disclaim any and\r
13  * all warranties, express or implied, including all implied warranties of\r
14  * merchantability, fitness for a particular purpose and non-infringement of\r
15  * intellectual property rights.  NXP Semiconductors assumes no responsibility\r
16  * or liability for the use of the software, conveys no license or rights under any\r
17  * patent, copyright, mask work right, or any other intellectual property rights in\r
18  * or to any products. NXP Semiconductors reserves the right to make changes\r
19  * in the software without notification. NXP Semiconductors also makes no\r
20  * representation or warranty that such application will be suitable for the\r
21  * specified use without further testing or modification.\r
22  *\r
23  * @par\r
24  * Permission to use, copy, modify, and distribute this software and its\r
25  * documentation is hereby granted, under NXP Semiconductors' and its\r
26  * licensor's relevant copyrights in the software, without fee, provided that it\r
27  * is used in conjunction with NXP Semiconductors microcontrollers.  This\r
28  * copyright, permission, and disclaimer notice must appear in all copies of\r
29  * this code.\r
30  */\r
31 \r
32 #if (defined(__LPC11U1X__) || defined(__LPC11U2X_3X__) || defined(__LPC1347__))\r
33 \r
34 #include "../HAL.h"\r
35 #include "../../USBTask.h"\r
36 \r
37 void HAL_USBInit(uint8_t corenum)\r
38 {\r
39         /* power UP USB Phy and USB PLL */\r
40         Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_USBPAD_PD);\r
41         Chip_SYSCTL_PowerUp(SYSCTL_POWERDOWN_USBPLL_PD);\r
42         #if defined(__LPC1347__)\r
43         Chip_Clock_SetUSBPllSource(SYSCTL_PLLCLKSRC_SYSOSC);\r
44         #else\r
45         Chip_Clock_SetUSBPllSource(SYSCTL_PLLCLKSRC_MAINOSC);\r
46         #endif\r
47         //while (!(LPC_SYSCTL->USBPLLCLKUEN & 0x01));\r
48         Chip_Clock_SetupUSBPLL(3,1);\r
49         while (!Chip_Clock_IsUSBPLLLocked()) {}\r
50         Chip_Clock_SetUSBClockSource(SYSCTL_USBCLKSRC_PLLOUT, 1);\r
51         \r
52 /* Enable AHB clock to the USB block and USB RAM. */\r
53         LPC_SYSCTL->SYSAHBCLKCTRL |= ((0x1 << 14) | (0x1 << 27));\r
54                 \r
55         LPC_USB->EPBUFCFG = 0x3FC;\r
56 \r
57         /* configure usb_soft connect */\r
58         LPC_IOCON->PIO0[6] = 0x01;\r
59 \r
60 #if !defined(USB_DEVICE_ROM_DRIVER)\r
61         HAL_Reset();\r
62 #endif\r
63 }\r
64 \r
65 void HAL_USBDeInit(uint8_t corenum, uint8_t mode)\r
66 {\r
67         NVIC_DisableIRQ(USB0_IRQn);                                                             /* disable USB interrupt */\r
68         LPC_SYSCTL->SYSAHBCLKCTRL &= ~((0x1 << 14) | (0x1 << 27));      /* disable USB clock     */\r
69 }\r
70 \r
71 void HAL_EnableUSBInterrupt(uint8_t corenum)\r
72 {\r
73         NVIC_EnableIRQ(USB0_IRQn);\r
74 }\r
75 \r
76 void HAL_DisableUSBInterrupt(uint8_t corenum)\r
77 {\r
78         NVIC_DisableIRQ(USB0_IRQn);\r
79 }\r
80 \r
81 void HAL_SetDeviceAddress(uint8_t Address)\r
82 {\r
83 #ifdef USB_CAN_BE_DEVICE\r
84         LPC_USB->DEVCMDSTAT &= ~0x7F;\r
85         LPC_USB->DEVCMDSTAT |= (USB_EN | Address);\r
86 #endif\r
87 }\r
88 \r
89 void HAL_USBConnect(uint8_t corenum, uint32_t con)\r
90 {\r
91 #ifdef USB_CAN_BE_DEVICE\r
92         if ( con ) {\r
93                 LPC_USB->DEVCMDSTAT |= USB_DCON;\r
94         }\r
95         else {\r
96                 LPC_USB->DEVCMDSTAT &= ~USB_DCON;\r
97         }\r
98 #endif\r
99 }\r
100 \r
101 #endif /*CHIP_LPC11UXX*/\r