1 |
786 |
skrzyp |
#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 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
|
47 |
|
|
// Date: 1999-04-13
|
48 |
|
|
// Purpose: ARM/PID platform specific support routines
|
49 |
|
|
// Description:
|
50 |
|
|
// Usage: #include <cyg/hal/hal_platform_setup.h>
|
51 |
|
|
//
|
52 |
|
|
//####DESCRIPTIONEND####
|
53 |
|
|
//
|
54 |
|
|
//===========================================================================*/
|
55 |
|
|
|
56 |
|
|
|
57 |
|
|
// Define macro used to diddle the LEDs during early initialization.
|
58 |
|
|
// Can use r0+r1. Argument in \x.
|
59 |
|
|
// Control the LEDs PP0-PP3. This requires the jumpers on pins 9-16 to
|
60 |
|
|
// be set on LK11 in order to be visible. Otherwise the parallel port
|
61 |
|
|
// data pins are diddled instead.
|
62 |
|
|
#ifdef CYGHWR_HAL_ARM_PID_DIAG_LEDS
|
63 |
|
|
#define CYGHWR_LED_MACRO \
|
64 |
|
|
ldr r0,=0x0d800040 ;\
|
65 |
|
|
mov r1, #((15 & (\x)) << 4) ;\
|
66 |
|
|
strb r1, [r0] ;
|
67 |
|
|
#endif
|
68 |
|
|
|
69 |
|
|
#define MEM_RESET 0x0B000020 // Write to this location to enable RAM
|
70 |
|
|
|
71 |
|
|
#define PLATFORM_SETUP1 \
|
72 |
|
|
ldr r0,=10f ;\
|
73 |
|
|
mov pc,r0 ;\
|
74 |
|
|
10: ldr r0,=MEM_RESET /* enable RAM */ ;\
|
75 |
|
|
str r0,[r0]
|
76 |
|
|
|
77 |
|
|
/*---------------------------------------------------------------------------*/
|
78 |
|
|
/* end of hal_platform_setup.h */
|
79 |
|
|
#endif /* CYGONCE_HAL_PLATFORM_SETUP_H */
|