vaddrs.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: vaddrs.h,v 1.27 2001/07/04 00:18:18 davem Exp $ */
  2. #ifndef _SPARC_VADDRS_H
  3. #define _SPARC_VADDRS_H
  4. #include <asm/head.h>
  5. /*
  6.  * asm-sparc/vaddrs.h:  Here we define the virtual addresses at
  7.  *                      which important things will be mapped.
  8.  *
  9.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  10.  * Copyright (C) 2000 Anton Blanchard (anton@samba.org)
  11.  */
  12. #define SRMMU_MAXMEM 0x0c000000
  13. #define SRMMU_NOCACHE_VADDR 0xfc000000 /* KERNBASE + SRMMU_MAXMEM */
  14. /* XXX Make this dynamic based on ram size - Anton */
  15. #define SRMMU_NOCACHE_NPAGES 256
  16. #define SRMMU_NOCACHE_SIZE (SRMMU_NOCACHE_NPAGES * PAGE_SIZE)
  17. #define SRMMU_NOCACHE_END (SRMMU_NOCACHE_VADDR + SRMMU_NOCACHE_SIZE)
  18. #define FIX_KMAP_BEGIN 0xfc100000
  19. #define FIX_KMAP_END (FIX_KMAP_BEGIN + ((KM_TYPE_NR*NR_CPUS)-1)*PAGE_SIZE)
  20. #define PKMAP_BASE 0xfc140000
  21. #define PKMAP_BASE_END (PKMAP_BASE+LAST_PKMAP*PAGE_SIZE)
  22. #define SUN4M_IOBASE_VADDR 0xfd000000 /* Base for mapping pages */
  23. #define IOBASE_VADDR 0xfe000000
  24. #define IOBASE_END 0xfe300000
  25. #define VMALLOC_START 0xfe300000
  26. /* XXX Alter this when I get around to fixing sun4c - Anton */
  27. #define VMALLOC_END 0xffc00000
  28. /*
  29.  * On the sun4/4c we need a place
  30.  * to reliably map locked down kernel data.  This includes the
  31.  * task_struct and kernel stack pages of each process plus the
  32.  * scsi buffers during dvma IO transfers, also the floppy buffers
  33.  * during pseudo dma which runs with traps off (no faults allowed).
  34.  * Some quick calculations yield:
  35.  *       NR_TASKS <512> * (3 * PAGE_SIZE) == 0x600000
  36.  * Subtract this from 0xc00000 and you get 0x927C0 of vm left
  37.  * over to map SCSI dvma + floppy pseudo-dma buffers.  So be
  38.  * careful if you change NR_TASKS or else there won't be enough
  39.  * room for it all.
  40.  */
  41. #define SUN4C_LOCK_VADDR 0xff000000
  42. #define SUN4C_LOCK_END 0xffc00000
  43. #define KADB_DEBUGGER_BEGVM 0xffc00000 /* Where kern debugger is in virt-mem */
  44. #define KADB_DEBUGGER_ENDVM 0xffd00000
  45. #define DEBUG_FIRSTVADDR KADB_DEBUGGER_BEGVM
  46. #define DEBUG_LASTVADDR KADB_DEBUGGER_ENDVM
  47. #define LINUX_OPPROM_BEGVM 0xffd00000
  48. #define LINUX_OPPROM_ENDVM 0xfff00000
  49. #define DVMA_VADDR 0xfff00000 /* Base area of the DVMA on suns */
  50. #define DVMA_END 0xfffc0000
  51. #endif /* !(_SPARC_VADDRS_H) */