source: rtems/c/src/lib/libbsp/powerpc/mvme5500/include/bsp.h @ 34c4852

4.104.114.84.95
Last change on this file since 34c4852 was 34c4852, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/26/05 at 05:36:48

2005-05-26 Ralf Corsepius <ralf.corsepius@…>

  • include/bsp.h: New header guard.
  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 *  bsp.h  -- contain BSP API definition.
3 *
4 *  Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
5 *
6 *  The license and distribution terms for this file may be
7 *  found in found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 *
10 *  S. Kate Feng 12/03 : Modified it to support the MVME5500 board.
11 *
12 */
13
14#ifndef _BSP_H
15#define _BSP_H
16
17#include <bspopts.h>
18
19#include <rtems.h>
20#include <rtems/console.h>
21#include <rtems/clockdrv.h>
22#include <libcpu/io.h>
23#include <bsp/vectors.h>
24
25#include <bsp/bspMvme5500.h>
26
27/* fundamental addresses for this BSP (PREPxxx are from libcpu/io.h) */
28#define _IO_BASE GT64260_REG_BASE
29
30/* PCI0 Domain I/O space */
31#define PCI0_IO_BASE            0xf0000000
32#define PCI1_IO_BASE            0xf0800000
33
34/* PCI 0 memory space as seen from the CPU */
35#define PCI0_MEM_BASE           0x80000000
36#define PCI_MEM_BASE            0  /* glue for vmeUniverse */
37#define PCI_MEM_BASE_ADJUSTMENT        0
38
39/* address of our ram on the PCI bus */
40#define PCI_DRAM_OFFSET         0
41
42/* PCI 1 memory space as seen from the CPU */
43#define PCI1_MEM_BASE           0xe0000000
44#define PCI1_MEM_SIZE           0x10000000
45
46/* Needed for hot adding via PMCspan on the PCI0 local bus.
47 * This is board dependent, only because mvme5500
48 * supports hot adding and has more than one local PCI
49 * bus.
50 */
51#define BSP_MAX_PCI_BUS_ON_PCI0 8
52#define BSP_MAX_PCI_BUS_ON_PCI1 2
53#define BSP_MAX_PCI_BUS  (BSP_MAX_PCI_BUS_ON_PCI0+BSP_MAX_PCI_BUS_ON_PCI1)
54
55
56/* The glues to Till's vmeUniverse, although the name does not
57 * actually reflect the relevant architect of the MVME5500.
58 * Till TODO ? :  BSP_PCI_DO_EOI instead ?
59 * BSP_EXT_IRQ0 instead of BSP_PCI_IRQ0 ?
60 *
61 */
62#define BSP_PIC_DO_EOI  inl(0xc34)  /* PCI IACK */
63#define BSP_PCI_IRQ0 BSP_GPP_IRQ_LOWEST_OFFSET
64
65/*
66 *  confdefs.h overrides for this BSP:
67 *   - termios serial ports (defaults to 1)
68 *   - Interrupt stack space is not minimum if defined.
69 */
70
71#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2
72#define CONFIGURE_INTERRUPT_STACK_MEMORY  (16 * 1024)
73
74/* uart.c uses out_8 instead of outb  */
75#define BSP_UART_IOBASE_COM1    GT64260_DEV1_BASE + 0x20000
76#define BSP_UART_IOBASE_COM2    GT64260_DEV1_BASE + 0x21000
77
78#define BSP_CONSOLE_PORT                BSP_UART_COM1  /* console */
79#define BSP_UART_BAUD_BASE              115200
80
81/*
82 * Vital Board data Start using DATA RESIDUAL
83 */
84/*
85 * Total memory using RESIDUAL DATA
86 */
87extern unsigned int BSP_mem_size;
88/*
89 * PCI Bus Frequency
90 */
91extern unsigned int BSP_bus_frequency;
92/*
93 * processor clock frequency
94 */
95extern unsigned int BSP_processor_frequency;
96/*
97 * Time base divisior (how many tick for 1 second).
98 */
99extern unsigned int BSP_time_base_divisor;
100
101#define BSP_Convert_decrementer( _value ) \
102  ((unsigned long long) ((((unsigned long long)BSP_time_base_divisor) * 1000000ULL) /((unsigned long long) BSP_bus_frequency)) * ((unsigned long long) (_value)))
103
104extern rtems_configuration_table  BSP_Configuration;
105extern void BSP_panic(char *s);
106extern void rtemsReboot(void);
107/* extern int printk(const char *, ...) __attribute__((format(printf, 1, 2))); */
108extern int BSP_disconnect_clock_handler (void);
109extern int BSP_connect_clock_handler (void);
110
111extern unsigned long _BSP_clear_hostbridge_errors();
112
113#define RTEMS_BSP_NETWORK_DRIVER_NAME   "gt1"
114#define RTEMS_BSP_NETWORK_DRIVER_ATTACH rtems_GT64260eth_driver_attach
115
116extern int
117RTEMS_BSP_NETWORK_DRIVER_ATTACH(/* struct rtems_bsdnet_ifconfig * */);
118
119
120#endif
Note: See TracBrowser for help on using the repository browser.