xcall.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (c) 2014-2018 Richard Braun.
  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 as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. *
  18. * Cross-processor function calls.
  19. *
  20. * This module provides the ability to run functions, called cross-calls,
  21. * on specific processors.
  22. *
  23. * TODO Asynchronous cross-calls.
  24. */
  25. #ifndef KERN_XCALL_H
  26. #define KERN_XCALL_H
  27. #include <kern/init.h>
  28. /*
  29. * Type for cross-call functions.
  30. */
  31. typedef void (*xcall_fn_t)(void *arg);
  32. /*
  33. * Run the given cross-call function on a specific processor.
  34. *
  35. * The operation is completely synchronous, returning only when the function
  36. * has finished running on the target processor. Release-acquire ordering is
  37. * enforced both before and after the function runs on the target processor,
  38. * so that side effects produced by the caller are visible to the function,
  39. * and vice-versa on return.
  40. *
  41. * The callback function runs in interrupt context. Interrupts must be enabled
  42. * when calling this function.
  43. */
  44. void xcall_call(xcall_fn_t fn, void *arg, unsigned int cpu);
  45. /*
  46. * Handle a cross-call interrupt from a remote processor.
  47. *
  48. * Called from interrupt context.
  49. */
  50. void xcall_intr(void);
  51. /*
  52. * This init operation provides :
  53. * - cross-calls are usable
  54. * - module fully initialized
  55. */
  56. INIT_OP_DECLARE(xcall_setup);
  57. #endif /* KERN_XCALL_H */