qemu_e500.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Paravirt target for a generic QEMU e500 machine
  3. *
  4. * This is intended to be a flexible device-tree-driven platform, not fixed
  5. * to a particular piece of hardware or a particular spec of virtual hardware,
  6. * beyond the assumption of an e500-family CPU. Some things are still hardcoded
  7. * here, such as MPIC, but this is a limitation of the current code rather than
  8. * an interface contract with QEMU.
  9. *
  10. * Copyright 2012 Freescale Semiconductor Inc.
  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. #include <linux/kernel.h>
  18. #include <linux/of_fdt.h>
  19. #include <asm/machdep.h>
  20. #include <asm/pgtable.h>
  21. #include <asm/time.h>
  22. #include <asm/udbg.h>
  23. #include <asm/mpic.h>
  24. #include <sysdev/fsl_soc.h>
  25. #include <sysdev/fsl_pci.h>
  26. #include "smp.h"
  27. #include "mpc85xx.h"
  28. void __init qemu_e500_pic_init(void)
  29. {
  30. struct mpic *mpic;
  31. unsigned int flags = MPIC_BIG_ENDIAN | MPIC_SINGLE_DEST_CPU |
  32. MPIC_ENABLE_COREINT;
  33. mpic = mpic_alloc(NULL, 0, flags, 0, 256, " OpenPIC ");
  34. BUG_ON(mpic == NULL);
  35. mpic_init(mpic);
  36. }
  37. static void __init qemu_e500_setup_arch(void)
  38. {
  39. ppc_md.progress("qemu_e500_setup_arch()", 0);
  40. fsl_pci_assign_primary();
  41. swiotlb_detect_4g();
  42. #if defined(CONFIG_FSL_PCI) && defined(CONFIG_ZONE_DMA32)
  43. /*
  44. * Inbound windows don't cover the full lower 4 GiB
  45. * due to conflicts with PCICSRBAR and outbound windows,
  46. * so limit the DMA32 zone to 2 GiB, to allow consistent
  47. * allocations to succeed.
  48. */
  49. limit_zone_pfn(ZONE_DMA32, 1UL << (31 - PAGE_SHIFT));
  50. #endif
  51. mpc85xx_smp_init();
  52. }
  53. /*
  54. * Called very early, device-tree isn't unflattened
  55. */
  56. static int __init qemu_e500_probe(void)
  57. {
  58. return !!of_machine_is_compatible("fsl,qemu-e500");
  59. }
  60. machine_arch_initcall(qemu_e500, mpc85xx_common_publish_devices);
  61. define_machine(qemu_e500) {
  62. .name = "QEMU e500",
  63. .probe = qemu_e500_probe,
  64. .setup_arch = qemu_e500_setup_arch,
  65. .init_IRQ = qemu_e500_pic_init,
  66. #ifdef CONFIG_PCI
  67. .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
  68. .pcibios_fixup_phb = fsl_pcibios_fixup_phb,
  69. #endif
  70. .get_irq = mpic_get_coreint_irq,
  71. .calibrate_decr = generic_calibrate_decr,
  72. .progress = udbg_progress,
  73. };