2002-05-15 20:57:41 +04:00
|
|
|
/* $NetBSD: cia_pci.c,v 1.26 2002/05/15 16:57:42 thorpej Exp $ */
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
/*
|
1996-04-13 03:37:10 +04:00
|
|
|
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
1995-11-23 05:33:17 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Chris G. Demetriou
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
1997-04-08 03:39:37 +04:00
|
|
|
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
|
|
|
|
2002-05-15 20:57:41 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: cia_pci.c,v 1.26 2002/05/15 16:57:42 thorpej Exp $");
|
1997-04-07 09:46:48 +04:00
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/device.h>
|
2000-06-29 12:58:45 +04:00
|
|
|
|
|
|
|
#include <uvm/uvm_extern.h>
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <alpha/pci/ciareg.h>
|
|
|
|
#include <alpha/pci/ciavar.h>
|
|
|
|
|
1996-04-13 03:37:10 +04:00
|
|
|
void cia_attach_hook __P((struct device *, struct device *,
|
|
|
|
struct pcibus_attach_args *));
|
|
|
|
int cia_bus_maxdevs __P((void *, int));
|
|
|
|
pcitag_t cia_make_tag __P((void *, int, int, int));
|
|
|
|
void cia_decompose_tag __P((void *, pcitag_t, int *, int *,
|
|
|
|
int *));
|
|
|
|
pcireg_t cia_conf_read __P((void *, pcitag_t, int));
|
|
|
|
void cia_conf_write __P((void *, pcitag_t, int, pcireg_t));
|
|
|
|
|
|
|
|
void
|
|
|
|
cia_pci_init(pc, v)
|
|
|
|
pci_chipset_tag_t pc;
|
|
|
|
void *v;
|
|
|
|
{
|
|
|
|
|
|
|
|
pc->pc_conf_v = v;
|
|
|
|
pc->pc_attach_hook = cia_attach_hook;
|
|
|
|
pc->pc_bus_maxdevs = cia_bus_maxdevs;
|
|
|
|
pc->pc_make_tag = cia_make_tag;
|
|
|
|
pc->pc_decompose_tag = cia_decompose_tag;
|
|
|
|
pc->pc_conf_read = cia_conf_read;
|
|
|
|
pc->pc_conf_write = cia_conf_write;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cia_attach_hook(parent, self, pba)
|
|
|
|
struct device *parent, *self;
|
|
|
|
struct pcibus_attach_args *pba;
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
cia_bus_maxdevs(cpv, busno)
|
|
|
|
void *cpv;
|
|
|
|
int busno;
|
|
|
|
{
|
|
|
|
|
|
|
|
return 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
pcitag_t
|
|
|
|
cia_make_tag(cpv, b, d, f)
|
|
|
|
void *cpv;
|
|
|
|
int b, d, f;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (b << 16) | (d << 11) | (f << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cia_decompose_tag(cpv, tag, bp, dp, fp)
|
|
|
|
void *cpv;
|
|
|
|
pcitag_t tag;
|
|
|
|
int *bp, *dp, *fp;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (bp != NULL)
|
|
|
|
*bp = (tag >> 16) & 0xff;
|
|
|
|
if (dp != NULL)
|
|
|
|
*dp = (tag >> 11) & 0x1f;
|
|
|
|
if (fp != NULL)
|
|
|
|
*fp = (tag >> 8) & 0x7;
|
|
|
|
}
|
|
|
|
|
|
|
|
pcireg_t
|
1995-11-23 05:33:17 +03:00
|
|
|
cia_conf_read(cpv, tag, offset)
|
|
|
|
void *cpv;
|
1996-04-13 03:37:10 +04:00
|
|
|
pcitag_t tag;
|
|
|
|
int offset;
|
1995-11-23 05:33:17 +03:00
|
|
|
{
|
1996-04-13 03:37:10 +04:00
|
|
|
struct cia_config *ccp = cpv;
|
|
|
|
pcireg_t *datap, data;
|
1995-11-23 05:33:17 +03:00
|
|
|
int s, secondary, ba;
|
1998-05-12 22:40:44 +04:00
|
|
|
u_int32_t old_cfg, errbits;
|
1995-11-23 05:33:17 +03:00
|
|
|
|
1997-10-14 10:22:02 +04:00
|
|
|
#ifdef __GNUC__
|
1996-11-14 00:13:04 +03:00
|
|
|
s = 0; /* XXX gcc -Wuninitialized */
|
1998-05-12 22:40:44 +04:00
|
|
|
old_cfg = 0; /* XXX gcc -Wuninitialized */
|
1996-11-14 00:13:04 +03:00
|
|
|
#endif
|
|
|
|
|
1996-11-23 09:46:50 +03:00
|
|
|
/*
|
1997-09-13 09:58:07 +04:00
|
|
|
* Some (apparently-common) revisions of EB164 and AlphaStation
|
1997-09-16 03:31:15 +04:00
|
|
|
* firmware do the Wrong thing with PCI master and target aborts,
|
|
|
|
* which are caused by accesing the configuration space of devices
|
|
|
|
* that don't exist (for example).
|
1996-11-23 09:46:50 +03:00
|
|
|
*
|
1997-09-13 09:58:07 +04:00
|
|
|
* To work around this, we clear the CIA error register's PCI
|
1997-09-16 03:31:15 +04:00
|
|
|
* master and target abort bits before touching PCI configuration
|
|
|
|
* space and check it afterwards. If it indicates a master or target
|
|
|
|
* abort, the device wasn't there so we return 0xffffffff.
|
1996-11-23 09:46:50 +03:00
|
|
|
*/
|
1997-09-16 03:31:15 +04:00
|
|
|
REGVAL(CIA_CSR_CIA_ERR) = CIA_ERR_RCVD_MAS_ABT|CIA_ERR_RCVD_TAR_ABT;
|
1997-09-13 09:58:07 +04:00
|
|
|
alpha_mb();
|
|
|
|
alpha_pal_draina();
|
1996-11-23 09:46:50 +03:00
|
|
|
|
1996-04-13 03:37:10 +04:00
|
|
|
/* secondary if bus # != 0 */
|
2002-05-15 20:57:41 +04:00
|
|
|
pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0);
|
1995-11-23 05:33:17 +03:00
|
|
|
if (secondary) {
|
|
|
|
s = splhigh();
|
1998-05-12 22:40:44 +04:00
|
|
|
old_cfg = REGVAL(CIA_CSR_CFG);
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1998-05-12 22:40:44 +04:00
|
|
|
REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
}
|
|
|
|
|
1998-06-05 01:34:45 +04:00
|
|
|
/*
|
|
|
|
* We just inline the BWX support, since this is the only
|
|
|
|
* difference between BWX and swiz for config space.
|
|
|
|
*/
|
1998-07-29 05:28:44 +04:00
|
|
|
if (ccp->cc_flags & CCF_PCI_USE_BWX) {
|
1998-06-05 01:34:45 +04:00
|
|
|
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 | /* XXX */
|
|
|
|
(offset & ~0x03) << 5 | /* XXX */
|
|
|
|
0 << 5 | /* XXX */
|
|
|
|
0x3 << 3); /* XXX */
|
|
|
|
}
|
1996-04-13 03:37:10 +04:00
|
|
|
data = (pcireg_t)-1;
|
1999-06-29 21:10:57 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
if (!(ba = badaddr(datap, sizeof *datap)))
|
|
|
|
data = *datap;
|
1999-06-29 21:10:57 +04:00
|
|
|
alpha_mb();
|
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
if (secondary) {
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1998-05-12 22:40:44 +04:00
|
|
|
REGVAL(CIA_CSR_CFG) = old_cfg;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
1997-09-13 09:58:07 +04:00
|
|
|
alpha_pal_draina();
|
1997-09-16 03:01:29 +04:00
|
|
|
alpha_mb();
|
|
|
|
errbits = REGVAL(CIA_CSR_CIA_ERR);
|
1997-09-16 03:31:15 +04:00
|
|
|
if (errbits & (CIA_ERR_RCVD_MAS_ABT|CIA_ERR_RCVD_TAR_ABT)) {
|
1997-09-13 09:58:07 +04:00
|
|
|
ba = 1;
|
|
|
|
data = 0xffffffff;
|
1996-11-23 09:46:50 +03:00
|
|
|
}
|
|
|
|
|
1997-09-16 03:01:29 +04:00
|
|
|
if (errbits) {
|
|
|
|
REGVAL(CIA_CSR_CIA_ERR) = errbits;
|
|
|
|
alpha_mb();
|
|
|
|
alpha_pal_draina();
|
|
|
|
}
|
|
|
|
|
1995-11-23 05:33:17 +03:00
|
|
|
#if 0
|
1996-10-13 06:59:55 +04:00
|
|
|
printf("cia_conf_read: tag 0x%lx, reg 0x%lx -> %x @ %p%s\n", tag, reg,
|
1995-11-23 05:33:17 +03:00
|
|
|
data, datap, ba ? " (badaddr)" : "");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cia_conf_write(cpv, tag, offset, data)
|
|
|
|
void *cpv;
|
1996-04-13 03:37:10 +04:00
|
|
|
pcitag_t tag;
|
|
|
|
int offset;
|
|
|
|
pcireg_t data;
|
1995-11-23 05:33:17 +03:00
|
|
|
{
|
1996-04-13 03:37:10 +04:00
|
|
|
struct cia_config *ccp = cpv;
|
|
|
|
pcireg_t *datap;
|
1995-11-23 05:33:17 +03:00
|
|
|
int s, secondary;
|
1998-05-12 22:44:32 +04:00
|
|
|
u_int32_t old_cfg;
|
1995-11-23 05:33:17 +03:00
|
|
|
|
1997-10-14 10:22:02 +04:00
|
|
|
#ifdef __GNUC__
|
1996-11-14 00:13:04 +03:00
|
|
|
s = 0; /* XXX gcc -Wuninitialized */
|
1998-05-12 22:44:32 +04:00
|
|
|
old_cfg = 0; /* XXX gcc -Wuninitialized */
|
1996-11-14 00:13:04 +03:00
|
|
|
#endif
|
|
|
|
|
1996-04-13 03:37:10 +04:00
|
|
|
/* secondary if bus # != 0 */
|
2002-05-15 20:57:41 +04:00
|
|
|
pci_decompose_tag(&ccp->cc_pc, tag, &secondary, 0, 0);
|
1995-11-23 05:33:17 +03:00
|
|
|
if (secondary) {
|
|
|
|
s = splhigh();
|
1998-05-12 22:44:32 +04:00
|
|
|
old_cfg = REGVAL(CIA_CSR_CFG);
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1998-05-12 22:44:32 +04:00
|
|
|
REGVAL(CIA_CSR_CFG) = old_cfg | 0x1;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
}
|
|
|
|
|
1998-06-05 01:34:45 +04:00
|
|
|
/*
|
|
|
|
* We just inline the BWX support, since this is the only
|
|
|
|
* difference between BWX and swiz for config space.
|
|
|
|
*/
|
1998-07-29 05:28:44 +04:00
|
|
|
if (ccp->cc_flags & CCF_PCI_USE_BWX) {
|
1998-06-05 01:34:45 +04:00
|
|
|
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 | /* XXX */
|
|
|
|
(offset & ~0x03) << 5 | /* XXX */
|
|
|
|
0 << 5 | /* XXX */
|
|
|
|
0x3 << 3); /* XXX */
|
|
|
|
}
|
1999-06-29 21:10:57 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
*datap = data;
|
1999-06-29 21:10:57 +04:00
|
|
|
alpha_mb();
|
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
|
|
|
|
if (secondary) {
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1998-05-12 22:45:04 +04:00
|
|
|
REGVAL(CIA_CSR_CFG) = old_cfg;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
1996-10-13 06:59:55 +04:00
|
|
|
printf("cia_conf_write: tag 0x%lx, reg 0x%lx -> 0x%x @ %p\n", tag,
|
1995-11-23 05:33:17 +03:00
|
|
|
reg, data, datap);
|
|
|
|
#endif
|
|
|
|
}
|