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

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

?? mmio.h

?? PNX系列設備驅動 PNX系列設備驅動
?? H
字號:
/*      Master TM-1 MMIO location definition & access file.
 *
 *        this include file is THE master reference for names and
 *        addresses of TM-1 MMIO locations. The file also provides
 *        an access macro for MMIO locations. This is the recommended
 *        C program way to access any MMIO locations on TM-1. C-code using
 *        this access mechanism will be forward portable.
 *
 *                USAGE OF THE MACROS
 *                ===================
 *
 *      ---------------- example code begin -------------------
 *      #include <tm1/mmio.h>
 *      ...
 *      unsigned value_of_vi_status, value_of_vi_control;
 *      ...
 *
 *      value_of_vi_status = MMIO(VI_STATUS);
 *      MMIO(VI_CONTROL)   = value_of_vi_control;
 *
 *      ---------------- example code end -------------------
 *      In the above code, VI_STATUS and VI_CONTROL are #define's
 *      defined in this file. These are the offsets of the corresponding
 *      registers with respect to MMIO_base. The #define MMIO is also
 *      defined in this file and does the necessary computations to add 
 *      the MMIO_base value and the given offset (VI_STATUS and VI_CONTROL
 *      in the example).
 *      On stand alone systems, value of MMIO_base is 0xEFE00000. To get
 *      this value, the compilation command should supply -DSTAND_ALONE
 *      to the compiler. 
 */

#ifndef __mmio_h__
#define __mmio_h__

#define STAND_ALONE
#ifdef STAND_ALONE
    #define MMIO_base 0xEFE00000
#else
    extern unsigned int *MMIO_base;
#endif 

#define MMIO(offset)    (((unsigned int *)MMIO_base)[(offset) >> 2])


/***********************************************************************/
/*
            The #define's in this file are in grouped into sections.
            The sections are made (roughly) according to the appearances
            of the definitions in TM-1 Preliminary Data Book of
            September 1995.
            
            Section I has general register definitions from Chapter 3
            (TM-1 CPU Architecture). This includes timers, interrupt
            vectors, interrupt control registers, and debug support
            registers.

            Section II has cache related definitions from 
            "Eino's cache/memory architecture spec" document 
            available on mosaic:
              TriMedia Development Internal Documents
                 -> TriMedia Hardware/VLSI Desgin Documents
                   -> Eino's cache/memory architecture spec 

            Section III has Video In definitions from Chapter 
            "TM-1 Video In".

            Section IV has Video Out definitions from Chapter 
            "TM-1 Video Out".

            Section V has Audio In definitions from  Chapter 
            "TM-1 Audio In".

            Section VI has Audio Out definitions from Chapter 
            "TM-1 Audio Out".

            Section VII has PCI related definitions. These are based
            on an email from  Ken-Su Tan. 
/*
 *                 Section I
 *                 =========
 *         General register definitions from 
 *         chapter 3 of TM-1 Preliminary Data Book
 *         of September 1995. 
 *         Most of these are taken from Figure 3-4 of the
 *         data book. The rest are from later figures in the 
 *         same chapter.
 */

#define DRAM_BASE               (0x100000)
#define DRAM_LIMIT              (0x100004)
#define MMIO_BASE               (0x100400)
#define EXCVEC                  (0x100800)
#define ISETTING0               (0x100810)
#define ISETTING1               (0x100814)
#define ISETTING2               (0x100818)
#define ISETTING3               (0x10081c)
#define IPENDING                (0x100820)
#define ICLEAR                  (0x100824)
#define IMASK                   (0x100828)
#define INTVEC0                 (0x100880)
#define INTVEC1                 (0x100884)
#define INTVEC2                 (0x100888)
#define INTVEC3                 (0x10088c)
#define INTVEC4                 (0x100890)
#define INTVEC5                 (0x100894)
#define INTVEC6                 (0x100898)
#define INTVEC7                 (0x10089c)
#define INTVEC8                 (0x1008a0)
#define INTVEC9                 (0x1008a4)
#define INTVEC10                (0x1008a8)
#define INTVEC11                (0x1008ac)
#define INTVEC12                (0x1008b0)
#define INTVEC13                (0x1008b4)
#define INTVEC14                (0x1008b8)
#define INTVEC15                (0x1008bc)
#define INTVEC16                (0x1008c0)
#define INTVEC17                (0x1008c4)
#define INTVEC18                (0x1008c8)
#define INTVEC19                (0x1008cc)
#define INTVEC20                (0x1008d0)
#define INTVEC21                (0x1008d4)
#define INTVEC22                (0x1008d8)
#define INTVEC23                (0x1008dc)
#define INTVEC24                (0x1008e0)
#define INTVEC25                (0x1008e4)
#define INTVEC26                (0x1008e8)
#define INTVEC27                (0x1008ec)
#define INTVEC28                (0x1008f0)
#define INTVEC29                (0x1008f4)
#define INTVEC30                (0x1008f8)
#define INTVEC31                (0x1008fc)
#define TIMER1                  (0x100C00)
#define TIMER1_TMODULUS         (0x100C00)
#define TIMER1_TVALUE           (0x100C04)
#define TIMER1_TCONTROL         (0x100C08)
#define TIMER2                  (0x100C20)
#define TIMER2_TMODULUS         (0x100C20)
#define TIMER2_TVALUE           (0x100C24)
#define TIMER2_TCONTROL         (0x100C28)
#define TIMER3                  (0x100C40)
#define TIMER3_TMODULUS         (0x100C40)
#define TIMER3_TVALUE           (0x100C44)
#define TIMER3_TCONTROL         (0x100C48)
#define SYSTIMER                (0x100C60)
#define SYSTIMER_TMODULUS       (0x100C60)
#define SYSTIMER_TVALUE         (0x100C64)
#define SYSTIMER_TCONTROL       (0x100C68)
#define BICONTROL               (0x101000)
#define BINSTLOW                (0x101004)
#define BINSTHIGH               (0x101008)
#define BDCONTROL               (0x101020)
#define BDATAALOW               (0x101030)
#define BDATAAHIGH              (0x101034)
#define BDATAVAL                (0x101038)
#define BDATAMASK               (0x10103c)

/*
 *                   Section II
 *                   ==========
 *         MMIO register definitions for icache and dcache.
 *         These definitions are taken from Table 2 of
 *         "Eino's cache/memory architecture spec" document 
 *          available on mosaic:
 *             TriMedia Development Internal Documents
 *                -> TriMedia Hardware/VLSI Desgin Documents
 *                  -> Eino's cache/memory architecture spec 
 * 
 */

/*  See Section I  above for DRAM_BASE, DRAM_LIMIT and MMIO_BASE */

#define DRAM_CACHEABLE_LIMIT          (0x100008)
#define MEMORY_EVENT_SELECTION        (0x10000c)
#define DCACHE_LOCK_CTRL              (0x100010)
#define DCACHE_LOCK_LOW               (0x100014)
#define DCACHE_LOCK_HIGH              (0x100018)
#define DCACHE_PARAMETERS             (0x10001c)

#define ICACHE_PARAMETERS             (0x100020)
#define MM_CONFIGURATION              (0x100100)
#define ARBITER_BANDWIDTH_CONTROL     (0x100104)
#define POWER_DOWN                    (0x100108)
#define ICACHE_LOCK_CTRL              (0x100210)
#define ICACHE_LOCK_LOW               (0x100214)
#define ICACHE_LOCK_HIGH              (0x100218)
#define PLL_RATIOS                    (0x100300)


/*
 *                   Section III
 *                   ==========
 *        MMIO register definitions for Video In. 
 *        These definitions are from Chapter on Video In  
 *        in the data book. (Figure 6-11 and 6-15).
 */

#define VI_STATUS         (0x101400)
#define VI_CONTROL        (0x101404)
#define VI_CLOCK          (0x101408)
#define VI_CAP_START      (0x10140c)
#define VI_CAP_SIZE       (0x101410)
#define VI_Y_BASE_ADR     (0x101414)
#define VI_U_BASE_ADR     (0x101418)
#define VI_V_BASE_ADR     (0x10141c)
#define VI_UV_DELTA       (0x101420)
#define VI_Y_DELTA        (0x101424)
#define VI_BASE1          (0x101414)
#define VI_BASE2          (0x101418)
#define VI_SIZE1          (0x10141c)
#define VI_SIZE2          (0x101420)

/*
 *                   Section IV.
 *                   ==========
 *       MMIO register definitions for Video Out.
 *       These definitions are taken from Chapter on Video Out
 *       of the data book (Figure 7-25).
 */

#define VO_STATUS          (0x101800)
#define VO_CONTROL         (0x101804)
#define VO_CLOCK           (0x101808)
#define VO_FRAME           (0x10180c)
#define VO_FIELD           (0x101810)
#define VO_LINE            (0x101814)
#define VO_IMAGE           (0x101818)
#define VO_YTHR            (0x10181c)
#define VO_OLSTART         (0x101820)
#define VO_OLHW            (0x101824)
#define VO_YADD            (0x101828)
#define VO_UADD            (0x10182c)
#define VO_VADD            (0x101830)
#define VO_OLADD           (0x101834)
#define VO_VUD             (0x101838)
#define VO_YOLD            (0x10183c)
 
/*
 *                   Section V
 *                   =========
 *       MMIO register definitions for Audio In.
 *       These definitions are from chapter 8 
 *       (TM-1 Audio In) of the data book. 
 *       See figure 8-5.
 *       
 */

#define AI_STATUS         (0x101c00)
#define AI_COMTROL        (0x101c04)
#define AI_SERIAL         (0x101c08)
#define AI_FRAMING        (0x101c0c)
#define AI_FREQ           (0x101c10)
#define AI_BASE1          (0x101c14)
#define AI_BASE2          (0x101c18)
#define AI_COUNT1         (0x101c1c)
#define AI_COUNT2         (0x101c20)

/*
 *                   Section VI
 *                   ==========
 *       MMIO register definitions for Audio Out.
 *       These definitions are from chapter 9
 *       (TM-1 Audio Out) of the data book.
 *       See figure 9-5.
 */

#define AO_STATUS         (0x102000)
#define AO_COMTROL        (0x102004)
#define AO_SERIAL         (0x102008)
#define AO_FRAMING        (0x10200c)
#define AO_FREQ           (0x102010)
#define AO_BASE1          (0x102014)
#define AO_BASE2          (0x102018)
#define AO_COUNT1         (0x10201c)
#define AO_COUNT2         (0x102020)

/*
 *                   Section VII
 *                   ===========
 *         These are PCI related definitions. This is based
 *         on information provided by Ken-Su Tan.
 */

#define  BIU_STATUS   (0x103004)
#define  BIU_CNTL     (0x103008)
#define  PCI_ADDR     (0x10300C)
#define  PCI_DATA     (0x103010)
#define  CONFIG_ADDR  (0x103014)
#define  CONFIG_DATA  (0x103018)
#define  CONFIG_CNTL  (0x10301C)
#define  IO_ADDR      (0x103020)
#define  IO_DATA      (0x103024)
#define  IO_CNTL      (0x103028)
#define  SRC_ADDR     (0x10302C)
#define  DEST_ADDR    (0x103030)
#define  DMA_CNTL     (0x103034)
#define  INT_CNTL     (0x103038)
 

/*
 *
 *                   Section VIII
 *                   ============
 *
 *         The SEM device. To be added to databook.
*/

#define  SEM          (0x100500)

#endif 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线亚洲免费视频| 99久久久久久| 亚洲国产综合人成综合网站| 国产精品视频在线看| 久久综合九色综合久久久精品综合| 欧美日韩在线播| 欧美三级视频在线观看| 欧美在线播放高清精品| 99re这里都是精品| 91丨porny丨中文| 色婷婷综合久久久久中文| 色综合激情久久| 欧洲av一区二区嗯嗯嗯啊| 欧美亚洲动漫另类| 欧美福利一区二区| 日韩欧美黄色影院| 久久久久99精品国产片| 亚洲国产精品精华液ab| 中文字幕综合网| 一级特黄大欧美久久久| 亚洲成av人影院| 美国三级日本三级久久99| 玖玖九九国产精品| 不卡的av在线播放| 欧美日韩一区二区三区四区| 日韩欧美综合在线| 欧美国产日韩在线观看| 污片在线观看一区二区| 免费在线成人网| 波多野结衣视频一区| 欧美亚洲综合久久| 精品福利在线导航| 国产精品美女视频| 日韩国产精品91| 国产成人av一区二区三区在线| 99久久精品国产毛片| 欧美女孩性生活视频| 国产日本亚洲高清| 亚洲午夜精品在线| 成人少妇影院yyyy| 欧美人伦禁忌dvd放荡欲情| www国产精品av| 亚洲精品成人天堂一二三| 久久国产尿小便嘘嘘尿| 93久久精品日日躁夜夜躁欧美| 欧美一级片在线| 亚洲免费在线电影| 国产精品一区二区x88av| 欧美日韩在线免费视频| 欧美高清在线一区| 玖玖九九国产精品| 欧美日本韩国一区| 一区二区在线免费| 国产99久久精品| 欧美一区二区三区视频免费 | 色综合天天综合色综合av| 69堂成人精品免费视频| 亚洲欧美日韩成人高清在线一区| 久久国产精品99久久久久久老狼| 在线观看欧美精品| 亚洲欧洲99久久| 国产99精品在线观看| 久久久一区二区三区捆绑**| 日韩精品午夜视频| 欧美精品123区| 亚洲线精品一区二区三区| 99久久精品一区二区| 国产色综合久久| 国产精品综合视频| 久久婷婷国产综合精品青草| 免费人成网站在线观看欧美高清| 欧美日韩三级一区二区| 依依成人综合视频| 欧美午夜片在线看| 亚洲综合激情小说| 欧美性一二三区| 午夜私人影院久久久久| 精品视频在线视频| 五月婷婷综合在线| 91精品婷婷国产综合久久| 三级影片在线观看欧美日韩一区二区| 在线区一区二视频| 亚洲成人动漫av| 欧美肥妇bbw| 乱中年女人伦av一区二区| 日韩欧美国产小视频| 韩国中文字幕2020精品| 久久久一区二区| av一区二区三区四区| 最新热久久免费视频| 在线看不卡av| 日韩精品一二三区| 久久久久久久久岛国免费| 国产91精品精华液一区二区三区 | 亚洲大型综合色站| 欧美人妖巨大在线| 麻豆91免费看| 中文av字幕一区| 91久久精品一区二区二区| 天天综合日日夜夜精品| 日韩无一区二区| 国产成人精品综合在线观看 | 久久99精品久久久久久动态图| 精品国产三级a在线观看| 国产成人av一区二区三区在线观看| 中文字幕亚洲区| 欧美一区二区女人| 成人动漫一区二区| 调教+趴+乳夹+国产+精品| 久久久久久久网| 欧美色图在线观看| 国产精品一品二品| 亚洲大片免费看| 中文字幕+乱码+中文字幕一区| 欧美视频一区在线观看| 国产精品主播直播| 日韩av不卡在线观看| 中文字幕一区在线观看| 91精品国产手机| 91麻豆精品一区二区三区| 久久国产精品72免费观看| 亚洲综合在线电影| 国产日产欧美一区| 91精品欧美福利在线观看| 成人a区在线观看| 九九九久久久精品| 亚洲第一福利一区| 最新热久久免费视频| 久久久久久久电影| 欧美一区二区在线视频| 一本到三区不卡视频| 粉嫩av一区二区三区粉嫩| 日日骚欧美日韩| 亚洲综合自拍偷拍| 亚洲色欲色欲www在线观看| 久久香蕉国产线看观看99| 欧美一级视频精品观看| 欧美在线观看禁18| 91美女片黄在线观看91美女| 国产不卡视频一区| 国产一区二区三区免费观看| 全部av―极品视觉盛宴亚洲| 一区二区三区免费观看| 亚洲欧美在线高清| 国产精品麻豆99久久久久久| 久久久久久久国产精品影院| 精品欧美一区二区久久| 日韩免费观看高清完整版| 5566中文字幕一区二区电影| 欧美偷拍一区二区| 欧美日韩一区二区电影| 久久久精品国产免费观看同学| 欧美美女直播网站| 欧美日韩一区三区四区| 欧美日韩一区二区三区在线看| 欧美主播一区二区三区| 欧美午夜在线观看| 777亚洲妇女| 日韩视频一区在线观看| 精品久久免费看| 国产亚洲欧美日韩在线一区| 久久综合久色欧美综合狠狠| 久久综合九色综合久久久精品综合| 亚洲精品一区二区精华| 在线观看不卡一区| 欧美老肥妇做.爰bbww视频| 欧美一级在线免费| 337p日本欧洲亚洲大胆色噜噜| 久久精品一二三| 亚洲欧洲精品一区二区精品久久久 | av激情成人网| 色av成人天堂桃色av| 欧美三电影在线| 日韩欧美卡一卡二| 欧美韩国一区二区| 亚洲国产综合人成综合网站| 免费的国产精品| 国产成人精品午夜视频免费| 色狠狠色狠狠综合| 91精品国产一区二区人妖| 久久久久久久一区| 亚洲韩国精品一区| 国产真实乱偷精品视频免| 成人精品国产免费网站| 欧美手机在线视频| 久久精品一区八戒影视| 一区二区三区在线观看视频| 视频一区二区三区中文字幕| 国内成人免费视频| 在线观看中文字幕不卡| 91精品国产综合久久福利软件| 欧美国产欧美综合| 日韩综合在线视频| 成人av免费在线| 欧美一区二区成人6969| 亚洲色图欧洲色图| 国产自产2019最新不卡| 欧美三级在线视频| 最近日韩中文字幕| 国产米奇在线777精品观看|