mach-imx53.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 "mx53.h"
  23. static void __init imx53_qsb_init(void)
  24. {
  25. struct clk *clk;
  26. clk = clk_get_sys(NULL, "ssi_ext1");
  27. if (IS_ERR(clk)) {
  28. pr_err("failed to get clk ssi_ext1\n");
  29. return;
  30. }
  31. clk_register_clkdev(clk, NULL, "0-000a");
  32. }
  33. static void __init imx53_dt_init(void)
  34. {
  35. if (of_machine_is_compatible("fsl,imx53-qsb"))
  36. imx53_qsb_init();
  37. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  38. }
  39. static const char *imx53_dt_board_compat[] __initdata = {
  40. "fsl,imx53",
  41. NULL
  42. };
  43. static void __init imx53_timer_init(void)
  44. {
  45. mx53_clocks_init_dt();
  46. }
  47. DT_MACHINE_START(IMX53_DT, "Freescale i.MX53 (Device Tree Support)")
  48. .map_io = mx53_map_io,
  49. .init_early = imx53_init_early,
  50. .init_irq = mx53_init_irq,
  51. .handle_irq = imx53_handle_irq,
  52. .init_time = imx53_timer_init,
  53. .init_machine = imx53_dt_init,
  54. .init_late = imx53_init_late,
  55. .dt_compat = imx53_dt_board_compat,
  56. .restart = mxc_restart,
  57. MACHINE_END