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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-footbridge/mm.c
  3.  *
  4.  *  Copyright (C) 1998-2000 Russell King, Dave Gilbert.
  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 the EBSA285 architecture
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/sched.h>
  14. #include <linux/mm.h>
  15. #include <linux/init.h>
  16.  
  17. #include <asm/pgtable.h>
  18. #include <asm/page.h>
  19. #include <asm/io.h>
  20. #include <asm/hardware/dec21285.h>
  21. #include <asm/mach-types.h>
  22. #include <asm/mach/map.h>
  23. /*
  24.  * Common mapping for all systems.  Note that the outbound write flush is
  25.  * commented out since there is a "No Fix" problem with it.  Not mapping
  26.  * it means that we have extra bullet protection on our feet.
  27.  */
  28. static struct map_desc fb_common_io_desc[] __initdata = {
  29.  { ARMCSR_BASE,  DC21285_ARMCSR_BASE,     ARMCSR_SIZE,  DOMAIN_IO, 0, 1, 0, 0 },
  30.  { XBUS_BASE,    0x40000000,     XBUS_SIZE,    DOMAIN_IO, 0, 1, 0, 0 },
  31.  LAST_DESC
  32. };
  33. /*
  34.  * The mapping when the footbridge is in host mode.  We don't map any of
  35.  * this when we are in add-in mode.
  36.  */
  37. static struct map_desc ebsa285_host_io_desc[] __initdata = {
  38. #if defined(CONFIG_ARCH_FOOTBRIDGE) && defined(CONFIG_FOOTBRIDGE_HOST)
  39.  { PCIMEM_BASE,  DC21285_PCI_MEM,     PCIMEM_SIZE,  DOMAIN_IO, 0, 1, 0, 0 },
  40.  { PCICFG0_BASE, DC21285_PCI_TYPE_0_CONFIG, PCICFG0_SIZE, DOMAIN_IO, 0, 1, 0, 0 },
  41.  { PCICFG1_BASE, DC21285_PCI_TYPE_1_CONFIG, PCICFG1_SIZE, DOMAIN_IO, 0, 1, 0, 0 },
  42.  { PCIIACK_BASE, DC21285_PCI_IACK,     PCIIACK_SIZE, DOMAIN_IO, 0, 1, 0, 0 },
  43.  { PCIO_BASE,    DC21285_PCI_IO,     PCIO_SIZE,   DOMAIN_IO, 0, 1, 0, 0 },
  44. #endif
  45.  LAST_DESC
  46. };
  47. /*
  48.  * The CO-ebsa285 mapping.
  49.  */
  50. static struct map_desc co285_io_desc[] __initdata = {
  51. #ifdef CONFIG_ARCH_CO285
  52.  { PCIO_BASE,  DC21285_PCI_IO,     PCIO_SIZE,    DOMAIN_IO, 0, 1, 0, 0 },
  53.  { PCIMEM_BASE,  DC21285_PCI_MEM,     PCIMEM_SIZE,  DOMAIN_IO, 0, 1, 0, 0 },
  54. #endif
  55.  LAST_DESC
  56. };
  57. void __init footbridge_map_io(void)
  58. {
  59. struct map_desc *desc = NULL;
  60. /*
  61.  * Set up the common mapping first; we need this to
  62.  * determine whether we're in host mode or not.
  63.  */
  64. iotable_init(fb_common_io_desc);
  65. /*
  66.  * Now, work out what we've got to map in addition on this
  67.  * platform.
  68.  */
  69. if (machine_is_co285())
  70. desc = co285_io_desc;
  71. else if (footbridge_cfn_mode())
  72. desc = ebsa285_host_io_desc;
  73. if (desc)
  74. iotable_init(desc);
  75. }
  76. #ifdef CONFIG_FOOTBRIDGE_ADDIN
  77. /*
  78.  * These two functions convert virtual addresses to PCI addresses and PCI
  79.  * addresses to virtual addresses.  Note that it is only legal to use these
  80.  * on memory obtained via get_free_page or kmalloc.
  81.  */
  82. unsigned long __virt_to_bus(unsigned long res)
  83. {
  84. #ifdef CONFIG_DEBUG_ERRORS
  85. if (res < PAGE_OFFSET || res >= (unsigned long)high_memory) {
  86. printk("__virt_to_bus: invalid virtual address 0x%08lxn", res);
  87. __backtrace();
  88. }
  89. #endif
  90. return (res - PAGE_OFFSET) + (*CSR_PCISDRAMBASE & 0xfffffff0);
  91. }
  92. unsigned long __bus_to_virt(unsigned long res)
  93. {
  94. res -= (*CSR_PCISDRAMBASE & 0xfffffff0);
  95. res += PAGE_OFFSET;
  96. #ifdef CONFIG_DEBUG_ERRORS
  97. if (res < PAGE_OFFSET || res >= (unsigned long)high_memory) {
  98. printk("__bus_to_virt: invalid virtual address 0x%08lxn", res);
  99. __backtrace();
  100. }
  101. #endif
  102. return res;
  103. }
  104. #endif