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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mm/mm-nexuspci.c
  3.  *   from linux/arch/arm/mm/mm-ebsa110.c
  4.  *
  5.  *  Copyright (C) 1998-1999 Phil Blundell
  6.  *  Copyright (C) 1998-1999 Russell King
  7.  *
  8.  *  Extra MM routines for the FTV/PCI architecture
  9.  */
  10. #include <linux/sched.h>
  11. #include <linux/mm.h>
  12. #include <linux/init.h>
  13.  
  14. #include <asm/pgtable.h>
  15. #include <asm/page.h>
  16. #include <asm/io.h>
  17. #include <asm/mach/map.h>
  18. static struct map_desc nexuspci_io_desc[] __initdata = {
  19.   { INTCONT_BASE, INTCONT_START, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 },
  20.   { PLX_BASE, PLX_START, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 },
  21.   { PCIO_BASE, PLX_IO_START, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 },
  22.   { DUART_BASE, DUART_START, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 },
  23. { STATUS_BASE, STATUS_START, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 },
  24. LAST_DESC
  25. };
  26. void __init nexuspci_map_io(void)
  27. {
  28. iotable_init(nexuspci_io_desc);
  29. }