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