#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/bus.h>
#include <sys/module.h>
#include <isa/isavar.h>
#include <isa/isa_common.h>
#include <machine/resource.h>
void
isa_hinted_child(device_t parent, const char *name, int unit)
{
device_t child;
int sensitive, start, count;
int order;
sensitive = 0;
if (resource_int_value(name, unit, "sensitive", &sensitive) != 0)
resource_int_value(name, DEVICE_UNIT_ANY, "sensitive",
&sensitive);
if (sensitive)
order = ISA_ORDER_SENSITIVE;
else
order = ISA_ORDER_SPECULATIVE;
child = BUS_ADD_CHILD(parent, order, name, unit);
if (child == 0)
return;
start = 0;
count = 0;
resource_int_value(name, unit, "port", &start);
resource_int_value(name, unit, "portsize", &count);
if (start > 0 || count > 0)
bus_set_resource(child, SYS_RES_IOPORT, 0, start, count);
start = 0;
count = 0;
resource_int_value(name, unit, "maddr", &start);
resource_int_value(name, unit, "msize", &count);
if (start > 0 || count > 0)
bus_set_resource(child, SYS_RES_MEMORY, 0, start, count);
if (resource_int_value(name, unit, "irq", &start) == 0 && start > 0)
bus_set_resource(child, SYS_RES_IRQ, 0, start, 1);
if (resource_int_value(name, unit, "drq", &start) == 0 && start >= 0)
bus_set_resource(child, SYS_RES_DRQ, 0, start, 1);
if (resource_disabled(name, unit))
device_disable(child);
isa_set_configattr(child, (isa_get_configattr(child)|ISACFGATTR_HINTS));
}
static int
isa_match_resource_hint(device_t dev, int type, long value)
{
struct isa_device* idev = DEVTOISA(dev);
struct resource_list *rl = &idev->id_resources;
struct resource_list_entry *rle;
STAILQ_FOREACH(rle, rl, link) {
if (rle->type != type)
continue;
if (rle->start <= value && rle->end >= value)
return (1);
}
return (0);
}
void
isa_hint_device_unit(device_t bus, device_t child, const char *name, int *unitp)
{
const char *s;
long value;
int line, matches, unit;
line = 0;
for (;;) {
if (resource_find_dev(&line, name, &unit, "at", NULL) != 0)
break;
resource_string_value(name, unit, "at", &s);
if (!(strcmp(s, device_get_nameunit(bus)) == 0 ||
strcmp(s, device_get_name(bus)) == 0))
continue;
matches = 0;
if (resource_long_value(name, unit, "port", &value) == 0) {
if (strcmp(name, "fdc") == 0)
value += 2;
if (isa_match_resource_hint(child, SYS_RES_IOPORT,
value))
matches++;
else
continue;
}
if (resource_long_value(name, unit, "maddr", &value) == 0) {
if (isa_match_resource_hint(child, SYS_RES_MEMORY,
value))
matches++;
else
continue;
}
if (matches > 0)
goto matched;
if (resource_long_value(name, unit, "irq", &value) == 0) {
if (isa_match_resource_hint(child, SYS_RES_IRQ, value))
matches++;
else
continue;
}
if (resource_long_value(name, unit, "drq", &value) == 0) {
if (isa_match_resource_hint(child, SYS_RES_DRQ, value))
matches++;
else
continue;
}
matched:
if (matches > 0) {
*unitp = unit;
break;
}
}
}