source: rtems/bsps/powerpc/mvme3100/include/bsp.h @ 4c36a525

5
Last change on this file since 4c36a525 was 7341dbd6, checked in by Sebastian Huber <sebastian.huber@…>, on 03/21/18 at 07:20:00

bsps/powerpc: Remove obsolete BSP_Configuration

  • Property mode set to 100644
File size: 11.8 KB
RevLine 
[a77c3719]1/**
2 *  @file
3 *
4 *  @ingroup mvme3100_bsp
5 *
6 *  @brief This file contains BSP API definition.
7 */
8
[b599faa]9/*
10 *  Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
11 *
12 *  The license and distribution terms for this file may be
[0c875c6a]13 *  found in the file LICENSE in this distribution or at
[c499856]14 *  http://www.rtems.org/license/LICENSE.
[b599faa]15 *
16 *  Adapted for the mvme3100 BSP by T. Straumann, 2007.
17 */
[9cff822a]18#ifndef LIBBSP_POWERPC_MVME3100_BSP_H
19#define LIBBSP_POWERPC_MVME3100_BSP_H
[b599faa]20
[9b763110]21#ifndef ASM
22
[b599faa]23#include <bspopts.h>
[a052181]24#include <bsp/default-initial-extension.h>
[b599faa]25
26#include <rtems.h>
27#include <libcpu/io.h>
[43fa4fc]28#include <bsp/vectors.h>
[b599faa]29
[a77c3719]30/**
31 *  @defgroup mvme3100_bsp confdefs.h overrides
32 *
33 *  @ingroup powerpc_mvme3100
34 *
35 *  @brief confdefs.h overrides for this BSP:
[b599faa]36 */
[ac7af4a]37
[7347b0d]38#define BSP_INTERRUPT_STACK_SIZE          (16 * 1024)
[b599faa]39
40/*
41 * diagram illustrating the role of the configuration
42 * constants
43 *  PCI_MEM_WIN0:        CPU starting addr where PCI memory space is visible
44 *  PCI_MEM_BASE:        CPU address of PCI mem addr. zero. (regardless of this
45 *                       address being 'visible' or not!).
46 * _VME_A32_WIN0_ON_PCI: PCI starting addr of the 1st window to VME
47 * _VME_A32_WIN0_ON_VME: VME address of that same window
48 *
49 * AFAIK, only PreP boards have a non-zero PCI_MEM_BASE (i.e., an offset between
50 * CPU and PCI addresses). The mvme2300 'ppcbug' firmware configures the PCI
51 * bus using PCI base addresses! I.e., drivers need to add PCI_MEM_BASE to
52 * the base address read from PCI config.space in order to translate that
53 * into a CPU address.
54 *
55 * NOTE: VME addresses should NEVER be translated using these constants!
56 *       they are strictly for BSP internal use. Drivers etc. should use
57 *       the translation routines int VME.h (BSP_vme2local_adrs/BSP_local2vme_adrs).
[ac7af4a]58 *
[b599faa]59 *           CPU ADDR                  PCI_ADDR                                VME ADDR
[ac7af4a]60 *
[b599faa]61 *           00000000                  XXXXXXXX                                XXXXXXXX
[ac7af4a]62 *    ^  ^   ........
[b599faa]63 *    |  |
64 *    |  |  e.g., RAM                  XXXXXXXX
65 *    |  |                                                                     00000000
66 *    |  |  .........                                                          ^
67 *    |  |            (possible offset                                         |
68 *    |  |             between pci and XXXXXXXX                                | ......
69 *    |  |             cpu addresses)                                          |
70 *    |  v                                                                     |
71 *    |  PCI_MEM_BASE  ------------->  00000000 ---------------                |
72 *    |     ........                   ........               ^                |
73 *    |                                invisible              |                |
74 *    |     ........                   from CPU               |                |
75 *    v                                                       |                |
76 *       PCI_MEM_WIN0 =============  first visible PCI addr   |                |
77 *                                                            |                |
78 *        pci devices   pci window                            |                |
79 *       visible here                                         v                v
80 *                      mapped by   ========== _VME_A32_WIN0_ON_PCI =======  _VME_A32_WIN0_ON_VME
81 *                                                 vme window
82 *        VME devices   hostbridge                 mapped by
83 *       visible here                              universe
84 *                    =====================================================
[ac7af4a]85 *
[b599faa]86 */
87
88/* fundamental addresses for BSP (CHRPxxx and PREPxxx are from libcpu/io.h) */
[ac7af4a]89#define _IO_BASE            0xe0000000 /* Motload's PCI IO base */
[b599faa]90#define _ISA_MEM_BASE           CHRP_ISA_MEM_BASE
91/* address of our ram on the PCI bus   */
92#define PCI_DRAM_OFFSET         CHRP_PCI_DRAM_OFFSET
93/* offset of pci memory as seen from the CPU */
94#define PCI_MEM_BASE            0
95/* where (in CPU addr. space) does the PCI window start */
[ac7af4a]96#define PCI_MEM_WIN0            0x80000000
[b599faa]97
98/*
99 *  Base address definitions for several devices
100 */
101
102#define BSP_OPEN_PIC_BASE_OFFSET 0x40000
103#define BSP_OPEN_PIC_BIG_ENDIAN
104
105#define BSP_8540_CCSR_BASE   (0xe1000000)
106
107#define BSP_UART_IOBASE_COM1 (BSP_8540_CCSR_BASE+0x4500)
108#define BSP_UART_IOBASE_COM2 (BSP_8540_CCSR_BASE+0x4600)
109#define PCI_CONFIG_ADDR      (BSP_8540_CCSR_BASE+0x8000)
110#define PCI_CONFIG_DATA      (BSP_8540_CCSR_BASE+0x8004)
[2d5c486]111#define PCI_CONFIG_WR_ADDR( addr, val ) out_be32((uint32_t*)(addr), (val))
[b599faa]112
113#define BSP_CONSOLE_PORT        BSP_UART_COM1
114#define BSP_UART_BAUD_BASE      (-9600) /* use existing divisor to determine clock rate */
115#define BSP_UART_USE_SHARED_IRQS
116
117#define BSP_MVME3100_IRQ_DETECT_REG ((volatile uint8_t *)0xe2000007)
118
119/* I2C Devices */
120/* Note that the i2c addresses stated in the manual are
121 * left-shifted by one bit.
122 */
123#define BSP_VPD_I2C_ADDR                        (0xA8>>1)               /* the VPD EEPROM  */
124#define BSP_USR0_I2C_ADDR                       (0xA4>>1)               /* the 1st user EEPROM */
125#define BSP_USR1_I2C_ADDR                       (0xA6>>1)               /* the 2nd user EEPROM */
126#define BSP_THM_I2C_ADDR                        (0x90>>1)               /* the DS1621 temperature sensor & thermostat */
127#define BSP_RTC_I2C_ADDR                        (0xD0>>1)               /* the DS1375 wall-clock */
[ac7af4a]128
[b599faa]129#define BSP_I2C_BUS_DESCRIPTOR          mpc8540_i2c_bus_descriptor
130
131#define BSP_I2C_BUS0_NAME             "/dev/i2c0"
132
133#define BSP_I2C_VPD_EEPROM_NAME       "vpd-eeprom"
134#define BSP_I2C_USR_EEPROM_NAME       "usr-eeprom"
135#define BSP_I2C_USR1_EEPROM_NAME      "usr1-eeprom"
136#define BSP_I2C_DS1621_NAME           "ds1621"
137#define BSP_I2C_THM_NAME              BSP_I2C_DS1621_NAME
138#define BSP_I2C_DS1621_RAW_NAME       "ds1621-raw"
139#define BSP_I2C_DS1375_RAW_NAME       "ds1375-raw"
140#define BSP_I2C_RTC_RAW_NAME          BSP_I2C_DS1375_RAW_NAME
141
[dce920ae]142#define BSP_I2C_VPD_EEPROM_DEV_NAME      (BSP_I2C_BUS0_NAME "." BSP_I2C_VPD_EEPROM_NAME)
143#define BSP_I2C_USR_EEPROM_DEV_NAME      (BSP_I2C_BUS0_NAME "." BSP_I2C_USR_EEPROM_NAME)
144#define BSP_I2C_USR1_EEPROM_DEV_NAME     (BSP_I2C_BUS0_NAME "." BSP_I2C_USR1_EEPROM_NAME)
145#define BSP_I2C_DS1621_DEV_NAME          (BSP_I2C_BUS0_NAME "." BSP_I2C_DS1621_NAME)
[b599faa]146#define BSP_I2C_THM_DEV_NAME              BSP_I2C_DS1621_DEV_NAME
[dce920ae]147#define BSP_I2C_DS1621_RAW_DEV_NAME      (BSP_I2C_BUS0_NAME "." BSP_I2C_DS1621_RAW_NAME)
148#define BSP_I2C_DS1375_RAW_DEV_NAME      (BSP_I2C_BUS0_NAME "." BSP_I2C_DS1375_RAW_NAME)
[b599faa]149
150/* Definitions useful for bootloader (netboot); where to find
151 * boot/'environment' parameters.
152 */
153#define BSP_EEPROM_BOOTPARMS_NAME        BSP_I2C_USR1_EEPROM_DEV_NAME
154#define BSP_EEPROM_BOOTPARMS_SIZE        1024
155#define BSP_EEPROM_BOOTPARMS_OFFSET      0
156#define BSP_BOOTPARMS_WRITE_ENABLE()     do { BSP_eeprom_write_enable(); } while (0)
157#define BSP_BOOTPARMS_WRITE_DISABLE()    do { BSP_eeprom_write_protect();} while (0)
158
159
160#ifdef __cplusplus
161extern "C" {
162#endif
[ac7af4a]163/* Initialize the I2C driver and register all devices
[b599faa]164 * RETURNS 0 on success, -1 on error.
165 *
166 * Access to the VPD and user EEPROMS as well
167 * as the ds1621 temperature sensor is possible
168 * by means of file nodes
169 *
170 *   /dev/i2c0.vpd-eeprom   (read-only)
171 *   /dev/i2c0.usr-eeprom   (read-write)
172 *   /dev/i2c0.usr1-eeprom  (read-write)
173 *   /dev/i2c0.ds1621       (read-only; one byte: board-temp in degC)
174 *   /dev/i2c0.ds1621-raw   (read-write; transfer bytes to/from the ds1621)
175 *   /dev/i2c0.ds1375-raw   (read-write; transfer bytes to/from the ds1375)
[ac7af4a]176 *
[b599faa]177 */
[9b763110]178int BSP_i2c_initialize(void);
[e7545f1b]179#define BSP_PREDRIVER_I2C_INIT
[b599faa]180
181/* System Control Register */
182#define BSP_MVME3100_SYS_CR                             ((volatile uint8_t *)0xe2000001)
[ac7af4a]183#define BSP_MVME3100_SYS_CR_RESET_MSK           (7<<5)
184#define BSP_MVME3100_SYS_CR_RESET                       (5<<5)
[b599faa]185#define BSP_MVME3100_SYS_CR_EEPROM_WP           (1<<1)
186#define BSP_MVME3100_SYS_CR_TSTAT_MSK           (1<<0)
187
188/* LED support */
189#define BSP_MVME3100_SYS_IND_REG                ((volatile uint8_t *)0xe2000002)
190#define BSP_LED_BRD_FAIL                                        (1<<0)
191#define BSP_LED_USR1                                            (1<<1)
192#define BSP_LED_USR2                                            (1<<2)
193#define BSP_LED_USR3                                            (1<<3)
194
195/* Flash CSR   */
196#define BSP_MVME3100_FLASH_CSR                  ((volatile uint8_t *)0xe2000003)
197#define BSP_MVME3100_FLASH_CSR_FLASH_RDY        (1<<0)
198#define BSP_MVME3100_FLASH_CSR_FBT_BLK_SEL      (1<<1)
199#define BSP_MVME3100_FLASH_CSR_F_WP_HW          (1<<2)
200#define BSP_MVME3100_FLASH_CSR_F_WP_SW          (1<<3)
201#define BSP_MVME3100_FLASH_CSR_MAP_SEL          (1<<4)
202
203/* Phy interrupt detect */
204#define BSP_MVME3100_IRQ_DETECT_REG             ((volatile uint8_t *)0xe2000007)
205
206/* Atomically set bits in a sys-register; The bits set in 'mask'
207 * are set in the register others; are left unmodified.
208 *
209 * RETURNS: old state.
210 *
211 * NOTE   : since BSP_setSysReg( reg, 0 ) does not make
212 *          any changes this call may be used
213 *          to read the current status w/o modifying it.
214 */
[9b763110]215uint8_t BSP_setSysReg(volatile uint8_t *r, uint8_t mask);
[b599faa]216
217/* Atomically clear bits in a sys-register; The bits set in 'mask'
218 * are cleared in the register; others are left unmodified.
219 *
220 * RETURNS: old state.
221 *
222 * NOTE   : since BSP_clrSysReg( reg, 0 ) does not make
223 *          any changes this call may be used
224 *          to read the current status w/o modifying it.
225 */
226
[9b763110]227uint8_t BSP_clrSysReg(volatile uint8_t *r, uint8_t mask);
[b599faa]228
229/* Convenience wrappers around BSP_setSysReg()/BSP_clrSysReg() */
230
231/* Set write-protection for all EEPROM devices
232 * RETURNS: old status
233 */
[9b763110]234uint8_t BSP_eeprom_write_protect(void);
[b599faa]235
236/* Disengage write-protection for all EEPROM devices
237 * RETURNS: old status
238 */
[9b763110]239uint8_t BSP_eeprom_write_enable(void);
[b599faa]240
241/* Set LEDs that have their bit set in the mask
242 *
243 * RETURNS: old status.
244 *
245 * NOTE   : since BSP_setLEDs( 0 ) does not make
246 *          any changes this call may be used
247 *          to read the current status w/o modifying it.
248 */
[9b763110]249uint8_t BSP_setLEDs(uint8_t mask);
[b599faa]250
251/* Clear LEDs that have their bit set in the mask
252 *
253 * RETURNS: old status
254 *
255 * NOTE:  : see above (BSP_setLEDs)
256 */
[9b763110]257uint8_t BSP_clrLEDs(uint8_t mask);
[b599faa]258
259#if 0
260#define outport_byte(port,value) outb(value,port)
261#define outport_word(port,value) outw(value,port)
262#define outport_long(port,value) outl(value,port)
263
264#define inport_byte(port,value) (value = inb(port))
265#define inport_word(port,value) (value = inw(port))
266#define inport_long(port,value) (value = inl(port))
267#endif
268
269/*
270 * Total memory using RESIDUAL DATA
271 */
272extern unsigned int BSP_mem_size;
273/*
274 * PCI Bus Frequency
275 */
276extern unsigned int BSP_bus_frequency;
277/*
278 * processor clock frequency
279 */
280extern unsigned int BSP_processor_frequency;
281/*
282 * Time base divisior (how many tick for 1 second).
283 */
284extern unsigned int BSP_time_base_divisor;
[10a9260]285/*
286 * The commandline as passed from the bootloader.
287 */
288extern char *BSP_commandline_string;
[b599faa]289
290#define BSP_Convert_decrementer( _value ) \
291  ((unsigned long long) ((((unsigned long long)BSP_time_base_divisor) * 1000000ULL) /((unsigned long long) BSP_bus_frequency)) * ((unsigned long long) (_value)))
292
293extern int BSP_disconnect_clock_handler (void);
294extern int BSP_connect_clock_handler (void);
295
296/* clear hostbridge errors
297 *
298 * NOTE: The routine returns always (-1) if 'enableMCP==1'
299 *       [semantics needed by libbspExt] if the MCP input is not wired.
300 *       It returns and clears the error bits of the PCI status register.
301 *       MCP support is disabled because:
302 *         a) the 2100 has no raven chip
303 *         b) the raven (2300) would raise machine check interrupts
304 *            on PCI config space access to empty slots.
305 */
306extern unsigned long _BSP_clear_hostbridge_errors(int enableMCP, int quiet);
[9b763110]307extern void BSP_motload_pci_fixup(void);
[b599faa]308
309struct rtems_bsdnet_ifconfig;
310
311int
312rtems_tsec_attach(struct rtems_bsdnet_ifconfig *ifcfg, int attaching);
313
314#define RTEMS_BSP_NETWORK_DRIVER_NAME   "tse1"
315#define RTEMS_BSP_NETWORK_DRIVER_ATTACH rtems_tsec_attach
316
[9b763110]317/*
318 * Prototypes for methods called only from .S for dependency tracking
319 */
320char *save_boot_params(
321  void *r3,
322  void *r4,
323  void *r5,
324  char *cmdline_start,
325  char *cmdline_end
326);
327void zero_bss(void);
328
329/*
330 * Prototypes for methods in the BSP that cross file boundaries
331 */
332extern void BSP_vme_config(void);
333extern void BSP_pciConfigDump_early( void );
334
[b599faa]335#ifdef __cplusplus
336}
337#endif
338
[9b763110]339#endif /* !ASM */
340
[b599faa]341#endif
Note: See TracBrowser for help on using the repository browser.