605f564f52
- Add PCI Extended Configuration Space support into x86. - Check register offset of pci_conf_read() in MD part. It returns (pcireg_t)-1 if it isn't accessible. - Decode Extended Capability in PCI Extended Configuration Space. Currently the following extended capabilities are decoded: - Advanced Error Reporting - Virtual Channel - Device Serial Number - Power Budgeting - Root Complex Link Declaration - Root Complex Event Collector Association - Access Control Services - Alternative Routing-ID Interpretation - Address Translation Services - Single Root IO Virtualization - Page Request - TPH Requester - Latency Tolerance Reporting - Secondary PCI Express - Process Address Space ID - LN Requester - L1 PM Substates The following extended capabilities are not decoded yet: - Root Complex Internal Link Control - Multi-Function Virtual Channel - RCRB Header - Vendor Unique - Configuration Access Correction - Multiple Root IO Virtualization - Multicast - Resizable BAR - Dynamic Power Allocation - Protocol Multiplexing - Downstream Port Containment - Precision Time Management - M-PCIe - Function Reading Status Queueing - Readiness Time Reporting - Designated Vendor-Specific
249 lines
6.4 KiB
C
249 lines
6.4 KiB
C
/* $NetBSD: dwlpx_pci.c,v 1.19 2015/10/02 05:22:49 msaitoh Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 1997 by Matthew Jacob
|
|
* NASA AMES Research Center.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice immediately at the beginning of the file, without modification,
|
|
* this list of conditions, and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
|
|
|
__KERNEL_RCSID(0, "$NetBSD: dwlpx_pci.c,v 1.19 2015/10/02 05:22:49 msaitoh 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/tlsb/tlsbreg.h>
|
|
#include <alpha/pci/dwlpxreg.h>
|
|
#include <alpha/pci/dwlpxvar.h>
|
|
|
|
#define KV(_addr) ((void *)ALPHA_PHYS_TO_K0SEG((_addr)))
|
|
|
|
void dwlpx_attach_hook(device_t, device_t,
|
|
struct pcibus_attach_args *);
|
|
int dwlpx_bus_maxdevs(void *, int);
|
|
pcitag_t dwlpx_make_tag(void *, int, int, int);
|
|
void dwlpx_decompose_tag(void *, pcitag_t, int *, int *,
|
|
int *);
|
|
pcireg_t dwlpx_conf_read(void *, pcitag_t, int);
|
|
void dwlpx_conf_write(void *, pcitag_t, int, pcireg_t);
|
|
|
|
void
|
|
dwlpx_pci_init(pci_chipset_tag_t pc, void *v)
|
|
{
|
|
pc->pc_conf_v = v;
|
|
pc->pc_attach_hook = dwlpx_attach_hook;
|
|
pc->pc_bus_maxdevs = dwlpx_bus_maxdevs;
|
|
pc->pc_make_tag = dwlpx_make_tag;
|
|
pc->pc_decompose_tag = dwlpx_decompose_tag;
|
|
pc->pc_conf_read = dwlpx_conf_read;
|
|
pc->pc_conf_write = dwlpx_conf_write;
|
|
}
|
|
|
|
void
|
|
dwlpx_attach_hook(device_t parent, device_t self, struct pcibus_attach_args *pba)
|
|
{
|
|
#if 0
|
|
struct dwlpx_config *ccp = pba->pba_pc->pc_conf_v;
|
|
printf("dwlpx_attach_hook for %s\n", device_xname(ccp->cc_sc->dwlpx_dev));
|
|
#endif
|
|
}
|
|
|
|
int
|
|
dwlpx_bus_maxdevs(void *cpv, int busno)
|
|
{
|
|
return DWLPX_MAXDEV;
|
|
}
|
|
|
|
pcitag_t
|
|
dwlpx_make_tag(void *cpv, int b, int d, int f)
|
|
{
|
|
pcitag_t tag;
|
|
int hpcdev, pci_idsel;
|
|
|
|
pci_idsel = (1 << ((d & 0x3) + 2));
|
|
hpcdev = d >> 2;
|
|
tag = (b << 24) | (hpcdev << 22) | (pci_idsel << 16) | (f << 13);
|
|
return (tag);
|
|
}
|
|
|
|
void
|
|
dwlpx_decompose_tag(void *cpv, pcitag_t tag, int *bp, int *dp, int *fp)
|
|
{
|
|
|
|
if (bp != NULL)
|
|
*bp = (tag >> 24) & 0xff;
|
|
if (dp != NULL) {
|
|
int j, i = (tag >> 18) & 0xf;
|
|
j = -1;
|
|
while (i != 0) {
|
|
j++;
|
|
i >>= 1;
|
|
}
|
|
j += (((tag >> 22) & 3) << 2);
|
|
*dp = j;
|
|
}
|
|
if (fp != NULL)
|
|
*fp = (tag >> 13) & 0x7;
|
|
}
|
|
|
|
pcireg_t
|
|
dwlpx_conf_read(void *cpv, pcitag_t tag, int offset)
|
|
{
|
|
struct dwlpx_config *ccp = cpv;
|
|
struct dwlpx_softc *sc;
|
|
pcireg_t *dp, data = (pcireg_t) -1;
|
|
unsigned long paddr;
|
|
int secondary, i, s = 0;
|
|
uint32_t rvp;
|
|
|
|
if ((unsigned int)offset >= PCI_CONF_SIZE)
|
|
return (data);
|
|
|
|
if (ccp == NULL) {
|
|
panic("NULL ccp in dwlpx_conf_read");
|
|
}
|
|
sc = ccp->cc_sc;
|
|
secondary = tag >> 24;
|
|
if (secondary) {
|
|
tag &= 0x1fffff;
|
|
tag |= (secondary << 21);
|
|
|
|
#if 0
|
|
printf("read secondary %d reg %x (tag %x)",
|
|
secondary, offset, tag);
|
|
#endif
|
|
|
|
alpha_pal_draina();
|
|
s = splhigh();
|
|
/*
|
|
* Set up HPCs for type 1 cycles.
|
|
*/
|
|
for (i = 0; i < sc->dwlpx_nhpc; i++) {
|
|
rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) |
|
|
PCIA_CTL_T1CYC;
|
|
alpha_mb();
|
|
REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
|
|
alpha_mb();
|
|
}
|
|
}
|
|
paddr = (unsigned long) tag;
|
|
paddr |= DWLPX_PCI_CONF;
|
|
paddr |= ((unsigned long) ((offset >> 2) << 7));
|
|
paddr |= (((unsigned long) sc->dwlpx_hosenum) << 34);
|
|
paddr |= (((u_long) sc->dwlpx_node - 4) << 36);
|
|
paddr |= (1LL << 39);
|
|
paddr |= (3LL << 3); /* 32 Bit PCI byte enables */
|
|
|
|
dp = (pcireg_t *)KV(paddr);
|
|
if (badaddr(dp, sizeof (*dp)) == 0) {
|
|
data = *dp;
|
|
}
|
|
if (secondary) {
|
|
alpha_pal_draina();
|
|
for (i = 0; i < sc->dwlpx_nhpc; i++) {
|
|
rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) &
|
|
~PCIA_CTL_T1CYC;
|
|
alpha_mb();
|
|
REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
|
|
alpha_mb();
|
|
}
|
|
(void) splx(s);
|
|
#if 0
|
|
printf("=%x\n", data);
|
|
#endif
|
|
}
|
|
return (data);
|
|
}
|
|
|
|
void
|
|
dwlpx_conf_write(void *cpv, pcitag_t tag, int offset, pcireg_t data)
|
|
{
|
|
struct dwlpx_config *ccp = cpv;
|
|
struct dwlpx_softc *sc;
|
|
pcireg_t *dp;
|
|
unsigned long paddr;
|
|
int secondary, i, s = 0;
|
|
uint32_t rvp;
|
|
|
|
if ((unsigned int)offset >= PCI_CONF_SIZE)
|
|
return;
|
|
|
|
if (ccp == NULL) {
|
|
panic("NULL ccp in dwlpx_conf_write");
|
|
}
|
|
sc = ccp->cc_sc;
|
|
secondary = tag >> 24;
|
|
if (secondary) {
|
|
tag &= 0x1fffff;
|
|
tag |= (secondary << 21);
|
|
#if 0
|
|
printf("write secondary %d reg %x (tag %x) with %x\n",
|
|
secondary, offset, tag, data);
|
|
#endif
|
|
|
|
alpha_pal_draina();
|
|
s = splhigh();
|
|
/*
|
|
* Set up HPCs for type 1 cycles.
|
|
*/
|
|
for (i = 0; i < sc->dwlpx_nhpc; i++) {
|
|
rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) |
|
|
PCIA_CTL_T1CYC;
|
|
alpha_mb();
|
|
REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
|
|
alpha_mb();
|
|
}
|
|
}
|
|
paddr = (unsigned long) tag;
|
|
paddr |= DWLPX_PCI_CONF;
|
|
paddr |= ((unsigned long) ((offset >> 2) << 7));
|
|
paddr |= (((unsigned long) sc->dwlpx_hosenum) << 34);
|
|
paddr |= (((u_long) sc->dwlpx_node - 4) << 36);
|
|
paddr |= (1LL << 39);
|
|
paddr |= (3LL << 3); /* 32 bit PCI byte enables */
|
|
|
|
dp = (pcireg_t *)KV(paddr);
|
|
*dp = data;
|
|
alpha_mb();
|
|
if (secondary) {
|
|
alpha_pal_draina();
|
|
for (i = 0; i < sc->dwlpx_nhpc; i++) {
|
|
rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) &
|
|
~PCIA_CTL_T1CYC;
|
|
alpha_mb();
|
|
REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
|
|
alpha_mb();
|
|
}
|
|
(void) splx(s);
|
|
}
|
|
}
|