| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * dcd.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Created on: Nov 27, 2012 | 
					
						
							| 
									
										
										
										
											2012-11-29 17:52:57 +07:00
										 |  |  |  *      Author: hathach | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Software License Agreement (BSD License) | 
					
						
							| 
									
										
										
										
											2013-03-25 11:46:30 +07:00
										 |  |  |  * Copyright (c) 2013, hathach (tinyusb.org) | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without modification, | 
					
						
							|  |  |  |  * are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * 2. 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. | 
					
						
							|  |  |  |  * 3. The name of the author may not be used to endorse or promote products | 
					
						
							|  |  |  |  *    derived from this software without specific prior written permission. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2012-12-02 00:36:44 +07:00
										 |  |  |  * This file is part of the tinyUSB stack. | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "dcd.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-27 17:41:00 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-29 14:39:14 +07:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2012-11-29 16:32:49 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 12:28:12 +07:00
										 |  |  | #include "descriptors.h" // TODO refractor later
 | 
					
						
							| 
									
										
										
										
											2012-11-27 17:41:00 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-18 12:28:12 +07:00
										 |  |  | #define USB_ROM_SIZE (1024*2) // TODO dcd abstract later
 | 
					
						
							| 
									
										
										
										
											2013-01-26 01:37:15 +07:00
										 |  |  | uint8_t usb_RomDriver_buffer[USB_ROM_SIZE] ATTR_ALIGNED(2048) TUSB_CFG_ATTR_USBRAM; | 
					
						
							| 
									
										
										
										
											2013-06-01 21:54:08 +07:00
										 |  |  | USBD_HANDLE_T romdriver_hdl; | 
					
						
							| 
									
										
										
										
											2013-01-11 20:49:46 +07:00
										 |  |  | static volatile bool isConfigured = false; | 
					
						
							| 
									
										
										
										
											2012-11-27 17:41:00 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*!
 | 
					
						
							|  |  |  |     @brief Handler for the USB Configure Event | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | ErrorCode_t USB_Configure_Event (USBD_HANDLE_T hUsb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   USB_CORE_CTRL_T* pCtrl = (USB_CORE_CTRL_T*)hUsb; | 
					
						
							|  |  |  |   if (pCtrl->config_value) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2012-12-20 16:56:19 +07:00
										 |  |  |     #if defined(DEVICE_CLASS_HID)
 | 
					
						
							| 
									
										
										
										
											2013-01-19 00:57:58 +07:00
										 |  |  |     ASSERT( TUSB_ERROR_NONE == tusb_hid_configured(hUsb), ERR_FAILED ); | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |     #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 16:56:19 +07:00
										 |  |  |     #ifdef TUSB_CFG_DEVICE_CDC
 | 
					
						
							| 
									
										
										
										
											2013-01-19 00:57:58 +07:00
										 |  |  |     ASSERT( TUSB_ERROR_NONE == tusb_cdc_configured(hUsb), ERR_FAILED ); | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |     #endif
 | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   isConfigured = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return LPC_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*!
 | 
					
						
							|  |  |  |     @brief Handler for the USB Reset Event | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | ErrorCode_t USB_Reset_Event (USBD_HANDLE_T hUsb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   isConfigured = false; | 
					
						
							|  |  |  |   return LPC_OK; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-19 00:57:58 +07:00
										 |  |  | tusb_error_t dcd_init(uint8_t coreid) | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-12-04 14:12:48 +07:00
										 |  |  | #ifdef DEVICE_ROMDRIVER // TODO refractor later
 | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |   /* ROM DRIVER INIT */ | 
					
						
							| 
									
										
										
										
											2012-11-29 10:41:33 +07:00
										 |  |  |   uint32_t membase = (uint32_t) usb_RomDriver_buffer; | 
					
						
							|  |  |  |   uint32_t memsize = USB_ROM_SIZE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  |   USBD_API_INIT_PARAM_T usb_param = | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2013-06-03 14:31:17 +07:00
										 |  |  |     .usb_reg_base        = NXP_ROMDRIVER_REG_BASE, | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |     .max_num_ep          = USB_MAX_EP_NUM, | 
					
						
							| 
									
										
										
										
											2012-11-29 10:41:33 +07:00
										 |  |  |     .mem_base            = membase, | 
					
						
							|  |  |  |     .mem_size            = memsize, | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     .USB_Configure_Event = USB_Configure_Event, | 
					
						
							|  |  |  |     .USB_Reset_Event     = USB_Reset_Event | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   USB_CORE_DESCS_T DeviceDes = | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2012-11-27 17:41:00 +07:00
										 |  |  |     .device_desc      = (uint8_t*) &USB_DeviceDescriptor, | 
					
						
							|  |  |  |     .string_desc      = (uint8_t*) &USB_StringDescriptor, | 
					
						
							|  |  |  |     .full_speed_desc  = (uint8_t*) &USB_FsConfigDescriptor, | 
					
						
							|  |  |  |     .high_speed_desc  = (uint8_t*) &USB_FsConfigDescriptor, | 
					
						
							|  |  |  |     .device_qualifier = NULL | 
					
						
							| 
									
										
										
										
											2012-11-27 15:21:47 +07:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-29 15:35:59 +07:00
										 |  |  |   /* USB hardware core initialization */ | 
					
						
							| 
									
										
										
										
											2013-06-01 21:54:08 +07:00
										 |  |  |   ASSERT(LPC_OK == ROM_API->hw->Init(&romdriver_hdl, &DeviceDes, &usb_param), TUSB_ERROR_FAILED); | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-29 10:41:33 +07:00
										 |  |  |   membase += (memsize - usb_param.mem_size); | 
					
						
							|  |  |  |   memsize = usb_param.mem_size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* Initialise the class driver(s) */ | 
					
						
							| 
									
										
										
										
											2012-12-20 16:56:19 +07:00
										 |  |  |   #ifdef TUSB_CFG_DEVICE_CDC
 | 
					
						
							| 
									
										
										
										
											2013-06-01 21:54:08 +07:00
										 |  |  |   ASSERT_STATUS( tusb_cdc_init(romdriver_hdl, &USB_FsConfigDescriptor.CDC_CCI_Interface, | 
					
						
							| 
									
										
										
										
											2012-11-29 10:41:33 +07:00
										 |  |  |             &USB_FsConfigDescriptor.CDC_DCI_Interface, &membase, &memsize) ); | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |   #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 16:56:19 +07:00
										 |  |  |   #ifdef TUSB_CFG_DEVICE_HID_KEYBOARD
 | 
					
						
							| 
									
										
										
										
											2013-06-01 21:54:08 +07:00
										 |  |  |   ASSERT_STATUS( tusb_hid_init(romdriver_hdl , &USB_FsConfigDescriptor.HID_KeyboardInterface , | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |             HID_KeyboardReportDescriptor, USB_FsConfigDescriptor.HID_KeyboardHID.DescriptorList[0].wDescriptorLength, | 
					
						
							| 
									
										
										
										
											2012-11-29 10:41:33 +07:00
										 |  |  |             &membase , &memsize) ); | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |   #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 16:56:19 +07:00
										 |  |  |   #ifdef TUSB_CFG_DEVICE_HID_MOUSE
 | 
					
						
							| 
									
										
										
										
											2013-06-01 21:54:08 +07:00
										 |  |  |   ASSERT_STATUS( tusb_hid_init(romdriver_hdl , &USB_FsConfigDescriptor.HID_MouseInterface    , | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |             HID_MouseReportDescriptor, USB_FsConfigDescriptor.HID_MouseHID.DescriptorList[0].wDescriptorLength, | 
					
						
							| 
									
										
										
										
											2012-11-29 10:41:33 +07:00
										 |  |  |             &membase , &memsize) ); | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |   #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 14:58:25 +07:00
										 |  |  |   hal_interrupt_enable(); /* Enable the USB interrupt */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  |   /* Perform USB soft connect */ | 
					
						
							| 
									
										
										
										
											2013-06-01 21:54:08 +07:00
										 |  |  |   ROM_API->hw->Connect(romdriver_hdl, 1); | 
					
						
							| 
									
										
										
										
											2012-12-04 14:12:48 +07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-11-29 15:35:59 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-19 00:57:58 +07:00
										 |  |  |   return TUSB_ERROR_NONE; | 
					
						
							| 
									
										
										
										
											2012-11-28 11:53:23 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*!
 | 
					
						
							|  |  |  |     @brief Indicates whether USB is configured or not | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | bool usb_isConfigured(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   return isConfigured; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-29 16:32:49 +07:00
										 |  |  | #endif
 |