]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/hal/arm/mx51/var/v2_0/cdl/hal_arm_soc.cdl
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / hal / arm / mx51 / var / v2_0 / cdl / hal_arm_soc.cdl
1 # ====================================================================
2 #####ECOSGPLCOPYRIGHTBEGIN####
3 ## -------------------------------------------
4 ## This file is part of eCos, the Embedded Configurable Operating System.
5 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
6 ##
7 ## eCos is free software; you can redistribute it and/or modify it under
8 ## the terms of the GNU General Public License as published by the Free
9 ## Software Foundation; either version 2 or (at your option) any later version.
10 ##
11 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
12 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 ## for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License along
17 ## with eCos; if not, write to the Free Software Foundation, Inc.,
18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19 ##
20 ## As a special exception, if other files instantiate templates or use macros
21 ## or inline functions from this file, or you compile this file and link it
22 ## with other works to produce a work based on this file, this file does not
23 ## by itself cause the resulting work to be covered by the GNU General Public
24 ## License. However the source code for this file must still be made available
25 ## in accordance with section (3) of the GNU General Public License.
26 ##
27 ## This exception does not invalidate any other reasons why a work based on
28 ## this file might be covered by the GNU General Public License.
29 ##
30 ## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
31 ## at http://sources.redhat.com/ecos/ecos-license/
32 ## -------------------------------------------
33 #####ECOSGPLCOPYRIGHTEND####
34 # ====================================================================
35 ######DESCRIPTIONBEGIN####
36 #
37 # Author(s):      gthomas
38 # Original data:  gthomas
39 # Contributors:
40 # Date:           2000-05-08
41 #
42 #####DESCRIPTIONEND####
43 #
44 # ====================================================================
45 cdl_package CYGPKG_HAL_ARM_MX51 {
46     display       "Freescale SoC architecture"
47     parent        CYGPKG_HAL_ARM
48     hardware
49     include_dir   cyg/hal
50     define_header hal_arm_soc.h
51     description   "
52         This HAL variant package provides generic
53         support for the Freescale SoC. It is also
54         necessary to select a specific target platform HAL
55         package."
56
57     implements    CYGINT_HAL_ARM_ARCH_ARM9
58     implements    CYGINT_HAL_VIRTUAL_VECTOR_COMM_BAUD_SUPPORT
59
60     # Let the architectural HAL see this variant's interrupts file -
61     # the SoC has no variation between targets here.
62     define_proc {
63         puts $::cdl_header "#define CYGBLD_HAL_VAR_INTS_H <cyg/hal/hal_var_ints.h>"
64         puts $::cdl_system_header "#define CYGBLD_HAL_ARM_VAR_IO_H"
65
66         puts $::cdl_header "#define CYGPRI_KERNEL_TESTS_DHRYSTONE_PASSES 1000000"
67     }
68
69     compile       soc_diag.c soc_misc.c
70     compile -library=libextras.a cmds.c
71
72     cdl_option CYGHWR_MX51_TO2 {
73         display       "MX51 Tapeout 2.0 support"
74         default_value 0
75         description   "
76             When this option is enabled, it indicates support for
77             MX51 Tapeout 2.0"
78         define_proc {
79             puts $::cdl_system_header "#define IMX51_TO_2"
80         }
81     }
82
83     cdl_option CYGHWR_HAL_ARM_SOC_PROCESSOR_CLOCK {
84         display       "Processor clock rate"
85         active_if     { CYG_HAL_STARTUP == "ROM" }
86         flavor        data
87         legal_values  150000 200000
88         default_value { CYGHWR_HAL_ARM_SOC_PROCESSOR_CLOCK_OVERRIDE_DEFAULT ?
89                         CYGHWR_HAL_ARM_SOC_PROCESSOR_CLOCK_OVERRIDE_DEFAULT : 150000}
90         description   "
91            The processor can run at various frequencies.
92            These values are expressed in KHz.  Note that there are
93            several steppings of the rate to run at different
94            maximum frequencies.  Check the specs to make sure that your
95            particular processor can run at the rate you select here."
96     }
97
98     # Real-time clock/counter specifics
99     cdl_component CYGNUM_HAL_RTC_CONSTANTS {
100         display       "Real-time clock constants"
101         flavor        none
102         no_define
103
104         cdl_option CYGNUM_HAL_RTC_NUMERATOR {
105             display       "Real-time clock numerator"
106             flavor        data
107             calculated    1000000000
108         }
109         cdl_option CYGNUM_HAL_RTC_DENOMINATOR {
110             display       "Real-time clock denominator"
111             flavor        data
112             default_value 100
113             description   "
114               This option selects the heartbeat rate for the real-time clock.
115               The rate is specified in ticks per second.  Change this value
116               with caution - too high and your system will become saturated
117               just handling clock interrupts, too low and some operations
118               such as thread scheduling may become sluggish."
119         }
120         cdl_option CYGNUM_HAL_RTC_PERIOD {
121             display       "Real-time clock period"
122             flavor        data
123             calculated    (3686400/CYGNUM_HAL_RTC_DENOMINATOR)        ;# Clock for OS Timer is 3.6864MHz
124         }
125     }
126
127     # Control over hardware layout.
128     cdl_interface     CYGHWR_HAL_ARM_SOC_UART1 {
129         display   "UART1 available as diagnostic/debug channel"
130         description "
131           The chip has multiple serial channels which may be
132           used for different things on different platforms.  This
133           interface allows a platform to indicate that the specified
134           serial port can be used as a diagnostic and/or debug channel."
135     }
136
137     cdl_interface     CYGHWR_HAL_ARM_SOC_UART2 {
138         display   "UART2 available as diagnostic/debug channel"
139         description "
140           The chip has multiple serial channels which may be
141           used for different things on different platforms.  This
142           interface allows a platform to indicate that the specified
143           serial port can be used as a diagnostic and/or debug channel."
144     }
145
146     cdl_interface     CYGHWR_HAL_ARM_SOC_UART3 {
147         display   "UART3 available as diagnostic/debug channel"
148         description "
149           The chip has multiple serial channels which may be
150           used for different things on different platforms.  This
151           interface allows a platform to indicate that the specified
152           serial port can be used as a diagnostic and/or debug channel."
153     }
154
155     cdl_interface     CYGHWR_HAL_ARM_SOC_UART4 {
156         display   "UART4 available as diagnostic/debug channel"
157         description "
158           The chip has multiple serial channels which may be
159           used for different things on different platforms.  This
160           interface allows a platform to indicate that the specified
161           serial port can be used as a diagnostic and/or debug channel."
162     }
163
164     cdl_interface     CYGHWR_HAL_ARM_SOC_UART5 {
165         display   "UART5 available as diagnostic/debug channel"
166         description "
167           The chip has multiple serial channels which may be
168           used for different things on different platforms.  This
169           interface allows a platform to indicate that the specified
170           serial port can be used as a diagnostic and/or debug channel."
171     }
172
173     cdl_interface CYGINT_DEVS_ETH_FEC_REQUIRED {
174         display   "FEC ethernet driver required"
175     }
176
177     implements CYGINT_DEVS_ETH_FEC_REQUIRED
178
179 }