epapr_paravirt.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * ePAPR para-virtualization support.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License, version 2, as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. *
  17. * Copyright (C) 2012 Freescale Semiconductor, Inc.
  18. */
  19. #include <linux/of.h>
  20. #include <asm/epapr_hcalls.h>
  21. #include <asm/cacheflush.h>
  22. #include <asm/code-patching.h>
  23. #include <asm/machdep.h>
  24. #if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
  25. extern void epapr_ev_idle(void);
  26. extern u32 epapr_ev_idle_start[];
  27. #endif
  28. bool epapr_paravirt_enabled;
  29. static int __init epapr_paravirt_init(void)
  30. {
  31. struct device_node *hyper_node;
  32. const u32 *insts;
  33. int len, i;
  34. hyper_node = of_find_node_by_path("/hypervisor");
  35. if (!hyper_node)
  36. return -ENODEV;
  37. insts = of_get_property(hyper_node, "hcall-instructions", &len);
  38. if (!insts)
  39. return -ENODEV;
  40. if (len % 4 || len > (4 * 4))
  41. return -ENODEV;
  42. for (i = 0; i < (len / 4); i++) {
  43. patch_instruction(epapr_hypercall_start + i, insts[i]);
  44. #if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
  45. patch_instruction(epapr_ev_idle_start + i, insts[i]);
  46. #endif
  47. }
  48. #if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
  49. if (of_get_property(hyper_node, "has-idle", NULL))
  50. ppc_md.power_save = epapr_ev_idle;
  51. #endif
  52. epapr_paravirt_enabled = true;
  53. return 0;
  54. }
  55. early_initcall(epapr_paravirt_init);