hw_x86_64: Provide inb and outb functions for port I/O

The port_io.h file provides the inb and outb functions to perform port
I/O operations.
This commit is contained in:
Reto Buerki 2015-03-06 10:56:46 +01:00 committed by Christian Helmuth
parent 1b3871a3f0
commit b75b1902f2
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
#ifndef _PORT_IO_H_
#define _PORT_IO_H_
#include <base/stdint.h>
namespace Genode
{
/**
* Read byte from I/O port
*/
inline uint8_t inb(uint16_t port)
{
uint8_t res;
asm volatile ("inb %w1, %0" : "=a"(res) : "Nd"(port));
return res;
}
/**
* Write byte to I/O port
*/
inline void outb(uint16_t port, uint8_t val)
{
asm volatile ("outb %0, %w1" : : "a"(val), "Nd"(port));
}
}
#endif /* _PORT_IO_H_ */