board-msm8x60.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* Copyright (c) 2010-2012, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/of.h>
  14. #include <linux/of_irq.h>
  15. #include <linux/of_platform.h>
  16. #include <asm/mach/arch.h>
  17. #include <asm/hardware/gic.h>
  18. #include <mach/board.h>
  19. #include <mach/msm_iomap.h>
  20. #include "common.h"
  21. static const struct of_device_id msm_dt_gic_match[] __initconst = {
  22. { .compatible = "qcom,msm-8660-qgic", .data = gic_of_init },
  23. {}
  24. };
  25. static void __init msm8x60_init_irq(void)
  26. {
  27. of_irq_init(msm_dt_gic_match);
  28. }
  29. static void __init msm8x60_init_late(void)
  30. {
  31. smd_debugfs_init();
  32. }
  33. static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = {
  34. {}
  35. };
  36. static void __init msm8x60_dt_init(void)
  37. {
  38. if (of_machine_is_compatible("qcom,msm8660-surf")) {
  39. printk(KERN_INFO "Init surf UART registers\n");
  40. msm8x60_init_uart12dm();
  41. }
  42. of_platform_populate(NULL, of_default_bus_match_table,
  43. msm_auxdata_lookup, NULL);
  44. }
  45. static const char *msm8x60_fluid_match[] __initdata = {
  46. "qcom,msm8660-fluid",
  47. "qcom,msm8660-surf",
  48. NULL
  49. };
  50. DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)")
  51. .map_io = msm_map_msm8x60_io,
  52. .init_irq = msm8x60_init_irq,
  53. .handle_irq = gic_handle_irq,
  54. .init_machine = msm8x60_dt_init,
  55. .init_late = msm8x60_init_late,
  56. .timer = &msm_dt_timer,
  57. .dt_compat = msm8x60_fluid_match,
  58. MACHINE_END