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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mm/mm-rpc.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 RiscPC architecture
  11.  */
  12. #include <linux/types.h>
  13. #include <linux/init.h>
  14. #include <asm/hardware.h>
  15. #include <asm/page.h>
  16. #include <asm/proc/domain.h>
  17. #include <asm/setup.h>
  18. #include <asm/mach/map.h>
  19. static struct map_desc rpc_io_desc[] __initdata = {
  20.  { SCREEN_BASE, SCREEN_START, 2*1048576, DOMAIN_IO, 0, 1, 0, 0 }, /* VRAM */
  21.  { IO_BASE, IO_START, IO_SIZE  , DOMAIN_IO, 0, 1, 0, 0 }, /* IO space */
  22.  { EASI_BASE, EASI_START, EASI_SIZE, DOMAIN_IO, 0, 1, 0, 0 }, /* EASI space */
  23.  LAST_DESC
  24. };
  25. void __init rpc_map_io(void)
  26. {
  27. iotable_init(rpc_io_desc);
  28. }