1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <asm/shared/io.h>
15 u8 (*f_inb
)(u16 port
);
16 void (*f_outb
)(u8 v
, u16 port
);
17 void (*f_outw
)(u16 v
, u16 port
);
20 extern struct port_io_ops pio_ops
;
23 * Use the normal I/O instructions by default.
24 * TDX guests override these to use hypercalls.
26 static inline void init_default_io_ops(void)
28 pio_ops
.f_inb
= __inb
;
29 pio_ops
.f_outb
= __outb
;
30 pio_ops
.f_outw
= __outw
;
34 * Redirect port I/O operations via pio_ops callbacks.
35 * TDX guests override these callbacks with TDX-specific helpers.
37 #define inb pio_ops.f_inb
38 #define outb pio_ops.f_outb
39 #define outw pio_ops.f_outw