#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
#include <dev/ofw/openfirm.h>
#include <machine/bus.h>
#include <machine/autoconf.h>
#include <macppc/pci/macobio.h>
void macobio_attach(struct device *, struct device *, void *);
int macobio_match(struct device *, void *, void *);
int macobio_print(void *, const char *);
void macobio_modem_power(int enable);
struct macobio_softc {
struct device sc_dev;
int sc_node;
struct ppc_bus_space sc_membus_space;
int sc_id;
u_int8_t *obiomem;
};
struct cfdriver macobio_cd = {
NULL, "macobio", DV_DULL,
};
const struct cfattach macobio_ca = {
sizeof(struct macobio_softc), macobio_match, macobio_attach
};
int
macobio_match(struct device *parent, void *cf, void *aux)
{
struct pci_attach_args *pa = aux;
if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_APPLE)
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_APPLE_GC:
case PCI_PRODUCT_APPLE_OHARE:
case PCI_PRODUCT_APPLE_HEATHROW:
case PCI_PRODUCT_APPLE_PADDINGTON:
case PCI_PRODUCT_APPLE_KEYLARGO:
case PCI_PRODUCT_APPLE_INTREPID:
case PCI_PRODUCT_APPLE_PANGEA_MACIO:
case PCI_PRODUCT_APPLE_SHASTA:
case PCI_PRODUCT_APPLE_K2_MACIO:
return 1;
}
return 0;
}
#define HEATHROW_FCR_OFFSET 0x38
u_int32_t *heathrow_FCR = NULL;
void
macobio_attach(struct device *parent, struct device *self, void *aux)
{
struct macobio_softc *sc = (struct macobio_softc *)self;
struct pci_attach_args *pa = aux;
struct confargs ca;
int node, child, namelen;
u_int32_t reg[20];
int32_t intr[8];
char name[32];
int need_interrupt_controller = 0;
sc->sc_id = pa->pa_id;
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_APPLE_GC:
node = OF_finddevice("/bandit/gc");
need_interrupt_controller = 1;
break;
case PCI_PRODUCT_APPLE_OHARE:
node = OF_finddevice("/bandit/ohare");
need_interrupt_controller = 1;
break;
case PCI_PRODUCT_APPLE_HEATHROW:
case PCI_PRODUCT_APPLE_PADDINGTON:
node = OF_finddevice("mac-io");
if (node == -1)
node = OF_finddevice("/pci/mac-io");
if (OF_getprop(node, "assigned-addresses", reg, sizeof(reg))
== (sizeof (reg[0]) * 5))
{
heathrow_FCR = mapiodev(reg[2] + HEATHROW_FCR_OFFSET,
4);
}
break;
case PCI_PRODUCT_APPLE_KEYLARGO:
case PCI_PRODUCT_APPLE_INTREPID:
case PCI_PRODUCT_APPLE_PANGEA_MACIO:
case PCI_PRODUCT_APPLE_SHASTA:
case PCI_PRODUCT_APPLE_K2_MACIO:
node = OF_finddevice("mac-io");
if (node == -1)
node = OF_finddevice("/pci/mac-io");
if (OF_getprop(node, "assigned-addresses", reg, sizeof(reg))
== (sizeof (reg[0]) * 5))
sc->obiomem = mapiodev(reg[2], 0x100);
break;
default:
printf(": unknown macobio controller\n");
return;
}
sc->sc_node = node;
if (OF_getprop(node, "assigned-addresses", reg, sizeof(reg)) < 12)
return;
ca.ca_baseaddr = reg[2];
sc->sc_membus_space.bus_base = ca.ca_baseaddr;
ca.ca_iot = &sc->sc_membus_space;
ca.ca_dmat = pa->pa_dmat;
printf("\n");
if (need_interrupt_controller) {
ca.ca_name = "legacy-interrupt-controller";
ca.ca_node = 0;
ca.ca_nreg = 0;
ca.ca_nintr = 0;
ca.ca_reg = NULL;
ca.ca_intr = NULL;
config_found(self, &ca, macobio_print);
}
for (child = OF_child(node); child; child = OF_peer(child)) {
namelen = OF_getprop(child, "name", name, sizeof(name));
if (namelen < 0)
continue;
if (namelen >= sizeof(name))
continue;
name[namelen] = 0;
ca.ca_name = name;
ca.ca_node = child;
ca.ca_nreg = OF_getprop(child, "reg", reg, sizeof(reg));
ca.ca_nintr = OF_getprop(child, "AAPL,interrupts", intr,
sizeof(intr));
if (ca.ca_nintr == -1)
ca.ca_nintr = OF_getprop(child, "interrupts", intr,
sizeof(intr));
ca.ca_reg = reg;
ca.ca_intr = intr;
config_found(self, &ca, macobio_print);
}
}
int
macobio_print(void *aux, const char *macobio)
{
struct confargs *ca = aux;
if (macobio)
printf("\"%s\" at %s", ca->ca_name, macobio);
if (ca->ca_nreg > 0)
printf(" offset 0x%x", ca->ca_reg[0]);
return UNCONF;
}
void *
mac_intr_establish(void * lcv, int irq, int type, int level,
int (*ih_fun)(void *), void *ih_arg, const char *name)
{
return (*intr_establish_func)(lcv, irq, type, level, ih_fun,
ih_arg, name);
}
void
mac_intr_disestablish(void *lcp, void *arg)
{
(*intr_disestablish_func)(lcp, arg);
}
void
macobio_enable(int offset, u_int32_t bits)
{
struct macobio_softc *sc = macobio_cd.cd_devs[0];
if (sc->obiomem == 0)
return;
bits |= in32rb(sc->obiomem + offset);
out32rb(sc->obiomem + offset, bits);
}
void
macobio_disable(int offset, u_int32_t bits)
{
struct macobio_softc *sc = macobio_cd.cd_devs[0];
if (sc->obiomem == 0)
return;
bits = in32rb(sc->obiomem + offset) & ~bits;
out32rb(sc->obiomem + offset, bits);
}
uint8_t
macobio_read(int offset)
{
struct macobio_softc *sc = macobio_cd.cd_devs[0];
if (sc->obiomem == 0)
return -1;
return in8rb(sc->obiomem + offset);
}
void
macobio_write(int offset, uint8_t bits)
{
struct macobio_softc *sc = macobio_cd.cd_devs[0];
if (sc->obiomem == 0)
return;
out8rb(sc->obiomem + offset, bits);
}
void
macobio_modem_power(int enable)
{
u_int32_t val;
struct macobio_softc *sc = macobio_cd.cd_devs[0];
if (PCI_PRODUCT(sc->sc_id) == PCI_PRODUCT_APPLE_KEYLARGO ||
PCI_PRODUCT(sc->sc_id) == PCI_PRODUCT_APPLE_INTREPID) {
val = in32rb(sc->obiomem + 0x40);
if (enable)
val = val & ~((u_int32_t)1<<25);
else
val = val | ((u_int32_t)1<<25);
out32rb(sc->obiomem + 0x40, val);
}
if (PCI_PRODUCT(sc->sc_id) == PCI_PRODUCT_APPLE_PANGEA_MACIO) {
if (enable) {
out8(sc->obiomem + 0x006a + 0x03, 0x04);
out8(sc->obiomem + 0x006a + 0x02, 0x04);
out8(sc->obiomem + 0x006a + 0x03, 0x05);
} else {
}
}
}