summaryrefslogtreecommitdiffstats
path: root/src/device/oprom/include/io.h
blob: bcdde48c11f84e24c947f8f8e6daa7da04995571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __OPROM_IO_H__
#define __OPROM_IO_H__

#if CONFIG(ARCH_X86)
#include <arch/io.h>
#else
void outb(u8 val, u16 port);
void outw(u16 val, u16 port);
void outl(u32 val, u16 port);

u8 inb(u16 port);
u16 inw(u16 port);
u32 inl(u16 port);
#endif
#endif /* __OPROM_IO_H__ */