ioport.h 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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
17
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 19 20 21 22 23 24 25 26 27
 */

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

#ifndef IOPORT_H
#define IOPORT_H

#include "qemu-common.h"
A
Avi Kivity 已提交
28
#include "iorange.h"
29

A
Anthony Liguori 已提交
30
typedef uint32_t pio_addr_t;
31 32
#define FMT_pioaddr     PRIx32

33
#define MAX_IOPORTS     (64 * 1024)
34
#define IOPORTS_MASK    (MAX_IOPORTS - 1)
35 36 37 38 39

/* 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);

A
Avi Kivity 已提交
40
void ioport_register(IORange *iorange);
A
Anthony Liguori 已提交
41
int register_ioport_read(pio_addr_t start, int length, int size,
42
                         IOPortReadFunc *func, void *opaque);
A
Anthony Liguori 已提交
43
int register_ioport_write(pio_addr_t start, int length, int size,
44
                          IOPortWriteFunc *func, void *opaque);
A
Anthony Liguori 已提交
45
void isa_unassign_ioport(pio_addr_t start, int length);
46
bool isa_is_ioport_assigned(pio_addr_t start);
47

A
Anthony Liguori 已提交
48 49 50 51 52 53
void cpu_outb(pio_addr_t addr, uint8_t val);
void cpu_outw(pio_addr_t addr, uint16_t val);
void cpu_outl(pio_addr_t addr, uint32_t val);
uint8_t cpu_inb(pio_addr_t addr);
uint16_t cpu_inw(pio_addr_t addr);
uint32_t cpu_inl(pio_addr_t addr);
54 55

#endif /* IOPORT_H */