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

📄 hal_platform_extras.h

📁 eCos1.31版
💻 H
字号:
#ifndef CYGONCE_HAL_PLATFORM_EXTRAS_H#define CYGONCE_HAL_PLATFORM_EXTRAS_H/*=============================================================================////      hal_platform_extras.h////      Platform specific support for HAL (assembly code)////=============================================================================//####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: gthomas// Date:         1999-11-23// Purpose:      Cirrus EDB7XXX platform extras, in particular MMU tables// Description: // Usage:       #include <cyg/hal/hal_platform_extras.h>////####DESCRIPTIONEND####////===========================================================================*/        .section ".mmu_tables","aw"#define NEXT_PAGE                \        .long   PTE                     ; \        .set    PTE,PTE+MMU_PAGE_SIZE_PT_0x0:#if (CYGHWR_HAL_ARM_EDB7XXX_DRAM_SIZE == 2)#err Static MMU tables not yet available for 2M boards.#elif (CYGHWR_HAL_ARM_EDB7XXX_DRAM_SIZE == 16)        .set    PTE,(DRAM_PA_START+LCD_BUFFER_SIZE)|MMU_L2_TYPE_Small\                    |MMU_AP_Any|MMU_Bufferable|MMU_Cacheable        .rept   (0x800000-LCD_BUFFER_SIZE)/0x1000        NEXT_PAGE        .endr        .set    PTE,(DRAM_PA_START+0x01000000)|MMU_L2_TYPE_Small\                    |MMU_AP_Any|MMU_Bufferable|MMU_Cacheable        .rept   0x800000/0x1000        NEXT_PAGE        .endr#endif        .balign 0x0400// Too bad these macros don't work ['as' bug?] :-(#define NEXT_SECTION                                            \        .long   PTE+OFF                                        ;\        .set    OFF,OFF+(MMU_SECTION_SIZE/MMU_PAGE_SIZE)*4#define FILL_SEGMENT_(base)                     \        .set    PTE,base                        \        .set    OFF,0x00000000                  \        .rept   0x10000000/MMU_SECTION_SIZE     \            NEXT_SECTION                        \        .endr#define OFF     ((MMU_SECTION_SIZE/MMU_PAGE_SIZE)*4)#define FILL_16M_SEGMENT(base,seg)              \        .long   base+(OFF*(seg+0x00));          \        .long   base+(OFF*(seg+0x01));          \        .long   base+(OFF*(seg+0x02));          \        .long   base+(OFF*(seg+0x03));          \        .long   base+(OFF*(seg+0x04));          \        .long   base+(OFF*(seg+0x05));          \        .long   base+(OFF*(seg+0x06));          \        .long   base+(OFF*(seg+0x07));          \        .long   base+(OFF*(seg+0x08));          \        .long   base+(OFF*(seg+0x09));          \        .long   base+(OFF*(seg+0x0A));          \        .long   base+(OFF*(seg+0x0B));          \        .long   base+(OFF*(seg+0x0C));          \        .long   base+(OFF*(seg+0x0D));          \        .long   base+(OFF*(seg+0x0E));          \        .long   base+(OFF*(seg+0x0F));#define FILL_256M_SEGMENT(base)                 \        FILL_16M_SEGMENT(base,0x00);            \        FILL_16M_SEGMENT(base,0x10);            \        FILL_16M_SEGMENT(base,0x20);            \        FILL_16M_SEGMENT(base,0x30);            \        FILL_16M_SEGMENT(base,0x40);            \        FILL_16M_SEGMENT(base,0x50);            \        FILL_16M_SEGMENT(base,0x60);            \        FILL_16M_SEGMENT(base,0x70);            \        FILL_16M_SEGMENT(base,0x80);            \        FILL_16M_SEGMENT(base,0x90);            \        FILL_16M_SEGMENT(base,0xA0);            \        FILL_16M_SEGMENT(base,0xB0);            \        FILL_16M_SEGMENT(base,0xC0);            \        FILL_16M_SEGMENT(base,0xD0);            \        FILL_16M_SEGMENT(base,0xE0);            \        FILL_16M_SEGMENT(base,0xF0);        .balign 0x4000_MMU_table:             FILL_16M_SEGMENT(_PT_0x0-0xE0000000+MMU_L1_TYPE_Page,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_16M_SEGMENT(MMU_L1_TYPE_Fault,0x00)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(EXPANSION2_PA|MMU_L1_TYPE_Section|MMU_AP_Any)        FILL_256M_SEGMENT(EXPANSION3_PA|MMU_L1_TYPE_Section|MMU_AP_Any)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(SRAM_PA|MMU_L1_TYPE_Section|MMU_AP_Any)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(IO_PA|MMU_L1_TYPE_Section|MMU_AP_Any)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(DRAM_PA|MMU_L1_TYPE_Section|MMU_AP_Any)        FILL_256M_SEGMENT(MMU_L1_TYPE_Fault)        FILL_256M_SEGMENT(ROM0_PA|MMU_L1_TYPE_Section|MMU_AP_Any)        FILL_256M_SEGMENT(ROM1_PA|MMU_L1_TYPE_Section|MMU_AP_Any)#endif // CYGONCE_HAL_PLATFORM_EXTRAS_H

⌨️ 快捷键说明

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