]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/hal/arm/e7t/v2_0/src/redboot_module.c
Initial revision
[karo-tx-redboot.git] / packages / hal / arm / e7t / v2_0 / src / redboot_module.c
1 //==========================================================================
2 //
3 //        redboot_module.c
4 //
5 //        ARM E7T board RedBoot module wrapper
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-03-19
46 // Description:   AEB-2 FLASH module for RedBoot
47 //####DESCRIPTIONEND####
48
49 //
50 // This is the module 'wrapper' for RedBoot
51 //
52
53 #include <pkgconf/hal.h>
54 #include <cyg/infra/cyg_type.h>
55 #include <cyg/hal/hal_stub.h>
56
57 // ARM AEB-2 module stuff
58
59 #ifdef CYGPKG_REDBOOT
60
61 #include <redboot.h>
62
63 #ifndef CHECKSUM
64 #define CHECKSUM 0x0
65 #endif
66
67 extern char __exception_handlers, __rom_data_end;
68
69 const char __title[] = "RedBoot";
70 const char __help[] = "RedBoot              " __DATE__;
71
72 struct ModuleHeader {
73     cyg_uint32    magic;
74     cyg_uint16    flags;
75     cyg_uint8     major;
76     cyg_uint8     minor;
77     cyg_uint32    checksum;
78     cyg_uint32    ro_base;
79     cyg_uint32    ro_limit;
80     cyg_uint32    rw_base;
81     cyg_uint32    zi_base; 
82     cyg_uint32    zi_limit;
83     cyg_uint32    self;
84     cyg_uint32    start;
85     cyg_uint32    init;
86     cyg_uint32    final;
87     cyg_uint32    service;
88     cyg_uint32    title;
89     cyg_uint32    help;
90     cyg_uint32    cmdtbl;
91     cyg_uint32    swi_base;
92     cyg_uint32    swi_handler;
93 };
94
95 const static struct ModuleHeader __hdr = {
96     0x4D484944,                     // MHID
97     2,                              // flags = auto start
98     1,                              // major
99     0,                              // minor
100     CHECKSUM,                       // checksum
101     (cyg_uint32) &__exception_handlers,         // start of module (read-only) image
102     (cyg_uint32) &__rom_data_end,    // end of image
103     0,                              // r/w base - unused
104     0,                              // bss base - unused
105     0,                              // bss limit - unused
106     (cyg_uint32) &__hdr,            // self (for module identification)
107     (cyg_uint32) &__exception_handlers,         // startup 
108     0,                              // init - unused
109     0,                              // final - unused
110     0,                              // service - unused
111     (cyg_uint32) &__title,          // title
112     (cyg_uint32) &__help,           // help string
113     0,                              // command table - unused
114     0,                              // SWI table - unused
115     0                               // SWI handler - unused
116 };
117
118 static void
119 __dummy(void *p)
120 {
121 }
122
123 void __dummy_init(void)
124 {
125     __dummy((void*)&__hdr);
126 }
127
128 _RedBoot_init(__dummy_init, RedBoot_INIT_LAST);
129
130
131 #else
132 #error "Stand-alone RedBoot only"
133 #endif