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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-anakin/mm.c
  3.  *
  4.  *  Copyright (C) 2001 Aleph One Ltd. for Acunia N.V.
  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.  *  Changelog:
  11.  *   09-Apr-2001 W/TTC Created
  12.  */
  13. #include <linux/mm.h>
  14. #include <linux/init.h>
  15. #include <asm/io.h>
  16. #include <asm/pgtable.h>
  17. #include <asm/mach/map.h>
  18. static struct map_desc anakin_io_desc[] __initdata = {
  19. { IO_BASE,    IO_START,    IO_SIZE,    DOMAIN_IO, 0, 1, 0, 0 },
  20. { FLASH_BASE, FLASH_START, FLASH_SIZE, DOMAIN_IO, 1, 1, 0, 0 },
  21. { VGA_BASE,   VGA_START,   VGA_SIZE,   DOMAIN_IO, 0, 1, 0, 0 },
  22. LAST_DESC
  23. };
  24. void __init
  25. anakin_map_io(void)
  26. {
  27. iotable_init(anakin_io_desc);
  28. }