2011-05-13 04:54:01 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2011 NetApp, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/linker_set.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2013-04-10 02:12:39 +00:00
|
|
|
#include <string.h>
|
2011-05-13 04:54:01 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "inout.h"
|
|
|
|
|
|
|
|
SET_DECLARE(inout_port_set, struct inout_port);
|
|
|
|
|
|
|
|
#define MAX_IOPORTS (1 << 16)
|
|
|
|
|
2013-04-10 02:12:39 +00:00
|
|
|
#define VERIFY_IOPORT(port, size) \
|
|
|
|
assert((port) >= 0 && (size) > 0 && ((port) + (size)) <= MAX_IOPORTS)
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
static struct {
|
|
|
|
const char *name;
|
|
|
|
int flags;
|
|
|
|
inout_func_t handler;
|
|
|
|
void *arg;
|
|
|
|
} inout_handlers[MAX_IOPORTS];
|
|
|
|
|
2011-05-19 21:53:25 +00:00
|
|
|
static int
|
|
|
|
default_inout(struct vmctx *ctx, int vcpu, int in, int port, int bytes,
|
|
|
|
uint32_t *eax, void *arg)
|
|
|
|
{
|
|
|
|
if (in) {
|
|
|
|
switch (bytes) {
|
|
|
|
case 4:
|
|
|
|
*eax = 0xffffffff;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
*eax = 0xffff;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
*eax = 0xff;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2013-04-10 02:12:39 +00:00
|
|
|
static void
|
|
|
|
register_default_iohandler(int start, int size)
|
|
|
|
{
|
|
|
|
struct inout_port iop;
|
|
|
|
|
|
|
|
VERIFY_IOPORT(start, size);
|
|
|
|
|
|
|
|
bzero(&iop, sizeof(iop));
|
|
|
|
iop.name = "default";
|
|
|
|
iop.port = start;
|
|
|
|
iop.size = size;
|
2013-10-29 00:18:11 +00:00
|
|
|
iop.flags = IOPORT_F_INOUT | IOPORT_F_DEFAULT;
|
2013-04-10 02:12:39 +00:00
|
|
|
iop.handler = default_inout;
|
|
|
|
|
|
|
|
register_inout(&iop);
|
|
|
|
}
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
int
|
|
|
|
emulate_inout(struct vmctx *ctx, int vcpu, int in, int port, int bytes,
|
2011-05-19 21:53:25 +00:00
|
|
|
uint32_t *eax, int strict)
|
2011-05-13 04:54:01 +00:00
|
|
|
{
|
|
|
|
int flags;
|
2012-11-21 00:14:03 +00:00
|
|
|
uint32_t mask;
|
2011-05-13 04:54:01 +00:00
|
|
|
inout_func_t handler;
|
|
|
|
void *arg;
|
|
|
|
|
|
|
|
assert(port < MAX_IOPORTS);
|
|
|
|
|
2011-05-19 21:53:25 +00:00
|
|
|
handler = inout_handlers[port].handler;
|
|
|
|
|
|
|
|
if (strict && handler == default_inout)
|
2011-05-13 04:54:01 +00:00
|
|
|
return (-1);
|
|
|
|
|
2012-11-21 00:14:03 +00:00
|
|
|
if (!in) {
|
|
|
|
switch (bytes) {
|
|
|
|
case 1:
|
|
|
|
mask = 0xff;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
mask = 0xffff;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mask = 0xffffffff;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*eax = *eax & mask;
|
|
|
|
}
|
|
|
|
|
2011-05-13 04:54:01 +00:00
|
|
|
flags = inout_handlers[port].flags;
|
|
|
|
arg = inout_handlers[port].arg;
|
|
|
|
|
|
|
|
if ((in && (flags & IOPORT_F_IN)) || (!in && (flags & IOPORT_F_OUT)))
|
|
|
|
return ((*handler)(ctx, vcpu, in, port, bytes, eax, arg));
|
|
|
|
else
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
init_inout(void)
|
|
|
|
{
|
|
|
|
struct inout_port **iopp, *iop;
|
2011-05-19 21:53:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the default handler for all ports
|
|
|
|
*/
|
2013-04-10 02:12:39 +00:00
|
|
|
register_default_iohandler(0, MAX_IOPORTS);
|
2011-05-13 04:54:01 +00:00
|
|
|
|
2011-05-19 21:53:25 +00:00
|
|
|
/*
|
|
|
|
* Overwrite with specified handlers
|
|
|
|
*/
|
2011-05-13 04:54:01 +00:00
|
|
|
SET_FOREACH(iopp, inout_port_set) {
|
|
|
|
iop = *iopp;
|
|
|
|
assert(iop->port < MAX_IOPORTS);
|
|
|
|
inout_handlers[iop->port].name = iop->name;
|
|
|
|
inout_handlers[iop->port].flags = iop->flags;
|
|
|
|
inout_handlers[iop->port].handler = iop->handler;
|
|
|
|
inout_handlers[iop->port].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
register_inout(struct inout_port *iop)
|
|
|
|
{
|
2013-04-10 02:12:39 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
VERIFY_IOPORT(iop->port, iop->size);
|
2013-10-29 00:18:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Verify that the new registration is not overwriting an already
|
|
|
|
* allocated i/o range.
|
|
|
|
*/
|
|
|
|
if ((iop->flags & IOPORT_F_DEFAULT) == 0) {
|
|
|
|
for (i = iop->port; i < iop->port + iop->size; i++) {
|
|
|
|
if ((inout_handlers[i].flags & IOPORT_F_DEFAULT) == 0)
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-10 02:12:39 +00:00
|
|
|
for (i = iop->port; i < iop->port + iop->size; i++) {
|
|
|
|
inout_handlers[i].name = iop->name;
|
|
|
|
inout_handlers[i].flags = iop->flags;
|
|
|
|
inout_handlers[i].handler = iop->handler;
|
|
|
|
inout_handlers[i].arg = iop->arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
unregister_inout(struct inout_port *iop)
|
|
|
|
{
|
|
|
|
|
|
|
|
VERIFY_IOPORT(iop->port, iop->size);
|
|
|
|
assert(inout_handlers[iop->port].name == iop->name);
|
|
|
|
|
|
|
|
register_default_iohandler(iop->port, iop->size);
|
2011-05-13 04:54:01 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|