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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-shark/mm.c
  3.  *
  4.  *  by Alexander Schulz
  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. #include <linux/sched.h>
  11. #include <linux/mm.h>
  12. #include <linux/init.h>
  13. #include <asm/pgtable.h>
  14. #include <asm/page.h>
  15. #include <asm/io.h>
  16. #include <asm/mach/map.h>
  17. static struct map_desc shark_io_desc[] __initdata = {
  18. { IO_BASE , IO_START , IO_SIZE , DOMAIN_IO, 0, 1, 0, 0 },
  19. LAST_DESC
  20. };
  21. void __init shark_map_io(void)
  22. {
  23. iotable_init(shark_io_desc);
  24. }