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

📄 oemaddrtab_cfg.inc

📁 老外的一个开源项目
💻 INC
字号:
; Copyright (c) David Vescovi.  All rights reserved.
; Part of Project DrumStix
; Windows Embedded Developers Interest Group (WE-DIG) community project.
; http://www.we-dig.org
; Copyright (c) Microsoft Corporation.  All rights reserved.
;-------------------------------------------------------------------------------
;
; Module Name:
;
;    oemaddrtab_cfg.inc
;
; Abstract:
;
;  This file is used to define g_oalAddressTable. This table is passed to
;  KernelStart to estabilish physical to virtual memory mapping. This table
;  is used also in IOMEM OAL module to map between physical and virtual
;  memory addresses via OALPAtoVA/OALVAtoPA functions.
;
; Environment:
;
; Revision History:
;
;-------------------------------------------------------------------------------
;

; Export Definition

		EXPORT	g_oalAddressTable[DATA]

;------------------------------------------------------------------------------
;
; TABLE FORMAT
;       cached address, physical address, size
;------------------------------------------------------------------------------

ALIGN
g_oalAddressTable

		DCD		0x80000000,	0xA0000000, 64		; GUMSTIX: SDRAM (64MB).
		DCD		0x84000000,	0x48000000,  1		; PXA255: Memory controller.
		DCD		0x84100000,	0x44000000,  1		; PXA255: LCD controller.
		DCD		0x84200000,	0x40000000, 32		; PXA255: Memory-mapped registers (peripherals).
		DCD		0x86200000,	0x2C000000, 64		; PXA255: PCMCIA S0 common memory space.
		DCD		0x8A200000,	0x28000000, 64		; PXA255: PCMCIA S0 attribute memory space.
		DCD		0x8E200000,	0x20000000,  1		; PXA255: PCMCIA S0 I/O space.
		DCD		0x8E300000, 0x3C000000,	64		; PXA255: PCMCIA S1 common memory space.
		DCD		0x92300000, 0x38000000,	64		; PXA255: PCMCIA S1 attribute memory space.
		DCD		0x96300000,	0x30000000,	 1		; PXA255: PCMCIA S1 I/O space.
;DCB 96400000 extra space 65meg
		DCD		0x9A500000,	0xE0000000,  1		; GUMSTIX: Zero-bank (in reserved slot - no physical memory required).
		DCD		0x9A600000,	0x14000000,  1		; GUMSTIX: nCS5:
		DCD		0x9A700000,	0x10000000,  1		; GUMSTIX: nCS4:
		DCD		0x9A800000,	0x0A000000,  1		; GUMSTIX: nCS2:
		DCD		0x9A900000,	0x08000000,  1		; GUMSTIX: nCS2:
		DCD		0x9AA00000,	0x04000000, 32		; GUMSTIX: nCS1: SMSC 91C111 Ethernet controller.
		DCD		0x9CA00000,	0x00000000, 32		; GUMSTIX: nCS0: Boot Flash (up to 32MB).

		DCD		0x00000000,	0x00000000,  0		; end of table


PXA255_BASE_REG_UA_FFUART	EQU		0xa4600000	; Virtual uncache debug uart

        END

⌨️ 快捷键说明

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