1 |
27 |
unneback |
# ====================================================================
|
2 |
|
|
#
|
3 |
|
|
# flash_amd_am29xxxxx.cdl
|
4 |
|
|
#
|
5 |
|
|
# FLASH memory - Hardware support for AMD AM29xxxxx parts
|
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 |
|
|
## Copyright (C) 2002 Gary Thomas
|
13 |
|
|
##
|
14 |
|
|
## eCos is free software; you can redistribute it and/or modify it under
|
15 |
|
|
## the terms of the GNU General Public License as published by the Free
|
16 |
|
|
## Software Foundation; either version 2 or (at your option) any later version.
|
17 |
|
|
##
|
18 |
|
|
## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
19 |
|
|
## WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
20 |
|
|
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
21 |
|
|
## for more details.
|
22 |
|
|
##
|
23 |
|
|
## You should have received a copy of the GNU General Public License along
|
24 |
|
|
## with eCos; if not, write to the Free Software Foundation, Inc.,
|
25 |
|
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
26 |
|
|
##
|
27 |
|
|
## As a special exception, if other files instantiate templates or use macros
|
28 |
|
|
## or inline functions from this file, or you compile this file and link it
|
29 |
|
|
## with other works to produce a work based on this file, this file does not
|
30 |
|
|
## by itself cause the resulting work to be covered by the GNU General Public
|
31 |
|
|
## License. However the source code for this file must still be made available
|
32 |
|
|
## in accordance with section (3) of the GNU General Public License.
|
33 |
|
|
##
|
34 |
|
|
## This exception does not invalidate any other reasons why a work based on
|
35 |
|
|
## this file might be covered by the GNU General Public License.
|
36 |
|
|
##
|
37 |
|
|
## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
38 |
|
|
## at http://sources.redhat.com/ecos/ecos-license/
|
39 |
|
|
## -------------------------------------------
|
40 |
|
|
#####ECOSGPLCOPYRIGHTEND####
|
41 |
|
|
# ====================================================================
|
42 |
|
|
######DESCRIPTIONBEGIN####
|
43 |
|
|
#
|
44 |
|
|
# Author(s): gthomas
|
45 |
|
|
# Contributors: gthomas, jskov, Koichi Nagashima
|
46 |
|
|
# Date: 2001-02-20
|
47 |
|
|
#
|
48 |
|
|
#####DESCRIPTIONEND####
|
49 |
|
|
#
|
50 |
|
|
# ====================================================================
|
51 |
|
|
|
52 |
|
|
cdl_package CYGPKG_DEVS_FLASH_AMD_AM29XXXXX {
|
53 |
|
|
display "AMD AM29XXXXX FLASH memory support"
|
54 |
|
|
description "FLASH memory device support for AMD AM29XXXXX"
|
55 |
|
|
parent CYGPKG_IO_FLASH
|
56 |
|
|
active_if CYGPKG_IO_FLASH
|
57 |
|
|
|
58 |
|
|
active_if CYGINT_DEVS_FLASH_AMD_AM29XXXXX_REQUIRED
|
59 |
|
|
|
60 |
|
|
implements CYGHWR_IO_FLASH_DEVICE
|
61 |
|
|
|
62 |
|
|
include_dir cyg/io
|
63 |
|
|
|
64 |
|
|
requires { CYGINT_DEVS_FLASH_AMD_VARIANTS != 0 }
|
65 |
|
|
|
66 |
|
|
cdl_interface CYGINT_DEVS_FLASH_AMD_VARIANTS {
|
67 |
|
|
display "Number of included variants"
|
68 |
|
|
}
|
69 |
|
|
|
70 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29F040B {
|
71 |
|
|
display "AMD AM29F040B flash memory support"
|
72 |
|
|
default_value 0
|
73 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
74 |
|
|
description "
|
75 |
|
|
When this option is enabled, the AMD flash driver will be
|
76 |
|
|
able to recognize and handle the AMD29F040B
|
77 |
|
|
part in the family."
|
78 |
|
|
}
|
79 |
|
|
|
80 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29LV160 {
|
81 |
|
|
display "AMD AM29LV160 flash memory support"
|
82 |
|
|
default_value 0
|
83 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
84 |
|
|
description "
|
85 |
|
|
When this option is enabled, the AMD flash driver will be
|
86 |
|
|
able to recognize and handle the AMD29LV160
|
87 |
|
|
part in the family."
|
88 |
|
|
}
|
89 |
|
|
|
90 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29LV320D {
|
91 |
|
|
display "AMD AM29LV320 flash memory support"
|
92 |
|
|
default_value 0
|
93 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
94 |
|
|
description "
|
95 |
|
|
When this option is enabled, the AMD flash driver will be
|
96 |
|
|
able to recognize and handle the AMD29LV320
|
97 |
|
|
part in the family."
|
98 |
|
|
}
|
99 |
|
|
|
100 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29LV200 {
|
101 |
|
|
display "AMD AM29LV200 flash memory support"
|
102 |
|
|
default_value 0
|
103 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
104 |
|
|
description "
|
105 |
|
|
When this option is enabled, the AMD flash driver will be
|
106 |
|
|
able to recognize and handle the AMD29LV200
|
107 |
|
|
part in the family."
|
108 |
|
|
}
|
109 |
|
|
|
110 |
|
|
cdl_option CYGHWR_DEVS_FLASH_ST_M29W200B {
|
111 |
|
|
display "ST M29W200B flash memory support"
|
112 |
|
|
default_value 0
|
113 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
114 |
|
|
description "
|
115 |
|
|
When this option is enabled, the AMD flash driver will be
|
116 |
|
|
able to recognize and handle the ST M29W200B part. This
|
117 |
|
|
memory device is pin- and software compatible with the
|
118 |
|
|
AMD AM29LV200 device."
|
119 |
|
|
}
|
120 |
|
|
|
121 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29LV640 {
|
122 |
|
|
display "AMD AM29LV640 flash memory support"
|
123 |
|
|
default_value 0
|
124 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
125 |
|
|
description "
|
126 |
|
|
When this option is enabled, the AMD flash driver will be
|
127 |
|
|
able to recognize and handle the AMD29LV640
|
128 |
|
|
part in the family."
|
129 |
|
|
}
|
130 |
|
|
|
131 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29DL322D {
|
132 |
|
|
display "AMD AM29DL322D flash memory support"
|
133 |
|
|
default_value 0
|
134 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
135 |
|
|
description "
|
136 |
|
|
When this option is enabled, the AMD flash driver will be
|
137 |
|
|
able to recognize and handle the AM29DL322D
|
138 |
|
|
part in the family."
|
139 |
|
|
}
|
140 |
|
|
|
141 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29DL323D {
|
142 |
|
|
display "AMD AM29DL323D flash memory support"
|
143 |
|
|
default_value 0
|
144 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
145 |
|
|
description "
|
146 |
|
|
When this option is enabled, the AMD flash driver will be
|
147 |
|
|
able to recognize and handle the AM29DL323D
|
148 |
|
|
part in the family."
|
149 |
|
|
}
|
150 |
|
|
|
151 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29DL324D {
|
152 |
|
|
display "AMD AM29DL324D flash memory support"
|
153 |
|
|
default_value 0
|
154 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
155 |
|
|
description "
|
156 |
|
|
When this option is enabled, the AMD flash driver will be
|
157 |
|
|
able to recognize and handle the AM29DL324D
|
158 |
|
|
part in the family."
|
159 |
|
|
}
|
160 |
|
|
|
161 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29DL640D {
|
162 |
|
|
display "AMD AM29DL640D flash memory support"
|
163 |
|
|
default_value 0
|
164 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
165 |
|
|
description "
|
166 |
|
|
When this option is enabled, the AMD flash driver will be
|
167 |
|
|
able to recognize and handle the AM29DL640D
|
168 |
|
|
part in the family."
|
169 |
|
|
}
|
170 |
|
|
|
171 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29F800 {
|
172 |
|
|
display "AMD AM29F800 flash memory support"
|
173 |
|
|
default_value 0
|
174 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
175 |
|
|
description "
|
176 |
|
|
When this option is enabled, the AMD flash driver will be
|
177 |
|
|
able to recognize and handle the AM29F800
|
178 |
|
|
part in the family."
|
179 |
|
|
}
|
180 |
|
|
|
181 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_AM29LV800 {
|
182 |
|
|
display "AMD AM29LV800 flash memory support"
|
183 |
|
|
default_value 0
|
184 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
185 |
|
|
description "
|
186 |
|
|
When this option is enabled, the AMD flash driver will be
|
187 |
|
|
able to recognize and handle the AM29LV800
|
188 |
|
|
part in the family."
|
189 |
|
|
}
|
190 |
|
|
|
191 |
|
|
cdl_option CYGHWR_DEVS_FLASH_AMD_TC58FVB800 {
|
192 |
|
|
display "Toshiba TC58FVB800 flash memory support"
|
193 |
|
|
default_value 0
|
194 |
|
|
implements CYGINT_DEVS_FLASH_AMD_VARIANTS
|
195 |
|
|
description "
|
196 |
|
|
When this option is enabled, the AMD flash driver will be
|
197 |
|
|
able to recognize and handle the Toshiba TC58FVB800."
|
198 |
|
|
}
|
199 |
|
|
}
|