OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [hal/] [powerpc/] [csb281/] [current/] [include/] [plf_io.h] - Blame information for rev 856

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 786 skrzyp
#ifndef CYGONCE_PLF_IO_H
2
#define CYGONCE_PLF_IO_H
3
 
4
//=============================================================================
5
//
6
//      plf_io.h
7
//
8
//      Platform specific IO support
9
//
10
//=============================================================================
11
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
12
// -------------------------------------------                              
13
// This file is part of eCos, the Embedded Configurable Operating System.   
14
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
15
//
16
// eCos is free software; you can redistribute it and/or modify it under    
17
// the terms of the GNU General Public License as published by the Free     
18
// Software Foundation; either version 2 or (at your option) any later      
19
// version.                                                                 
20
//
21
// eCos is distributed in the hope that it will be useful, but WITHOUT      
22
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
23
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
24
// for more details.                                                        
25
//
26
// You should have received a copy of the GNU General Public License        
27
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
28
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
29
//
30
// As a special exception, if other files instantiate templates or use      
31
// macros or inline functions from this file, or you compile this file      
32
// and link it with other works to produce a work based on this file,       
33
// this file does not by itself cause the resulting work to be covered by   
34
// the GNU General Public License. However the source code for this file    
35
// must still be made available in accordance with section (3) of the GNU   
36
// General Public License v2.                                               
37
//
38
// This exception does not invalidate any other reasons why a work based    
39
// on this file might be covered by the GNU General Public License.         
40
// -------------------------------------------                              
41
// ####ECOSGPLCOPYRIGHTEND####                                              
42
//=============================================================================
43
//#####DESCRIPTIONBEGIN####
44
//
45
// Author(s):    hmt, jskov 
46
// Contributors: hmt, jskov, gthomas
47
// Date:         2002-07-23
48
// Purpose:      Cogent CSB281 (PowerPC 8245) PCI IO support macros
49
// Description: 
50
// Usage:        #include <cyg/hal/plf_io.h>
51
//
52
//####DESCRIPTIONEND####
53
//
54
//=============================================================================
55
 
56
#include CYGBLD_HAL_PLATFORM_H
57
//#include CYGBLD_HAL_PLF_DEFS_H
58
 
59
#include <cyg/hal/hal_io.h>             // IO macros
60
#include <cyg/hal/plf_intr.h>           // Interrupt vectors
61
 
62
//-----------------------------------------------------------------------------
63
//
64
// PCI support
65
//
66
#define _EOM (CYGMEM_REGION_ram+CYGMEM_REGION_ram_SIZE)
67
#define _PCI_MAP 0x80000000
68
#define CYGARC_PHYSICAL_ADDRESS(x) (((x) >= _PCI_MAP) ? ((x) & 0x0FFFFFFF) : (x))
69
#define CYGARC_UNCACHED_ADDRESS(x) ((x) + _PCI_MAP)
70
 
71
// Restrict device [slot] space
72
#define CYG_PCI_MAX_BUS                       1  // Only one BUS
73
#define CYG_PCI_MIN_DEV                      11  // Slots start at 11
74
#define CYG_PCI_MAX_DEV                      14  // ... and end at 13
75
 
76
//-----------------------------------------------------------------------------
77
// Resources
78
 
79
// Map PCI device resources starting from these addresses in PCI space.
80
#define HAL_PCI_ALLOC_BASE_MEMORY                 0xF8000000
81
#define HAL_PCI_ALLOC_BASE_IO                     0xFE800000
82
 
83
// This is where the PCI spaces are mapped in the CPU's address space.
84
#define HAL_PCI_PHYSICAL_MEMORY_BASE              0  // Address maps are 1-1
85
#define HAL_PCI_PHYSICAL_IO_BASE                  0
86
 
87
// shared memory segment
88
#define CYGMEM_SECTION_pci_window                 CYGARC_UNCACHED_ADDRESS(CYGMEM_REGION_ram_SIZE)
89
#define CYGMEM_SECTION_pci_window_SIZE            0x00100000
90
 
91
// Initialize the PCI environment
92
externC void _csb281_pci_init(void);
93
#define HAL_PCI_INIT() \
94
  _csb281_pci_init()
95
 
96
// Translate the PCI interrupt requested by the device (INTA#, INTB#,
97
// INTC# or INTD#) to the associated CPU interrupt (i.e., HAL vector).
98
externC void _csb281_pci_translate_interrupt(int bus, int devfn, int *vec, int *valid);
99
#define HAL_PCI_TRANSLATE_INTERRUPT( __bus, __devfn, __vec, __valid) \
100
  _csb281_pci_translate_interrupt(__bus, __devfn, &__vec, &__valid)
101
 
102
// Read a value from the PCI configuration space of the appropriate
103
// size at an address composed from the bus, devfn and offset.
104
externC cyg_uint8 _csb281_pci_cfg_read_uint8(int bus, int dev, int offset);
105
#define HAL_PCI_CFG_READ_UINT8( __bus, __devfn, __offset, __val )  \
106
  __val = _csb281_pci_cfg_read_uint8(__bus, __devfn, __offset)
107
 
108
externC cyg_uint16 _csb281_pci_cfg_read_uint16(int bus, int dev, int offset);
109
#define HAL_PCI_CFG_READ_UINT16( __bus, __devfn, __offset, __val )  \
110
  __val = _csb281_pci_cfg_read_uint16(__bus, __devfn, __offset)
111
 
112
externC cyg_uint32 _csb281_pci_cfg_read_uint32(int bus, int dev, int offset);
113
#define HAL_PCI_CFG_READ_UINT32( __bus, __devfn, __offset, __val )  \
114
  __val = _csb281_pci_cfg_read_uint32(__bus, __devfn, __offset)
115
 
116
// Write a value to the PCI configuration space of the appropriate
117
// size at an address composed from the bus, devfn and offset.
118
externC void _csb281_pci_cfg_write_uint8(int bus, int dev, int offset, cyg_uint8 val);
119
#define HAL_PCI_CFG_WRITE_UINT8( __bus, __devfn, __offset, __val ) \
120
  _csb281_pci_cfg_write_uint8(__bus, __devfn, __offset, __val)
121
 
122
externC void _csb281_pci_cfg_write_uint16(int bus, int dev, int offset, cyg_uint16 val);
123
#define HAL_PCI_CFG_WRITE_UINT16( __bus, __devfn, __offset, __val ) \
124
  _csb281_pci_cfg_write_uint16(__bus, __devfn, __offset, __val)
125
 
126
externC void _csb281_pci_cfg_write_uint32(int bus, int dev, int offset, cyg_uint32 val);
127
#define HAL_PCI_CFG_WRITE_UINT32( __bus, __devfn, __offset, __val ) \
128
  _csb281_pci_cfg_write_uint32(__bus, __devfn, __offset, __val)
129
 
130
static __inline__ unsigned long
131
_le32(unsigned long val)
132
{
133
    return (((val & 0x000000FF) << 24) |
134
            ((val & 0x0000FF00) <<  8) |
135
            ((val & 0x00FF0000) >>  8) |
136
            ((val & 0xFF000000) >> 24));
137
}
138
 
139
static __inline__ unsigned short
140
_le16(unsigned short val)
141
{
142
    return (((val & 0x000000FF) << 8) |
143
            ((val & 0x0000FF00) >> 8));
144
}
145
 
146
#define HAL_WRITE_UINT32LE(_addr_, _val_) \
147
  HAL_WRITE_UINT32(_addr_, _le32(_val_))
148
#define HAL_WRITE_UINT16LE(_addr_, _val_) \
149
  HAL_WRITE_UINT16(_addr_, _le16(_val_))
150
#define HAL_WRITE_UINT8LE(_addr_, _val_) \
151
  HAL_WRITE_UINT8(_addr_, _val_)
152
#define HAL_READ_UINT32LE(_addr_, _val_)        \
153
  {                                             \
154
      HAL_READ_UINT32(_addr_, _val_);           \
155
      _val_ = _le32(_val_);                     \
156
  }
157
#define HAL_READ_UINT16LE(_addr_, _val_)        \
158
  {                                             \
159
      HAL_READ_UINT16(_addr_, _val_);           \
160
      _val_ = _le16(_val_);                     \
161
  }
162
#define HAL_READ_UINT8LE(_addr_, _val_)        \
163
  HAL_READ_UINT8(_addr_, _val_)
164
 
165
//-----------------------------------------------------------------------------
166
// end of plf_io.h
167
#endif // CYGONCE_PLF_IO_H

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.