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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-integrator/mmu.h
  3.  *
  4.  *  Copyright (C) 1999 ARM Limited
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. #ifndef __ASM_ARCH_MMU_H
  21. #define __ASM_ARCH_MMU_H
  22. /*
  23.  * Task size: 3GB
  24.  */
  25. #define TASK_SIZE (0xc0000000UL)
  26. #define TASK_SIZE_26 (0x04000000UL)
  27. /*
  28.  * This decides where the kernel will search for a free chunk of vm
  29.  * space during mmap's.
  30.  */
  31. #define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
  32. /*
  33.  * Page offset: 3GB
  34.  */
  35. #define PAGE_OFFSET (0xc0000000UL)
  36. #define PHYS_OFFSET (0x00000000UL)
  37. /*
  38.  * On integrator, the dram is contiguous
  39.  */
  40. #define __virt_to_phys__is_a_macro
  41. #define __virt_to_phys(vpage) ((vpage) - PAGE_OFFSET)
  42. #define __phys_to_virt__is_a_macro
  43. #define __phys_to_virt(ppage) ((ppage) + PAGE_OFFSET)
  44. /*
  45.  * Virtual view <-> DMA view memory address translations
  46.  * virt_to_bus: Used to translate the virtual address to an
  47.  *              address suitable to be passed to set_dma_addr
  48.  * bus_to_virt: Used to convert an address for DMA operations
  49.  *              to an address that the kernel can use.
  50.  */
  51. #define __virt_to_bus__is_a_macro
  52. #define __virt_to_bus(x) (x - PAGE_OFFSET + INTEGRATOR_HDR0_SDRAM_BASE)
  53. #define __bus_to_virt__is_a_macro
  54. #define __bus_to_virt(x) (x - INTEGRATOR_HDR0_SDRAM_BASE + PAGE_OFFSET)
  55. #define PHYS_TO_NID(addr) (0)
  56. #endif