⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hal_arm_edb7xxx.cdl

📁 移植到WLIT项目的redboot源代码
💻 CDL
📖 第 1 页 / 共 2 页
字号:
            }        }        cdl_option CYGBLD_BUILD_FLASH_TOOL {            display "Build flash programming tool"            default_value 0            requires { CYG_HAL_STARTUP == "RAM" }            requires CYGPKG_LIBC            requires CYGPKG_KERNEL            no_define            description "This option enables the building of the flash programming tool for copying the GDB stubs into flash memory."            make -priority 320 {                <PREFIX>/bin/prog_flash.img : <PACKAGE>/misc/prog_flash.c                @sh -c "mkdir -p misc $(dir $@)"                $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/prog_flash.o $<                @echo $@ ": \\" > $(notdir $@).deps                @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps                @tail +2 deps.tmp >> $(notdir $@).deps                @echo >> $(notdir $@).deps                @rm deps.tmp                $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/prog_flash.o            }        }        cdl_option CYGBLD_BUILD_AUX_TESTS {            display "Build tests for auxiliaries"            default_value 0            requires { CYG_HAL_STARTUP == "RAM" }            requires CYGPKG_LIBC            requires CYGPKG_KERNEL            no_define            description "               This option enables the building of some tests for the               auxiliary devices."            make -priority 320 {                <PREFIX>/bin/lcd_test.img : <PACKAGE>/misc/lcd_test.c                @sh -c "mkdir -p misc $(dir $@)"                $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/lcd_test.o $<                @echo $@ ": \\" > $(notdir $@).deps                @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps                @tail +2 deps.tmp >> $(notdir $@).deps                @echo >> $(notdir $@).deps                @rm deps.tmp                $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/lcd_test.o            }            make -priority 320 {                <PREFIX>/bin/panel_test.img : <PACKAGE>/misc/panel_test.c                @sh -c "mkdir -p misc $(dir $@)"                $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/panel_test.o $<                @echo $@ ": \\" > $(notdir $@).deps                @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps                @tail +2 deps.tmp >> $(notdir $@).deps                @echo >> $(notdir $@).deps                @rm deps.tmp                $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/panel_test.o            }            make -priority 320 {                <PREFIX>/bin/kbd_test.img : <PACKAGE>/misc/kbd_test.c                @sh -c "mkdir -p misc $(dir $@)"                $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/kbd_test.o $<                @echo $@ ": \\" > $(notdir $@).deps                @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps                @tail +2 deps.tmp >> $(notdir $@).deps                @echo >> $(notdir $@).deps                @rm deps.tmp                $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/kbd_test.o            }            make -priority 320 {                <PREFIX>/bin/i2s_audio_test.img : <PACKAGE>/misc/i2s_audio_test.c <PACKAGE>/misc/i2s_audio_fiq.S                @sh -c "mkdir -p misc $(dir $@)"                $(CC) -c $(INCLUDE_PATH) -Wp,-MD,deps.tmp -I$(dir $<) $(CFLAGS) -o misc/i2s_audio_test.o $<                @echo $@ ": \\" > $(notdir $@).deps                @echo $(wildcard $(PREFIX)/lib/*) " \\" >> $(notdir $@).deps                @tail +2 deps.tmp >> $(notdir $@).deps                @echo >> $(notdir $@).deps                # warning: no proper deps here                $(CC) -c $(INCLUDE_PATH) -I$(dir $<) $(CFLAGS) -o misc/i2s_audio_fiq.o $(REPOSITORY)/$(PACKAGE)/misc/i2s_audio_fiq.S                $(CC) $(LDFLAGS) -L$(PREFIX)/lib -Ttarget.ld -o $@ misc/i2s_audio_test.o misc/i2s_audio_fiq.o            }        }    }    cdl_component CYGPKG_HAL_ARM_EDB7XXX_OPTIONS {        display "Cirrus Logic build options"        flavor  none        description   "	    Package specific build options including control over	    compiler flags used only in building this package,	    and details of which tests are built."        cdl_option CYGPKG_HAL_ARM_EDB7XXX_CFLAGS_ADD {            display "Additional compiler flags"            flavor  data            no_define            default_value { CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "CL_PS7111" ? "-D__CL7111" : \                            CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7209" ? "-D__EDB7209" : \                            CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7211" ? "-D__EDB7211" : \                            CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7212" ? "-D__EDB7209 -D__EDB7212" : "" }            description   "                This option modifies the set of compiler flags for                building the Cirrus Logic HAL. These flags are used in addition                to the set of global flags."        }        cdl_option CYGPKG_HAL_ARM_EDB7XXX_CFLAGS_REMOVE {            display "Suppressed compiler flags"            flavor  data            no_define            default_value { "" }            description   "                This option modifies the set of compiler flags for                building the Cirrus Logic HAL. These flags are removed from                the set of global flags if present."        }        cdl_option CYGPKG_HAL_ARM_EDB7XXX_TESTS {            display "Cirrus Logic tests"            flavor  data            no_define            calculated { "tests/dram_test" }            description   "                This option specifies the set of tests for the Cirrus Logic HAL."        }    }    cdl_component CYGHWR_MEMORY_LAYOUT {        display "Memory layout"        flavor data        no_define        calculated {           CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "CL_PS7111" ?             (CYG_HAL_STARTUP == "RAM" ? "arm_cl7111_ram" : \             CYG_HAL_STARTUP == "ROM" ? "arm_cl7111_rom" : "BOGUS.mlt" ) : \          CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7209" ?             (CYG_HAL_STARTUP == "ROM" ? "arm_edb7209_rom" : "BOGUS.mlt" ) : \          CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7211" ?             (CYG_HAL_STARTUP == "RAM" ? "arm_edb7211_ram" : \             CYG_HAL_STARTUP == "ROM" ? "arm_edb7211_rom" : "BOGUS.mlt" ) : \          CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7212" ?             (CYG_HAL_STARTUP == "RAM" ? "arm_edb7212_ram" : \             CYG_HAL_STARTUP == "ROM" ? "arm_edb7212_rom" : "BOGUS.mlt" ) : \          "BOGUS.mlt" }        cdl_option CYGHWR_MEMORY_LAYOUT_LDI {            display "Memory layout linker script fragment"            flavor data            no_define            define -file system.h CYGHWR_MEMORY_LAYOUT_LDI            calculated {               CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "CL_PS7111" ?                (CYG_HAL_STARTUP == "RAM" ? "<pkgconf/mlt_arm_cl7111_ram.ldi>" :  \                 CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_cl7111_rom.ldi>" :  "BOGUS.ldi" ) : \              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7209" ?                (CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_edb7209_rom.ldi>" :  "BOGUS.ldi" ) : \              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7211" ?                (CYG_HAL_STARTUP == "RAM" ? "<pkgconf/mlt_arm_edb7211_ram.ldi>" :  \                 CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_edb7211_rom.ldi>" :  "BOGUS.ldi" ) : \              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7212" ?                (CYG_HAL_STARTUP == "RAM" ? "<pkgconf/mlt_arm_edb7212_ram.ldi>" :  \                 CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_edb7212_rom.ldi>" :  "BOGUS.ldi" ) : \              "BOGUS.ldi" }        }        cdl_option CYGHWR_MEMORY_LAYOUT_H {            display "Memory layout header file"            flavor data            no_define            define -file system.h CYGHWR_MEMORY_LAYOUT_H            calculated {              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "CL_PS7111" ?                (CYG_HAL_STARTUP == "RAM" ? "<pkgconf/mlt_arm_cl7111_ram.h>" :  \                 CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_cl7111_rom.h>" :  "BOGUS.h" ) : \              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7209" ?                (CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_edb7209_rom.h>" :  "BOGUS.h" ) : \              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7211" ?                (CYG_HAL_STARTUP == "RAM" ? "<pkgconf/mlt_arm_edb7211_ram.h>" :  \                 CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_edb7211_rom.h>" :  "BOGUS.h" ) : \              CYGHWR_HAL_ARM_EDB7XXX_VARIANT == "EP7212" ?                (CYG_HAL_STARTUP == "RAM" ? "<pkgconf/mlt_arm_edb7212_ram.h>" :  \                 CYG_HAL_STARTUP == "ROM" ? "<pkgconf/mlt_arm_edb7212_rom.h>" :  "BOGUS.h" ) : \              "BOGUS.h" }        }    }    cdl_option CYGSEM_HAL_ROM_MONITOR {        display       "Behave as a ROM monitor"        flavor        bool        default_value 0        parent        CYGPKG_HAL_ROM_MONITOR        requires      { CYG_HAL_STARTUP == "ROM" }        description   "            Enable this option if this program is to be used as a ROM monitor,            i.e. applications will be loaded into RAM on the board, and this            ROM monitor may process exceptions or interrupts generated from the            application. This enables features such as utilizing a separate            interrupt stack when exceptions are generated."    }    cdl_component CYGPKG_CYGMON_HAL_OPTIONS {        display       "CygMon HAL options"        flavor        none        no_define        parent        CYGPKG_CYGMON        active_if     CYGPKG_CYGMON        requires      CYGPKG_IO_SERIAL_ARM_EDB7XXX        requires      {(CYGDAT_CYGMON_CONSOLE_DEV != "\"/dev/ser1\"") || \                       (CYGPKG_IO_SERIAL_ARM_EDB7XXX_SERIAL1)}        requires      {(CYGDAT_CYGMON_CONSOLE_DEV != "\"/dev/ser2\"") || \                       (CYGPKG_IO_SERIAL_ARM_EDB7XXX_SERIAL2)}        description   "            This option lists the target's requirements for a valid CygMon            configuration."        cdl_option CYGDAT_CYGMON_CONSOLE_DEV {            display       "Serial port for default console"            flavor data            default_value { "\"/dev/ser1\"" }            description   "               This option selects the physical device to use as the default               console device for CygMon."            }            cdl_option CYGBLD_BUILD_CYGMON_BIN {            display       "Build CygMon ROM binary image"            active_if     CYGBLD_BUILD_CYGMON            default_value 1            no_define            description "This option enables the conversion of the CygMon ELF                         image to a binary image suitable for ROM programming."                make -priority 325 {                <PREFIX>/bin/cygmon.bin : <PREFIX>/bin/cygmon.elf                $(OBJCOPY) --strip-debug $< $(@:.bin=.img)                 $(OBJCOPY) -O srec $< $(@:.bin=.srec)                $(OBJCOPY) -O binary $< $@            }        }    }    cdl_option CYGSEM_HAL_USE_ROM_MONITOR {         display       "Work with a ROM monitor"         flavor        booldata         legal_values  { "Generic" "GDB_stubs" }         default_value { CYG_HAL_STARTUP == "RAM" ? "GDB_stubs" : 0 }         parent        CYGPKG_HAL_ROM_MONITOR         requires      { CYG_HAL_STARTUP == "RAM" }         description   "             Support can be enabled for different varieties of ROM monitor.             This support changes various eCos semantics such as the encoding             of diagnostic output, or the overriding of hardware interrupt             vectors.             Firstly there is \"Generic\" support which prevents the HAL             from overriding the hardware vectors that it does not use, to             instead allow an installed ROM monitor to handle them. This is             the most basic support which is likely to be common to most             implementations of ROM monitor.             \"GDB_stubs\" provides support when GDB stubs are included in             the ROM monitor or boot ROM."     }    cdl_component CYGPKG_REDBOOT_HAL_OPTIONS {        display       "Redboot HAL options"        flavor        none        no_define        parent        CYGPKG_REDBOOT        active_if     CYGPKG_REDBOOT        description   "            This option lists the target's requirements for a valid Redboot            configuration."            cdl_option CYGBLD_BUILD_REDBOOT_BIN {            display       "Build Redboot ROM binary image"            active_if     CYGBLD_BUILD_REDBOOT            default_value 1            no_define            description "This option enables the conversion of the Redboot ELF                         image to a binary image suitable for ROM programming."                make -priority 325 {                <PREFIX>/bin/redboot.bin : <PREFIX>/bin/redboot.elf                $(OBJCOPY) --strip-debug $< $(@:.bin=.img)                 $(OBJCOPY) -O srec $< $(@:.bin=.srec)                $(OBJCOPY) -O binary $< $@            }        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -