map.a
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:3k
源码类别:

Windows CE

开发平台:

Windows_Unix

  1. ;      TITLE("P2 Firmware Initialization")
  2. ;++
  3. ;
  4. ; Copyright (c) 2001. Samsung Electronics, co. ltd  All rights reserved.
  5. ;
  6. ; Module Name:
  7. ;
  8. ;    map920.h
  9. ;
  10. ; Abstract:
  11. ;
  12. ;   This module contains the OEM memory map for the S3c2440
  13. ;
  14. ;--
  15. ;
  16. ; OEMAddressTable defines the mapping from the 4GB physical address space
  17. ; to the kernel's 512MB "un-mapped" spaces.  The kernel will create two ranges
  18. ; of virtual addresses from this table. One from 0x80000000 to 0x9FFFFFFF which
  19. ; has caching & buffering enabled and one from 0xA0000000 to 0xBFFFFFFF which
  20. ; has the cache & buffering disabled.
  21. ;
  22. ; Each entry in the table consists of the Virtual Base Address to map to,
  23. ; the Physical Base Address to map from, and the number of megabytes to map.
  24. ;
  25. ; The order of the entries is arbitrary, but DRAM should be placed first for
  26. ; optimal performance. The table is zero-terminated, so the last entry MUST
  27. ; be all zeroes.
  28. ;
  29. ; Mapped for S3C2400X01
  30.     EXPORT      OEMAddressTable[DATA]
  31. OEMAddressTable
  32.     ;;;-------------------------------------------------------------
  33.     ;;; Virt Addr   Phys Addr   MB
  34.     ;;;-------------------------------------------------------------
  35.     DCD 0x80000000, 0x02000000, 30  ; 30 MB SRAM(SRAM/ROM) BANK 0
  36.     DCD 0x82000000, 0x08000000, 32  ; 32 MB SROM(SRAM/ROM) BANK 1
  37.     DCD 0x84000000, 0x10000000, 32  ; 32 MB SROM(SRAM/ROM) BANK 2
  38.     DCD 0x86000000, 0x18000000, 32  ; 32 MB SROM(SRAM/ROM) BANK 3
  39.     DCD 0x88000000, 0x20000000, 32  ; 32 MB SROM(SRAM/ROM) BANK 4
  40.     DCD 0x8A000000, 0x28000000, 32  ; 32 MB SROM(SRAM/ROM) BANK 5
  41.     DCD 0x8C000000, 0x30000000, 64  ; 64 MB DRAM BANK 0, 1
  42.     DCD 0x90800000, 0x48000000,  1  ; Memory control register
  43.     DCD 0x90900000, 0x49000000,  1  ; USB Host register
  44.     DCD 0x90A00000, 0x4A000000,  1  ; Interrupt Control register
  45.     DCD 0x90B00000, 0x4B000000,  1  ; DMA control register
  46.     DCD 0x90C00000, 0x4C000000,  1  ; Clock & Power register
  47.     DCD 0x90D00000, 0x4D000000,  1  ; LCD control register
  48.     DCD 0x90E00000, 0x4E000000,  1  ; NAND flash control register
  49.     DCD 0x90F00000, 0x4F000000,  1  ; Camera control register 
  50.     DCD 0x91000000, 0x50000000,  1  ; UART control register
  51.     DCD 0x91100000, 0x51000000,  1  ; PWM timer register
  52.     DCD 0x91200000, 0x52000000,  1  ; USB device register
  53.     DCD 0x91300000, 0x53000000,  1  ; Watchdog Timer register
  54.     DCD 0x91400000, 0x54000000,  1  ; IIC control register
  55.     DCD 0x91500000, 0x55000000,  1  ; IIS control register
  56.     DCD 0x91600000, 0x56000000,  1  ; I/O Port register
  57.     DCD 0x91700000, 0x57000000,  1  ; RTC control register
  58.     DCD 0x91800000, 0x58000000,  1  ; A/D convert register
  59.     DCD 0x91900000, 0x59000000,  1  ; SPI register
  60.     DCD 0x91A00000, 0x5A000000,  1  ; SD Interface register
  61.     DCD 0x91B00000, 0x5B000000,  1  ; AC97 Interface register
  62.     DCD 0x92000000, 0x00000000, 32  ; 32 MB SROM(SRAM/ROM) BANK 0
  63.     DCD 0x00000000, 0x00000000,  0  ; End of Table (MB MUST BE ZERO!)
  64.     END