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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [arm/] [sa11x0/] [flexanet/] [v2_0/] [src/] [flexanet_misc.c] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      flexanet_misc.c
4
//
5
//      HAL misc board support code for StrongARM SA1110/Flexanet
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):    Jordi Colomer
44
// Contributors: Jordi Colomer <jco@ict.es>
45
// Date:         2001-06-15
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/hal_sa11x0.h>         // Hardware definitions
67
#include <cyg/hal/flexanet.h>            // Platform specifics
68
 
69
#include <cyg/infra/diag.h>             // diag_printf
70
 
71
// All the MM table layout is here:
72
#include <cyg/hal/hal_mm.h>
73
 
74
#include <string.h> // memset
75
 
76
void
77
hal_mmu_init(void)
78
{
79
    unsigned long ttb_base = SA11X0_RAM_BANK0_BASE + 0x4000;
80
    unsigned long i;
81
 
82
    /*
83
     * Set the TTB register
84
     */
85
    asm volatile ("mcr  p15,0,%0,c2,c0,0" : : "r"(ttb_base) /*:*/);
86
 
87
    /*
88
     * Set the Domain Access Control Register
89
     */
90
    i = ARM_ACCESS_DACR_DEFAULT;
91
    asm volatile ("mcr  p15,0,%0,c3,c0,0" : : "r"(i) /*:*/);
92
 
93
    /*
94
     * First clear all TT entries - ie Set them to Faulting
95
     */
96
    memset((void *)ttb_base, 0, ARM_FIRST_LEVEL_PAGE_TABLE_SIZE);
97
 
98
    /*               Actual  Virtual  Size   Attributes                                                    Function  */
99
    /*               Base     Base     MB      cached?           buffered?        access permissions                 */
100
    /*             xxx00000  xxx00000                                                                                */
101
    X_ARM_MMU_SECTION(0x000,  0x500,    32,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* Boot flash ROMspace */
102
    X_ARM_MMU_SECTION(0x100,  0x100,   128,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* Core Board Registers */
103
    X_ARM_MMU_SECTION(0x180,  0x180,    16,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* Ethernet Adaptor */
104
    X_ARM_MMU_SECTION(0x200,  0x200,   512,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* PCMCIA Socket A */
105
    X_ARM_MMU_SECTION(0x300,  0x300,   512,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* PCMCIA Sockets B */
106
    X_ARM_MMU_SECTION(0x800,  0x800, 0x400,  ARM_UNCACHEABLE, ARM_UNBUFFERABLE, ARM_ACCESS_PERM_RW_RW); /* StrongARM(R) Registers */
107
    X_ARM_MMU_SECTION(0xC00,      0,    32,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* DRAM Bank 0 */
108
    X_ARM_MMU_SECTION(0xC00,  0xC00,    32,  ARM_UNCACHEABLE, ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* DRAM Bank 0 */
109
    X_ARM_MMU_SECTION(0xE00,  0xE00,   128,  ARM_CACHEABLE,   ARM_BUFFERABLE,   ARM_ACCESS_PERM_RW_RW); /* Zeros (Cache Clean) Bank */
110
 
111
}
112
 
113
//
114
// Board control register support
115
//   Update the board control register (write only).  Only the bits
116
// specified by 'mask' are changed to 'value'.
117
//
118
 
119
void
120
flexanet_BCR(unsigned long mask, unsigned long value)
121
{
122
    _flexanet_BCR = (_flexanet_BCR & ~mask) | (mask & value);
123
    *SA1110_BOARD_CONTROL = _flexanet_BCR;
124
}
125
 
126
//
127
// Platform specific initialization
128
//
129
 
130
void
131
plf_hardware_init(void)
132
{
133
    // Force "alternate" use of GPIO pins used for LCD screen
134
    *SA11X0_GPIO_ALTERNATE_FUNCTION |= 0x000003FC;  // Bits 2..9
135
    *SA11X0_GPIO_PIN_DIRECTION |= 0x000003FC;  // Bits 2..9
136
    *SA11X0_GPIO_PIN_OUTPUT_CLEAR = 0x000003FC;  // Bits 2..9
137
 
138
    // Configure the ethernet GPIO interrupt to falling-edge
139
    HAL_INTERRUPT_CONFIGURE(SA1110_IRQ_GPIO_ETH, 0, 0);
140
}
141
 
142
#include CYGHWR_MEMORY_LAYOUT_H
143
typedef void code_fun(void);
144
void flexanet_program_new_stack(void *func)
145
{
146
    register CYG_ADDRESS stack_ptr asm("sp");
147
    register CYG_ADDRESS old_stack asm("r4");
148
    register code_fun *new_func asm("r0");
149
    old_stack = stack_ptr;
150
    stack_ptr = CYGMEM_REGION_ram + CYGMEM_REGION_ram_SIZE - sizeof(CYG_ADDRESS);
151
    new_func = (code_fun*)func;
152
    new_func();
153
    stack_ptr = old_stack;
154
    return;
155
}
156
 
157
// ------------------------------------------------------------------------
158
// EOF flexanet_misc.c

powered by: WebSVN 2.1.0

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