a62640f1be
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5534 42af7a65-404d-4744-a932-0658087f49c3
264 lines
9.7 KiB
C
264 lines
9.7 KiB
C
/************************************************************************************
|
|
* arch/arm/src/lpc17xx/lpc17_ohciram.h
|
|
*
|
|
* Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
*
|
|
* 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. Neither the name NuttX nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* 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 OWNER 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.
|
|
*
|
|
************************************************************************************/
|
|
|
|
#ifndef __ARCH_ARM_SRC_LPC17XX_LPC17_OHCIRAM_H
|
|
#define __ARCH_ARM_SRC_LPC17XX_LPC17_OHCIRAM_H
|
|
|
|
/************************************************************************************
|
|
* Included Files
|
|
************************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
#include "chip.h"
|
|
#include "chip/lpc17_memorymap.h"
|
|
|
|
/************************************************************************************
|
|
* Pre-processor Definitions
|
|
************************************************************************************/
|
|
/* Default, no-OHCI Case ************************************************************/
|
|
/* Assume that all of AHB SRAM will be available for heap. If this is not true, then
|
|
* LPC17_BANK1_HEAPSIZE will be undefined but redefined below.
|
|
*/
|
|
|
|
#undef LPC17_BANK1_HEAPBASE
|
|
#undef LPC17_BANK1_HEAPSIZE
|
|
#ifdef LPC17_HAVE_BANK1
|
|
# define LPC17_BANK1_HEAPBASE LPC17_SRAM_BANK1
|
|
# define LPC17_BANK1_HEAPSIZE LPC17_BANK1_SIZE
|
|
#endif
|
|
|
|
/* Is networking enabled? Is the LPC17xx Ethernet device enabled? Does this chip have
|
|
* and Ethernet controlloer? Yes... then we will replace the above default definitions.
|
|
*/
|
|
|
|
#if defined(CONFIG_USBHOST) && defined(CONFIG_LPC17_USBHOST) && LPC17_NUSBHOST > 0
|
|
|
|
/* OHCI RAM Configuration ***********************************************************/
|
|
/* Is AHB SRAM available? */
|
|
|
|
#ifndef LPC17_HAVE_BANK1
|
|
# error "AHB SRAM Bank1 is not available for OHCI RAM"
|
|
#endif
|
|
|
|
/* OHCI/Heap Memory Allocation ******************************************************/
|
|
/* Configured Size of the region at the end of AHB SRAM BANK1 set set aside for the
|
|
* OHCI. This size must fit within AHB SRAM Bank 1 and also be a multiple of 256
|
|
* bytes.
|
|
*/
|
|
|
|
#ifndef CONFIG_USBHOST_OHCIRAM_SIZE
|
|
# define CONFIG_USBHOST_OHCIRAM_SIZE LPC17_BANK1_SIZE
|
|
#endif
|
|
|
|
#if CONFIG_USBHOST_OHCIRAM_SIZE > LPC17_BANK1_SIZE
|
|
# error "OHCI RAM size cannot exceed the size of AHB SRAM Bank 1"
|
|
#endif
|
|
|
|
#if (CONFIG_USBHOST_OHCIRAM_SIZE & 0xff) != 0
|
|
# error "OHCI RAM size must be in multiples of 256 bytes"
|
|
#endif
|
|
|
|
/* Then position the OHCI RAM at the end of AHB SRAM Bank 1 */
|
|
|
|
#define LPC17_OHCIRAM_END (LPC17_SRAM_BANK1 + LPC17_BANK1_SIZE)
|
|
#define LPC17_OHCIRAM_BASE (LPC17_OHCIRAM_END - CONFIG_USBHOST_OHCIRAM_SIZE)
|
|
#define LPC17_OHCIRAM_SIZE CONFIG_USBHOST_OHCIRAM_SIZE
|
|
|
|
/* Determine is there is any meaningful space left at the beginning of AHB Bank 1
|
|
* that could be added to the heap.
|
|
*/
|
|
|
|
#undef LPC17_BANK1_HEAPBASE
|
|
#undef LPC17_BANK1_HEAPSIZE
|
|
#if LPC17_OHCIRAM_SIZE < (LPC17_BANK1_SIZE-128)
|
|
# define LPC17_BANK1_HEAPBASE LPC17_SRAM_BANK1
|
|
# define LPC17_BANK1_HEAPSIZE (LPC17_BANK1_SIZE - LPC17_OHCIRAM_SIZE)
|
|
#endif
|
|
|
|
/* Numbers and Sizes of Things ******************************************************/
|
|
/* Fixed size of the OHCI control area */
|
|
|
|
#define LPC17_HCCA_SIZE 256
|
|
|
|
/* Fixed endpoint descriptor size. The actual size required by the hardware is only
|
|
* 16 bytes, however, we set aside an additional 16 bytes for for internal use by
|
|
* the OHCI host driver. 16-bytes is set aside because the EDs must still be
|
|
* aligned to 16-byte boundaries.
|
|
*/
|
|
|
|
#define LPC17_ED_SIZE 32
|
|
|
|
/* Configurable number of user endpoint descriptors (EDs). This number excludes
|
|
* the control endpoint that is always allocated.
|
|
*/
|
|
|
|
#ifndef CONFIG_USBHOST_NEDS
|
|
# define CONFIG_USBHOST_NEDS 2
|
|
#endif
|
|
|
|
/* Derived size of user endpoint descriptor (ED) memory. */
|
|
|
|
#define LPC17_EDFREE_SIZE (CONFIG_USBHOST_NEDS * LPC17_ED_SIZE)
|
|
|
|
/* Fixed transfer descriptor size. The actual size required by the hardware is only
|
|
* 16 bytes, however, we set aside an additional 16 bytes for for internal use by
|
|
* the OHCI host driver. 16-bytes is set aside because the TDs must still be
|
|
* aligned to 16-byte boundaries.
|
|
*/
|
|
|
|
#define LPC17_TD_SIZE 32
|
|
|
|
/* Configurable number of user transfer descriptors (TDs). */
|
|
|
|
#ifndef CONFIG_USBHOST_NTDS
|
|
# define CONFIG_USBHOST_NTDS 3
|
|
#endif
|
|
|
|
#if CONFIG_USBHOST_NTDS < 2
|
|
# error "Insufficent TDs"
|
|
#endif
|
|
|
|
/* Derived size of user trasnfer descriptor (TD) memory. */
|
|
|
|
#define LPC17_TDFREE_SIZE (CONFIG_USBHOST_NTDS * LPC17_TD_SIZE)
|
|
|
|
/* Configurable number of request/descriptor buffers (TDBUFFER) */
|
|
|
|
#ifndef CONFIG_USBHOST_TDBUFFERS
|
|
# define CONFIG_USBHOST_TDBUFFERS 2
|
|
#endif
|
|
|
|
#if CONFIG_USBHOST_TDBUFFERS < 2
|
|
# error "At least two TD buffers are required"
|
|
#endif
|
|
|
|
/* Configurable size of a TD buffer */
|
|
|
|
#if CONFIG_USBHOST_TDBUFFERS > 0 && !defined(CONFIG_USBHOST_TDBUFSIZE)
|
|
# define CONFIG_USBHOST_TDBUFSIZE 128
|
|
#endif
|
|
|
|
#if (CONFIG_USBHOST_TDBUFSIZE & 3) != 0
|
|
# error "TD buffer size must be an even number of 32-bit words"
|
|
#endif
|
|
|
|
#define LPC17_TBFREE_SIZE (CONFIG_USBHOST_TDBUFFERS * CONFIG_USBHOST_TDBUFSIZE)
|
|
|
|
/* Configurable size of an IO buffer. The number of IO buffers will be determined
|
|
* by what is left at the end of the BANK1 memory setup aside of OHCI RAM.
|
|
*/
|
|
|
|
#ifndef CONFIG_USBHOST_IOBUFSIZE
|
|
# define CONFIG_USBHOST_IOBUFSIZE 512
|
|
#endif
|
|
|
|
#if (CONFIG_USBHOST_IOBUFSIZE & 3) != 0
|
|
# error "IO buffer size must be an even number of 32-bit words"
|
|
#endif
|
|
|
|
/* OHCI Memory Layout ***************************************************************/
|
|
/* Example:
|
|
* Hardware:
|
|
* LPC17_SRAM_BANK1 0x20008000
|
|
* LPC17_BANK1_SIZE 16384
|
|
*
|
|
* Configuration:
|
|
* CONFIG_USBHOST_OHCIRAM_SIZE 1536
|
|
* CONFIG_USBHOST_NEDS 2
|
|
* CONFIG_USBHOST_NTDS 3
|
|
* CONFIG_USBHOST_TDBUFFERS 3
|
|
* CONFIG_USBHOST_TDBUFSIZE 128
|
|
* CONFIG_USBHOST_IOBUFSIZE 512
|
|
*
|
|
* Sizes of things
|
|
* LPC17_EDFREE_SIZE 64 0x00000040
|
|
* LPC17_TDFREE_SIZE 96 0x00000060
|
|
* LPC17_TBFREE_SIZE 384 0x00000100
|
|
* LPC17_IOFREE_SIZE 512 0x00000200
|
|
*
|
|
* Memory Layout
|
|
* LPC17_OHCIRAM_END (0x20008000 + 16384) = 0x20084000
|
|
* LPC17_OHCIRAM_BASE (0x2000c000 - 1536) = 0x2000ba00
|
|
* LPC17_OHCIRAM_SIZE 1280
|
|
* LPC17_BANK1_HEAPBASE 0x20008000
|
|
* LPC17_BANK1_HEAPSIZE (16384 - 1280) = 15104
|
|
*
|
|
* LPC17_HCCA_BASE 0x20083a00 -- Communications area
|
|
* LPC17_TDTAIL_ADDR 0x20083b00 -- Common. pre-allocated tail TD
|
|
* LPC17_EDCTRL_ADDR 0x20083b20 -- Pre-allocated ED for EP0
|
|
* LPC17_EDFREE_BASE 0x20083b40 -- Free EDs
|
|
* LPC17_TDFREE_BASE 0x20083b80 -- Free TDs
|
|
* LPC17_TBFREE_BASE 0x20083be0 -- Free request/descriptor buffers
|
|
* LPC17_IOFREE_BASE 0x20083d60 -- Free large I/O buffers
|
|
* LPC17_IOBUFFERS (0x20084000 - 0x20083d60) / 512 = 672/512 = 1
|
|
*
|
|
* Wasted memory: 672-512 = 160 bytes
|
|
*/
|
|
|
|
#define LPC17_HCCA_BASE (LPC17_OHCIRAM_BASE)
|
|
#define LPC17_TDTAIL_ADDR (LPC17_HCCA_BASE + LPC17_HCCA_SIZE)
|
|
#define LPC17_EDCTRL_ADDR (LPC17_TDTAIL_ADDR + LPC17_TD_SIZE)
|
|
#define LPC17_EDFREE_BASE (LPC17_EDCTRL_ADDR + LPC17_ED_SIZE)
|
|
#define LPC17_TDFREE_BASE (LPC17_EDFREE_BASE + LPC17_EDFREE_SIZE)
|
|
#define LPC17_TBFREE_BASE (LPC17_TDFREE_BASE + LPC17_TDFREE_SIZE)
|
|
#define LPC17_IOFREE_BASE (LPC17_TBFREE_BASE + LPC17_TBFREE_SIZE)
|
|
|
|
#if LPC17_IOFREE_BASE > LPC17_OHCIRAM_END
|
|
# error "Insufficient OHCI RAM allocated"
|
|
#endif
|
|
|
|
/* Finally, use the remainder of the allocated OHCI for IO buffers */
|
|
|
|
#if CONFIG_USBHOST_IOBUFSIZE > 0
|
|
# define LPC17_IOBUFFERS ((LPC17_OHCIRAM_END - LPC17_IOFREE_BASE) / CONFIG_USBHOST_IOBUFSIZE)
|
|
#else
|
|
# define LPC17_IOBUFFERS 0
|
|
#endif
|
|
|
|
/************************************************************************************
|
|
* Public Types
|
|
************************************************************************************/
|
|
|
|
/************************************************************************************
|
|
* Public Data
|
|
************************************************************************************/
|
|
|
|
/************************************************************************************
|
|
* Public Functions
|
|
************************************************************************************/
|
|
|
|
#endif /* CONFIG_USBHOST && CONFIG_LPC17_USBHOST && LPC17_NUSBHOST > 0*/
|
|
#endif /* __ARCH_ARM_SRC_LPC17XX_LPC17_OHCIRAM_H */
|