source: rtems/c/src/lib/libbsp/powerpc/gen5200/include/bsp.h @ af99a743

4.104.114.95
Last change on this file since af99a743 was af99a743, checked in by Joel Sherrill <joel.sherrill@…>, on 12/05/07 at 22:26:05

2007-12-05 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h: Correct BSP specific Idle thread support.
  • Property mode set to 100644
File size: 6.7 KB
Line 
1/*===============================================================*\
2| Project: RTEMS generic MPC5200 BSP                              |
3+-----------------------------------------------------------------+
4| Partially based on the code references which are named below.   |
5| Adaptions, modifications, enhancements and any recent parts of  |
6| the code are:                                                   |
7|                    Copyright (c) 2005                           |
8|                    Embedded Brains GmbH                         |
9|                    Obere Lagerstr. 30                           |
10|                    D-82178 Puchheim                             |
11|                    Germany                                      |
12|                    rtems@embedded-brains.de                     |
13+-----------------------------------------------------------------+
14| The license and distribution terms for this file may be         |
15| found in the file LICENSE in this distribution or at            |
16|                                                                 |
17| http://www.rtems.com/license/LICENSE.                           |
18|                                                                 |
19+-----------------------------------------------------------------+
20| this file contains board specific definitions                   |
21\*===============================================================*/
22
23#ifndef __GEN5200_BSP_h
24#define __GEN5200_BSP_h
25
26/*
27 * distinguish board characteristics
28 */
29/*
30 * for PM520 mdule on a ZE30 carrier
31 */
32#if defined(PM520_ZE30)
33#define PM520
34#define GPIOPCR_INITMASK 0x337F3F77
35#define GPIOPCR_INITVAL  0x01552114
36/* we have PSC1/4/5/6 */
37/* #define GEN5200_UART_AVAIL_MASK 0x39 */
38#define GEN5200_UART_AVAIL_MASK 0x39
39#endif
40/*
41 * for PM520 mdule on a CR825 carrier
42 */
43#if defined(PM520_CR825)
44#define PM520
45#define GPIOPCR_INITMASK 0x330F0F77
46#define GPIOPCR_INITVAL  0x01050444
47/* we have PSC1/2/3*/
48#define GEN5200_UART_AVAIL_MASK 0x07
49#endif
50
51#if defined(BRS5L)
52/*
53 * IMD Custom Board BRS5L
54 */
55#define GPIOPCR_INITMASK 0xb30F0F77
56#define GPIOPCR_INITVAL  0x91050444
57/* we have PSC1/2/3 */
58#define GEN5200_UART_AVAIL_MASK 0x07
59/*
60 * address range definitions
61 */
62/* ROM definitions (2 MB) */
63#define ROM_START       0xFFE00000
64#define ROM_SIZE        0x00200000
65#define ROM_END         (ROM_START+ROM_SIZE-1)
66#define BOOT_START      ROM_START
67#define BOOT_END        ROM_END
68
69/* SDRAM definitions (256 MB) */
70#define RAM_START       0x00000000
71#define RAM_SIZE        0x10000000
72#define RAM_END         (RAM_START+RAM_SIZE-1)
73
74/* DPRAM definitions (64 KB) */
75#define DPRAM_START  0xFF000000
76#define DPRAM_END    0xFF0003FF
77
78/* internal memory map definitions (64 KB) */
79#define MBAR         0xF0000000
80
81/* we need the low level initialization in start.S*/
82#define NEED_LOW_LEVEL_INIT
83
84#define HAS_NVRAM_93CXX
85#elif defined (PM520)
86
87/*
88 * MicroSys PM520 internal memory map definitions
89 */
90#define MBAR         0xF0000000
91#define HAS_UBOOT
92
93#elif defined (icecube)
94/*
95 *  Codename: IceCube
96 *  Compatible Boards:
97 *     Freescape MPC5200LITE
98 *     Embedded Planet EP5200
99 */
100
101#define HAS_UBOOT
102
103/* These are copied from PM520 but seem to work so OK */
104#define GPIOPCR_INITMASK 0x330F0F77
105#define GPIOPCR_INITVAL  0x01050444
106
107/* we only have PSC1 */
108#define GEN5200_UART_AVAIL_MASK 0x01
109
110#define MBAR         0xF0000000
111
112/* We want to prompt for a reset and then reset the board */
113#define BSP_PRESS_KEY_FOR_RESET 1
114#define BSP_RESET_BOARD_AT_EXIT 1
115
116#else
117#error "board type not defined"
118#endif
119
120#ifndef ASM
121
122#ifdef __cplusplus
123extern "C" {
124#endif
125
126#include "bspopts.h"
127
128#include <rtems.h>
129#include <rtems/console.h>
130#include <rtems/clockdrv.h>
131#include <i2cdrv.h>
132#include <bsp/irq.h>
133#include <bsp/vectors.h>
134
135#if defined(HAS_UBOOT)
136/* This is the define U-Boot uses to configure which entries in the structure are valid */
137#define CONFIG_MPC5xxx
138#include <u-boot.h>
139
140extern bd_t *uboot_bdinfo_ptr;
141extern bd_t uboot_bdinfo_copy;
142#endif
143
144/*
145 * Network driver configuration
146 */
147struct rtems_bsdnet_ifconfig;
148extern int rtems_mpc5200_fec_driver_attach_detach (struct rtems_bsdnet_ifconfig *config, int attaching);
149#define RTEMS_BSP_NETWORK_DRIVER_NAME   "eth1"
150#define RTEMS_BSP_NETWORK_DRIVER_ATTACH rtems_mpc5200_fec_driver_attach_detach
151
152/* miscellaneous stuff assumed to exist */
153
154extern rtems_configuration_table BSP_Configuration;
155/*
156 * We need to decide how much memory will be non-cacheable. This
157 * will mainly be memory that will be used in DMA (network and serial
158 * buffers).
159 */
160/*
161#define NOCACHE_MEM_SIZE 512*1024
162*/
163
164/*
165 *  Stuff for Time Test 27
166 */
167#define MUST_WAIT_FOR_INTERRUPT 0
168
169/*
170 *  Device Driver Table Entries
171 */
172
173/*
174 * NOTE: Use the standard Console driver entry
175 */
176
177/*
178 * NOTE: Use the standard Clock driver entry
179 */
180
181#ifdef HAS_NVRAM_93CXX
182#define NVRAM_DRIVER_TABLE_ENTRY \
183  { nvram_driver_initialize, nvram_driver_open, nvram_driver_close, \
184    nvram_driver_read, nvram_driver_write, NULL }
185#endif
186
187#define RTC_DRIVER_TABLE_ENTRY \
188    { rtc_initialize, NULL, NULL, NULL, NULL, NULL }
189extern rtems_device_driver rtc_initialize(
190    rtems_device_major_number major,
191    rtems_device_minor_number minor,
192    void *arg
193);
194
195/*
196 * indicate, that BSP has IDE driver
197 */
198#define RTEMS_BSP_HAS_IDE_DRIVER
199
200/*
201 * How many libio files we want
202 */
203#define BSP_LIBIO_MAX_FDS       20
204
205/* functions */
206
207void bsp_cleanup(void);
208
209/* console modes (only termios) */
210#ifdef  PRINTK_MINOR
211#undef  PRINTK_MINOR
212#endif
213#define PRINTK_MINOR PSC1_MINOR
214
215#define SINGLE_CHAR_MODE
216/* #define UARTS_USE_TERMIOS_INT   1 */
217/* #define SHOW_MORE_INIT_SETTINGS 1 */
218
219/* ata modes */
220/* #undef ATA_USE_INT */
221#define ATA_USE_INT
222
223/* clock settings */
224#if defined(HAS_UBOOT)
225#define IPB_CLOCK (uboot_bdinfo_ptr->bi_ipbfreq)
226#define XLB_CLOCK (uboot_bdinfo_ptr->bi_busfreq)
227#define G2_CLOCK  (uboot_bdinfo_ptr->bi_intfreq)
228#else
229#define IPB_CLOCK 33000000   /* 33 MHz */
230#define XLB_CLOCK 66000000   /* 66 MHz */
231#define G2_CLOCK  231000000  /* 231 MHz */
232#endif
233
234#if defined(HAS_UBOOT)
235#define GEN5200_CONSOLE_BAUD (uboot_bdinfo_ptr->bi_baudrate)
236#else
237#define GEN5200_CONSOLE_BAUD 9600
238#endif
239
240/*
241 *  Convert decrement value to tenths of microsecnds (used by
242 *  shared timer driver).
243 *
244 *    + CPU has a XLB_CLOCK bus,
245 *    + There are 4 bus cycles per click
246 *    + We return value in 1/10 microsecond units.
247 *   Modified following equation to integer equation to remove
248 *   floating point math.
249 *   (int) ((float)(_value) / ((XLB_CLOCK/1000000 * 0.1) / 4.0))
250 */
251
252#define BSP_Convert_decrementer( _value ) \
253  (int) (((_value) * 4000) / (XLB_CLOCK/10000))
254
255/* slicetimer settings */
256#define USE_SLICETIMER_0     TRUE
257#define USE_SLICETIMER_1     FALSE
258
259Thread _Thread_Idle_body(uint32_t ignored);
260#define BSP_IDLE_TASK_BODY _Thread_Idle_body
261
262#ifdef __cplusplus
263}
264#endif
265
266#endif /* ASM */
267
268#endif /* GEN5200 */
Note: See TracBrowser for help on using the repository browser.