2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 #ifndef __KVM_IODEV_H__
17 #define __KVM_IODEV_H__
19 #include <linux/kvm_types.h>
21 struct kvm_io_device
{
22 void (*read
)(struct kvm_io_device
*this,
26 void (*write
)(struct kvm_io_device
*this,
30 int (*in_range
)(struct kvm_io_device
*this, gpa_t addr
);
31 void (*destructor
)(struct kvm_io_device
*this);
36 static inline void kvm_iodevice_read(struct kvm_io_device
*dev
,
41 dev
->read(dev
, addr
, len
, val
);
44 static inline void kvm_iodevice_write(struct kvm_io_device
*dev
,
49 dev
->write(dev
, addr
, len
, val
);
52 static inline int kvm_iodevice_inrange(struct kvm_io_device
*dev
, gpa_t addr
)
54 return dev
->in_range(dev
, addr
);
57 static inline void kvm_iodevice_destructor(struct kvm_io_device
*dev
)
63 #endif /* __KVM_IODEV_H__ */