summaryrefslogtreecommitdiff
path: root/ecos/packages/hal/powerpc/adder/current/src/hal_aux.c
blob: a1a2c249c21456ebf3a4de88337b34ce2132576e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//=============================================================================
//
//      hal_aux.c
//
//      HAL auxiliary objects and code; per platform
//
//=============================================================================
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
// -------------------------------------------                              
// This file is part of eCos, the Embedded Configurable Operating System.   
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
//
// eCos is free software; you can redistribute it and/or modify it under    
// the terms of the GNU General Public License as published by the Free     
// Software Foundation; either version 2 or (at your option) any later      
// version.                                                                 
//
// eCos is distributed in the hope that it will be useful, but WITHOUT      
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or    
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License    
// for more details.                                                        
//
// You should have received a copy of the GNU General Public License        
// along with eCos; if not, write to the Free Software Foundation, Inc.,    
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.            
//
// As a special exception, if other files instantiate templates or use      
// macros or inline functions from this file, or you compile this file      
// and link it with other works to produce a work based on this file,       
// this file does not by itself cause the resulting work to be covered by   
// the GNU General Public License. However the source code for this file    
// must still be made available in accordance with section (3) of the GNU   
// General Public License v2.                                               
//
// This exception does not invalidate any other reasons why a work based    
// on this file might be covered by the GNU General Public License.         
// -------------------------------------------                              
// ####ECOSGPLCOPYRIGHTEND####                                              
//=============================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s):   hmt
// Contributors:hmt
// Date:        1999-06-08
// Purpose:     HAL aux objects: startup tables.
// Description: Tables for per-platform initialization
//
//####DESCRIPTIONEND####
//
//=============================================================================

#include <pkgconf/hal.h>
#include <pkgconf/hal_powerpc_quicc.h>

#include <cyg/infra/cyg_type.h>
#include <cyg/hal/hal_mem.h>            // HAL memory definitions
#define CYGARC_HAL_COMMON_EXPORT_CPU_MACROS
#include <cyg/hal/ppc_regs.h>
#include <cyg/hal/quicc/ppc8xx.h>
#include <cyg/hal/hal_if.h>             // hal_if_init
#include <cyg/hal/hal_io.h>
#include CYGHWR_MEMORY_LAYOUT_H

// The memory map is weakly defined, allowing the application to redefine
// it if necessary. The regions defined below are the minimum requirements.
CYGARC_MEMDESC_TABLE CYGBLD_ATTRIB_WEAK = {
    // Mapping for the Adder 85x development boards
    CYGARC_MEMDESC_CACHE(   0xfe000000, 0x00800000 ), // ROM region
    CYGARC_MEMDESC_NOCACHE( 0xff000000, 0x00100000 ), // MCP registers
    CYGARC_MEMDESC_NOCACHE( 0xfa000000, 0x00400000 ), // Control/Status+LEDs
    CYGARC_MEMDESC_CACHE(   CYGMEM_REGION_ram, CYGMEM_REGION_ram_SIZE ), // Main memory

    CYGARC_MEMDESC_TABLE_END
};

void
_adder_set_leds(int pat);

//--------------------------------------------------------------------------
// Platform init code.
void
hal_platform_init(void)
{
    volatile EPPC *eppc = (volatile EPPC *)eppc_base();

    // Special routing information for CICR
    eppc->cpmi_cicr &= ~0xFF0000;  // Routing bits
    eppc->cpmi_cicr |= 0x240000;   // SCC2, SCC3 on "normal" bit positions

#if defined(CYGHWR_HAL_POWERPC_ADDER_I)
    eppc->pip_pbpar &= ~0x0000400E;   // PB29..30 AS GPIO
    eppc->pip_pbdir |=  0x0000400E;
    eppc->pip_pbdat  =  0x00004000;
#endif

#if defined(CYGHWR_HAL_POWERPC_ADDER_II)  

#if defined(CYGHWR_HAL_POWERPC_MPC8XX_852T)
    // Special settings - according to manual errata
    eppc->pio_papar &= ~0xffffffff;   // PA manatory settings
    eppc->pio_padir |=  0xffffffff;

    eppc->pip_pbpar &= ~0x0003ff07;   // PB29..31 AS GPIO
    eppc->pip_pbdir |=  0x0003ff07;
    eppc->pip_pbdat  =  0x00010007;
    
    eppc->pio_pcpar &= ~0xffffffff;   // PC manatory settings
    eppc->pio_pcdir |=  0xffffffff;
#endif

    eppc->pip_pbpar &= ~0x00000007;   // PB29..31 AS GPIO for LEDS
    eppc->pip_pbdir |=  0x00000007;
    eppc->pip_pbdat |=  0x00000007;
#endif

    hal_if_init();

    _adder_set_leds(0x1);
}

#ifdef CYGHWR_HAL_POWERPC_ADDER_I
void
_adder_set_leds(int pat)
{
    volatile EPPC *eppc = (volatile EPPC *)eppc_base();

    eppc->pip_pbdat = (eppc->pip_pbdat & ~0x0000000E) | (pat << 1);
}

int
_adder_get_leds(void)
{
    volatile EPPC *eppc = (volatile EPPC *)eppc_base();

    return ((eppc->pip_pbdat & 0x0000000E) >> 1);
}
#endif

#ifdef CYGHWR_HAL_POWERPC_ADDER_II
void
_adder_set_leds(int pat)
{
    volatile EPPC *eppc = (volatile EPPC *)eppc_base();

    eppc->pip_pbdat = (eppc->pip_pbdat & ~0x00000007) |(~(pat&0x0007) );
}

int
_adder_get_leds(void)
{
    volatile EPPC *eppc = (volatile EPPC *)eppc_base();

    return ((~(eppc->pip_pbdat & 0x00000007)) & 0x0007 );
}
#endif

// EOF hal_aux.c