summaryrefslogtreecommitdiff
path: root/ioport.h
blob: a7a61f75239bf8b55b226bf4c8ce07afd267f9eb (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * defines ioport related functions
 *
 *  Copyright (c) 2003 Fabrice Bellard
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

/**************************************************************************
 * IO ports API
 */

#ifndef IOPORT_H
#define IOPORT_H

#include "qemu-common.h"

typedef uint32_t a_pio_addr;
#define FMT_pioaddr     PRIx32

#define MAX_IOPORTS     (64 * 1024)
#define IOPORTS_MASK    (MAX_IOPORTS - 1)

/* These should really be in isa.h, but are here to make pc.h happy.  */
typedef void (IOPortWriteFunc)(void *opaque, uint32_t address, uint32_t data);
typedef uint32_t (IOPortReadFunc)(void *opaque, uint32_t address);

int register_ioport_read(a_pio_addr start, int length, int size,
                         IOPortReadFunc *func, void *opaque);
int register_ioport_write(a_pio_addr start, int length, int size,
                          IOPortWriteFunc *func, void *opaque);
void isa_unassign_ioport(a_pio_addr start, int length);


void cpu_outb(a_pio_addr addr, uint8_t val);
void cpu_outw(a_pio_addr addr, uint16_t val);
void cpu_outl(a_pio_addr addr, uint32_t val);
uint8_t cpu_inb(a_pio_addr addr);
uint16_t cpu_inw(a_pio_addr addr);
uint32_t cpu_inl(a_pio_addr addr);

#endif /* IOPORT_H */