diff packages/devs/flash/intel/bootblock/current/cdl/flash_intel_bootblock.cdl @ 136:a9ac27ec7abc ecos-sw-2000-11-17

Merge from eCos master repository on 2000-11-17-18:24:25-GMT
author jlarmour
date Fri, 17 Nov 2000 23:16:43 +0000
parents
children 0d0f03f76f6a
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/packages/devs/flash/intel/bootblock/current/cdl/flash_intel_bootblock.cdl
@@ -0,0 +1,82 @@
+# ====================================================================
+#
+#      flash_bootblock.cdl
+#
+#      FLASH memory - Hardware support for Intel Boot Block Flash Memory
+#
+# ====================================================================
+#####COPYRIGHTBEGIN####
+#                                                                          
+# -------------------------------------------                              
+# The contents of this file are subject to the Red Hat eCos Public License 
+# Version 1.1 (the "License"); you may not use this file except in         
+# compliance with the License.  You may obtain a copy of the License at    
+# http://www.redhat.com/                                                   
+#                                                                          
+# Software distributed under the License is distributed on an "AS IS"      
+# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the 
+# License for the specific language governing rights and limitations under 
+# the License.                                                             
+#                                                                          
+# The Original Code is eCos - Embedded Configurable Operating System,      
+# released September 30, 1998.                                             
+#                                                                          
+# The Initial Developer of the Original Code is Red Hat.                   
+# Portions created by Red Hat are                                          
+# Copyright (C) 1998, 1999, 2000 Red Hat, Inc.                             
+# All Rights Reserved.                                                     
+# -------------------------------------------                              
+#                                                                          
+#####COPYRIGHTEND####
+# ====================================================================
+######DESCRIPTIONBEGIN####
+#
+# Author(s):      gthomas
+# Contributors:   jskov
+# Date:           2000-07-26
+#
+#####DESCRIPTIONEND####
+#
+# ====================================================================
+
+cdl_package CYGPKG_DEVS_FLASH_INTEL_BOOTBLOCK {
+    display       "Intel boot block flash memory support"
+
+    parent        CYGPKG_IO_FLASH
+    active_if	  CYGPKG_IO_FLASH
+
+    implements    CYGHWR_IO_FLASH_DEVICE
+
+    include_dir   .
+    include_files ; # none _exported_ whatsoever
+    description   "FLASH memory device support for Intel boot block flash memory"
+    compile       bootblock_flash.c
+
+    make -priority 1 {
+        flash_erase_block.o: $(REPOSITORY)/$(PACKAGE)/src/flash_erase_block.c
+        $(CC) -S $(INCLUDE_PATH) $(CFLAGS) -g0 -mcpu=strongarm -fno-function-sections $(REPOSITORY)/$(PACKAGE)/src/flash_erase_block.c
+        echo "#include <cyg/hal/arch.inc>" > flash_erase_block2.S
+        cat  flash_erase_block.s >> flash_erase_block2.S
+        echo "FUNC_END(flash_erase_block_end)" >>flash_erase_block2.S
+        $(CC) -c $(INCLUDE_PATH) -o flash_erase_block.o flash_erase_block2.S
+        $(AR) rcs $(PREFIX)/lib/libtarget.a flash_erase_block.o
+    }
+    make -priority 1 {
+        flash_program_buf.o: $(REPOSITORY)/$(PACKAGE)/src/flash_program_buf.c
+        $(CC) -S $(INCLUDE_PATH) $(CFLAGS) -g0 -mcpu=strongarm -fno-function-sections $(REPOSITORY)/$(PACKAGE)/src/flash_program_buf.c
+        echo "#include <cyg/hal/arch.inc>" > flash_program_buf2.S
+        cat  flash_program_buf.s >> flash_program_buf2.S
+        echo "FUNC_END(flash_program_buf_end)" >>flash_program_buf2.S
+        $(CC) -c $(INCLUDE_PATH) -o flash_program_buf.o flash_program_buf2.S
+        $(AR) rcs $(PREFIX)/lib/libtarget.a flash_program_buf.o
+    }
+    make -priority 1 {
+        flash_query.o: $(REPOSITORY)/$(PACKAGE)/src/flash_query.c
+        $(CC) -S $(INCLUDE_PATH) $(CFLAGS) -g0 -mcpu=strongarm -fno-function-sections $(REPOSITORY)/$(PACKAGE)/src/flash_query.c
+        echo "#include <cyg/hal/arch.inc>" > flash_query2.S
+        cat  flash_query.s >> flash_query2.S
+        echo "FUNC_END(flash_query_end)" >>flash_query2.S
+        $(CC) -c $(INCLUDE_PATH) -o flash_query.o flash_query2.S
+        $(AR) rcs $(PREFIX)/lib/libtarget.a flash_query.o
+    }
+}