bsc913x_qds.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 <asm/udbg.h>
  20. #include "mpc85xx.h"
  21. #include "smp.h"
  22. void __init bsc913x_qds_pic_init(void)
  23. {
  24. struct mpic *mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN |
  25. MPIC_SINGLE_DEST_CPU,
  26. 0, 256, " OpenPIC ");
  27. if (!mpic)
  28. pr_err("bsc913x: Failed to allocate MPIC structure\n");
  29. else
  30. mpic_init(mpic);
  31. }
  32. /*
  33. * Setup the architecture
  34. */
  35. static void __init bsc913x_qds_setup_arch(void)
  36. {
  37. if (ppc_md.progress)
  38. ppc_md.progress("bsc913x_qds_setup_arch()", 0);
  39. #if defined(CONFIG_SMP)
  40. mpc85xx_smp_init();
  41. #endif
  42. pr_info("bsc913x board from Freescale Semiconductor\n");
  43. }
  44. machine_device_initcall(bsc9132_qds, mpc85xx_common_publish_devices);
  45. /*
  46. * Called very early, device-tree isn't unflattened
  47. */
  48. static int __init bsc9132_qds_probe(void)
  49. {
  50. unsigned long root = of_get_flat_dt_root();
  51. return of_flat_dt_is_compatible(root, "fsl,bsc9132qds");
  52. }
  53. define_machine(bsc9132_qds) {
  54. .name = "BSC9132 QDS",
  55. .probe = bsc9132_qds_probe,
  56. .setup_arch = bsc913x_qds_setup_arch,
  57. .init_IRQ = bsc913x_qds_pic_init,
  58. .get_irq = mpic_get_irq,
  59. .restart = fsl_rstcr_restart,
  60. .calibrate_decr = generic_calibrate_decr,
  61. .progress = udbg_progress,
  62. };