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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [hal/] [arm/] [sa11x0/] [nano/] [current/] [include/] [nano.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_HAL_ARM_SA11X0_NANOENGINE_NANOENGINE_H
2
#define CYGONCE_HAL_ARM_SA11X0_NANOENGINE_NANOENGINE_H
3
 
4
/*=============================================================================
5
//
6
//      nano.h
7
//
8
//      Platform specific support (register layout, etc)
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 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):    gthomas
46
// Contributors: gthomas,hmt
47
// Date:         2001-02-12
48
// Purpose:      Intel SA1110/NanoEngine platform specific support routines
49
// Description:
50
// Usage:        #include <cyg/hal/nano.h>
51
//
52
//####DESCRIPTIONEND####
53
//
54
//===========================================================================*/
55
 
56
#include <pkgconf/system.h>
57
#include CYGHWR_MEMORY_LAYOUT_H
58
 
59
#include <cyg/hal/hal_sa11x0.h>
60
 
61
// 
62
// Signal assertion levels
63
//
64
#define SA1110_LOGIC_ONE(m)  (m & 0xFFFFFFFF)
65
#define SA1110_LOGIC_ZERO(m) (m & 0x00000000)
66
 
67
//
68
// SA1110/NanoEngine Control Status registers
69
//
70
 
71
//
72
// Special purpose GPIO interrupt mappings
73
//
74
 
75
//
76
// GPIO layout
77
//
78
// 0-19 unused
79
// 20-27 unused
80
// 28-31 not implemented
81
//
82
// BUT PCI action can make use of GPIO 21 and 22 - but that's all set up in
83
// HAL_PCI_INIT() below, as it should be.
84
 
85
#define SA1110_GPIO_GPDR_DEFAULT_VALUE 0 // No GPIO is used
86
 
87
#define SA1110_GPIO_GAFR_DEFAULT_VALUE 0 // No alternates
88
 
89
#define SA1110_GPIO_GRER_DEFAULT_VALUE 0 // No edge detection at all
90
#define SA1110_GPIO_GFER_DEFAULT_VALUE 0 // No edge detection at all
91
 
92
#define SA1110_GPIO_GPOSR_DEFAULT_VALUE 0xffffffff // Set all 1s
93
#define SA1110_GPIO_GPOCR_DEFAULT_VALUE 0x00000000 // and leave them set
94
 
95
// ------------------------------------------------------------------------
96
//
97
// Interrupt numbers
98
//
99
#define SA1110_GPIO_INTR_ETH0 0 // CYGNUM_HAL_INTERRUPT_GPIO0
100
#define SA1110_GPIO_INTR_ETH1 1 // CYGNUM_HAL_INTERRUPT_GPIO1
101
 
102
// ------------------------------------------------------------------------
103
//
104
// PCI stuff
105
 
106
#ifndef __ASSEMBLER__
107
#ifdef CYGPKG_IO_PCI
108
 
109
#define CYGHWR_HAL_ARM_NANO_PCI_MEM_MAP_BASE ((cyg_uint32)(&CYGMEM_SECTION_pci_window[0]))
110
#define CYGHWR_HAL_ARM_NANO_PCI_MEM_MAP_SIZE ((cyg_uint32)(CYGMEM_SECTION_pci_window_SIZE))
111
 
112
extern cyg_uint32 cyg_pci_window_real_base;
113
 
114
#define HAL_PCI_INIT() CYG_MACRO_START                                          \
115
    cyg_uint32 t;                                                               \
116
    /* Set up the DRAM system so that an alternate master can take control. */  \
117
    /* This is described in section 10.8 pp10-67..68 of the SA1110 book.    */  \
118
    /* This is how the nanoBridge allows the 82559 ethernet devices to      */  \
119
    /* access main memory.  Apparently.  So much for documentation.         */  \
120
                                                                                \
121
    /* Set GPIO pin direction: 21 out, 22 in.                               */  \
122
    t = *SA11X0_GPIO_PIN_DIRECTION;                                             \
123
    t |= SA11X0_GPIO_PIN_21;                                                    \
124
    t &=~SA11X0_GPIO_PIN_22;                                                    \
125
    *SA11X0_GPIO_PIN_DIRECTION = t;                                             \
126
                                                                                \
127
    /* Set alternate functions for GPIO 21 and 22.                          */  \
128
    t = *SA11X0_GPIO_ALTERNATE_FUNCTION;                                        \
129
    t |= SA11X0_GPIO_PIN_21 + SA11X0_GPIO_PIN_22;                               \
130
    *SA11X0_GPIO_ALTERNATE_FUNCTION = t;                                        \
131
                                                                                \
132
    /* Set the Test Unit Control Register to enable external memory mastery */  \
133
    t = *SA11X0_TUCR;                                                           \
134
    t &=~SA11X0_TUCR_RESERVED_BITS;                                             \
135
    t |= SA11X0_TUCR_EXTERNAL_MEMORY_MASTER;                                    \
136
    *SA11X0_TUCR = t;                                                           \
137
                                                                                \
138
    /* Set the interrupts on GPIO0 and GPIO1 to be falling-edge */              \
139
                                                                                \
140
    /* GPIO0 and GPIO1 be inputs: */                                            \
141
    t = *SA11X0_GPIO_PIN_DIRECTION;                                             \
142
    t &=~(SA11X0_GPIO_PIN_0 + SA11X0_GPIO_PIN_1);                               \
143
    *SA11X0_GPIO_PIN_DIRECTION = t;                                             \
144
    /* no rising edge */                                                        \
145
    t = *SA11X0_GPIO_RISING_EDGE_DETECT;                                        \
146
    t &=~(SA11X0_GPIO_PIN_0 + SA11X0_GPIO_PIN_1);                               \
147
    *SA11X0_GPIO_RISING_EDGE_DETECT = t;                                        \
148
    /* falling edge on */                                                       \
149
    t = *SA11X0_GPIO_FALLING_EDGE_DETECT;                                       \
150
    t |= (SA11X0_GPIO_PIN_0 + SA11X0_GPIO_PIN_1);                               \
151
    *SA11X0_GPIO_FALLING_EDGE_DETECT = t;                                       \
152
    /* cancel any pending edges */                                              \
153
    t = (SA11X0_GPIO_PIN_0 + SA11X0_GPIO_PIN_1);                                \
154
    *SA11X0_GPIO_EDGE_DETECT_STATUS = t;                                        \
155
                                                                                \
156
    /* and disconnect ethernet devices from the PCI bus so that they */         \
157
    /* respond to being scanned a second time - because RedBoot will */         \
158
    /* likely have enabled one or both of them already.              */         \
159
    /* We know that the two ethers are device #1 and #2:             */         \
160
    t = 0;                                                                      \
161
    HAL_PCI_CFG_WRITE_UINT16( 0, CYG_PCI_DEV_MAKE_DEVFN(1,0),                   \
162
                              CYG_PCI_CFG_COMMAND,            t );              \
163
    t = 0;                                                                      \
164
    HAL_PCI_CFG_WRITE_UINT16( 0, CYG_PCI_DEV_MAKE_DEVFN(2,0),                   \
165
                              CYG_PCI_CFG_COMMAND,            t );              \
166
CYG_MACRO_END
167
 
168
// This is nasty in the nanoBridge; it does NOT correctly return -1's for
169
// empty config slots, it lies and gives the impression of there being lots
170
// of extra nothing devices.  So we have to fake it.
171
 
172
// Compute address necessary to access PCI config space for the given bus
173
// and device.  With faked gaps...
174
#define HAL_PCI_CONFIG_ADDRESS( __bus, __devfn, __offset )                      \
175
    ({                                                                          \
176
    cyg_uint32 __addr;                                                          \
177
    cyg_uint32 __dev = CYG_PCI_DEV_GET_DEV(__devfn);                            \
178
    __addr = (0 == __bus) ? 0x18A00000 : 0xffffffffu;                           \
179
    __addr |= (1 == __dev || 2 == __dev) ? (__dev << 16) :  0xffffffffu;        \
180
    __addr |= CYG_PCI_DEV_GET_FN(__devfn) << 8;                                 \
181
    __addr |= __offset;                                                         \
182
    __addr;                                                                     \
183
    })
184
 
185
// Not used.  For experiments, or for a more general PCI bus...
186
#define scan_all_HAL_PCI_CONFIG_ADDRESS( __bus, __devfn, __offset )             \
187
    ({                                                                          \
188
    cyg_uint32 __addr;                                                          \
189
    cyg_uint32 __dev = CYG_PCI_DEV_GET_DEV(__devfn);                            \
190
    __addr = (0 == __bus) ? 0x18A00000 : 0xffffffffu;                           \
191
    __addr |= __dev << 16;                                                      \
192
    __addr |= CYG_PCI_DEV_GET_FN(__devfn) << 8;                                 \
193
    __addr |= __offset;                                                         \
194
    __addr;                                                                     \
195
    })
196
 
197
#define HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, __action, __type )   \
198
{                                                                                       \
199
    cyg_uint32 __doaddr = HAL_PCI_CONFIG_ADDRESS( __bus, __devfn, __offset );           \
200
    if ( 0xffffffffu == __doaddr )                                                      \
201
        __val = (__type)0xffffffffu;                                                    \
202
    else {                                                                              \
203
        __action( __doaddr, __val );                                                    \
204
        /* nasty kludge to detect the absence of a second eth device on nanoEngines     \
205
         * rather than commEngines. The vendor should never be 0 or 256. */             \
206
        if ( (__offset) == CYG_PCI_CFG_VENDOR && ((__val) == 0 || (__val) == 256) )     \
207
            __val = (__type)0xffffffffu;                                                \
208
    }                                                                                   \
209
}
210
 
211
// Read/write a value from the PCI configuration space of the appropriate
212
// size at an address composed from the bus, devfn and offset.
213
#define HAL_PCI_CFG_READ_UINT8( __bus, __devfn, __offset, __val )   \
214
     HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, HAL_READ_UINT8  , cyg_uint8  )
215
#define HAL_PCI_CFG_READ_UINT16( __bus, __devfn, __offset, __val )  \
216
     HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, HAL_READ_UINT16 , cyg_uint16 )
217
#define HAL_PCI_CFG_READ_UINT32( __bus, __devfn, __offset, __val )  \
218
     HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, HAL_READ_UINT32 , cyg_uint32 )
219
#define HAL_PCI_CFG_WRITE_UINT8( __bus, __devfn, __offset, __val )  \
220
     HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, HAL_WRITE_UINT8 , cyg_uint8  )
221
#define HAL_PCI_CFG_WRITE_UINT16( __bus, __devfn, __offset, __val ) \
222
     HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, HAL_WRITE_UINT16, cyg_uint16 )
223
#define HAL_PCI_CFG_WRITE_UINT32( __bus, __devfn, __offset, __val ) \
224
     HAL_PCI_DO_CONFIG_ACCESS( __bus, __devfn, __offset, __val, HAL_WRITE_UINT32, cyg_uint32 )
225
 
226
//-----------------------------------------------------------------------------
227
// Resources
228
 
229
// Map PCI device resources starting from these addresses in PCI space.
230
#define HAL_PCI_ALLOC_BASE_MEMORY       (0x00000000)
231
#define HAL_PCI_ALLOC_BASE_IO           (0x00000000)
232
 
233
// This is where the PCI spaces are mapped in the CPU's address space.
234
#define HAL_PCI_PHYSICAL_MEMORY_BASE    (0x18620000)
235
#define HAL_PCI_PHYSICAL_IO_BASE        (0x18200000)
236
 
237
// Translate the PCI interrupt requested by the device (INTA#, INTB#,
238
// INTC# or INTD#) to the associated CPU interrupt (i.e., HAL vector).
239
#define HAL_PCI_TRANSLATE_INTERRUPT( __bus, __devfn, __vec, __valid) {  \
240
    cyg_uint32 __dev = CYG_PCI_DEV_GET_DEV(__devfn);                    \
241
    __valid = false;                                                    \
242
    if ( 1 == __dev || 2 == __dev ) {                                   \
243
        __vec = ( 1 == __dev ) ? SA1110_GPIO_INTR_ETH0                  \
244
                               : SA1110_GPIO_INTR_ETH1;                 \
245
        __valid = true;                                                 \
246
    }                                                                   \
247
}
248
 
249
 
250
#endif // CYGPKG_IO_PCI
251
#endif // #ifndef __ASSEMBLER__
252
// ------------------------------------------------------------------------
253
 
254
#endif // CYGONCE_HAL_ARM_SA11X0_NANOENGINE_NANOENGINE_H
255
// EOF nano.h

powered by: WebSVN 2.1.0

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