Commit 06e81e3e authored by Mike Marciniszyn's avatar Mike Marciniszyn Committed by Jason Gunthorpe

IB/hfi1: Remove caches of chip CSRs

Remove the sizeable cache of the chip sizing CSRs and replace with CSR
reads as needed.
Reviewed-by: default avatarMichael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: default avatarDennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 15d063d5
This diff is collapsed.
...@@ -656,6 +656,36 @@ static inline void write_uctxt_csr(struct hfi1_devdata *dd, int ctxt, ...@@ -656,6 +656,36 @@ static inline void write_uctxt_csr(struct hfi1_devdata *dd, int ctxt,
write_csr(dd, offset0 + (0x1000 * ctxt), value); write_csr(dd, offset0 + (0x1000 * ctxt), value);
} }
static inline u32 chip_rcv_contexts(struct hfi1_devdata *dd)
{
return read_csr(dd, RCV_CONTEXTS);
}
static inline u32 chip_send_contexts(struct hfi1_devdata *dd)
{
return read_csr(dd, SEND_CONTEXTS);
}
static inline u32 chip_sdma_engines(struct hfi1_devdata *dd)
{
return read_csr(dd, SEND_DMA_ENGINES);
}
static inline u32 chip_pio_mem_size(struct hfi1_devdata *dd)
{
return read_csr(dd, SEND_PIO_MEM_SIZE);
}
static inline u32 chip_sdma_mem_size(struct hfi1_devdata *dd)
{
return read_csr(dd, SEND_DMA_MEM_SIZE);
}
static inline u32 chip_rcv_array_count(struct hfi1_devdata *dd)
{
return read_csr(dd, RCV_ARRAY_CNT);
}
u64 create_pbc(struct hfi1_pportdata *ppd, u64 flags, int srate_mbs, u32 vl, u64 create_pbc(struct hfi1_pportdata *ppd, u64 flags, int srate_mbs, u32 vl,
u32 dw_len); u32 dw_len);
......
...@@ -1059,8 +1059,6 @@ struct hfi1_devdata { ...@@ -1059,8 +1059,6 @@ struct hfi1_devdata {
dma_addr_t sdma_pad_phys; dma_addr_t sdma_pad_phys;
/* for deallocation */ /* for deallocation */
size_t sdma_heads_size; size_t sdma_heads_size;
/* number from the chip */
u32 chip_sdma_engines;
/* num used */ /* num used */
u32 num_sdma; u32 num_sdma;
/* array of engines sized by num_sdma */ /* array of engines sized by num_sdma */
...@@ -1141,19 +1139,6 @@ struct hfi1_devdata { ...@@ -1141,19 +1139,6 @@ struct hfi1_devdata {
/* Base GUID for device (network order) */ /* Base GUID for device (network order) */
u64 base_guid; u64 base_guid;
/* these are the "32 bit" regs */
/* number of receive contexts the chip supports */
u32 chip_rcv_contexts;
/* number of receive array entries */
u32 chip_rcv_array_count;
/* number of PIO send contexts the chip supports */
u32 chip_send_contexts;
/* number of bytes in the PIO memory buffer */
u32 chip_pio_mem_size;
/* number of bytes in the SDMA memory buffer */
u32 chip_sdma_mem_size;
/* both sides of the PCIe link are gen3 capable */ /* both sides of the PCIe link are gen3 capable */
u8 link_gen3_capable; u8 link_gen3_capable;
u8 dc_shutdown; u8 dc_shutdown;
......
...@@ -921,7 +921,7 @@ int hfi1_init(struct hfi1_devdata *dd, int reinit) ...@@ -921,7 +921,7 @@ int hfi1_init(struct hfi1_devdata *dd, int reinit)
} }
/* Allocate enough memory for user event notification. */ /* Allocate enough memory for user event notification. */
len = PAGE_ALIGN(dd->chip_rcv_contexts * HFI1_MAX_SHARED_CTXTS * len = PAGE_ALIGN(chip_rcv_contexts(dd) * HFI1_MAX_SHARED_CTXTS *
sizeof(*dd->events)); sizeof(*dd->events));
dd->events = vmalloc_user(len); dd->events = vmalloc_user(len);
if (!dd->events) if (!dd->events)
......
...@@ -157,6 +157,7 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev) ...@@ -157,6 +157,7 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev)
unsigned long len; unsigned long len;
resource_size_t addr; resource_size_t addr;
int ret = 0; int ret = 0;
u32 rcv_array_count;
addr = pci_resource_start(pdev, 0); addr = pci_resource_start(pdev, 0);
len = pci_resource_len(pdev, 0); len = pci_resource_len(pdev, 0);
...@@ -186,9 +187,9 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev) ...@@ -186,9 +187,9 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev)
goto nomem; goto nomem;
} }
dd->chip_rcv_array_count = readq(dd->kregbase1 + RCV_ARRAY_CNT); rcv_array_count = readq(dd->kregbase1 + RCV_ARRAY_CNT);
dd_dev_info(dd, "RcvArray count: %u\n", dd->chip_rcv_array_count); dd_dev_info(dd, "RcvArray count: %u\n", rcv_array_count);
dd->base2_start = RCV_ARRAY + dd->chip_rcv_array_count * 8; dd->base2_start = RCV_ARRAY + rcv_array_count * 8;
dd->kregbase2 = ioremap_nocache( dd->kregbase2 = ioremap_nocache(
addr + dd->base2_start, addr + dd->base2_start,
...@@ -214,13 +215,13 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev) ...@@ -214,13 +215,13 @@ int hfi1_pcie_ddinit(struct hfi1_devdata *dd, struct pci_dev *pdev)
* to write an entire cacheline worth of entries in one shot. * to write an entire cacheline worth of entries in one shot.
*/ */
dd->rcvarray_wc = ioremap_wc(addr + RCV_ARRAY, dd->rcvarray_wc = ioremap_wc(addr + RCV_ARRAY,
dd->chip_rcv_array_count * 8); rcv_array_count * 8);
if (!dd->rcvarray_wc) { if (!dd->rcvarray_wc) {
dd_dev_err(dd, "WC mapping of receive array failed\n"); dd_dev_err(dd, "WC mapping of receive array failed\n");
goto nomem; goto nomem;
} }
dd_dev_info(dd, "WC RcvArray: %p for %x\n", dd_dev_info(dd, "WC RcvArray: %p for %x\n",
dd->rcvarray_wc, dd->chip_rcv_array_count * 8); dd->rcvarray_wc, rcv_array_count * 8);
dd->flags |= HFI1_PRESENT; /* chip.c CSR routines now work */ dd->flags |= HFI1_PRESENT; /* chip.c CSR routines now work */
return 0; return 0;
......
...@@ -226,7 +226,7 @@ static const char *sc_type_name(int index) ...@@ -226,7 +226,7 @@ static const char *sc_type_name(int index)
int init_sc_pools_and_sizes(struct hfi1_devdata *dd) int init_sc_pools_and_sizes(struct hfi1_devdata *dd)
{ {
struct mem_pool_info mem_pool_info[NUM_SC_POOLS] = { { 0 } }; struct mem_pool_info mem_pool_info[NUM_SC_POOLS] = { { 0 } };
int total_blocks = (dd->chip_pio_mem_size / PIO_BLOCK_SIZE) - 1; int total_blocks = (chip_pio_mem_size(dd) / PIO_BLOCK_SIZE) - 1;
int total_contexts = 0; int total_contexts = 0;
int fixed_blocks; int fixed_blocks;
int pool_blocks; int pool_blocks;
...@@ -343,8 +343,8 @@ int init_sc_pools_and_sizes(struct hfi1_devdata *dd) ...@@ -343,8 +343,8 @@ int init_sc_pools_and_sizes(struct hfi1_devdata *dd)
sc_type_name(i), count); sc_type_name(i), count);
return -EINVAL; return -EINVAL;
} }
if (total_contexts + count > dd->chip_send_contexts) if (total_contexts + count > chip_send_contexts(dd))
count = dd->chip_send_contexts - total_contexts; count = chip_send_contexts(dd) - total_contexts;
total_contexts += count; total_contexts += count;
...@@ -507,7 +507,7 @@ static int sc_hw_alloc(struct hfi1_devdata *dd, int type, u32 *sw_index, ...@@ -507,7 +507,7 @@ static int sc_hw_alloc(struct hfi1_devdata *dd, int type, u32 *sw_index,
if (sci->type == type && sci->allocated == 0) { if (sci->type == type && sci->allocated == 0) {
sci->allocated = 1; sci->allocated = 1;
/* use a 1:1 mapping, but make them non-equal */ /* use a 1:1 mapping, but make them non-equal */
context = dd->chip_send_contexts - index - 1; context = chip_send_contexts(dd) - index - 1;
dd->hw_to_sw[context] = index; dd->hw_to_sw[context] = index;
*sw_index = index; *sw_index = index;
*hw_context = context; *hw_context = context;
......
...@@ -1351,7 +1351,7 @@ int sdma_init(struct hfi1_devdata *dd, u8 port) ...@@ -1351,7 +1351,7 @@ int sdma_init(struct hfi1_devdata *dd, u8 port)
struct hfi1_pportdata *ppd = dd->pport + port; struct hfi1_pportdata *ppd = dd->pport + port;
u32 per_sdma_credits; u32 per_sdma_credits;
uint idle_cnt = sdma_idle_cnt; uint idle_cnt = sdma_idle_cnt;
size_t num_engines = dd->chip_sdma_engines; size_t num_engines = chip_sdma_engines(dd);
int ret = -ENOMEM; int ret = -ENOMEM;
if (!HFI1_CAP_IS_KSET(SDMA)) { if (!HFI1_CAP_IS_KSET(SDMA)) {
...@@ -1360,18 +1360,18 @@ int sdma_init(struct hfi1_devdata *dd, u8 port) ...@@ -1360,18 +1360,18 @@ int sdma_init(struct hfi1_devdata *dd, u8 port)
} }
if (mod_num_sdma && if (mod_num_sdma &&
/* can't exceed chip support */ /* can't exceed chip support */
mod_num_sdma <= dd->chip_sdma_engines && mod_num_sdma <= chip_sdma_engines(dd) &&
/* count must be >= vls */ /* count must be >= vls */
mod_num_sdma >= num_vls) mod_num_sdma >= num_vls)
num_engines = mod_num_sdma; num_engines = mod_num_sdma;
dd_dev_info(dd, "SDMA mod_num_sdma: %u\n", mod_num_sdma); dd_dev_info(dd, "SDMA mod_num_sdma: %u\n", mod_num_sdma);
dd_dev_info(dd, "SDMA chip_sdma_engines: %u\n", dd->chip_sdma_engines); dd_dev_info(dd, "SDMA chip_sdma_engines: %u\n", chip_sdma_engines(dd));
dd_dev_info(dd, "SDMA chip_sdma_mem_size: %u\n", dd_dev_info(dd, "SDMA chip_sdma_mem_size: %u\n",
dd->chip_sdma_mem_size); chip_sdma_mem_size(dd));
per_sdma_credits = per_sdma_credits =
dd->chip_sdma_mem_size / (num_engines * SDMA_BLOCK_SIZE); chip_sdma_mem_size(dd) / (num_engines * SDMA_BLOCK_SIZE);
/* set up freeze waitqueue */ /* set up freeze waitqueue */
init_waitqueue_head(&dd->sdma_unfreeze_wq); init_waitqueue_head(&dd->sdma_unfreeze_wq);
......
...@@ -818,14 +818,14 @@ struct net_device *hfi1_vnic_alloc_rn(struct ib_device *device, ...@@ -818,14 +818,14 @@ struct net_device *hfi1_vnic_alloc_rn(struct ib_device *device,
size = sizeof(struct opa_vnic_rdma_netdev) + sizeof(*vinfo); size = sizeof(struct opa_vnic_rdma_netdev) + sizeof(*vinfo);
netdev = alloc_netdev_mqs(size, name, name_assign_type, setup, netdev = alloc_netdev_mqs(size, name, name_assign_type, setup,
dd->chip_sdma_engines, dd->num_vnic_contexts); chip_sdma_engines(dd), dd->num_vnic_contexts);
if (!netdev) if (!netdev)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
rn = netdev_priv(netdev); rn = netdev_priv(netdev);
vinfo = opa_vnic_dev_priv(netdev); vinfo = opa_vnic_dev_priv(netdev);
vinfo->dd = dd; vinfo->dd = dd;
vinfo->num_tx_q = dd->chip_sdma_engines; vinfo->num_tx_q = chip_sdma_engines(dd);
vinfo->num_rx_q = dd->num_vnic_contexts; vinfo->num_rx_q = dd->num_vnic_contexts;
vinfo->netdev = netdev; vinfo->netdev = netdev;
rn->free_rdma_netdev = hfi1_vnic_free_rn; rn->free_rdma_netdev = hfi1_vnic_free_rn;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment