mm.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2008-2009 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. * This function initializes the memory map. It is called during the
  31. * system startup to create static physical to virtual memory mappings
  32. * for the IO modules.
  33. */
  34. void __init mx51_map_io(void)
  35. {
  36. mxc_set_cpu_type(MXC_CPU_MX51);
  37. mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR));
  38. mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG_BASE_ADDR));
  39. iotable_init(mx51_io_desc, ARRAY_SIZE(mx51_io_desc));
  40. }
  41. int imx51_register_gpios(void);
  42. void __init mx51_init_irq(void)
  43. {
  44. unsigned long tzic_addr;
  45. void __iomem *tzic_virt;
  46. if (mx51_revision() < MX51_CHIP_REV_2_0)
  47. tzic_addr = MX51_TZIC_BASE_ADDR_TO1;
  48. else
  49. tzic_addr = MX51_TZIC_BASE_ADDR;
  50. tzic_virt = ioremap(tzic_addr, SZ_16K);
  51. if (!tzic_virt)
  52. panic("unable to map TZIC interrupt controller\n");
  53. tzic_init_irq(tzic_virt);
  54. imx51_register_gpios();
  55. }