1 |
786 |
skrzyp |
#ifndef CYGONCE_HAL_VAR_IO_H
|
2 |
|
|
#define CYGONCE_HAL_VAR_IO_H
|
3 |
|
|
|
4 |
|
|
//==========================================================================
|
5 |
|
|
//
|
6 |
|
|
// var_io.h
|
7 |
|
|
//
|
8 |
|
|
// PowerPC 40x variant I/O 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): jskov
|
46 |
|
|
// Contributors: jskov,gthomas
|
47 |
|
|
// Date: 2000-08-27
|
48 |
|
|
// Purpose: Provide PPC40x I/O functions
|
49 |
|
|
// Description:
|
50 |
|
|
// Usage: Included via the architecture register header:
|
51 |
|
|
// #include <cyg/hal/hal_io.h>
|
52 |
|
|
// ...
|
53 |
|
|
//
|
54 |
|
|
//
|
55 |
|
|
//####DESCRIPTIONEND####
|
56 |
|
|
//
|
57 |
|
|
//==========================================================================
|
58 |
|
|
|
59 |
|
|
#include CYGBLD_HAL_PLF_IO_H
|
60 |
|
|
|
61 |
|
|
#ifdef CYGHWR_HAL_POWERPC_PPC405_PCI
|
62 |
|
|
// These must be defined by the platform
|
63 |
|
|
#if !defined(CYG_PCI_MAX_BUS)
|
64 |
|
|
#error "Missing CYG_PCI_MAX_BUS platform definition"
|
65 |
|
|
#endif
|
66 |
|
|
#if !defined(CYG_PCI_MIN_DEV)
|
67 |
|
|
#error "Missing CYG_PCI_MIN_DEV platform definition"
|
68 |
|
|
#endif
|
69 |
|
|
#if !defined(CYG_PCI_MAX_DEV)
|
70 |
|
|
#error "Missing CYG_PCI_MAX_DEV platform definition"
|
71 |
|
|
#endif
|
72 |
|
|
#if !defined(HAL_PCI_ALLOC_BASE_MEMORY)
|
73 |
|
|
#error "Missing HAL_PCI_ALLOC_BASE_MEMORY platform definition"
|
74 |
|
|
#endif
|
75 |
|
|
#if !defined(HAL_PCI_ALLOC_BASE_IO)
|
76 |
|
|
#error "Missing HAL_PCI_ALLOC_BASE_IO platform definition"
|
77 |
|
|
#endif
|
78 |
|
|
#if !defined(HAL_PCI_PHYSICAL_MEMORY_BASE)
|
79 |
|
|
#error "Missing HAL_PCI_PHYSICAL_MEMORY_BASE platform definition"
|
80 |
|
|
#endif
|
81 |
|
|
#if !defined(HAL_PCI_PHYSICAL_IO_BASE)
|
82 |
|
|
#error "Missing HAL_PCI_PHYSICAL_IO_BASE platform definition"
|
83 |
|
|
#endif
|
84 |
|
|
//#if !defined(CYGMEM_SECTION_pci_window)
|
85 |
|
|
//#error "Missing CYGMEM_SECTION_pci_window platform definition"
|
86 |
|
|
//#endif
|
87 |
|
|
//#if !defined(CYGMEM_SECTION_pci_window_SIZE)
|
88 |
|
|
//#error "Missing CYGMEM_SECTION_pci_window_SIZE platform definition"
|
89 |
|
|
//#endif
|
90 |
|
|
|
91 |
|
|
// Initialize the PCI environment
|
92 |
|
|
externC void hal_ppc405_pci_init(void);
|
93 |
|
|
#define HAL_PCI_INIT() \
|
94 |
|
|
hal_ppc405_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 hal_ppc405_pci_translate_interrupt(int bus, int devfn, int *vec, int *valid);
|
99 |
|
|
#define HAL_PCI_TRANSLATE_INTERRUPT( __bus, __devfn, __vec, __valid) \
|
100 |
|
|
hal_ppc405_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 hal_ppc405_pci_cfg_read_uint8(int bus, int dev, int offset);
|
105 |
|
|
#define HAL_PCI_CFG_READ_UINT8( __bus, __devfn, __offset, __val ) \
|
106 |
|
|
__val = hal_ppc405_pci_cfg_read_uint8(__bus, __devfn, __offset)
|
107 |
|
|
|
108 |
|
|
externC cyg_uint16 hal_ppc405_pci_cfg_read_uint16(int bus, int dev, int offset);
|
109 |
|
|
#define HAL_PCI_CFG_READ_UINT16( __bus, __devfn, __offset, __val ) \
|
110 |
|
|
__val = hal_ppc405_pci_cfg_read_uint16(__bus, __devfn, __offset)
|
111 |
|
|
|
112 |
|
|
externC cyg_uint32 hal_ppc405_pci_cfg_read_uint32(int bus, int dev, int offset);
|
113 |
|
|
#define HAL_PCI_CFG_READ_UINT32( __bus, __devfn, __offset, __val ) \
|
114 |
|
|
__val = hal_ppc405_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 hal_ppc405_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 |
|
|
hal_ppc405_pci_cfg_write_uint8(__bus, __devfn, __offset, __val)
|
121 |
|
|
|
122 |
|
|
externC void hal_ppc405_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 |
|
|
hal_ppc405_pci_cfg_write_uint16(__bus, __devfn, __offset, __val)
|
125 |
|
|
|
126 |
|
|
externC void hal_ppc405_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 |
|
|
hal_ppc405_pci_cfg_write_uint32(__bus, __devfn, __offset, __val)
|
129 |
|
|
#endif // CYGHWR_HAL_POWERPC_PPC405_PCI
|
130 |
|
|
|
131 |
|
|
static __inline__ unsigned long
|
132 |
|
|
_le32(unsigned long val)
|
133 |
|
|
{
|
134 |
|
|
return (((val & 0x000000FF) << 24) |
|
135 |
|
|
((val & 0x0000FF00) << 8) |
|
136 |
|
|
((val & 0x00FF0000) >> 8) |
|
137 |
|
|
((val & 0xFF000000) >> 24));
|
138 |
|
|
}
|
139 |
|
|
|
140 |
|
|
static __inline__ unsigned short
|
141 |
|
|
_le16(unsigned short val)
|
142 |
|
|
{
|
143 |
|
|
return (((val & 0x000000FF) << 8) |
|
144 |
|
|
((val & 0x0000FF00) >> 8));
|
145 |
|
|
}
|
146 |
|
|
|
147 |
|
|
#define HAL_WRITE_UINT32LE(_addr_, _val_) \
|
148 |
|
|
HAL_WRITE_UINT32(_addr_, _le32(_val_))
|
149 |
|
|
#define HAL_WRITE_UINT16LE(_addr_, _val_) \
|
150 |
|
|
HAL_WRITE_UINT16(_addr_, _le16(_val_))
|
151 |
|
|
#define HAL_WRITE_UINT8LE(_addr_, _val_) \
|
152 |
|
|
HAL_WRITE_UINT8(_addr_, _val_)
|
153 |
|
|
#define HAL_READ_UINT32LE(_addr_, _val_) \
|
154 |
|
|
{ \
|
155 |
|
|
HAL_READ_UINT32(_addr_, _val_); \
|
156 |
|
|
_val_ = _le32(_val_); \
|
157 |
|
|
}
|
158 |
|
|
#define HAL_READ_UINT16LE(_addr_, _val_) \
|
159 |
|
|
{ \
|
160 |
|
|
HAL_READ_UINT16(_addr_, _val_); \
|
161 |
|
|
_val_ = _le16(_val_); \
|
162 |
|
|
}
|
163 |
|
|
#define HAL_READ_UINT8LE(_addr_, _val_) \
|
164 |
|
|
HAL_READ_UINT8(_addr_, _val_)
|
165 |
|
|
|
166 |
|
|
//-----------------------------------------------------------------------------
|
167 |
|
|
// Additional functions exported by HAL (no good place to define them!)
|
168 |
|
|
//
|
169 |
|
|
#if !defined(__ASSEMBLER__)
|
170 |
|
|
#if defined(CYGHWR_HAL_POWERPC_PPC4XX_405) || defined(CYGHWR_HAL_POWERPC_PPC4XX_405GP) || defined(CYGHWR_HAL_POWERPC_PPC4XX_405EP)
|
171 |
|
|
|
172 |
|
|
externC bool hal_ppc405_i2c_put_bytes(int addr, cyg_uint8 *val, int len);
|
173 |
|
|
externC bool hal_ppc405_i2c_get_bytes(int addr, cyg_uint8 *val, int len);
|
174 |
|
|
#endif
|
175 |
|
|
#endif
|
176 |
|
|
|
177 |
|
|
//-----------------------------------------------------------------------------
|
178 |
|
|
#endif // ifdef CYGONCE_HAL_VAR_IO_H
|
179 |
|
|
// End of var_io.h
|