mvme2500.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Board setup routines for the Emerson/Artesyn MVME2500
  3. *
  4. * Copyright 2014 Elettra-Sincrotrone Trieste S.C.p.A.
  5. *
  6. * Based on earlier code by:
  7. *
  8. * Xianghua Xiao (x.xiao@freescale.com)
  9. * Tom Armistead (tom.armistead@emerson.com)
  10. * Copyright 2012 Emerson
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the
  14. * Free Software Foundation; either version 2 of the License, or (at your
  15. * option) any later version.
  16. *
  17. * Author Alessio Igor Bogani <alessio.bogani@elettra.eu>
  18. *
  19. */
  20. #include <linux/pci.h>
  21. #include <asm/udbg.h>
  22. #include <asm/mpic.h>
  23. #include <sysdev/fsl_soc.h>
  24. #include <sysdev/fsl_pci.h>
  25. #include "mpc85xx.h"
  26. void __init mvme2500_pic_init(void)
  27. {
  28. struct mpic *mpic = mpic_alloc(NULL, 0,
  29. MPIC_BIG_ENDIAN | MPIC_SINGLE_DEST_CPU,
  30. 0, 256, " OpenPIC ");
  31. BUG_ON(mpic == NULL);
  32. mpic_init(mpic);
  33. }
  34. /*
  35. * Setup the architecture
  36. */
  37. static void __init mvme2500_setup_arch(void)
  38. {
  39. if (ppc_md.progress)
  40. ppc_md.progress("mvme2500_setup_arch()", 0);
  41. fsl_pci_assign_primary();
  42. pr_info("MVME2500 board from Artesyn\n");
  43. }
  44. machine_arch_initcall(mvme2500, mpc85xx_common_publish_devices);
  45. /*
  46. * Called very early, device-tree isn't unflattened
  47. */
  48. static int __init mvme2500_probe(void)
  49. {
  50. unsigned long root = of_get_flat_dt_root();
  51. return of_flat_dt_is_compatible(root, "artesyn,MVME2500");
  52. }
  53. define_machine(mvme2500) {
  54. .name = "MVME2500",
  55. .probe = mvme2500_probe,
  56. .setup_arch = mvme2500_setup_arch,
  57. .init_IRQ = mvme2500_pic_init,
  58. #ifdef CONFIG_PCI
  59. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  60. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  61. #endif
  62. .get_irq = mpic_get_irq,
  63. .restart = fsl_rstcr_restart,
  64. .calibrate_decr = generic_calibrate_decr,
  65. .progress = udbg_progress,
  66. };