Mercurial > ecos
annotate packages/hal/arm/aeb/current/include/pkgconf/hal_arm_aeb.h @ 44:41bd4f3a90de ecos-sw-1999-10-08
Merge from eCos master repository on 1999-10-08-07:47:04-BST
| author | jlarmour |
|---|---|
| date | Fri, 08 Oct 1999 13:16:25 +0000 |
| parents | ece80412419a |
| children | 797268ecc331 |
| rev | line source |
|---|---|
| 2 | 1 #ifndef CYGONCE_PKGCONF_HAL_ARM_AEB_H |
| 2 #define CYGONCE_PKGCONF_HAL_ARM_AEB_H | |
| 3 // ==================================================================== | |
| 4 // | |
| 5 // pkgconf/hal_arm_aeb.h | |
| 6 // | |
| 7 // HAL configuration file | |
| 8 // | |
| 9 // ==================================================================== | |
| 10 //####COPYRIGHTBEGIN#### | |
| 11 // | |
| 12 // ------------------------------------------- | |
| 13 // The contents of this file are subject to the Cygnus eCos Public License | |
| 14 // Version 1.0 (the "License"); you may not use this file except in | |
| 15 // compliance with the License. You may obtain a copy of the License at | |
| 16 // http://sourceware.cygnus.com/ecos | |
| 17 // | |
| 18 // Software distributed under the License is distributed on an "AS IS" | |
| 19 // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the | |
| 20 // License for the specific language governing rights and limitations under | |
| 21 // the License. | |
| 22 // | |
| 23 // The Original Code is eCos - Embedded Cygnus Operating System, released | |
| 24 // September 30, 1998. | |
| 25 // | |
| 26 // The Initial Developer of the Original Code is Cygnus. Portions created | |
| 27 // by Cygnus are Copyright (C) 1998,1999 Cygnus Solutions. All Rights Reserved. | |
| 28 // ------------------------------------------- | |
| 29 // | |
| 30 //####COPYRIGHTEND#### | |
| 31 // ==================================================================== | |
| 32 //#####DESCRIPTIONBEGIN#### | |
| 33 // | |
| 34 // Author(s): gthomas | |
| 35 // Contributors: gthomas | |
| 36 // Date: 1998-12-02 | |
| 37 // Purpose: To allow the user to edit HAL configuration options. | |
| 38 // Description: | |
| 39 // | |
| 40 //####DESCRIPTIONEND#### | |
| 41 // | |
| 42 // ==================================================================== | |
| 43 | |
| 44 | |
| 45 /* --------------------------------------------------------------------- | |
| 46 {{CFG_DATA | |
| 47 | |
| 48 cdl_package CYGPKG_HAL_ARM_AEB { | |
| 49 display "ARM AEB-1 evaluation board" | |
| 50 type radio | |
| 51 parent CYGPKG_HAL_ARM | |
| 52 platform aeb | |
| 53 description " | |
| 54 The aeb HAL package provides the support needed to run | |
| 55 eCos on a ARM AEB-1 eval board." | |
| 56 } | |
| 57 | |
| 58 cdl_option CYGHWR_HAL_ARM_AEB_STARTUP { | |
| 59 display "Startup type" | |
| 60 parent CYGPKG_HAL_ARM_AEB | |
| 61 #type count | |
| 62 type enum | |
| 63 legal_values ram rom stubs | |
| 64 startup | |
| 65 description " | |
| 66 When targetting the AEB-1 eval board it is possible to build | |
| 67 the system for either RAM bootstrap or ROM bootstrap(s). Select | |
| 68 'ram' when building programs to load into RAM using onboard | |
| 69 debug software such as Angel or eCos GDB stubs. Select 'rom' | |
| 70 when building a stand-alone application which will be put | |
| 71 into ROM. Selection of 'stubs' is for the special case of | |
| 72 building the eCos GDB stubs themselves." | |
| 73 } | |
| 74 | |
| 75 }}CFG_DATA */ | |
| 76 | |
| 77 #define CYGHWR_HAL_ARM_AEB_STARTUP ram | |
| 78 | |
|
8
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
79 // Real-time clock/counter specifics |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
80 |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
81 #define CYGNUM_HAL_RTC_NUMERATOR 1000000000 |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
82 #define CYGNUM_HAL_RTC_DENOMINATOR 100 |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
83 #define CYGNUM_HAL_RTC_PERIOD (240000/16) |
|
ece80412419a
Merge from eCos master repository on 1999-05-21-22:05:54-BST
jlarmour
parents:
2
diff
changeset
|
84 |
|
44
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
85 // Board revision |
|
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
86 #ifdef CYG_HAL_ARM_AEBC |
|
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
87 #define CYGHWR_HAL_ARM_AEB_REVISION_C |
|
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
88 #else |
|
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
89 #define CYGHWR_HAL_ARM_AEB_REVISION_B |
|
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
90 #endif |
|
41bd4f3a90de
Merge from eCos master repository on 1999-10-08-07:47:04-BST
jlarmour
parents:
8
diff
changeset
|
91 |
| 2 | 92 /* -------------------------------------------------------------------*/ |
| 93 #endif /* CYGONCE_PKGCONF_HAL_ARM_AEB_H */ | |
| 94 /* EOF hal_arm_aeb.h */ |
