summaryrefslogtreecommitdiffstats
path: root/src/arch/ppc64/include/arch/io.h
blob: 1d865968bfd67d55f61e71f739fb69414934354a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef _ASM_IO_H
#define _ASM_IO_H

#include <stdint.h>

static inline void outb(uint8_t value, uint16_t port)
{
}

static inline void outw(uint16_t value, uint16_t port)
{
}

static inline void outl(uint32_t value, uint16_t port)
{
}


static inline uint8_t inb(uint16_t port)
{
	return 0;
}


static inline uint16_t inw(uint16_t port)
{
	return 0;
}

static inline uint32_t inl(uint16_t port)
{
	return 0;
}

#endif