1997-04-07 09:19:01 +04:00
|
|
|
/* $NetBSD: apecs_pci.c,v 1.11 1997/04/07 05:19:32 cgd Exp $ */
|
1995-06-28 05:24:50 +04:00
|
|
|
|
|
|
|
/*
|
1996-04-12 10:07:05 +04:00
|
|
|
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
1995-06-28 05:24:50 +04: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <vm/vm.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <alpha/pci/apecsreg.h>
|
1995-11-23 05:33:17 +03:00
|
|
|
#include <alpha/pci/apecsvar.h>
|
1995-06-28 05:24:50 +04:00
|
|
|
|
1996-04-12 08:38:33 +04:00
|
|
|
void apecs_attach_hook __P((struct device *, struct device *,
|
|
|
|
struct pcibus_attach_args *));
|
|
|
|
int apecs_bus_maxdevs __P((void *, int));
|
|
|
|
pcitag_t apecs_make_tag __P((void *, int, int, int));
|
|
|
|
void apecs_decompose_tag __P((void *, pcitag_t, int *, int *,
|
|
|
|
int *));
|
|
|
|
pcireg_t apecs_conf_read __P((void *, pcitag_t, int));
|
|
|
|
void apecs_conf_write __P((void *, pcitag_t, int, pcireg_t));
|
|
|
|
|
|
|
|
void
|
|
|
|
apecs_pci_init(pc, v)
|
|
|
|
pci_chipset_tag_t pc;
|
|
|
|
void *v;
|
|
|
|
{
|
|
|
|
|
|
|
|
pc->pc_conf_v = v;
|
|
|
|
pc->pc_attach_hook = apecs_attach_hook;
|
|
|
|
pc->pc_bus_maxdevs = apecs_bus_maxdevs;
|
|
|
|
pc->pc_make_tag = apecs_make_tag;
|
|
|
|
pc->pc_decompose_tag = apecs_decompose_tag;
|
|
|
|
pc->pc_conf_read = apecs_conf_read;
|
|
|
|
pc->pc_conf_write = apecs_conf_write;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
apecs_attach_hook(parent, self, pba)
|
|
|
|
struct device *parent, *self;
|
|
|
|
struct pcibus_attach_args *pba;
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
apecs_bus_maxdevs(cpv, busno)
|
|
|
|
void *cpv;
|
|
|
|
int busno;
|
|
|
|
{
|
|
|
|
|
|
|
|
return 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
pcitag_t
|
|
|
|
apecs_make_tag(cpv, b, d, f)
|
|
|
|
void *cpv;
|
|
|
|
int b, d, f;
|
|
|
|
{
|
|
|
|
|
|
|
|
return (b << 16) | (d << 11) | (f << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
apecs_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
|
|
|
apecs_conf_read(cpv, tag, offset)
|
|
|
|
void *cpv;
|
1996-04-12 08:38:33 +04:00
|
|
|
pcitag_t tag;
|
|
|
|
int offset;
|
1995-06-28 05:24:50 +04:00
|
|
|
{
|
1995-11-23 05:33:17 +03:00
|
|
|
struct apecs_config *acp = cpv;
|
1996-04-12 08:38:33 +04:00
|
|
|
pcireg_t *datap, data;
|
1995-11-23 05:33:17 +03:00
|
|
|
int s, secondary, ba;
|
|
|
|
int32_t old_haxr2; /* XXX */
|
|
|
|
|
1996-11-14 00:13:04 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
s = 0; /* XXX gcc -Wuninitialized */
|
|
|
|
old_haxr2 = 0; /* XXX gcc -Wuninitialized */
|
|
|
|
#endif
|
|
|
|
|
1996-04-12 08:38:33 +04:00
|
|
|
/* secondary if bus # != 0 */
|
|
|
|
pci_decompose_tag(&acp->ac_pc, tag, &secondary, 0, 0);
|
1995-11-23 05:33:17 +03:00
|
|
|
if (secondary) {
|
|
|
|
s = splhigh();
|
|
|
|
old_haxr2 = REGVAL(EPIC_HAXR2);
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
REGVAL(EPIC_HAXR2) = old_haxr2 | 0x1;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
}
|
1995-06-28 05:24:50 +04:00
|
|
|
|
1996-07-09 04:53:48 +04:00
|
|
|
datap = (pcireg_t *)ALPHA_PHYS_TO_K0SEG(APECS_PCI_CONF |
|
1995-11-23 05:33:17 +03:00
|
|
|
tag << 5UL | /* XXX */
|
|
|
|
(offset & ~0x03) << 5 | /* XXX */
|
|
|
|
0 << 5 | /* XXX */
|
|
|
|
0x3 << 3); /* XXX */
|
1996-04-12 08:38:33 +04:00
|
|
|
data = (pcireg_t)-1;
|
1995-11-23 05:33:17 +03:00
|
|
|
if (!(ba = badaddr(datap, sizeof *datap)))
|
|
|
|
data = *datap;
|
|
|
|
|
|
|
|
if (secondary) {
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
REGVAL(EPIC_HAXR2) = old_haxr2;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
splx(s);
|
1995-06-28 05:24:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
1996-10-13 06:59:55 +04:00
|
|
|
printf("apecs_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)" : "");
|
1995-06-28 05:24:50 +04:00
|
|
|
#endif
|
1995-11-23 05:33:17 +03:00
|
|
|
|
1995-06-28 05:24:50 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1995-11-23 05:33:17 +03:00
|
|
|
apecs_conf_write(cpv, tag, offset, data)
|
|
|
|
void *cpv;
|
1996-04-12 08:38:33 +04:00
|
|
|
pcitag_t tag;
|
|
|
|
int offset;
|
|
|
|
pcireg_t data;
|
1995-06-28 05:24:50 +04:00
|
|
|
{
|
1995-11-23 05:33:17 +03:00
|
|
|
struct apecs_config *acp = cpv;
|
1996-04-12 08:38:33 +04:00
|
|
|
pcireg_t *datap;
|
1995-11-23 05:33:17 +03:00
|
|
|
int s, secondary;
|
|
|
|
int32_t old_haxr2; /* XXX */
|
|
|
|
|
1996-11-14 00:13:04 +03:00
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
s = 0; /* XXX gcc -Wuninitialized */
|
|
|
|
old_haxr2 = 0; /* XXX gcc -Wuninitialized */
|
|
|
|
#endif
|
|
|
|
|
1996-04-12 08:38:33 +04:00
|
|
|
/* secondary if bus # != 0 */
|
|
|
|
pci_decompose_tag(&acp->ac_pc, tag, &secondary, 0, 0);
|
1995-11-23 05:33:17 +03:00
|
|
|
if (secondary) {
|
|
|
|
s = splhigh();
|
|
|
|
old_haxr2 = REGVAL(EPIC_HAXR2);
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
REGVAL(EPIC_HAXR2) = old_haxr2 | 0x1;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
}
|
1995-06-28 05:24:50 +04:00
|
|
|
|
1996-07-09 04:53:48 +04:00
|
|
|
datap = (pcireg_t *)ALPHA_PHYS_TO_K0SEG(APECS_PCI_CONF |
|
1995-11-23 05:33:17 +03:00
|
|
|
tag << 5UL | /* XXX */
|
|
|
|
(offset & ~0x03) << 5 | /* XXX */
|
|
|
|
0 << 5 | /* XXX */
|
|
|
|
0x3 << 3); /* XXX */
|
|
|
|
*datap = data;
|
|
|
|
|
|
|
|
if (secondary) {
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
REGVAL(EPIC_HAXR2) = old_haxr2;
|
1996-07-09 04:53:48 +04:00
|
|
|
alpha_mb();
|
1995-11-23 05:33:17 +03:00
|
|
|
splx(s);
|
1995-06-28 05:24:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
1996-10-13 06:59:55 +04:00
|
|
|
printf("apecs_conf_write: tag 0x%lx, reg 0x%lx -> 0x%x @ %p\n", tag,
|
1995-06-28 05:24:50 +04:00
|
|
|
reg, data, datap);
|
|
|
|
#endif
|
|
|
|
}
|