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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [arm/] [arm9/] [innovator/] [v2_0/] [cdl/] [hal_arm_arm9_innovator.cdl] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
# ====================================================================
2
#
3
#      hal_arm_arm9_innovator.cdl
4
#
5
#      TI Innovator platform HAL package configuration data
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):      Patrick Doyle 
44
# Contributors:   Patrick Doyle 
45
# Date:           2002-11-22
46
#
47
#####DESCRIPTIONEND####
48
#
49
# ====================================================================
50
cdl_package CYGPKG_HAL_ARM_ARM9_INNOVATOR {
51
    display       "Innovator"
52
    parent        CYGPKG_HAL_ARM_ARM9
53
    requires      CYGPKG_HAL_ARM_ARM9_ARM925T
54
    hardware
55
    include_dir   cyg/hal
56
    define_header hal_arm_arm9_innovator.h
57
    description   "
58
        This HAL platform package provides generic
59
        support for the OMAP Innovator platform."
60
 
61
    compile       innovator_misc.c hal_diag.c
62
 
63
    implements    CYGINT_HAL_DEBUG_GDB_STUBS
64
    implements    CYGINT_HAL_DEBUG_GDB_STUBS_BREAK
65
    implements    CYGINT_HAL_VIRTUAL_VECTOR_SUPPORT
66
 
67
    define_proc {
68
        puts $::cdl_system_header "#define CYGBLD_HAL_TARGET_H   "
69
        puts $::cdl_system_header "#define CYGBLD_HAL_VARIANT_H  "
70
        puts $::cdl_system_header "#define CYGBLD_HAL_PLATFORM_H "
71
        puts $::cdl_header "#define HAL_PLATFORM_CPU    \"ARM9\""
72
        puts $::cdl_header "#define HAL_PLATFORM_BOARD  \"Innovator\""
73
        puts $::cdl_header "#define HAL_PLATFORM_EXTRA  \"\""
74
        puts $::cdl_header "#define HAL_ARCH_PROGRAM_NEW_STACK innovator_program_new_stack"
75
        puts $::cdl_header "#define HAL_PLATFORM_MACHINE_TYPE  234"
76
 
77
    }
78
 
79
    cdl_component CYG_HAL_STARTUP {
80
        display       "Startup type"
81
        flavor        data
82
        default_value {"RAM"}
83
        legal_values  {"RAM" "ROM" }
84
        no_define
85
        define -file system.h CYG_HAL_STARTUP
86
        description   "
87
           When targetting the Innovator it is possible to build
88
           the system for either RAM bootstrap or ROM bootstrap(s). Select
89
           'RAM' when building programs to load into RAM using RedBoot.
90
           Select 'ROM' when building a stand-alone application
91
           which will be put into ROM, or for the special cases of
92
           building the eCos GDB stubs or RedBoot."
93
 
94
        cdl_option CYGPRI_HAL_ROM_MLT {
95
            display       "Memory Layout for ROM Startup"
96
            flavor        data
97
            legal_values  {"FLASH" "SRAM"}
98
            default_value {"FLASH"}
99
            description   "
100
                This option selects which memory layout file should be
101
                used when configuring the Innovator for ROM startup.
102
                The FLASH option selects the memory layout for an image
103
                stored at the beginning of the FLASH.  It should be
104
                used almost all of the time.
105
 
106
                The SRAM option is used to place the ROM image in
107
                internal SRAM.  It may be used in order to test startup
108
                code without burning the code into FLASH first." }
109
    }
110
 
111
    # Both PLLs are in bypass mode on startup.
112
    # FIXME: Add proper configury
113
    cdl_option CYGNUM_HAL_ARM_INNOVATOR_CPU_CLOCK {
114
        display       "CPU bus speed"
115
        flavor        data
116
        calculated    { 60000000 }
117
        description   "
118
            This is the actual CPU operating frequency.  Someday you
119
            might be able to change this here."
120
    }
121
 
122
#    cdl_option CYGNUM_HAL_ARM_INNOVATOR_PERIPHERAL_CLOCK {
123
#        display       "Peripheral bus speed"
124
#        flavor        data
125
#        calculated    { CYGNUM_HAL_ARM_INNOVATOR_CPU_CLOCK / 2 }
126
#        description   "
127
#            This is the peripheral bus operating frequency
128
#           (Traffic Controller)."
129
#    }
130
#
131
#    cdl_option CYGNUM_HAL_ARM_INNOVATOR_TIMER_PRESCALE {
132
#        display       "Timer prescale"
133
#        flavor        data
134
#        legal_values  0 to 255
135
#        default_value 16
136
#        description   "
137
#            This is the prescale value used on the clock used to drive
138
#            the kernel counter. Note that some parts of the code may fail
139
#            if this is changed due to over/underflows of expressions."
140
#    }
141
#
142
#    # Real-time clock/counter specifics
143
#    cdl_component CYGNUM_HAL_RTC_CONSTANTS {
144
#        display       "Real-time clock constants.  WARNING -- the Real Time Clock is not fully supported (if at all) yet."
145
#        flavor        none
146
#        no_define
147
#
148
#        cdl_option CYGNUM_HAL_RTC_NUMERATOR {
149
#            display       "Real-time clock numerator"
150
#            flavor        data
151
#            calculated    1000000000
152
#        }
153
#        cdl_option CYGNUM_HAL_RTC_DENOMINATOR {
154
#            display       "Real-time clock denominator"
155
#            flavor        data
156
#            calculated    100
157
#        }
158
#        cdl_option CYGNUM_HAL_RTC_PERIOD {
159
#            display       "Real-time clock period"
160
#            flavor        data
161
#           calculated    1
162
##            calculated    (CYGNUM_HAL_ARM_INNOVATOR_PERIPHERAL_CLOCK/(CYGNUM_HAL_ARM_INNOVATOR_TIMER_PRESCALE*CYGNUM_HAL_RTC_DENOMINATOR))-1
163
#        }
164
#    }
165
#
166
#    cdl_option CYGNUM_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL_BAUD {
167
#        display       "Diagnostic serial port baud rate"
168
#        flavor        data
169
#        legal_values  9600 19200 38400 57600 115200
170
#        default_value 115200
171
#        description   "
172
#            This option selects the baud rate used for the diagnostic port.
173
#            Note: this should match the value chosen for the GDB port if the
174
#            diagnostic and GDB port are the same."
175
#    }
176
#
177
#    cdl_option CYGNUM_HAL_VIRTUAL_VECTOR_DEBUG_CHANNEL_BAUD {
178
#        display       "GDB serial port baud rate"
179
#        flavor        data
180
#        legal_values  9600 19200 38400 57600 115200
181
#        default_value 115200
182
#        description   "
183
#            This option selects the baud rate used for the diagnostic port.
184
#            Note: this should match the value chosen for the GDB port if the
185
#            diagnostic and GDB port are the same."
186
#    }
187
#
188
    cdl_option CYGNUM_HAL_VIRTUAL_VECTOR_COMM_CHANNELS {
189
        display      "Number of communication channels on the board"
190
        flavor       data
191
        calculated   1
192
    }
193
 
194
    cdl_option CYGNUM_HAL_VIRTUAL_VECTOR_DEBUG_CHANNEL {
195
        display          "Debug serial port"
196
        active_if        CYGPRI_HAL_VIRTUAL_VECTOR_DEBUG_CHANNEL_CONFIGURABLE
197
        flavor data
198
        legal_values     0 to CYGNUM_HAL_VIRTUAL_VECTOR_COMM_CHANNELS-1
199
        default_value    0
200
        description      "
201
            The Innovator has two serial ports.  When we add support
202
            for the second one, you will be able to choose which one is
203
            used to connect to a host running GDB."
204
     }
205
 
206
     cdl_option CYGNUM_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL_DEFAULT {
207
         display      "Default console channel."
208
         flavor       data
209
         legal_values     0 to CYGNUM_HAL_VIRTUAL_VECTOR_COMM_CHANNELS-1
210
         calculated   0
211
     }
212
 
213
     cdl_option CYGNUM_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL {
214
         display          "Diagnostic serial port"
215
         active_if        CYGPRI_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL_CONFIGURABLE
216
         flavor data
217
         legal_values     0 to CYGNUM_HAL_VIRTUAL_VECTOR_COMM_CHANNELS-1
218
         default_value    CYGNUM_HAL_VIRTUAL_VECTOR_CONSOLE_CHANNEL_DEFAULT
219
         description      "
220
            The Innovator has two serial ports.  When we add support
221
            for the second one, you will be able to choose which one is
222
            used for diagnostic output."
223
     }
224
 
225
    cdl_component CYGBLD_GLOBAL_OPTIONS {
226
        display "Global build options"
227
        flavor  none
228
        no_define
229
        description   "
230
            Global build options including control over
231
            compiler flags, linker flags and choice of toolchain."
232
 
233
 
234
        parent  CYGPKG_NONE
235
 
236
        cdl_option CYGBLD_GLOBAL_COMMAND_PREFIX {
237
            display "Global command prefix"
238
            flavor  data
239
            no_define
240
            default_value { "arm-elf" }
241
            description "
242
                This option specifies the command prefix used when
243
                invoking the build tools."
244
        }
245
 
246
        cdl_option CYGBLD_GLOBAL_CFLAGS {
247
            display "Global compiler flags"
248
            flavor  data
249
            no_define
250
            default_value { "-mcpu=arm9 -Wall -Wpointer-arith -Wstrict-prototypes -Winline -Wundef -Woverloaded-virtual -g -O2 -ffunction-sections -fdata-sections -fno-rtti -fno-exceptions -fvtable-gc -finit-priority" }
251
            description   "
252
                This option controls the global compiler flags which are used to
253
                compile all packages by default. Individual packages may define
254
                options which override these global flags."
255
        }
256
 
257
        cdl_option CYGBLD_GLOBAL_LDFLAGS {
258
            display "Global linker flags"
259
            flavor  data
260
            no_define
261
            default_value { "--no-target-default-spec -Wl,--gc-sections -Wl,-static -g -O2 -nostdlib" }
262
            description   "
263
                This option controls the global linker flags. Individual
264
                packages may define options which override these global flags."
265
        }
266
 
267
        cdl_option CYGBLD_BUILD_GDB_STUBS {
268
            display "Build GDB stub ROM image"
269
            default_value 0
270
            requires { CYG_HAL_STARTUP == "ROM" }
271
            requires CYGSEM_HAL_ROM_MONITOR
272
            requires CYGBLD_BUILD_COMMON_GDB_STUBS
273
            requires CYGDBG_HAL_DEBUG_GDB_INCLUDE_STUBS
274
            requires CYGDBG_HAL_DEBUG_GDB_BREAK_SUPPORT
275
            requires CYGDBG_HAL_DEBUG_GDB_THREAD_SUPPORT
276
            requires ! CYGDBG_HAL_COMMON_INTERRUPTS_SAVE_MINIMUM_CONTEXT
277
            requires ! CYGDBG_HAL_COMMON_CONTEXT_SAVE_MINIMUM
278
            no_define
279
            description "
280
                This option enables the building of the GDB stubs for the
281
                board. The common HAL controls takes care of most of the
282
                build process, but the final conversion from ELF image to
283
                binary data is handled by the platform CDL, allowing
284
                relocation of the data if necessary."
285
 
286
            make -priority 320 {
287
                /bin/gdb_module.srec : /bin/gdb_module.img
288
                $(OBJCOPY) --remove-section=.fixed_vectors $< gdb_module.tmp
289
            }
290
        }
291
    }
292
 
293
    cdl_component CYGPKG_HAL_ARM_ARM9_INNOVATOR_OPTIONS {
294
        display "Innovator build options"
295
        flavor  none
296
        no_define
297
        description   "
298
            Package specific build options including control over
299
            compiler flags used only in building this package,
300
            and details of which tests are built."
301
 
302
 
303
        cdl_option CYGPKG_HAL_ARM_ARM9_INNOVATOR_CFLAGS_ADD {
304
            display "Additional compiler flags"
305
            flavor  data
306
            no_define
307
            default_value { "" }
308
            description   "
309
                This option modifies the set of compiler flags for
310
                building the Innovator HAL. These flags are
311
                used in addition to the set of global flags."
312
        }
313
 
314
        cdl_option CYGPKG_HAL_ARM_ARM9_INNOVATOR_CFLAGS_REMOVE {
315
            display "Suppressed compiler flags"
316
            flavor  data
317
            no_define
318
            default_value { "" }
319
            description   "
320
                This option modifies the set of compiler flags for
321
                building the Innovator HAL. These flags are
322
                removed from the set of global flags if present."
323
        }
324
 
325
        cdl_option CYGPKG_HAL_ARM_ARM9_INNOVATOR_TESTS {
326
            display "Innovator tests"
327
            flavor  data
328
            no_define
329
            calculated { "" }
330
            description   "
331
                This option specifies the set of tests for the Innovator."
332
        }
333
    }
334
 
335
    cdl_component CYGHWR_MEMORY_LAYOUT {
336
        display "Memory layout"
337
        flavor data
338
        no_define
339
        calculated { CYG_HAL_STARTUP == "RAM" ? "arm_arm9_innovator_ram" : \
340
                                                "arm_arm9_innovator_rom" }
341
 
342
        cdl_option CYGHWR_MEMORY_LAYOUT_LDI {
343
            display "Memory layout linker script fragment"
344
            flavor data
345
            no_define
346
            define -file system.h CYGHWR_MEMORY_LAYOUT_LDI
347
            calculated { CYG_HAL_STARTUP == "RAM" ? "" : \
348
                         CYGPRI_HAL_ROM_MLT == "FLASH" ? "" : \
349
                                                         "" }
350
        }
351
 
352
        cdl_option CYGHWR_MEMORY_LAYOUT_H {
353
            display "Memory layout header file"
354
            flavor data
355
            no_define
356
            define -file system.h CYGHWR_MEMORY_LAYOUT_H
357
            calculated { CYG_HAL_STARTUP == "RAM" ? "" : \
358
                         CYGPRI_HAL_ROM_MLT == "FLASH" ? "" : \
359
                                                         "" }
360
        }
361
    }
362
 
363
    cdl_option CYGSEM_HAL_ROM_MONITOR {
364
        display       "Behave as a ROM monitor"
365
        flavor        bool
366
        default_value 0
367
        parent        CYGPKG_HAL_ROM_MONITOR
368
        requires      { CYG_HAL_STARTUP == "ROM" }
369
        description   "
370
            Enable this option if this program is to be used as a ROM monitor,
371
            i.e. applications will be loaded into RAM on the board, and this
372
            ROM monitor may process exceptions or interrupts generated from the
373
            application. This enables features such as utilizing a separate
374
            interrupt stack when exceptions are generated."
375
    }
376
 
377
    cdl_option CYGSEM_HAL_USE_ROM_MONITOR {
378
         display       "Work with a ROM monitor"
379
         flavor        booldata
380
         legal_values  { "GDB_stubs" }
381
         default_value { CYG_HAL_STARTUP == "RAM" ? "GDB_stubs" : 0 }
382
         parent        CYGPKG_HAL_ROM_MONITOR
383
         requires      { CYG_HAL_STARTUP == "RAM" }
384
         description   "
385
             Support can be enabled for different varieties of ROM monitor.
386
             This support changes various eCos semantics such as the encoding
387
             of diagnostic output, or the overriding of hardware interrupt
388
             vectors.
389
             \"GDB_stubs\" provides support when GDB stubs are included in
390
             the ROM monitor or boot ROM."
391
     }
392
 
393
    cdl_component CYGPKG_REDBOOT_HAL_OPTIONS {
394
        display       "Redboot HAL options"
395
        flavor        none
396
        no_define
397
        parent        CYGPKG_REDBOOT
398
        active_if     CYGPKG_REDBOOT
399
        description   "
400
            This option lists the target's requirements for a valid Redboot
401
            configuration."
402
 
403
        # RedBoot details
404
        requires { CYGHWR_REDBOOT_ARM_LINUX_EXEC_ADDRESS_DEFAULT == 0x10008000 }
405
        define_proc {
406
            puts $::cdl_header "#define CYGHWR_REDBOOT_ARM_TRAMPOLINE_ADDRESS 0x00001f00"
407
        }
408
 
409
        cdl_option CYGBLD_BUILD_REDBOOT_BIN {
410
            display       "Build Redboot ROM binary image"
411
            active_if     CYGBLD_BUILD_REDBOOT
412
            default_value 1
413
            no_define
414
            description "This option enables the conversion of the Redboot ELF
415
                         image to the various relocated SREC images needed
416
                         for flash updating."
417
 
418
            compile -library=libextras.a redboot_cmds.c
419
 
420
            make -priority 325 {
421
                /bin/redboot.bin : /bin/redboot.elf
422
                $(OBJCOPY) --strip-debug $< $(@:.bin=.img)
423
                $(OBJCOPY) -O srec $< $(@:.bin=.srec)
424
                $(OBJCOPY) -O binary $< $@
425
            }
426
        }
427
    }
428
 
429
}

powered by: WebSVN 2.1.0

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