mach-imx53.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
  3. * Copyright 2011 Linaro Ltd.
  4. *
  5. * The code contained herein is licensed under the GNU General Public
  6. * License. You may obtain a copy of the GNU General Public License
  7. * Version 2 or later at the following locations:
  8. *
  9. * http://www.opensource.org/licenses/gpl-license.html
  10. * http://www.gnu.org/copyleft/gpl.html
  11. */
  12. #include <linux/clk.h>
  13. #include <linux/clkdev.h>
  14. #include <linux/err.h>
  15. #include <linux/io.h>
  16. #include <linux/irq.h>
  17. #include <linux/of_irq.h>
  18. #include <linux/of_platform.h>
  19. #include <asm/mach/arch.h>
  20. #include <asm/mach/time.h>
  21. #include "common.h"
  22. #include "hardware.h"
  23. #include "mx53.h"
  24. static void __init imx53_qsb_init(void)
  25. {
  26. struct clk *clk;
  27. clk = clk_get_sys(NULL, "ssi_ext1");
  28. if (IS_ERR(clk)) {
  29. pr_err("failed to get clk ssi_ext1\n");
  30. return;
  31. }
  32. clk_register_clkdev(clk, NULL, "0-000a");
  33. }
  34. static void __init imx53_dt_init(void)
  35. {
  36. mxc_arch_reset_init(MX53_IO_ADDRESS(MX53_WDOG1_BASE_ADDR));
  37. if (of_machine_is_compatible("fsl,imx53-qsb"))
  38. imx53_qsb_init();
  39. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  40. }
  41. static const char *imx53_dt_board_compat[] __initdata = {
  42. "fsl,imx53",
  43. NULL
  44. };
  45. static void __init imx53_timer_init(void)
  46. {
  47. mx53_clocks_init_dt();
  48. }
  49. DT_MACHINE_START(IMX53_DT, "Freescale i.MX53 (Device Tree Support)")
  50. .map_io = mx53_map_io,
  51. .init_early = imx53_init_early,
  52. .init_irq = mx53_init_irq,
  53. .handle_irq = imx53_handle_irq,
  54. .init_time = imx53_timer_init,
  55. .init_machine = imx53_dt_init,
  56. .init_late = imx53_init_late,
  57. .dt_compat = imx53_dt_board_compat,
  58. .restart = mxc_restart,
  59. MACHINE_END