source: rtems/bsps/arm/lpc24xx/start/start-config-pinsel.c @ a6c08e8d

5
Last change on this file since a6c08e8d was a6c08e8d, checked in by Sebastian Huber <sebastian.huber@…>, on 05/08/19 at 11:01:07

bsp/lpc24xx: Support LPC24XX_EMC_SST39VF3201 pins

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSBSPsARMLPC24XX
5 *
6 * @brief BSP start pin selection configuration.
7 */
8
9/*
10 * Copyright (c) 2011, 2019 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
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.org/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_M29W160E) || defined(LPC24XX_EMC_SST39VF3201))
29#if defined(LPC24XX_EMC_M29W160E)
30  LPC24XX_PIN_EMC_A_0_20,
31#elif defined(LPC24XX_EMC_SST39VF3201)
32  LPC24XX_PIN_EMC_A_0_21,
33#endif
34  LPC24XX_PIN_EMC_D_0_15,
35  LPC24XX_PIN_EMC_RAS,
36  LPC24XX_PIN_EMC_CAS,
37  LPC24XX_PIN_EMC_WE,
38  LPC24XX_PIN_EMC_DYCS_0,
39  LPC24XX_PIN_EMC_CLK_0,
40  LPC24XX_PIN_EMC_CKE_0,
41  LPC24XX_PIN_EMC_DQM_0,
42  LPC24XX_PIN_EMC_DQM_1,
43  LPC24XX_PIN_EMC_OE,
44  LPC24XX_PIN_EMC_CS_1,
45#endif
46#if (defined(LPC24XX_EMC_IS42S32800D7) || defined(LPC24XX_EMC_W9825G2JB75I)) \
47  && (defined(LPC24XX_EMC_M29W320E70) || defined(LPC24XX_EMC_SST39VF3201))
48  LPC24XX_PIN_EMC_A_0_22,
49  LPC24XX_PIN_EMC_D_0_31,
50  LPC24XX_PIN_EMC_RAS,
51  LPC24XX_PIN_EMC_CAS,
52  LPC24XX_PIN_EMC_WE,
53  LPC24XX_PIN_EMC_DYCS_0,
54  LPC24XX_PIN_EMC_CLK_0,
55  LPC24XX_PIN_EMC_CKE_0,
56  LPC24XX_PIN_EMC_DQM_0,
57  LPC24XX_PIN_EMC_DQM_1,
58  LPC24XX_PIN_EMC_DQM_2,
59  LPC24XX_PIN_EMC_DQM_3,
60  LPC24XX_PIN_EMC_OE,
61  LPC24XX_PIN_EMC_CS_0,
62#endif
63#if defined(LPC24XX_EMC_IS42S32800B)
64  LPC24XX_PIN_EMC_A_0_14,
65  LPC24XX_PIN_EMC_D_0_31,
66  LPC24XX_PIN_EMC_RAS,
67  LPC24XX_PIN_EMC_CAS,
68  LPC24XX_PIN_EMC_WE,
69  LPC24XX_PIN_EMC_DYCS_0,
70  LPC24XX_PIN_EMC_CLK_0,
71  LPC24XX_PIN_EMC_CKE_0,
72  LPC24XX_PIN_EMC_DQM_0,
73  LPC24XX_PIN_EMC_DQM_1,
74  LPC24XX_PIN_EMC_DQM_2,
75  LPC24XX_PIN_EMC_DQM_3,
76#endif
77  LPC24XX_PIN_TERMINAL
78};
Note: See TracBrowser for help on using the repository browser.