#include "opt_pci.h"
#include "pci.h"
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aupci.c,v 1.22 2022/09/29 07:00:46 skrll Exp $");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/device.h>
#include <sys/bus.h>
#include <uvm/uvm_extern.h>
#include <mips/locore.h>
#include <mips/pte.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pciconf.h>
#ifdef PCI_NETBSD_CONFIGURE
#include <mips/cache.h>
#endif
#include <mips/alchemy/include/au_himem_space.h>
#include <mips/alchemy/include/aubusvar.h>
#include <mips/alchemy/include/aureg.h>
#include <mips/alchemy/include/auvar.h>
#include <mips/alchemy/dev/aupcireg.h>
#include <mips/alchemy/dev/aupcivar.h>
struct aupci_softc {
device_t sc_dev;
struct mips_pci_chipset sc_pc;
struct mips_bus_space sc_mem_space;
struct mips_bus_space sc_io_space;
struct mips_bus_space sc_cfg_space;
bus_space_tag_t sc_memt;
bus_space_tag_t sc_iot;
bus_space_tag_t sc_cfgt;
bus_space_tag_t sc_bust;
bus_space_handle_t sc_bush;
paddr_t sc_cfgbase;
paddr_t sc_membase;
paddr_t sc_iobase;
};
int aupcimatch(device_t, struct cfdata *, void *);
void aupciattach(device_t, device_t, void *);
#if NPCI > 0
static void aupci_attach_hook(device_t, device_t, struct pcibus_attach_args *);
static int aupci_bus_maxdevs(void *, int);
static pcitag_t aupci_make_tag(void *, int, int, int);
static void aupci_decompose_tag(void *, pcitag_t, int *, int *, int *);
static pcireg_t aupci_conf_read(void *, pcitag_t, int);
static void aupci_conf_write(void *, pcitag_t, int, pcireg_t);
static const char *aupci_intr_string(void *, pci_intr_handle_t, char *, size_t);
static void aupci_conf_interrupt(void *, int, int, int, int, int *);
static void *aupci_intr_establish(void *, pci_intr_handle_t, int,
int (*)(void *), void *);
static void aupci_intr_disestablish(void *, void *);
#define PCI_CFG_READ 0
#define PCI_CFG_WRITE 1
#define PCI_IO_START AUPCI_IO_START
#define PCI_IO_END AUPCI_IO_END
#define PCI_IO_SIZE ((PCI_IO_END - PCI_IO_START) + 1)
#define PCI_MEM_END 0xffffffff
#define PCI_MEM_SIZE(m) ((PCI_MEM_END - (m)) + 1)
#endif
CFATTACH_DECL_NEW(aupci, sizeof(struct aupci_softc),
aupcimatch, aupciattach, NULL, NULL);
int aupci_found = 0;
#if NPCI > 0
#if !defined(_MIPS_PADDR_T_64BIT) && !defined(_LP64)
#error "aupci requires 64 bit paddr_t!"
#endif
#endif
int
aupcimatch(device_t parent, struct cfdata *match, void *aux)
{
struct aubus_attach_args *aa = (struct aubus_attach_args *)aux;
if (strcmp(aa->aa_name, "aupci") != 0)
return 0;
if (aupci_found)
return 0;
return 1;
}
void
aupciattach(device_t parent, device_t self, void *aux)
{
struct aupci_softc *sc = device_private(self);
struct aubus_attach_args *aa = (struct aubus_attach_args *)aux;
uint32_t cfg;
#if NPCI > 0
uint32_t mbar, mask;
bus_addr_t mstart;
struct pcibus_attach_args pba;
#endif
aupci_found = 1;
sc->sc_dev = self;
sc->sc_bust = aa->aa_st;
if (bus_space_map(sc->sc_bust, aa->aa_addrs[0], 512, 0,
&sc->sc_bush) != 0) {
aprint_error(": unable to map PCI registers\n");
return;
}
#if NPCI > 0
sc->sc_cfgbase = PCI_CONFIG_BASE;
sc->sc_membase = PCI_MEM_BASE;
sc->sc_iobase = PCI_IO_BASE;
#endif
#if _BYTE_ORDER == _BIG_ENDIAN
cfg = AUPCI_CONFIG_CH | AUPCI_CONFIG_R1H |
AUPCI_CONFIG_R2H | AUPCI_CONFIG_AEN |
AUPCI_CONFIG_SM | AUPCI_CONFIG_ST | AUPCI_CONFIG_SIC_DATA;
#else
cfg = AUPCI_CONFIG_CH | AUPCI_CONFIG_R1H |
AUPCI_CONFIG_R2H | AUPCI_CONFIG_AEN;
#endif
bus_space_write_4(sc->sc_bust, sc->sc_bush, AUPCI_CONFIG, cfg);
cfg = bus_space_read_4(sc->sc_bust, sc->sc_bush, AUPCI_COMMAND_STATUS);
aprint_normal(": Alchemy Host-PCI Bridge, %sMHz\n",
(cfg & PCI_STATUS_66MHZ_SUPPORT) ? "66" : "33");
aprint_naive("\n");
#if NPCI > 0
sc->sc_cfgt = &sc->sc_cfg_space;
au_himem_space_init(sc->sc_cfgt, "pcicfg", sc->sc_cfgbase,
0x00000000, 0xffffffff, AU_HIMEM_SPACE_IO);
mask = bus_space_read_4(sc->sc_bust, sc->sc_bush, AUPCI_MWMASK);
mask >>= AUPCI_MWMASK_SHIFT;
mask <<= AUPCI_MWMASK_SHIFT;
mbar = bus_space_read_4(sc->sc_bust, sc->sc_bush, AUPCI_MBAR);
mstart = (mbar & mask) + (~mask + 1);
sc->sc_memt = &sc->sc_mem_space;
au_himem_space_init(sc->sc_memt, "pcimem", sc->sc_membase,
mstart, 0xffffffff, AU_HIMEM_SPACE_LITTLE_ENDIAN);
sc->sc_iot = &sc->sc_io_space;
au_himem_space_init(sc->sc_iot, "pciio",
sc->sc_iobase, AUPCI_IO_START, AUPCI_IO_END,
AU_HIMEM_SPACE_LITTLE_ENDIAN | AU_HIMEM_SPACE_IO);
sc->sc_pc.pc_conf_v = sc;
sc->sc_pc.pc_attach_hook = aupci_attach_hook;
sc->sc_pc.pc_bus_maxdevs = aupci_bus_maxdevs;
sc->sc_pc.pc_make_tag = aupci_make_tag;
sc->sc_pc.pc_decompose_tag = aupci_decompose_tag;
sc->sc_pc.pc_conf_read = aupci_conf_read;
sc->sc_pc.pc_conf_write = aupci_conf_write;
sc->sc_pc.pc_intr_v = sc;
sc->sc_pc.pc_intr_map = aupci_intr_map;
sc->sc_pc.pc_intr_string = aupci_intr_string;
sc->sc_pc.pc_intr_establish = aupci_intr_establish;
sc->sc_pc.pc_intr_disestablish = aupci_intr_disestablish;
sc->sc_pc.pc_conf_interrupt = aupci_conf_interrupt;
#ifdef PCI_NETBSD_CONFIGURE
struct pciconf_resources *pcires = pciconf_resource_init();
pciconf_resource_add(pcires, PCICONF_RESOURCE_IO,
PCI_IO_START, PCI_IO_SIZE);
pciconf_resource_add(pcires, PCICONF_RESOURCE_MEM,
mstart, PCI_MEM_SIZE(mstart));
pci_configure_bus(&sc->sc_pc, pcires, 0,
mips_cache_info.mci_dcache_align);
pciconf_resource_fini(pcires);
#endif
pba.pba_iot = sc->sc_iot;
pba.pba_memt = sc->sc_memt;
pba.pba_dmat = aa->aa_dt;
pba.pba_dmat64 = NULL;
pba.pba_pc = &sc->sc_pc;
pba.pba_flags = PCI_FLAGS_IO_OKAY | PCI_FLAGS_MEM_OKAY;
pba.pba_bus = 0;
pba.pba_bridgetag = NULL;
config_found(self, &pba, pcibusprint, CFARGS_NONE);
#endif
}
#if NPCI > 0
void
aupci_attach_hook(device_t parent, device_t self,
struct pcibus_attach_args *pba)
{
}
int
aupci_bus_maxdevs(void *v, int busno)
{
return 32;
}
pcitag_t
aupci_make_tag(void *v, int bus, int device, int function)
{
pcitag_t tag;
if (bus >= 256 || device >= 32 || function >= 8)
panic("aupci_make_tag: bad request");
tag = (bus << 16) | (device << 11) | (function << 8);
return tag;
}
void
aupci_decompose_tag(void *v, pcitag_t tag, int *b, int *d, int *f)
{
if (b != NULL)
*b = (tag >> 16) & 0xff;
if (d != NULL)
*d = (tag >> 11) & 0x1f;
if (f != NULL)
*f = (tag >> 8) & 0x07;
}
static inline bool
aupci_conf_access(void *v, int dir, pcitag_t tag, int reg, pcireg_t *datap)
{
struct aupci_softc *sc = (struct aupci_softc *)v;
uint32_t status;
int s;
bus_addr_t addr;
int b, d, f;
bus_space_handle_t h;
if ((unsigned int)reg >= PCI_CONF_SIZE)
return false;
aupci_decompose_tag(v, tag, &b, &d, &f);
if (b) {
addr = 0x80000000 | tag;
} else if (d > 19) {
return false;
} else {
addr = (0x800 << d) | (f << 8);
}
if (addr == 0)
return false;
if (bus_space_map(sc->sc_cfgt, addr, 256, 0, &h) != 0)
return false;
s = splhigh();
if (dir == PCI_CFG_WRITE)
bus_space_write_4(sc->sc_cfgt, h, reg, *datap);
else
*datap = bus_space_read_4(sc->sc_cfgt, h, reg);
DELAY(2);
status = bus_space_read_4(sc->sc_bust, sc->sc_bush, AUPCI_CONFIG);
bus_space_write_4(sc->sc_bust, sc->sc_bush, AUPCI_CONFIG,
status & ~(AUPCI_CONFIG_EF));
splx(s);
bus_space_unmap(sc->sc_cfgt, h, 256);
if (status & AUPCI_CONFIG_EF)
return false;
return true;
}
pcireg_t
aupci_conf_read(void *v, pcitag_t tag, int reg)
{
pcireg_t data;
if (aupci_conf_access(v, PCI_CFG_READ, tag, reg, &data) == false)
return 0xffffffff;
return (data);
}
void
aupci_conf_write(void *v, pcitag_t tag, int reg, pcireg_t data)
{
aupci_conf_access(v, PCI_CFG_WRITE, tag, reg, &data);
}
const char *
aupci_intr_string(void *v, pci_intr_handle_t ih, char *buf, size_t len)
{
snprintf(buf, len, "irq %u", (unsigned)ih);
return buf;
}
void *
aupci_intr_establish(void *v, pci_intr_handle_t ih, int ipl,
int (*handler)(void *), void *arg)
{
return (au_intr_establish(ih, 0, ipl, IST_LEVEL_LOW, handler, arg));
}
void
aupci_intr_disestablish(void *v, void *cookie)
{
au_intr_disestablish(cookie);
}
void
aupci_conf_interrupt(void *v, int bus, int dev, int ipin, int swiz, int *iline)
{
}
#endif