亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mxc_setup_mx31.h

?? i.mx31 3DS平臺Nandboot引導程序源碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
#ifndef MXC_SETUP_MX31_H_#define MXC_SETUP_MX31_H_ //========================================================================= //         File : mxc_setup_mx31.h // //        Platform specific code for MX31 platform. //        This code is derived from eCos files hal_platform_setup.h //        hal_mx31.h. // //========================================================================== //####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. // // eCos is free software; you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2 or (at your option) any later version. // // eCos is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License // for more details. // // You should have received a copy of the GNU General Public License along // with eCos; if not, write to the Free Software Foundation, Inc., // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. // // As a special exception, if other files instantiate templates or use macros // or inline functions from this file, or you compile this file and link it // with other works to produce a work based on this file, this file does not // by itself cause the resulting work to be covered by the GNU General Public // License. However the source code for this file must still be made available // in accordance with section (3) of the GNU General Public License. // // This exception does not invalidate any other reasons why a work based on // this file might be covered by the GNU General Public License. // // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. // at http://sources.redhat.com/ecos/ecos-license/ // ------------------------------------------- //####ECOSGPLCOPYRIGHTEND#### //========================================================================*/ #ifdef __ASSEMBLER__  #define REG8_VAL(a)          (a) #define REG16_VAL(a)         (a) #define REG32_VAL(a)         (a)  #define REG8_PTR(a)          (a) #define REG16_PTR(a)         (a) #define REG32_PTR(a)         (a)  #else /* __ASSEMBLER__ */  #define REG8_VAL(a)          ((unsigned char)(a)) #define REG16_VAL(a)         ((unsigned short)(a)) #define REG32_VAL(a)         ((unsigned int)(a))  #define REG8_PTR(a)          ((volatile unsigned char *)(a)) #define REG16_PTR(a)         ((volatile unsigned short *)(a)) #define REG32_PTR(a)         ((volatile unsigned int *)(a)) #define readb(a)             (*(volatile unsigned char *)(a)) #define readw(a)             (*(volatile unsigned short *)(a)) #define readl(a)             (*(volatile unsigned int *)(a)) #define writeb(v,a)          (*(volatile unsigned char *)(a) = (v)) #define writew(v,a)          (*(volatile unsigned short *)(a) = (v)) #define writel(v,a)          (*(volatile unsigned int *)(a) = (v))  #endif /* __ASSEMBLER__ */  /*  * Default Memory Layout Definitions  */  #define L2CC_BASE_ADDR          0x30000000  /*  * AIPS 1  */ #define AIPS1_BASE_ADDR         0x43F00000 #define AIPS1_CTRL_BASE_ADDR    AIPS1_BASE_ADDR #define MAX_BASE_ADDR           0x43F04000 #define EVTMON_BASE_ADDR        0x43F08000 #define CLKCTL_BASE_ADDR        0x43F0C000 #define ETB_SLOT4_BASE_ADDR     0x43F10000 #define ETB_SLOT5_BASE_ADDR     0x43F14000 #define ECT_CTIO_BASE_ADDR      0x43F18000 #define I2C_BASE_ADDR           0x43F80000 #define I2C3_BASE_ADDR          0x43F84000 #define OTG_BASE_ADDR           0x43F88000 #define ATA_BASE_ADDR           0x43F8C000 #define UART1_BASE_ADDR         0x43F90000 #define UART2_BASE_ADDR         0x43F94000 #define I2C2_BASE_ADDR          0x43F98000 #define OWIRE_BASE_ADDR         0x43F9C000 #define SSI1_BASE_ADDR          0x43FA0000 #define CSPI1_BASE_ADDR         0x43FA4000 #define KPP_BASE_ADDR           0x43FA8000 #define IOMUXC_BASE_ADDR        0x43FAC000 #define UART4_BASE_ADDR         0x43FB0000 #define UART5_BASE_ADDR         0x43FB4000 #define ECT_IP1_BASE_ADDR       0x43FB8000 #define ECT_IP2_BASE_ADDR       0x43FBC000  /*  * SPBA  */ #define SPBA_BASE_ADDR          0x50000000 #define MMC_SDHC1_BASE_ADDR     0x50004000 #define MMC_SDHC2_BASE_ADDR     0x50008000 #define UART3_BASE_ADDR         0x5000C000 #define CSPI2_BASE_ADDR         0x50010000 #define SSI2_BASE_ADDR          0x50014000 #define SIM_BASE_ADDR           0x50018000 #define IIM_BASE_ADDR           0x5001C000 #define ATA_DMA_BASE_ADDR       0x50020000 #define SPBA_CTRL_BASE_ADDR     0x5003C000  /*  * AIPS 2  */ #define AIPS2_BASE_ADDR         0x53F00000 #define AIPS2_CTRL_BASE_ADDR    AIPS2_BASE_ADDR #define CCM_BASE_ADDR           0x53F80000 #define FIRI_BASE_ADDR          0x53F8C000 #define GPT1_BASE_ADDR          0x53F90000 #define EPIT1_BASE_ADDR         0x53F94000 #define EPIT2_BASE_ADDR         0x53F98000 #define GPIO3_BASE_ADDR         0x53FA4000 #define SCC_BASE                0x53FAC000 #define SCM_BASE                0x53FAE000 #define SMN_BASE                0x53FAF000 #define RNGA_BASE_ADDR          0x53FB0000 #define IPU_CTRL_BASE_ADDR      0x53FC0000 #define AUDMUX_BASE             0x53FC4000 #define MPEG4_ENC_BASE          0x53FC8000 #define GPIO1_BASE_ADDR         0x53FCC000 #define GPIO2_BASE_ADDR         0x53FD0000 #define SDMA_BASE_ADDR          0x53FD4000 #define RTC_BASE_ADDR           0x53FD8000 #define WDOG_BASE_ADDR          0x53FDC000 #define PWM_BASE_ADDR           0x53FE0000 #define RTIC_BASE_ADDR          0x53FEC000  #define WDOG1_BASE_ADDR               WDOG_BASE_ADDR #define CRM_MCU_BASE_ADDR     CCM_BASE_ADDR  /*  * ROMPATCH and AVIC  */ #define ROMPATCH_BASE_ADDR      0x60000000 #define AVIC_BASE_ADDR          0x68000000  /* Since AVIC vector registers are NOT used, we reserve some for various  * purposes. Copied from Linux source code. */ #define AVIC_VEC_0              0x100   /* For WFI workaround used by Linux kernel */ #define AVIC_VEC_1              0x104   /* For system revision used by Linux kernel */ #define CHIP_REV_1_0            0x10 #define CHIP_REV_2_0            0x20 #define SYSTEM_REV_ID_REG       (AVIC_BASE_ADDR + AVIC_VEC_1) #define SYSTEM_REV_ID_MAG       0xF00C  /*  * NAND, SDRAM, WEIM, M3IF, EMI controllers  */ #define EXT_MEM_CTRL_BASE       0xB8000000 #define NFC_BASE                EXT_MEM_CTRL_BASE #define ESDCTL_BASE             0xB8001000 #define WEIM_BASE_ADDR          0xB8002000 #define WEIM_CTRL_CS0           WEIM_BASE_ADDR #define WEIM_CTRL_CS1           (WEIM_BASE_ADDR + 0x10) #define WEIM_CTRL_CS2           (WEIM_BASE_ADDR + 0x20) #define WEIM_CTRL_CS3           (WEIM_BASE_ADDR + 0x30) #define WEIM_CTRL_CS4           (WEIM_BASE_ADDR + 0x40) #define M3IF_BASE               0xB8003000 #define PCMCIA_CTL_BASE         0xB8004000  /*  * Memory regions and CS  */ #define IPU_MEM_BASE_ADDR       0x70000000 #define CSD0_BASE_ADDR          0x80000000 #define CSD1_BASE_ADDR          0x90000000 #define CS0_BASE_ADDR           0xA0000000 #define CS1_BASE_ADDR           0xA8000000 #define CS2_BASE_ADDR           0xB0000000 #define CS3_BASE_ADDR           0xB2000000 #define CS4_BASE_ADDR           0xB4000000 #define CS4_BASE_PSRAM          0xB5000000 #define CS5_BASE_ADDR           0xB6000000 #define PCMCIA_MEM_BASE_ADDR    0xC0000000  #define INTERNAL_ROM_VA         0xF0000000  // SDRAM #define RAM_BANK0_BASE          SDRAM_BASE_ADDR  /*  * IRQ Controller Register Definitions.  */ #define AVIC_NIMASK                     REG32_PTR(AVIC_BASE_ADDR + (0x04)) #define AVIC_INTTYPEH                   REG32_PTR(AVIC_BASE_ADDR + (0x18)) #define AVIC_INTTYPEL                   REG32_PTR(AVIC_BASE_ADDR + (0x1C))  /* L210 */ #define L2CC_BASE_ADDR                  0x30000000 #define L2_CACHE_LINE_SIZE              32 #define L2_CACHE_CTL_REG                0x100 #define L2_CACHE_AUX_CTL_REG            0x104 #define L2_CACHE_SYNC_REG               0x730 #define L2_CACHE_INV_LINE_REG           0x770 #define L2_CACHE_INV_WAY_REG            0x77C #define L2_CACHE_CLEAN_LINE_REG         0x7B0 #define L2_CACHE_CLEAN_INV_LINE_REG     0x7F0  /* CCM */ #define CLKCTL_CCMR                     0x00 #define CLKCTL_PDR0                     0x04 #define CLKCTL_PDR1                     0x08 #define CLKCTL_PDR2                     0x64 #define CLKCTL_RCSR                     0x0C #define CLKCTL_MPCTL                    0x10 #define CLKCTL_UPCTL                    0x14 #define CLKCTL_SPCTL                    0x18 #define CLKCTL_COSR                     0x1C #define PLL_REF_CLK                     26000000  /* WEIM - CS0 */ #define CSCRU                           0x00 #define CSCRL                           0x04 #define CSCRA                           0x08  /* ESDCTL */ #define ESDCTL_ESDCTL0                  0x00 #define ESDCTL_ESDCFG0                  0x04 #define ESDCTL_ESDCTL1                  0x08 #define ESDCTL_ESDCFG1                  0x0C #define ESDCTL_ESDMISC                  0x10  /*  * UART Control Register 0 Bit Fields.  */ #define         EUartUCR1_ADEN      (1 << 15)   // Auto detect interrupt #define         EUartUCR1_ADBR      (1 << 14)   // Auto detect baud rate #define         EUartUCR1_TRDYEN    (1 << 13)   // Transmitter ready interrupt enable #define         EUartUCR1_IDEN      (1 << 12)   // Idle condition interrupt #define         EUartUCR1_RRDYEN    (1 << 9)    // Recv ready interrupt enable #define         EUartUCR1_RDMAEN    (1 << 8)    // Recv ready DMA enable #define         EUartUCR1_IREN      (1 << 7)    // Infrared interface enable #define         EUartUCR1_TXMPTYEN  (1 << 6)    // Transimitter empt  interrupt enable #define         EUartUCR1_RTSDEN    (1 << 5)    // RTS delta interrupt enable #define         EUartUCR1_SNDBRK    (1 << 4)    // Send break #define         EUartUCR1_TDMAEN    (1 << 3)    // Transmitter ready DMA enable #define         EUartUCR1_DOZE      (1 << 1)    // Doze #define         EUartUCR1_UARTEN    (1 << 0)    // UART enabled #define         EUartUCR2_ESCI      (1 << 15)   // Escape seq interrupt enable #define         EUartUCR2_IRTS      (1 << 14)   // Ignore RTS pin #define         EUartUCR2_CTSC      (1 << 13)   // CTS pin control #define         EUartUCR2_CTS       (1 << 12)   // Clear to send #define         EUartUCR2_ESCEN     (1 << 11)   // Escape enable #define         EUartUCR2_PREN      (1 << 8)    // Parity enable #define         EUartUCR2_PROE      (1 << 7)    // Parity odd/even #define         EUartUCR2_STPB      (1 << 6)    // Stop #define         EUartUCR2_WS        (1 << 5)    // Word size #define         EUartUCR2_RTSEN     (1 << 4)    // Request to send interrupt enable #define         EUartUCR2_ATEN      (1 << 3)    // Aging timer enable #define         EUartUCR2_TXEN      (1 << 2)    // Transmitter enabled #define         EUartUCR2_RXEN      (1 << 1)    // Receiver enabled #define         EUartUCR2_SRST_     (1 << 0)    // SW reset #define         EUartUCR3_PARERREN  (1 << 12)   // Parity enable #define         EUartUCR3_FRAERREN  (1 << 11)   // Frame error interrupt enable #define         EUartUCR3_ADNIMP    (1 << 7)    // Autobaud detection not improved #define         EUartUCR3_RXDSEN    (1 << 6)    // Receive status interrupt  enable #define         EUartUCR3_AIRINTEN  (1 << 5)    // Async IR wake interrupt enable #define         EUartUCR3_AWAKEN    (1 << 4)    // Async wake interrupt enable #define         EUartUCR3_RXDMUXSEL (1 << 2)    // RXD muxed input selected #define         EUartUCR3_INVT      (1 << 1)    // Inverted Infrared transmission #define         EUartUCR3_ACIEN     (1 << 0)    // Autobaud counter interrupt  enable #define         EUartUCR4_CTSTL_32  (32 << 10)  // CTS trigger level (32 chars) #define         EUartUCR4_INVR      (1 << 9)    // Inverted infrared reception #define         EUartUCR4_ENIRI     (1 << 8)    // Serial infrared interrupt enable #define         EUartUCR4_WKEN      (1 << 7)    // Wake interrupt enable #define         EUartUCR4_IRSC      (1 << 5)    // IR special case #define         EUartUCR4_LPBYP     (1 << 4)    // Low power bypass #define         EUartUCR4_TCEN      (1 << 3)    // Transmit complete interrupt  enable #define         EUartUCR4_BKEN      (1 << 2)    // Break condition interrupt enable #define         EUartUCR4_OREN      (1 << 1)    // Receiver overrun interrupt enable #define         EUartUCR4_DREN      (1 << 0)    // Recv data ready interrupt enable #define         EUartUFCR_RXTL_SHF  0           // Receiver trigger level shift #define         EUartUFCR_RFDIV_1   (5 << 7)    // Reference freq divider (div> 1) #define         EUartUFCR_RFDIV_2   (4 << 7)    // Reference freq divider (div> 2) #define         EUartUFCR_RFDIV_3   (3 << 7)            // Reference freq  divider (div 3) #define         EUartUFCR_RFDIV_4   (2 << 7)            // Reference freq divider (div 4) #define         EUartUFCR_RFDIV_5   (1 << 7)            // Reference freq divider (div 5) #define         EUartUFCR_RFDIV_6   (0 << 7)            // Reference freq divider (div 6) #define         EUartUFCR_RFDIV_7   (6 << 7)            // Reference freq divider (div 7) #define         EUartUFCR_TXTL_SHF  10          // Transmitter trigger level shift #define         EUartUSR1_PARITYERR (1 << 15)   // Parity error interrupt flag #define         EUartUSR1_RTSS      (1 << 14)   // RTS pin status #define         EUartUSR1_TRDY      (1 << 13)   // Transmitter ready interrupt/dma flag #define         EUartUSR1_RTSD      (1 << 12)   // RTS delta #define         EUartUSR1_ESCF      (1 << 11)   // Escape seq interrupt flag #define         EUartUSR1_FRAMERR   (1 << 10)   // Frame error interrupt flag #define         EUartUSR1_RRDY      (1 << 9)    // Receiver ready  interrupt/dma flag #define         EUartUSR1_AGTIM     (1 << 8)    // Aging timeout interrupt status #define         EUartUSR1_RXDS      (1 << 6)    // Receiver idle interrupt flag #define         EUartUSR1_AIRINT    (1 << 5)    // Async IR wake interrupt flag #define         EUartUSR1_AWAKE     (1 << 4)    // Aysnc wake interrupt flag #define         EUartUSR2_ADET      (1 << 15)   // Auto baud rate detect  complete #define         EUartUSR2_TXFE      (1 << 14)   // Transmit buffer FIFO empty #define         EUartUSR2_IDLE      (1 << 12)   // Idle condition #define         EUartUSR2_ACST      (1 << 11)   // Autobaud counter stopped

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜久久久影院| 处破女av一区二区| 国产激情偷乱视频一区二区三区| 成人激情动漫在线观看| 欧美亚洲图片小说| 亚洲国产高清在线| 日韩专区中文字幕一区二区| 国产aⅴ综合色| 91麻豆精品国产91久久久久久久久 | 国产麻豆视频精品| 欧美在线免费视屏| 中文字幕精品在线不卡| 美美哒免费高清在线观看视频一区二区| 成人精品一区二区三区四区| 欧美一卡二卡在线| 亚洲午夜三级在线| av一区二区三区四区| 久久这里只有精品首页| 日韩成人免费在线| 精品婷婷伊人一区三区三| 国产精品色眯眯| 国产精品一区二区无线| 日韩精品一区二区在线| 日韩精品乱码av一区二区| 色综合夜色一区| 国产精品久久精品日日| 国产91综合网| 日本一区二区三区免费乱视频 | 日韩视频一区二区| 亚洲成人精品在线观看| 99热在这里有精品免费| 国产精品初高中害羞小美女文| 精品一区二区免费在线观看| 6080国产精品一区二区| 亚洲不卡av一区二区三区| 欧美午夜精品理论片a级按摩| 亚洲欧美日本在线| www.日韩大片| 亚洲欧美日韩国产另类专区 | 欧美三级日韩三级国产三级| 亚洲精品日韩一| 91视频精品在这里| 一区二区三区四区精品在线视频| av在线免费不卡| 亚洲色图欧洲色图| aaa亚洲精品一二三区| 国产精品久久久久影视| 99国产精品国产精品毛片| 亚洲人精品一区| 欧洲精品中文字幕| 婷婷亚洲久悠悠色悠在线播放| 欧美日韩国产另类一区| 免费在线看一区| 久久免费精品国产久精品久久久久| 激情综合色丁香一区二区| 久久精子c满五个校花| 91蜜桃网址入口| 香蕉成人伊视频在线观看| 欧美不卡在线视频| 国产白丝精品91爽爽久久| 亚洲人成7777| 91精品国产综合久久久蜜臀图片| 精品亚洲porn| 亚洲色图视频网| 欧美一区二区三区四区高清| 国产成人在线影院| 一区二区高清视频在线观看| 91精品国产麻豆国产自产在线| 国产在线播精品第三| 亚洲欧美激情小说另类| 91精品国产色综合久久不卡电影 | 不卡一区二区中文字幕| 亚洲综合免费观看高清完整版| 欧美精品久久99| 国产成人日日夜夜| 亚洲第一激情av| 中文字幕av在线一区二区三区| 欧美视频一区二区三区四区| 国产高清不卡二三区| 亚洲午夜电影网| 久久久久久久性| 欧美日韩高清一区二区不卡| 国产福利一区二区三区视频 | 国精产品一区一区三区mba视频| 中文字幕在线不卡视频| 日韩午夜三级在线| 91麻豆蜜桃一区二区三区| 韩国中文字幕2020精品| 亚洲一区二区高清| 国产精品乱码久久久久久| 日韩欧美国产精品| 欧美日韩中文国产| 99国产精品一区| 国产成人免费在线| 麻豆精品在线观看| 五月天一区二区三区| 亚洲精品日韩综合观看成人91| 国产亚洲成aⅴ人片在线观看| 这里只有精品99re| 91成人在线免费观看| www.66久久| 国产99久久久国产精品潘金 | 一级特黄大欧美久久久| 欧美国产一区在线| 26uuu国产日韩综合| 日韩免费视频一区| 欧美午夜在线观看| 在线观看国产精品网站| 成人黄色电影在线 | 国精产品一区一区三区mba视频| 午夜欧美一区二区三区在线播放| 亚洲丝袜制服诱惑| 国产精品免费免费| 国产精品丝袜黑色高跟| 欧美激情一区三区| 欧美激情在线一区二区| 亚洲国产精品99久久久久久久久 | 日韩三级免费观看| 日韩一区二区三区免费看 | 亚洲成人激情社区| 亚洲综合小说图片| 亚洲国产aⅴ成人精品无吗| 亚洲最大色网站| 亚洲韩国一区二区三区| 亚洲成人av中文| 三级欧美在线一区| 久久国产精品99精品国产| 久久99精品久久久久久久久久久久 | 青青草成人在线观看| 天天影视涩香欲综合网| 日韩成人午夜电影| 国产真实精品久久二三区| 国产成人av电影在线| 97精品久久久久中文字幕| 欧美午夜一区二区| 日韩一级视频免费观看在线| 精品免费国产一区二区三区四区| 久久久久久综合| 最近日韩中文字幕| 亚洲国产视频a| 精品无人区卡一卡二卡三乱码免费卡| 极品少妇xxxx精品少妇偷拍| 成人永久看片免费视频天堂| 色哟哟日韩精品| 欧美一级黄色录像| 国产精品丝袜在线| 午夜精品久久久久久| 国产一区二区三区综合| 99精品久久99久久久久| 欧美色老头old∨ideo| 精品少妇一区二区| 中文字幕在线不卡| 三级成人在线视频| 丁香婷婷深情五月亚洲| 在线视频一区二区三| 欧美成人精品高清在线播放| 国产精品久久久久aaaa| 亚洲影视在线播放| 激情图区综合网| 欧洲精品视频在线观看| 国产亚洲午夜高清国产拍精品| 亚洲综合一区二区精品导航| 国产在线视频不卡二| 欧美色综合影院| 国产精品久久久久影院老司 | 欧美日韩不卡在线| 欧美tickling网站挠脚心| 亚洲欧洲韩国日本视频| 久久国产精品99久久久久久老狼 | 一区二区免费在线播放| 九九在线精品视频| 欧美中文字幕亚洲一区二区va在线| 精品国产精品一区二区夜夜嗨| 亚洲人成精品久久久久久| 国产乱子轮精品视频| 欧美日韩精品免费观看视频| 日本一区二区三级电影在线观看| 日韩在线观看一区二区| 91免费国产视频网站| 国产欧美中文在线| 极品销魂美女一区二区三区| 欧美夫妻性生活| 亚洲欧美日韩成人高清在线一区| 国产精品91一区二区| 日韩精品在线看片z| 亚洲成人av中文| 色噜噜狠狠成人网p站| 中文字幕不卡的av| 国产一区二区影院| 日韩欧美国产1| 美女视频黄a大片欧美| 欧美一区二区三区的| 三级亚洲高清视频| 欧美性一二三区| 亚洲一区精品在线| 欧美日韩情趣电影| 亚洲韩国一区二区三区| 欧美三级日韩在线| 天使萌一区二区三区免费观看| 色偷偷成人一区二区三区91|