ucall.S 304 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Generic code to perform an ultravisor call.
  4. *
  5. * Copyright 2019, IBM Corporation.
  6. *
  7. */
  8. #include <asm/ppc_asm.h>
  9. #include <asm/export.h>
  10. _GLOBAL(ucall_norets)
  11. EXPORT_SYMBOL_GPL(ucall_norets)
  12. sc 2 /* Invoke the ultravisor */
  13. blr /* Return r3 = status */