#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tsp_pci.c,v 1.12 2021/06/25 03:45:59 thorpej 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 <machine/autoconf.h>
#include <machine/rpb.h>
#include <alpha/pci/tsreg.h>
#include <alpha/pci/tsvar.h>
#define tsp_pci() { Generate ctags(1) key. }
static pcireg_t tsp_conf_read(void *, pcitag_t, int);
static void tsp_conf_write(void *, pcitag_t, int, pcireg_t);
void
tsp_pci_init(pci_chipset_tag_t pc, void *v)
{
pc->pc_conf_v = v;
pc->pc_conf_read = tsp_conf_read;
pc->pc_conf_write = tsp_conf_write;
}
static pcireg_t
tsp_conf_read(void *cpv, pcitag_t tag, int offset)
{
pcireg_t *datap, data;
struct tsp_config *pcp = cpv;
if ((unsigned int)offset >= PCI_CONF_SIZE)
return (pcireg_t) -1;
datap = S_PAGE(pcp->pc_iobase | P_PCI_CONFIG | tag | (offset & ~3));
alpha_mb();
data = *datap;
alpha_mb();
return data;
}
static void
tsp_conf_write(void *cpv, pcitag_t tag, int offset, pcireg_t data)
{
pcireg_t *datap;
struct tsp_config *pcp = cpv;
if ((unsigned int)offset >= PCI_CONF_SIZE)
return;
datap = S_PAGE(pcp->pc_iobase | P_PCI_CONFIG | tag | (offset & ~3));
alpha_mb();
*datap = data;
alpha_mb();
}
#define NTH_STR(n, ...) ((const char *[]){ __VA_ARGS__ }[n])
void
tsp_print_error(unsigned int indent, unsigned long p_error)
{
char buf[40];
if (PER_INV(p_error)) {
IPRINTF(indent, "data invalid\n");
return;
}
if (!PER_ERR(p_error))
return;
snprintb(buf, 40,
"\177\20"
"b\0Error lost\0"
"b\1PCI SERR#\0"
"b\2PCI PERR#\0"
"b\3Delayed completion retry timeout\0"
"b\4Invalid S/G page table entry\0"
"b\5Address parity error\0"
"b\6Target abort\0"
"b\7PCI read data parity error\0"
"b\10no PCI DEVSEL#\0"
"b\11unknown\0"
"b\12Uncorrectable ECC\0"
"b\13Correctable ECC\0",
PER_ERR(p_error));
IPRINTF(indent, "error = %s\n", buf);
if (PER_ECC(p_error)) {
IPRINTF(indent, "address = 0x%09lx\n", PER_SADR(p_error));
IPRINTF(indent, "command = 0x%lx<%s>\n", PER_CMD(p_error),
NTH_STR(PER_CMD(p_error) & 0x3,
"DMA read", "DMA RMW", "?", "S/G read"));
IPRINTF(indent, "syndrome = 0x%02lx\n", PER_SYN(p_error));
} else {
IPRINTF(indent, "address = 0x%08lx, 0x%lx<%s>\n",
PER_PADR(p_error), PER_TRNS(p_error),
NTH_STR(PER_TRNS(p_error), "No DAC", "DAC SG Win3",
"Monster Window", "Monster Window"));
IPRINTF(indent, "command = 0x%lx<%s>\n", PER_CMD(p_error),
NTH_STR(PER_CMD(p_error),
"PCI IACK", "PCI special cycle",
"PCI I/O read", "PCI I/O write", "?",
"PCI PTP write", "PCI memory read",
"PCI memory write", "PCI CSR write",
"?", "?", "?", "?", "?", "?", "?"));
}
}