bsc913x_qds.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * BSC913xQDS Board Setup
  3. *
  4. * Author:
  5. * Harninder Rai <harninder.rai@freescale.com>
  6. * Priyanka Jain <Priyanka.Jain@freescale.com>
  7. *
  8. * Copyright 2014 Freescale Semiconductor Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. */
  15. #include <linux/of_platform.h>
  16. #include <linux/pci.h>
  17. #include <asm/mpic.h>
  18. #include <sysdev/fsl_soc.h>
  19. #include <sysdev/fsl_pci.h>
  20. #include <asm/udbg.h>
  21. #include "mpc85xx.h"
  22. #include "smp.h"
  23. void __init bsc913x_qds_pic_init(void)
  24. {
  25. struct mpic *mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN |
  26. MPIC_SINGLE_DEST_CPU,
  27. 0, 256, " OpenPIC ");
  28. if (!mpic)
  29. pr_err("bsc913x: Failed to allocate MPIC structure\n");
  30. else
  31. mpic_init(mpic);
  32. }
  33. /*
  34. * Setup the architecture
  35. */
  36. static void __init bsc913x_qds_setup_arch(void)
  37. {
  38. if (ppc_md.progress)
  39. ppc_md.progress("bsc913x_qds_setup_arch()", 0);
  40. #if defined(CONFIG_SMP)
  41. mpc85xx_smp_init();
  42. #endif
  43. fsl_pci_assign_primary();
  44. pr_info("bsc913x board from Freescale Semiconductor\n");
  45. }
  46. machine_arch_initcall(bsc9132_qds, mpc85xx_common_publish_devices);
  47. /*
  48. * Called very early, device-tree isn't unflattened
  49. */
  50. static int __init bsc9132_qds_probe(void)
  51. {
  52. return of_machine_is_compatible("fsl,bsc9132qds");
  53. }
  54. define_machine(bsc9132_qds) {
  55. .name = "BSC9132 QDS",
  56. .probe = bsc9132_qds_probe,
  57. .setup_arch = bsc913x_qds_setup_arch,
  58. .init_IRQ = bsc913x_qds_pic_init,
  59. #ifdef CONFIG_PCI
  60. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  61. #endif
  62. .get_irq = mpic_get_irq,
  63. .calibrate_decr = generic_calibrate_decr,
  64. .progress = udbg_progress,
  65. };