mm.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright 2008-2010 Freescale Semiconductor, Inc. All Rights Reserved.
  3. *
  4. * The code contained herein is licensed under the GNU General Public
  5. * License. You may obtain a copy of the GNU General Public License
  6. * Version 2 or later at the following locations:
  7. *
  8. * http://www.opensource.org/licenses/gpl-license.html
  9. * http://www.gnu.org/copyleft/gpl.html
  10. *
  11. * Create static mapping between physical to virtual memory.
  12. */
  13. #include <linux/mm.h>
  14. #include <linux/init.h>
  15. #include <asm/mach/map.h>
  16. #include <mach/hardware.h>
  17. #include <mach/common.h>
  18. #include <mach/iomux-v3.h>
  19. /*
  20. * Define the MX51 memory map.
  21. */
  22. static struct map_desc mx51_io_desc[] __initdata = {
  23. imx_map_entry(MX51, IRAM, MT_DEVICE),
  24. imx_map_entry(MX51, DEBUG, MT_DEVICE),
  25. imx_map_entry(MX51, AIPS1, MT_DEVICE),
  26. imx_map_entry(MX51, SPBA0, MT_DEVICE),
  27. imx_map_entry(MX51, AIPS2, MT_DEVICE),
  28. };
  29. /*
  30. * Define the MX53 memory map.
  31. */
  32. static struct map_desc mx53_io_desc[] __initdata = {
  33. imx_map_entry(MX53, AIPS1, MT_DEVICE),
  34. imx_map_entry(MX53, SPBA0, MT_DEVICE),
  35. imx_map_entry(MX53, AIPS2, MT_DEVICE),
  36. };
  37. /*
  38. * This function initializes the memory map. It is called during the
  39. * system startup to create static physical to virtual memory mappings
  40. * for the IO modules.
  41. */
  42. void __init mx51_map_io(void)
  43. {
  44. iotable_init(mx51_io_desc, ARRAY_SIZE(mx51_io_desc));
  45. }
  46. void __init imx51_init_early(void)
  47. {
  48. mxc_set_cpu_type(MXC_CPU_MX51);
  49. mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR));
  50. mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG1_BASE_ADDR));
  51. }
  52. void __init mx53_map_io(void)
  53. {
  54. iotable_init(mx53_io_desc, ARRAY_SIZE(mx53_io_desc));
  55. }
  56. void __init imx53_init_early(void)
  57. {
  58. mxc_set_cpu_type(MXC_CPU_MX53);
  59. mxc_iomux_v3_init(MX53_IO_ADDRESS(MX53_IOMUXC_BASE_ADDR));
  60. mxc_arch_reset_init(MX53_IO_ADDRESS(MX53_WDOG1_BASE_ADDR));
  61. }
  62. void __init mx51_init_irq(void)
  63. {
  64. unsigned long tzic_addr;
  65. void __iomem *tzic_virt;
  66. if (mx51_revision() < IMX_CHIP_REVISION_2_0)
  67. tzic_addr = MX51_TZIC_BASE_ADDR_TO1;
  68. else
  69. tzic_addr = MX51_TZIC_BASE_ADDR;
  70. tzic_virt = ioremap(tzic_addr, SZ_16K);
  71. if (!tzic_virt)
  72. panic("unable to map TZIC interrupt controller\n");
  73. tzic_init_irq(tzic_virt);
  74. }
  75. void __init mx53_init_irq(void)
  76. {
  77. unsigned long tzic_addr;
  78. void __iomem *tzic_virt;
  79. tzic_addr = MX53_TZIC_BASE_ADDR;
  80. tzic_virt = ioremap(tzic_addr, SZ_16K);
  81. if (!tzic_virt)
  82. panic("unable to map TZIC interrupt controller\n");
  83. tzic_init_irq(tzic_virt);
  84. }
  85. void __init imx51_soc_init(void)
  86. {
  87. mxc_register_gpio(0, MX51_GPIO1_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO1_LOW, MX51_MXC_INT_GPIO1_HIGH);
  88. mxc_register_gpio(1, MX51_GPIO2_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO2_LOW, MX51_MXC_INT_GPIO2_HIGH);
  89. mxc_register_gpio(2, MX51_GPIO3_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO3_LOW, MX51_MXC_INT_GPIO3_HIGH);
  90. mxc_register_gpio(3, MX51_GPIO4_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO4_LOW, MX51_MXC_INT_GPIO4_HIGH);
  91. }
  92. void __init imx53_soc_init(void)
  93. {
  94. mxc_register_gpio(0, MX53_GPIO1_BASE_ADDR, SZ_16K, MX53_INT_GPIO1_LOW, MX53_INT_GPIO1_HIGH);
  95. mxc_register_gpio(1, MX53_GPIO2_BASE_ADDR, SZ_16K, MX53_INT_GPIO2_LOW, MX53_INT_GPIO2_HIGH);
  96. mxc_register_gpio(2, MX53_GPIO3_BASE_ADDR, SZ_16K, MX53_INT_GPIO3_LOW, MX53_INT_GPIO3_HIGH);
  97. mxc_register_gpio(3, MX53_GPIO4_BASE_ADDR, SZ_16K, MX53_INT_GPIO4_LOW, MX53_INT_GPIO4_HIGH);
  98. mxc_register_gpio(4, MX53_GPIO5_BASE_ADDR, SZ_16K, MX53_INT_GPIO5_LOW, MX53_INT_GPIO5_HIGH);
  99. mxc_register_gpio(5, MX53_GPIO6_BASE_ADDR, SZ_16K, MX53_INT_GPIO6_LOW, MX53_INT_GPIO6_HIGH);
  100. mxc_register_gpio(6, MX53_GPIO7_BASE_ADDR, SZ_16K, MX53_INT_GPIO7_LOW, MX53_INT_GPIO7_HIGH);
  101. }