source: rtems/c/src/lib/libbsp/arm/lpc24xx/startup/start-config-pinsel.c @ 14ee5a1e

4.115
Last change on this file since 14ee5a1e was 14ee5a1e, checked in by Sebastian Huber <sebastian.huber@…>, on 02/11/12 at 20:10:12

Support for NXP LPC1700 family

  • Property mode set to 100644
File size: 2.0 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup lpc24xx
5 *
6 * @brief BSP start pin selection configuration.
7 */
8
9/*
10 * Copyright (c) 2011-2012 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Obere Lagerstr. 30
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#include <bsp/start-config.h>
24
25BSP_START_DATA_SECTION const lpc24xx_pin_range
26  lpc24xx_start_config_pinsel [] = {
27#if defined(LPC24XX_EMC_MT48LC4M16A2) \
28  && defined(LPC24XX_EMC_NUMONYX_M29W160E)
29  LPC24XX_PIN_EMC_A_0_20,
30  LPC24XX_PIN_EMC_D_0_15,
31  LPC24XX_PIN_EMC_RAS,
32  LPC24XX_PIN_EMC_CAS,
33  LPC24XX_PIN_EMC_WE,
34  LPC24XX_PIN_EMC_DYCS_0,
35  LPC24XX_PIN_EMC_CLK_0,
36  LPC24XX_PIN_EMC_CKE_0,
37  LPC24XX_PIN_EMC_DQM_0,
38  LPC24XX_PIN_EMC_DQM_1,
39  LPC24XX_PIN_EMC_OE,
40  LPC24XX_PIN_EMC_CS_1,
41#endif
42#if defined(LPC24XX_EMC_IS42S32800B)
43  LPC24XX_PIN_EMC_A_0_14,
44  LPC24XX_PIN_EMC_D_0_31,
45  LPC24XX_PIN_EMC_RAS,
46  LPC24XX_PIN_EMC_CAS,
47  LPC24XX_PIN_EMC_WE,
48  LPC24XX_PIN_EMC_DYCS_0,
49  LPC24XX_PIN_EMC_CLK_0,
50  LPC24XX_PIN_EMC_CKE_0,
51  LPC24XX_PIN_EMC_DQM_0,
52  LPC24XX_PIN_EMC_DQM_1,
53  LPC24XX_PIN_EMC_DQM_2,
54  LPC24XX_PIN_EMC_DQM_3,
55#endif
56#if defined(LPC24XX_EMC_W9825G2JB75I) \
57  && defined(LPC24XX_EMC_SST39VF3201)
58  LPC24XX_PIN_EMC_A_0_22,
59  LPC24XX_PIN_EMC_D_0_31,
60  LPC24XX_PIN_EMC_RAS,
61  LPC24XX_PIN_EMC_CAS,
62  LPC24XX_PIN_EMC_WE,
63  LPC24XX_PIN_EMC_DYCS_0,
64  LPC24XX_PIN_EMC_CLK_0,
65  LPC24XX_PIN_EMC_CKE_0,
66  LPC24XX_PIN_EMC_DQM_0,
67  LPC24XX_PIN_EMC_DQM_1,
68  LPC24XX_PIN_EMC_DQM_2,
69  LPC24XX_PIN_EMC_DQM_3,
70  LPC24XX_PIN_EMC_OE,
71  LPC24XX_PIN_EMC_CS_0,
72#endif
73#if defined(LPC24XX_EMC_IS42S32800B)
74  LPC24XX_PIN_EMC_A_0_14,
75  LPC24XX_PIN_EMC_D_0_31,
76  LPC24XX_PIN_EMC_RAS,
77  LPC24XX_PIN_EMC_CAS,
78  LPC24XX_PIN_EMC_WE,
79  LPC24XX_PIN_EMC_DYCS_0,
80  LPC24XX_PIN_EMC_CLK_0,
81  LPC24XX_PIN_EMC_CKE_0,
82  LPC24XX_PIN_EMC_DQM_0,
83  LPC24XX_PIN_EMC_DQM_1,
84  LPC24XX_PIN_EMC_DQM_2,
85  LPC24XX_PIN_EMC_DQM_3,
86#endif
87  LPC24XX_PIN_TERMINAL
88};
Note: See TracBrowser for help on using the repository browser.