#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: cia_pci.c,v 1.36 2021/09/11 21:30:46 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <alpha/pci/ciareg.h>
#include <alpha/pci/ciavar.h>
static pcireg_t cia_conf_read(void *, pcitag_t, int);
static void cia_conf_write(void *, pcitag_t, int, pcireg_t);
void
cia_pci_init(pci_chipset_tag_t pc, void *v)
{
pc->pc_conf_v = v;
pc->pc_conf_read = cia_conf_read;
pc->pc_conf_write = cia_conf_write;
}
static pcireg_t
cia_conf_read(void *cpv, pcitag_t tag, int offset)
{
struct cia_config *ccp = cpv;
pcireg_t *datap, data;
int s, secondary, ba;
uint32_t old_cfg, errbits;
if ((unsigned int)offset >= PCI_CONF_SIZE)
return (pcireg_t) -1;
#ifdef __GNUC__
s = 0;
old_cfg = 0;
#endif
REGVAL(CIA_CSR_CIA_ERR) = CIA_ERR_RCVD_MAS_ABT|CIA_ERR_RCVD_TAR_ABT;
alpha_mb();
alpha_pal_draina();
pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0);
if (secondary) {
s = splhigh();
old_cfg = REGVAL(CIA_CSR_CFG);
alpha_mb();
REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
alpha_mb();
}
if (ccp->cc_flags & CCF_PCI_USE_BWX) {
if (secondary) {
datap =
(pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF1 |
tag | (offset & ~0x03));
} else {
datap =
(pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF0 |
tag | (offset & ~0x03));
}
} else {
datap = (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_PCI_CONF |
tag << 5UL |
(offset & ~0x03) << 5 |
0 << 5 |
0x3 << 3);
}
data = (pcireg_t)-1;
alpha_mb();
if (!(ba = badaddr(datap, sizeof *datap)))
data = *datap;
alpha_mb();
alpha_mb();
if (secondary) {
alpha_mb();
REGVAL(CIA_CSR_CFG) = old_cfg;
alpha_mb();
splx(s);
}
alpha_pal_draina();
alpha_mb();
errbits = REGVAL(CIA_CSR_CIA_ERR);
if (errbits & (CIA_ERR_RCVD_MAS_ABT|CIA_ERR_RCVD_TAR_ABT)) {
ba = 1;
data = 0xffffffff;
}
if (errbits) {
REGVAL(CIA_CSR_CIA_ERR) = errbits;
alpha_mb();
alpha_pal_draina();
}
#if 0
printf("cia_conf_read: tag 0x%lx, reg 0x%lx -> %x @ %p%s\n", tag, reg,
data, datap, ba ? " (badaddr)" : "");
#endif
return data;
}
static void
cia_conf_write(void *cpv, pcitag_t tag, int offset, pcireg_t data)
{
struct cia_config *ccp = cpv;
pcireg_t *datap;
int s, secondary;
uint32_t old_cfg;
if ((unsigned int)offset >= PCI_CONF_SIZE)
return;
#ifdef __GNUC__
s = 0;
old_cfg = 0;
#endif
pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0);
if (secondary) {
s = splhigh();
old_cfg = REGVAL(CIA_CSR_CFG);
alpha_mb();
REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
alpha_mb();
}
if (ccp->cc_flags & CCF_PCI_USE_BWX) {
if (secondary) {
datap =
(pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF1 |
tag | (offset & ~0x03));
} else {
datap =
(pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_EV56_BWCONF0 |
tag | (offset & ~0x03));
}
} else {
datap = (pcireg_t *)ALPHA_PHYS_TO_K0SEG(CIA_PCI_CONF |
tag << 5UL |
(offset & ~0x03) << 5 |
0 << 5 |
0x3 << 3);
}
alpha_mb();
*datap = data;
alpha_mb();
alpha_mb();
if (secondary) {
alpha_mb();
REGVAL(CIA_CSR_CFG) = old_cfg;
alpha_mb();
splx(s);
}
#if 0
printf("cia_conf_write: tag 0x%lx, reg 0x%lx -> 0x%x @ %p\n", tag,
reg, data, datap);
#endif
}