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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [arm/] [arm9/] [excalibur/] [v2_0/] [src/] [excalibur_misc.c] - Blame information for rev 27

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

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      excalibur_misc.c
4
//
5
//      HAL misc board support code for ARM9/EXCALIBUR
6
//
7
//==========================================================================
8
//####ECOSGPLCOPYRIGHTBEGIN####
9
// -------------------------------------------
10
// This file is part of eCos, the Embedded Configurable Operating System.
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under
14
// the terms of the GNU General Public License as published by the Free
15
// Software Foundation; either version 2 or (at your option) any later version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//==========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):    gthomas
44
// Contributors: gthomas, jskov
45
// Date:         2001-08-06
46
// Purpose:      HAL board support
47
// Description:  Implementations of HAL board interfaces
48
//
49
//####DESCRIPTIONEND####
50
//
51
//==========================================================================
52
 
53
#include <pkgconf/hal.h>
54
#include <pkgconf/system.h>
55
#include CYGBLD_HAL_PLATFORM_H
56
 
57
#include <cyg/infra/cyg_type.h>         // base types
58
#include <cyg/infra/cyg_trac.h>         // tracing macros
59
#include <cyg/infra/cyg_ass.h>          // assertion macros
60
 
61
#include <cyg/hal/hal_io.h>             // IO macros
62
#include <cyg/hal/hal_arch.h>           // Register state info
63
#include <cyg/hal/hal_diag.h>
64
#include <cyg/hal/hal_intr.h>           // Interrupt names
65
#include <cyg/hal/hal_cache.h>
66
#include <cyg/hal/excalibur.h>          // Platform specifics
67
 
68
#include <cyg/infra/diag.h>             // diag_printf
69
 
70
#include <string.h> // memset
71
 
72
// -------------------------------------------------------------------------
73
// MMU initialization:
74
// 
75
// These structures are laid down in memory to define the translation
76
// table.
77
// 
78
 
79
// ARM Translation Table Base Bit Masks
80
#define ARM_TRANSLATION_TABLE_MASK               0xFFFFC000
81
 
82
// ARM Domain Access Control Bit Masks
83
#define ARM_ACCESS_TYPE_NO_ACCESS(domain_num)    (0x0 << (domain_num)*2)
84
#define ARM_ACCESS_TYPE_CLIENT(domain_num)       (0x1 << (domain_num)*2)
85
#define ARM_ACCESS_TYPE_MANAGER(domain_num)      (0x3 << (domain_num)*2)
86
 
87
struct ARM_MMU_FIRST_LEVEL_FAULT {
88
    int id : 2;
89
    int sbz : 30;
90
};
91
#define ARM_MMU_FIRST_LEVEL_FAULT_ID 0x0
92
 
93
struct ARM_MMU_FIRST_LEVEL_PAGE_TABLE {
94
    int id : 2;
95
    int imp : 2;
96
    int domain : 4;
97
    int sbz : 1;
98
    int base_address : 23;
99
};
100
#define ARM_MMU_FIRST_LEVEL_PAGE_TABLE_ID 0x1
101
 
102
struct ARM_MMU_FIRST_LEVEL_SECTION {
103
    int id : 2;
104
    int b : 1;
105
    int c : 1;
106
    int imp : 1;
107
    int domain : 4;
108
    int sbz0 : 1;
109
    int ap : 2;
110
    int sbz1 : 8;
111
    int base_address : 12;
112
};
113
#define ARM_MMU_FIRST_LEVEL_SECTION_ID 0x2
114
 
115
struct ARM_MMU_FIRST_LEVEL_RESERVED {
116
    int id : 2;
117
    int sbz : 30;
118
};
119
#define ARM_MMU_FIRST_LEVEL_RESERVED_ID 0x3
120
 
121
#define ARM_MMU_FIRST_LEVEL_DESCRIPTOR_ADDRESS(ttb_base, table_index) \
122
   (unsigned long *)((unsigned long)(ttb_base) + ((table_index) << 2))
123
 
124
#define ARM_FIRST_LEVEL_PAGE_TABLE_SIZE 0x4000
125
 
126
#define ARM_MMU_SECTION(ttb_base, actual_base, virtual_base,              \
127
                        cacheable, bufferable, perm)                      \
128
    CYG_MACRO_START                                                       \
129
        register union ARM_MMU_FIRST_LEVEL_DESCRIPTOR desc;               \
130
                                                                          \
131
        desc.word = 0;                                                    \
132
        desc.section.id = ARM_MMU_FIRST_LEVEL_SECTION_ID;                 \
133
        desc.section.imp = 1;                                             \
134
        desc.section.domain = 0;                                          \
135
        desc.section.c = (cacheable);                                     \
136
        desc.section.b = (bufferable);                                    \
137
        desc.section.ap = (perm);                                         \
138
        desc.section.base_address = (actual_base);                        \
139
        *ARM_MMU_FIRST_LEVEL_DESCRIPTOR_ADDRESS(ttb_base, (virtual_base)) \
140
                            = desc.word;                                  \
141
    CYG_MACRO_END
142
 
143
#define X_ARM_MMU_SECTION(abase,vbase,size,cache,buff,access)      \
144
    { int i; int j = abase; int k = vbase;                         \
145
      for (i = size; i > 0 ; i--,j++,k++)                          \
146
      {                                                            \
147
        ARM_MMU_SECTION(ttb_base, j, k, cache, buff, access);      \
148
      }                                                            \
149
    }
150
 
151
union ARM_MMU_FIRST_LEVEL_DESCRIPTOR {
152
    unsigned long word;
153
    struct ARM_MMU_FIRST_LEVEL_FAULT fault;
154
    struct ARM_MMU_FIRST_LEVEL_PAGE_TABLE page_table;
155
    struct ARM_MMU_FIRST_LEVEL_SECTION section;
156
    struct ARM_MMU_FIRST_LEVEL_RESERVED reserved;
157
};
158
 
159
#define ARM_UNCACHEABLE                         0
160
#define ARM_CACHEABLE                           1
161
#define ARM_UNBUFFERABLE                        0
162
#define ARM_BUFFERABLE                          1
163
 
164
#define ARM_ACCESS_PERM_NONE_NONE               0
165
#define ARM_ACCESS_PERM_RO_NONE                 0
166
#define ARM_ACCESS_PERM_RO_RO                   0
167
#define ARM_ACCESS_PERM_RW_NONE                 1
168
#define ARM_ACCESS_PERM_RW_RO                   2
169
#define ARM_ACCESS_PERM_RW_RW                   3
170
 
171
void
172
hal_mmu_init(void)
173
{
174
    unsigned long ttb_base = EXCALIBUR_SDRAM_PHYS_BASE + 0x4000;
175
    unsigned long i;
176
 
177
    // Set the TTB register
178
    asm volatile ("mcr  p15,0,%0,c2,c0,0" : : "r"(ttb_base) /*:*/);
179
 
180
    // Set the Domain Access Control Register
181
    i = ARM_ACCESS_TYPE_MANAGER(0)    |
182
        ARM_ACCESS_TYPE_NO_ACCESS(1)  |
183
        ARM_ACCESS_TYPE_NO_ACCESS(2)  |
184
        ARM_ACCESS_TYPE_NO_ACCESS(3)  |
185
        ARM_ACCESS_TYPE_NO_ACCESS(4)  |
186
        ARM_ACCESS_TYPE_NO_ACCESS(5)  |
187
        ARM_ACCESS_TYPE_NO_ACCESS(6)  |
188
        ARM_ACCESS_TYPE_NO_ACCESS(7)  |
189
        ARM_ACCESS_TYPE_NO_ACCESS(8)  |
190
        ARM_ACCESS_TYPE_NO_ACCESS(9)  |
191
        ARM_ACCESS_TYPE_NO_ACCESS(10) |
192
        ARM_ACCESS_TYPE_NO_ACCESS(11) |
193
        ARM_ACCESS_TYPE_NO_ACCESS(12) |
194
        ARM_ACCESS_TYPE_NO_ACCESS(13) |
195
        ARM_ACCESS_TYPE_NO_ACCESS(14) |
196
        ARM_ACCESS_TYPE_NO_ACCESS(15);
197
    asm volatile ("mcr  p15,0,%0,c3,c0,0" : : "r"(i) /*:*/);
198
 
199
    // First clear all TT entries - ie Set them to Faulting
200
    memset((void *)ttb_base, 0, ARM_FIRST_LEVEL_PAGE_TABLE_SIZE);
201
 
202
    // Memory layout. This is set up in hal_platform_setup.h with
203
    // definitions from excalibur.h
204
    //
205
    //   SDRAM0_BASE_ADDRESS:    0x00000000, 64M
206
    //   SDRAM1_BASE_ADDRESS:    0x04000000, 64M
207
    //   SPSRAM0_BASE_ADDRESS:   0x08000000, 128k
208
    //   SPSRAM1_BASE_ADDRESS:   0x08020000, 128k
209
    //   DPSRAM0_BASE_ADDRESS:   0x08040000, 64k
210
    //   DPSRAM1_BASE_ADDRESS:   0x08050000, 64k
211
    //   PLD1_BASE_ADDRESS:      0x0f000000, 16k
212
    //   EBI0_BASE_ADDRESS:      0x40000000, 16M
213
    //   REGISTERS_BASE_ADDRESS: 0x7fffc000, 16k
214
    //   PLD0_BASE_ADDRESS:      0x80000000, 128k
215
 
216
    //               Actual  Virtual  Size   Attributes                                                    Function
217
    //               Base     Base     MB      cached?           buffered?        access permissions
218
    //             xxx00000  xxx00000
219
    X_ARM_MMU_SECTION(0x000,  0x000,   128,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); // SDRAM (& LCD registers?)
220
    X_ARM_MMU_SECTION(0x080,  0x080,     1,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); // SRAM regions
221
    X_ARM_MMU_SECTION(0x0f0,  0x0f0,     1,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); // PLD1
222
    X_ARM_MMU_SECTION(0x400,  0x400,    16,  ARM_UNCACHEABLE, ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); // Boot flash ROMspace CS0
223
    X_ARM_MMU_SECTION(0x800,  0x800,     1,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); // PLD0/2/3
224
    X_ARM_MMU_SECTION(0x7ff,  0x7ff,     1,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); // EXCALIBUR registers
225
}
226
 
227
//----------------------------------------------------------------------------
228
// Platform specific initialization
229
 
230
void
231
plf_hardware_init(void)
232
{
233
    // Disable PLD interrupts
234
    HAL_WRITE_UINT32(EXCALIBUR_INT_MASK_CLEAR,
235
                     EXCALIBUR_INT_SOURCE_P0 | EXCALIBUR_INT_SOURCE_P1 |
236
                     EXCALIBUR_INT_SOURCE_P2 | EXCALIBUR_INT_SOURCE_P3 |
237
                     EXCALIBUR_INT_SOURCE_P4 | EXCALIBUR_INT_SOURCE_P5);
238
    // Make PLD0 generate IRQ
239
    HAL_WRITE_UINT32(EXCALIBUR_INT_PRIORITY_0, 0);
240
}
241
 
242
// -------------------------------------------------------------------------
243
void
244
hal_clock_initialize(cyg_uint32 period)
245
{
246
    cyg_uint32 cr;
247
 
248
    HAL_WRITE_UINT32(EXCALIBUR_TIMER0_CR, 0);
249
    HAL_WRITE_UINT32(EXCALIBUR_TIMER0_PRE, CYGNUM_HAL_ARM_EXCALIBUR_TIMER_PRESCALE - 1);
250
    HAL_WRITE_UINT32(EXCALIBUR_TIMER0_LIMIT, period);
251
    cr = EXCALIBUR_TIMER_CR_MODE_HEARBEAT | EXCALIBUR_TIMER_CR_IE;
252
    HAL_WRITE_UINT32(EXCALIBUR_TIMER0_CR, cr);
253
    HAL_WRITE_UINT32(EXCALIBUR_TIMER0_CR, cr | EXCALIBUR_TIMER_CR_S);
254
 
255
    // Unmask timer 0 interrupt
256
    HAL_INTERRUPT_CONFIGURE( CYGNUM_HAL_INTERRUPT_RTC, 1, 1 );
257
    HAL_INTERRUPT_UNMASK( CYGNUM_HAL_INTERRUPT_RTC );
258
}
259
 
260
// This routine is called during a clock interrupt.
261
void
262
hal_clock_reset(cyg_uint32 vector, cyg_uint32 period)
263
{
264
    cyg_uint32 cr;
265
 
266
    // Clear pending interrupt bit
267
    HAL_READ_UINT32(EXCALIBUR_TIMER0_CR, cr);
268
    cr |= EXCALIBUR_TIMER_CR_CI;
269
    HAL_WRITE_UINT32(EXCALIBUR_TIMER0_CR, cr);
270
}
271
 
272
// Read the current value of the clock, returning the number of hardware
273
// "ticks" that have occurred (i.e. how far away the current value is from
274
// the start)
275
 
276
void
277
hal_clock_read(cyg_uint32 *pvalue)
278
{
279
    cyg_uint32 ctr;
280
 
281
    HAL_READ_UINT32(EXCALIBUR_TIMER0_READ, ctr);
282
    *pvalue = ctr;
283
}
284
 
285
//
286
// Delay for some number of micro-seconds
287
//
288
void
289
hal_delay_us(cyg_int32 usecs)
290
{
291
    // Use timer 2 
292
    cyg_uint32 cr;
293
    // Divide by 1000000 in two steps to preserve precision.
294
    cyg_uint32 wait_clocks = ((CYGNUM_HAL_ARM_EXCALIBUR_PERIPHERAL_CLOCK/100000)*usecs)/10;
295
 
296
    HAL_WRITE_UINT32(EXCALIBUR_TIMER1_CR, 0);
297
    HAL_WRITE_UINT32(EXCALIBUR_TIMER1_PRE, 0);
298
    HAL_WRITE_UINT32(EXCALIBUR_TIMER1_LIMIT, wait_clocks);
299
    cr = EXCALIBUR_TIMER_CR_MODE_ONE_SHOT|EXCALIBUR_TIMER_CR_CI;
300
    HAL_WRITE_UINT32(EXCALIBUR_TIMER1_CR, cr);
301
    HAL_WRITE_UINT32(EXCALIBUR_TIMER1_CR, cr | EXCALIBUR_TIMER_CR_S);
302
 
303
    // wait for start bit to clear
304
    do {
305
        HAL_READ_UINT32(EXCALIBUR_TIMER1_CR, cr);
306
    } while ((EXCALIBUR_TIMER_CR_S & cr) != 0);
307
 
308
    //clear interrupt flag
309
    HAL_WRITE_UINT32(EXCALIBUR_TIMER1_CR, 0);
310
}
311
 
312
// -------------------------------------------------------------------------
313
 
314
// This routine is called to respond to a hardware interrupt (IRQ).  It
315
// should interrogate the hardware and return the IRQ vector number.
316
int
317
hal_IRQ_handler(void)
318
{
319
    int vec;
320
    cyg_uint32 isr;
321
 
322
    HAL_READ_UINT32(EXCALIBUR_INT_REQUEST_STATUS, isr);
323
    for (vec = CYGNUM_HAL_INTERRUPT_PLD_0;
324
         vec <= CYGNUM_HAL_INTERRUPT_FAST_COMMS; vec++) {
325
        if (isr & (1<<vec)) {
326
            return vec;
327
        }
328
    }
329
 
330
    return CYGNUM_HAL_INTERRUPT_NONE;
331
}
332
 
333
//----------------------------------------------------------------------------
334
// Interrupt control
335
//
336
void
337
hal_interrupt_mask(int vector)
338
{
339
    CYG_ASSERT(vector <= CYGNUM_HAL_ISR_MAX &&
340
               vector >= CYGNUM_HAL_ISR_MIN , "Invalid vector");
341
 
342
    HAL_WRITE_UINT32(EXCALIBUR_INT_MASK_CLEAR, 1<<vector);
343
}
344
 
345
void
346
hal_interrupt_unmask(int vector)
347
{
348
    CYG_ASSERT(vector <= CYGNUM_HAL_ISR_MAX &&
349
               vector >= CYGNUM_HAL_ISR_MIN , "Invalid vector");
350
 
351
    HAL_WRITE_UINT32(EXCALIBUR_INT_MASK_SET, 1<<vector);
352
}
353
 
354
void
355
hal_interrupt_acknowledge(int vector)
356
{
357
    CYG_ASSERT(vector <= CYGNUM_HAL_ISR_MAX &&
358
               vector >= CYGNUM_HAL_ISR_MIN , "Invalid vector");
359
 
360
}
361
 
362
void
363
hal_interrupt_configure(int vector, int level, int up)
364
{
365
    CYG_ASSERT(vector <= CYGNUM_HAL_ISR_MAX &&
366
               vector >= CYGNUM_HAL_ISR_MIN, "Invalid vector");
367
    CYG_ASSERT(level || up, "Cannot do falling edge");
368
 
369
}
370
 
371
void
372
hal_interrupt_set_level(int vector, int level)
373
{
374
    cyg_uint32 reg;
375
    CYG_ASSERT(vector <= CYGNUM_HAL_ISR_MAX &&
376
               vector >= CYGNUM_HAL_ISR_MIN, "Invalid vector");
377
    CYG_ASSERT(level <= 63 && level >= 0, "Invalid level");
378
 
379
    HAL_READ_UINT32(EXCALIBUR_INT_PRIORITY_0+4*vector, reg);
380
    reg &= ~EXCALIBUR_INT_PRIORITY_LVL_mask;
381
    reg |= (level & EXCALIBUR_INT_PRIORITY_LVL_mask);
382
    HAL_WRITE_UINT32(EXCALIBUR_INT_PRIORITY_0+4*vector, reg);
383
}
384
 
385
#include CYGHWR_MEMORY_LAYOUT_H
386
typedef void code_fun(void);
387
void excalibur_program_new_stack(void *func)
388
{
389
    register CYG_ADDRESS stack_ptr asm("sp");
390
    register CYG_ADDRESS old_stack asm("r4");
391
    register code_fun *new_func asm("r0");
392
    old_stack = stack_ptr;
393
    stack_ptr = CYGMEM_REGION_ram + CYGMEM_REGION_ram_SIZE - sizeof(CYG_ADDRESS);
394
    new_func = (code_fun*)func;
395
    new_func();
396
    stack_ptr = old_stack;
397
    return;
398
}

powered by: WebSVN 2.1.0

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