1/*
2 * Copyright 2009, Haiku Inc.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "pci_io.h"
8#include "pci_private.h"
9#warning ARM:WRITEME
10
11
12status_t
13pci_io_init()
14{
15	return B_OK;
16}
17
18
19uint8
20pci_read_io_8(int mapped_io_addr)
21{
22	/* NOT IMPLEMENTED */
23	return 0;
24}
25
26
27void
28pci_write_io_8(int mapped_io_addr, uint8 value)
29{
30	/* NOT IMPLEMENTED */
31}
32
33
34uint16
35pci_read_io_16(int mapped_io_addr)
36{
37	/* NOT IMPLEMENTED */
38	return 0;
39}
40
41
42void
43pci_write_io_16(int mapped_io_addr, uint16 value)
44{
45	/* NOT IMPLEMENTED */
46}
47
48
49uint32
50pci_read_io_32(int mapped_io_addr)
51{
52	/* NOT IMPLEMENTED */
53	return 0;
54}
55
56
57void
58pci_write_io_32(int mapped_io_addr, uint32 value)
59{
60	/* NOT IMPLEMENTED */
61}
62