mm-tbox.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mm/mm-tbox.c
  3.  *
  4.  *  Copyright (C) 1998, 1999, 2000 Phil Blundell
  5.  *  Copyright (C) 1998-1999 Russell King
  6.  *
  7.  *  Extra MM routines for the Tbox architecture
  8.  */
  9. #include <linux/sched.h>
  10. #include <linux/mm.h>
  11. #include <linux/init.h>
  12. #include <asm/io.h>
  13. #include <asm/pgtable.h>
  14. #include <asm/page.h>
  15. #include <asm/mach/map.h>
  16.  
  17. static struct map_desc tbox_io_desc[] __initdata = {
  18. /* See hardware.h for details */
  19. { IO_BASE, IO_START, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 },
  20. LAST_DESC
  21. };
  22. void __init tbox_map_io(void)
  23. {
  24. iotable_init(tbox_io_desc);
  25. }