]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/hal/arm/at91/eb40/v2_0/include/hal_platform_setup.h
Initial revision
[karo-tx-redboot.git] / packages / hal / arm / at91 / eb40 / v2_0 / include / hal_platform_setup.h
1 #ifndef CYGONCE_HAL_PLATFORM_SETUP_H
2 #define CYGONCE_HAL_PLATFORM_SETUP_H
3
4 /*=============================================================================
5 //
6 //      hal_platform_setup.h
7 //
8 //      Platform specific support for HAL (assembly code)
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 Red Hat, 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 version.
19 //
20 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
21 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23 // for more details.
24 //
25 // You should have received a copy of the GNU General Public License along
26 // with eCos; if not, write to the Free Software Foundation, Inc.,
27 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
28 //
29 // As a special exception, if other files instantiate templates or use macros
30 // or inline functions from this file, or you compile this file and link it
31 // with other works to produce a work based on this file, this file does not
32 // by itself cause the resulting work to be covered by the GNU General Public
33 // License. However the source code for this file must still be made available
34 // in accordance with section (3) of the GNU General Public License.
35 //
36 // This exception does not invalidate any other reasons why a work based on
37 // this file might be covered by the GNU General Public License.
38 //
39 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
40 // at http://sources.redhat.com/ecos/ecos-license/
41 // -------------------------------------------
42 //####ECOSGPLCOPYRIGHTEND####
43 //=============================================================================
44 //#####DESCRIPTIONBEGIN####
45 //
46 // Author(s):   gthomas
47 // Contributors:gthomas
48 // Date:        2001-07-12
49 // Purpose:     AT91/EB40 platform specific support routines
50 // Description: 
51 // Usage:       #include <cyg/hal/hal_platform_setup.h>
52 //
53 //####DESCRIPTIONEND####
54 //
55 //===========================================================================*/
56
57 #include <cyg/hal/var_io.h>
58
59 #if defined(CYG_HAL_STARTUP_ROM) || defined(CYG_HAL_STARTUP_ROMRAM)
60
61         .macro  _setup
62         ldr     r10,=_InitMemory        // Initialize memory controller
63         movs    r0,pc,lsr #20           // If ROM startup, PC < 0x100000
64         moveq   r10,r10,lsl #12         //   mask address to low 20 bits
65         moveq   r10,r10,lsr #12
66         ldmia   r10!,{r0-r9,r11-r12}    // Table of initialization constants
67 #if defined(CYG_HAL_STARTUP_ROMRAM)
68         ldr     r10,=0x0000FFFF
69         and     r12,r12,r10
70         ldr     r10,=0x01010000
71         orr     r12,r12,r10
72 #endif        
73         stmia   r11!,{r0-r9}            // Write to controller
74         mov     pc,r12                  // Change address space, break pipeline
75 _InitMemory:            
76         .long   0x01002535  // 0x01000000, 16MB,  2 cycles after transfer, 16-bit, 6 wait states
77         .long   0x02002121  // 0x02000000, 16MB,  0 cycles after transfer, 16-bit, 1 wait state
78         .long   0x20000000  // unused
79         .long   0x30000000  // unused
80         .long   0x40000000  // unused
81         .long   0x50000000  // unused
82         .long   0x60000000  // unused
83         .long   0x70000000  // unused
84         .long   0x00000001  // REMAP command
85         .long   0x00000006  // 7 memory regions, standard read
86         .long   AT91_EBI    // External Bus Interface address
87         .long   10f         // address where to jump
88 10:
89         
90 #if defined(CYG_HAL_STARTUP_ROMRAM)
91         ldr     r0,=0x01010000          // Relocate FLASH/ROM to on-chip RAM
92         ldr     r1,=0x02000000          // RAM base & length
93         ldr     r2,=0x02010000
94 20:     ldr     r3,[r0],#4
95         str     r3,[r1],#4
96         cmp     r1,r2
97         bne     20b
98         ldr     r0,=30f
99         mov     pc,r0
100 30:             
101 #endif
102                 
103         ldr     r0,=AT91_PS             // Power saving interface
104         ldr     r1,=0xFFFFFFFF          // Enable all peripheral [clocks]
105         str     r1,[r0,#AT91_PS_PCER]
106         ldr     r0,=AT91_PIO            // Disable PIO (so peripherals can use bits)
107         ldr     r1,=0x0070FE49          // UART, FIQ, EINT, Timer clocks
108         str     r1,[r0,#AT91_PIO_PDR]
109         ldr     r1,=0x000001B6          // LEDs
110         str     r1,[r0,#AT91_PIO_OER]
111         str     r1,[r0,#AT91_PIO_SODR]
112         .endm        
113
114 #define CYGSEM_HAL_ROM_RESET_USES_JUMP
115 #define PLATFORM_SETUP1     _setup
116 #else
117 #define PLATFORM_SETUP1
118 #endif
119
120 //-----------------------------------------------------------------------------
121 // end of hal_platform_setup.h
122 #endif // CYGONCE_HAL_PLATFORM_SETUP_H