mm.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (C) 1999,2000 Arm Limited
  3. * Copyright (C) 2000 Deep Blue Solutions Ltd
  4. * Copyright (C) 2002 Shane Nay (shane@minirl.com)
  5. * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
  6. * - add MX31 specific definitions
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. */
  18. #include <linux/mm.h>
  19. #include <linux/init.h>
  20. #include <linux/err.h>
  21. #include <asm/pgtable.h>
  22. #include <asm/mach/map.h>
  23. #include <asm/hardware/cache-l2x0.h>
  24. #include <mach/common.h>
  25. #include <mach/hardware.h>
  26. #include <mach/iomux-v3.h>
  27. /*!
  28. * @file mm.c
  29. *
  30. * @brief This file creates static virtual to physical mappings, common to all MX3 boards.
  31. *
  32. * @ingroup Memory
  33. */
  34. #ifdef CONFIG_SOC_IMX31
  35. static struct map_desc mx31_io_desc[] __initdata = {
  36. imx_map_entry(MX31, X_MEMC, MT_DEVICE),
  37. imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED),
  38. imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED),
  39. imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED),
  40. imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED),
  41. };
  42. /*
  43. * This function initializes the memory map. It is called during the
  44. * system startup to create static physical to virtual memory mappings
  45. * for the IO modules.
  46. */
  47. void __init mx31_map_io(void)
  48. {
  49. mxc_set_cpu_type(MXC_CPU_MX31);
  50. mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
  51. iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc));
  52. }
  53. int imx31_register_gpios(void);
  54. void __init mx31_init_irq(void)
  55. {
  56. mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR));
  57. imx31_register_gpios();
  58. }
  59. #endif /* ifdef CONFIG_SOC_IMX31 */
  60. #ifdef CONFIG_SOC_IMX35
  61. static struct map_desc mx35_io_desc[] __initdata = {
  62. imx_map_entry(MX35, X_MEMC, MT_DEVICE),
  63. imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED),
  64. imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED),
  65. imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED),
  66. imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED),
  67. };
  68. void __init mx35_map_io(void)
  69. {
  70. mxc_set_cpu_type(MXC_CPU_MX35);
  71. mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR));
  72. mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR));
  73. iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc));
  74. }
  75. int imx35_register_gpios(void);
  76. void __init mx35_init_irq(void)
  77. {
  78. mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR));
  79. imx35_register_gpios();
  80. }
  81. #endif /* ifdef CONFIG_SOC_IMX35 */
  82. #ifdef CONFIG_CACHE_L2X0
  83. static int mxc_init_l2x0(void)
  84. {
  85. void __iomem *l2x0_base;
  86. void __iomem *clkctl_base;
  87. /*
  88. * First of all, we must repair broken chip settings. There are some
  89. * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These
  90. * misconfigured CPUs will run amok immediately when the L2 cache gets enabled.
  91. * Workaraound is to setup the correct register setting prior enabling the
  92. * L2 cache. This should not hurt already working CPUs, as they are using the
  93. * same value
  94. */
  95. #define L2_MEM_VAL 0x10
  96. clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096);
  97. if (clkctl_base != NULL) {
  98. writel(0x00000515, clkctl_base + L2_MEM_VAL);
  99. iounmap(clkctl_base);
  100. } else {
  101. pr_err("L2 cache: Cannot fix timing. Trying to continue without\n");
  102. }
  103. l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
  104. if (IS_ERR(l2x0_base)) {
  105. printk(KERN_ERR "remapping L2 cache area failed with %ld\n",
  106. PTR_ERR(l2x0_base));
  107. return 0;
  108. }
  109. l2x0_init(l2x0_base, 0x00030024, 0x00000000);
  110. return 0;
  111. }
  112. arch_initcall(mxc_init_l2x0);
  113. #endif