epapr_paravirt.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 early_init_dt_scan_epapr(unsigned long node,
  30. const char *uname,
  31. int depth, void *data)
  32. {
  33. const u32 *insts;
  34. unsigned long len;
  35. int i;
  36. insts = of_get_flat_dt_prop(node, "hcall-instructions", &len);
  37. if (!insts)
  38. return 0;
  39. if (len % 4 || len > (4 * 4))
  40. return -1;
  41. for (i = 0; i < (len / 4); i++) {
  42. patch_instruction(epapr_hypercall_start + i, insts[i]);
  43. #if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
  44. patch_instruction(epapr_ev_idle_start + i, insts[i]);
  45. #endif
  46. }
  47. #if !defined(CONFIG_64BIT) || defined(CONFIG_PPC_BOOK3E_64)
  48. if (of_get_flat_dt_prop(node, "has-idle", NULL))
  49. ppc_md.power_save = epapr_ev_idle;
  50. #endif
  51. epapr_paravirt_enabled = true;
  52. return 1;
  53. }
  54. int __init epapr_paravirt_early_init(void)
  55. {
  56. of_scan_flat_dt(early_init_dt_scan_epapr, NULL);
  57. return 0;
  58. }