mm.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-ebsa110/mm.c
  3.  *
  4.  *  Copyright (C) 1998-1999 Russell King
  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 version 2 as
  8.  * published by the Free Software Foundation.
  9.  *
  10.  *  Extra MM routines for the EBSA-110 architecture
  11.  */
  12. #include <linux/mm.h>
  13. #include <linux/init.h>
  14. #include <asm/hardware.h>
  15. #include <asm/pgtable.h>
  16. #include <asm/page.h>
  17. #include <asm/mach/map.h>
  18. #include "hardware.h"
  19.  
  20. static struct map_desc ebsa110_io_desc[] __initdata = {
  21. /*
  22.  * sparse external-decode ISAIO space
  23.  */
  24. { IRQ_STAT,    TRICK4_PHYS, PGDIR_SIZE,  DOMAIN_IO, 0, 1, 0, 0 }, /* IRQ_STAT/IRQ_MCLR */
  25. { IRQ_MASK,    TRICK3_PHYS, PGDIR_SIZE,  DOMAIN_IO, 0, 1, 0, 0 }, /* IRQ_MASK/IRQ_MSET */
  26. { SOFT_BASE,   TRICK1_PHYS, PGDIR_SIZE,  DOMAIN_IO, 0, 1, 0, 0 }, /* SOFT_BASE */
  27. { PIT_BASE,    TRICK0_PHYS, PGDIR_SIZE,  DOMAIN_IO, 0, 1, 0, 0 }, /* PIT_BASE */
  28. /*
  29.  * self-decode ISAIO space
  30.  */
  31. { ISAIO_BASE,  ISAIO_PHYS,  ISAIO_SIZE,  DOMAIN_IO, 0, 1, 0, 0 },
  32. { ISAMEM_BASE, ISAMEM_PHYS, ISAMEM_SIZE, DOMAIN_IO, 0, 1, 0, 0 },
  33. LAST_DESC
  34. };
  35. void __init ebsa110_map_io(void)
  36. {
  37. iotable_init(ebsa110_io_desc);
  38. }