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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-pxa/memory.h
  3.  * 
  4.  * Author: Nicolas Pitre
  5.  * Copyright: (C) 2001 MontaVista Software Inc.
  6.  * 
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 2 as
  9.  * published by the Free Software Foundation.
  10.  */
  11. #ifndef __ASM_ARCH_MEMORY_H
  12. #define __ASM_ARCH_MEMORY_H
  13. /*
  14.  * Task size: 3GB
  15.  */
  16. #define TASK_SIZE (0xc0000000UL)
  17. #define TASK_SIZE_26 (0x04000000UL)
  18. /*
  19.  * This decides where the kernel will search for a free chunk of vm
  20.  * space during mmap's.
  21.  */
  22. #define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
  23. /*
  24.  * Page offset: 3GB
  25.  */
  26. #define PAGE_OFFSET (0xc0000000UL)
  27. /*
  28.  * Physical DRAM offset.
  29.  */
  30. #define PHYS_OFFSET (0xa0000000UL)
  31. #define PHYS_TO_NID(addr) (0)
  32. /*
  33.  * physical vs virtual ram conversion
  34.  */
  35. #define __virt_to_phys__is_a_macro
  36. #define __phys_to_virt__is_a_macro
  37. #define __virt_to_phys(x) ((x) - PAGE_OFFSET + PHYS_OFFSET)
  38. #define __phys_to_virt(x) ((x) - PHYS_OFFSET + PAGE_OFFSET)
  39. /*
  40.  * Virtual view <-> DMA view memory address translations
  41.  * virt_to_bus: Used to translate the virtual address to an
  42.  * address suitable to be passed to set_dma_addr
  43.  * bus_to_virt: Used to convert an address for DMA operations
  44.  * to an address that the kernel can use.
  45.  */
  46. #define __virt_to_bus__is_a_macro
  47. #define __bus_to_virt__is_a_macro
  48. #define __virt_to_bus(x)  __virt_to_phys(x)
  49. #define __bus_to_virt(x)  __phys_to_virt(x)
  50. #endif