freebsd-dev/sys/dev/bhnd/bhndb/bhndb_pci_hwdata.c
Landon J. Fuller 80a7c0f53b bhndb(4): Enable addrext support on DMA64 devices, and fix an incorrect DMA
DMA boundary constraint applied in bhndb_dma_tag_create().

Sponsored by:	The FreeBSD Foundation
2017-12-16 04:35:37 +00:00

680 lines
18 KiB
C

/*-
* Copyright (c) 2015 Landon Fuller <landon@landonf.org>
* 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, this list of conditions and the following disclaimer,
* without modification.
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
* similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
* redistribution must be conditioned upon including a substantially
* similar Disclaimer requirement for further binary redistribution.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
/*
* Resource specifications and register maps for Broadcom PCI/PCIe cores
* configured as PCI-BHND bridges.
*/
#include <sys/param.h>
#include <sys/bus.h>
#include <machine/bus.h>
#include <sys/rman.h>
#include <machine/resource.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/bhnd/cores/pci/bhnd_pcireg.h>
#include <dev/bhnd/cores/pcie2/bhnd_pcie2_reg.h>
#include "bhndbvar.h"
#include "bhndb_pcireg.h"
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v0;
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v1_pci;
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v1_pcie;
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v2;
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v3;
/**
* Define a bhndb_hw match entry.
*
* @param _name The entry name.
* @param _vers The configuration version associated with this entry.
*/
#define BHNDB_HW_MATCH(_name, _vers, ...) { \
.name = _name, \
.hw_reqs = _BHNDB_HW_REQ_ARRAY(__VA_ARGS__), \
.num_hw_reqs = (sizeof(_BHNDB_HW_REQ_ARRAY(__VA_ARGS__)) / \
sizeof(_BHNDB_HW_REQ_ARRAY(__VA_ARGS__)[0])), \
.cfg = &bhndb_pci_hwcfg_ ## _vers \
}
#define _BHNDB_HW_REQ_ARRAY(...) (struct bhnd_core_match[]) { __VA_ARGS__ }
/**
* Generic PCI-SIBA bridge configuration usable with all known siba(4)-based
* PCI devices; this configuration is adequate for enumerating a bridged
* siba(4) bus to determine the full hardware configuration.
*
* @par Compatibility
* - Compatible with PCI_V0, PCI_V1, PCI_V2, and PCI_V3 devices.
* - Compatible with siba(4) bus enumeration.
* - Compatible with bcma(4) bus enumeration if the ChipCommon core is mapped
* at the default enumeration address (0x18000000).
*/
const struct bhndb_hwcfg bhndb_pci_siba_generic_hwcfg = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V1_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V1_BAR0_WIN0_CONTROL
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
/* DMA unsupported under generic configuration */
.dma_translations = NULL,
};
/**
* Generic PCI-BCMA bridge configuration usable with all known bcma(4)-based
* PCI devices; this configuration is adequate for enumerating a bridged
* bcma(4) bus to determine the full hardware configuration.
*
* @par Compatibility
* - Compatible with PCI_V1, PCI_V2, and PCI_V3 devices.
* - Compatible with both siba(4) and bcma(4) bus enumeration.
*/
const struct bhndb_hwcfg bhndb_pci_bcma_generic_hwcfg = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V1_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V1_BAR0_WIN0_CONTROL,
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x3000: chipc core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V1_BAR0_CCREGS_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_CCREGS_SIZE,
.d.core = {
.class = BHND_DEVCLASS_CC,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
/* DMA unsupported under generic configuration */
.dma_translations = NULL,
};
/**
* Hardware configuration tables for Broadcom HND PCI NICs.
*/
const struct bhndb_hw bhndb_pci_generic_hw_table[] = {
/* PCI/V0 WLAN */
BHNDB_HW_MATCH("PCI/v0 WLAN", v0,
/* PCI Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_PCI),
BHND_MATCH_CORE_REV(
HWREV_LTE (BHNDB_PCI_V0_MAX_PCI_HWREV)),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_PCI),
BHND_MATCH_CORE_UNIT (0)
},
/* 802.11 Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_WLAN),
BHND_MATCH_CORE_UNIT (0)
}
),
/* PCI/V1 WLAN */
BHNDB_HW_MATCH("PCI/v1 WLAN", v1_pci,
/* PCI Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_PCI),
BHND_MATCH_CORE_REV(
HWREV_GTE (BHNDB_PCI_V1_MIN_PCI_HWREV)),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_PCI),
BHND_MATCH_CORE_UNIT (0)
},
/* 802.11 Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_WLAN),
BHND_MATCH_CORE_UNIT (0)
}
),
/* PCIE/V1 WLAN */
BHNDB_HW_MATCH("PCIe/v1 WLAN", v1_pcie,
/* PCIe Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_PCIE),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_PCIE),
BHND_MATCH_CORE_UNIT (0)
},
/* ChipCommon (revision <= 31) */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_CC),
BHND_MATCH_CORE_REV(
HWREV_LTE (BHNDB_PCI_V1_MAX_CHIPC_HWREV)),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_CC),
BHND_MATCH_CORE_UNIT (0)
},
/* 802.11 Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_WLAN),
BHND_MATCH_CORE_UNIT (0)
}
),
/* PCIE/V2 WLAN */
BHNDB_HW_MATCH("PCIe/v2 WLAN", v2,
/* PCIe Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_PCIE),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_PCIE),
BHND_MATCH_CORE_UNIT (0)
},
/* ChipCommon (revision >= 32) */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_CC),
BHND_MATCH_CORE_REV(
HWREV_GTE (BHNDB_PCI_V2_MIN_CHIPC_HWREV)),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_CC),
BHND_MATCH_CORE_UNIT (0)
},
/* 802.11 Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_WLAN),
BHND_MATCH_CORE_UNIT (0)
}
),
/* PCIE/V3 WLAN */
BHNDB_HW_MATCH("PCIe-Gen2/v3 WLAN", v3,
/* PCIe Gen2 Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_ID (BHND_COREID_PCIE2),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_PCIE),
BHND_MATCH_CORE_UNIT (0)
},
/* 802.11 Core */
{
BHND_MATCH_CORE_VENDOR (BHND_MFGID_BCM),
BHND_MATCH_CORE_CLASS (BHND_DEVCLASS_WLAN),
BHND_MATCH_CORE_UNIT (0)
}
),
{ NULL, NULL, 0, NULL }
};
/**
* PCI_V0 hardware configuration.
*
* Applies to:
* - PCI (cid=0x804, revision <= 12)
*/
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v0 = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V0_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V0_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V0_BAR0_WIN0_CONTROL
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x1000: sprom shadow */
{
.win_type = BHNDB_REGWIN_T_SPROM,
.win_offset = BHNDB_PCI_V0_BAR0_SPROM_OFFSET,
.win_size = BHNDB_PCI_V0_BAR0_SPROM_SIZE,
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/*
* bar0+0x1800: pci core registers.
*
* Does not include the SSB CFG registers found at the end of
* the 4K core register block; these are mapped non-contigiously
* by the next entry.
*/
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V0_BAR0_PCIREG_OFFSET,
.win_size = BHNDB_PCI_V0_BAR0_PCIREG_SIZE,
.d.core = {
.class = BHND_DEVCLASS_PCI,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE,
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x1E00: pci core (SSB CFG registers) */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V0_BAR0_PCISB_OFFSET ,
.win_size = BHNDB_PCI_V0_BAR0_PCISB_SIZE,
.d.core = {
.class = BHND_DEVCLASS_PCI,
.unit = 0,
.port = 0,
.region = 0,
.offset = BHNDB_PCI_V0_BAR0_PCISB_COREOFF,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
.dma_translations = (const struct bhnd_dma_translation[]) {
{
.base_addr = BHND_PCI_DMA32_TRANSLATION,
.addr_mask = ~BHND_PCI_DMA32_MASK,
.addrext_mask = BHND_PCI_DMA32_MASK
},
BHND_DMA_TRANSLATION_TABLE_END
}
};
/**
* PCI_V1 (PCI-only) hardware configuration (PCI version)
*
* Applies to:
* - PCI (cid=0x804, revision >= 13)
*/
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v1_pci = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V1_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V1_BAR0_WIN0_CONTROL
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x1000: sprom shadow */
{
.win_type = BHNDB_REGWIN_T_SPROM,
.win_offset = BHNDB_PCI_V1_BAR0_SPROM_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_SPROM_SIZE,
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x2000: pci core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V1_BAR0_PCIREG_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_PCIREG_SIZE,
.d.core = {
.class = BHND_DEVCLASS_PCI,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x3000: chipc core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V1_BAR0_CCREGS_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_CCREGS_SIZE,
.d.core = {
.class = BHND_DEVCLASS_CC,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
.dma_translations = (const struct bhnd_dma_translation[]) {
{
.base_addr = BHND_PCI_DMA32_TRANSLATION,
.addr_mask = ~BHND_PCI_DMA32_MASK,
.addrext_mask = BHND_PCI_DMA32_MASK
},
BHND_DMA_TRANSLATION_TABLE_END
}
};
/**
* PCI_V1 hardware configuration (PCIE version).
*
* Applies to:
* - PCIE (cid=0x820) with ChipCommon (revision <= 31)
*/
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v1_pcie = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V1_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V1_BAR0_WIN0_CONTROL
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x1000: sprom shadow */
{
.win_type = BHNDB_REGWIN_T_SPROM,
.win_offset = BHNDB_PCI_V1_BAR0_SPROM_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_SPROM_SIZE,
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x2000: pci core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V1_BAR0_PCIREG_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_PCIREG_SIZE,
.d.core = {
.class = BHND_DEVCLASS_PCIE,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x3000: chipc core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V1_BAR0_CCREGS_OFFSET,
.win_size = BHNDB_PCI_V1_BAR0_CCREGS_SIZE,
.d.core = {
.class = BHND_DEVCLASS_CC,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
.dma_translations = (const struct bhnd_dma_translation[]) {
{
.base_addr = BHND_PCIE_DMA32_TRANSLATION,
.addr_mask = ~BHND_PCIE_DMA32_MASK,
.addrext_mask = BHND_PCIE_DMA32_MASK
},
{
.base_addr = BHND_PCIE_DMA64_TRANSLATION,
.addr_mask = ~BHND_PCIE_DMA64_MASK,
.addrext_mask = BHND_PCIE_DMA64_MASK
},
BHND_DMA_TRANSLATION_TABLE_END
}
};
/**
* PCI_V2 hardware configuration.
*
* Applies to:
* - PCIE (cid=0x820) with ChipCommon (revision >= 32)
*/
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v2 = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V2_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V2_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V2_BAR0_WIN0_CONTROL,
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x1000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V2_BAR0_WIN1_OFFSET,
.win_size = BHNDB_PCI_V2_BAR0_WIN1_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V2_BAR0_WIN1_CONTROL,
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x2000: pcie core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V2_BAR0_PCIREG_OFFSET,
.win_size = BHNDB_PCI_V2_BAR0_PCIREG_SIZE,
.d.core = {
.class = BHND_DEVCLASS_PCIE,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x3000: chipc core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V2_BAR0_CCREGS_OFFSET,
.win_size = BHNDB_PCI_V2_BAR0_CCREGS_SIZE,
.d.core = {
.class = BHND_DEVCLASS_CC,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
.dma_translations = (const struct bhnd_dma_translation[]) {
{
.base_addr = BHND_PCIE_DMA32_TRANSLATION,
.addr_mask = ~BHND_PCIE_DMA32_MASK,
.addrext_mask = BHND_PCIE_DMA32_MASK
},
{
.base_addr = BHND_PCIE_DMA64_TRANSLATION,
.addr_mask = ~BHND_PCIE_DMA64_MASK,
.addrext_mask = BHND_PCIE_DMA64_MASK
},
BHND_DMA_TRANSLATION_TABLE_END
}
};
/**
* PCI_V3 hardware configuration.
*
* Applies to:
* - PCIE2 (cid=0x83c)
*/
static const struct bhndb_hwcfg bhndb_pci_hwcfg_v3 = {
.resource_specs = (const struct resource_spec[]) {
{ SYS_RES_MEMORY, PCIR_BAR(0), RF_ACTIVE },
{ -1, 0, 0 }
},
.register_windows = (const struct bhndb_regwin[]) {
/* bar0+0x0000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V3_BAR0_WIN0_OFFSET,
.win_size = BHNDB_PCI_V3_BAR0_WIN0_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V3_BAR0_WIN0_CONTROL,
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x1000: configurable backplane window */
{
.win_type = BHNDB_REGWIN_T_DYN,
.win_offset = BHNDB_PCI_V3_BAR0_WIN1_OFFSET,
.win_size = BHNDB_PCI_V3_BAR0_WIN1_SIZE,
.d.dyn = {
.cfg_offset = BHNDB_PCI_V3_BAR0_WIN1_CONTROL,
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x2000: pcie core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V3_BAR0_PCIREG_OFFSET,
.win_size = BHNDB_PCI_V3_BAR0_PCIREG_SIZE,
.d.core = {
.class = BHND_DEVCLASS_PCIE,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
/* bar0+0x3000: chipc core registers */
{
.win_type = BHNDB_REGWIN_T_CORE,
.win_offset = BHNDB_PCI_V3_BAR0_CCREGS_OFFSET,
.win_size = BHNDB_PCI_V3_BAR0_CCREGS_SIZE,
.d.core = {
.class = BHND_DEVCLASS_CC,
.unit = 0,
.port = 0,
.region = 0,
.port_type = BHND_PORT_DEVICE
},
.res = { SYS_RES_MEMORY, PCIR_BAR(0) }
},
BHNDB_REGWIN_TABLE_END
},
.dma_translations = (const struct bhnd_dma_translation[]) {
{
.base_addr = BHND_PCIE2_DMA64_TRANSLATION,
.addr_mask = ~BHND_PCIE2_DMA64_MASK,
.addrext_mask = BHND_PCIE_DMA64_MASK
},
BHND_DMA_TRANSLATION_TABLE_END
}
};