Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | // SPDX-License-Identifier: GPL-2.0-only /* * Huawei HiNIC PCI Express Linux driver * Copyright(c) 2017 Huawei Technologies Co., Ltd */ #include <linux/pci.h> #include <linux/device.h> #include <linux/errno.h> #include <linux/io.h> #include <linux/types.h> #include <linux/bitops.h> #include "hinic_hw_csr.h" #include "hinic_hw_if.h" #define PCIE_ATTR_ENTRY 0 #define VALID_MSIX_IDX(attr, msix_index) ((msix_index) < (attr)->num_irqs) /** * hinic_msix_attr_set - set message attribute for msix entry * @hwif: the HW interface of a pci function device * @msix_index: msix_index * @pending_limit: the maximum pending interrupt events (unit 8) * @coalesc_timer: coalesc period for interrupt (unit 8 us) * @lli_timer: replenishing period for low latency credit (unit 8 us) * @lli_credit_limit: maximum credits for low latency msix messages (unit 8) * @resend_timer: maximum wait for resending msix (unit coalesc period) * * Return 0 - Success, negative - Failure **/ int hinic_msix_attr_set(struct hinic_hwif *hwif, u16 msix_index, u8 pending_limit, u8 coalesc_timer, u8 lli_timer, u8 lli_credit_limit, u8 resend_timer) { u32 msix_ctrl, addr; if (!VALID_MSIX_IDX(&hwif->attr, msix_index)) return -EINVAL; msix_ctrl = HINIC_MSIX_ATTR_SET(pending_limit, PENDING_LIMIT) | HINIC_MSIX_ATTR_SET(coalesc_timer, COALESC_TIMER) | HINIC_MSIX_ATTR_SET(lli_timer, LLI_TIMER) | HINIC_MSIX_ATTR_SET(lli_credit_limit, LLI_CREDIT) | HINIC_MSIX_ATTR_SET(resend_timer, RESEND_TIMER); addr = HINIC_CSR_MSIX_CTRL_ADDR(msix_index); hinic_hwif_write_reg(hwif, addr, msix_ctrl); return 0; } /** * hinic_msix_attr_get - get message attribute of msix entry * @hwif: the HW interface of a pci function device * @msix_index: msix_index * @pending_limit: the maximum pending interrupt events (unit 8) * @coalesc_timer: coalesc period for interrupt (unit 8 us) * @lli_timer: replenishing period for low latency credit (unit 8 us) * @lli_credit_limit: maximum credits for low latency msix messages (unit 8) * @resend_timer: maximum wait for resending msix (unit coalesc period) * * Return 0 - Success, negative - Failure **/ int hinic_msix_attr_get(struct hinic_hwif *hwif, u16 msix_index, u8 *pending_limit, u8 *coalesc_timer, u8 *lli_timer, u8 *lli_credit_limit, u8 *resend_timer) { u32 addr, val; if (!VALID_MSIX_IDX(&hwif->attr, msix_index)) return -EINVAL; addr = HINIC_CSR_MSIX_CTRL_ADDR(msix_index); val = hinic_hwif_read_reg(hwif, addr); *pending_limit = HINIC_MSIX_ATTR_GET(val, PENDING_LIMIT); *coalesc_timer = HINIC_MSIX_ATTR_GET(val, COALESC_TIMER); *lli_timer = HINIC_MSIX_ATTR_GET(val, LLI_TIMER); *lli_credit_limit = HINIC_MSIX_ATTR_GET(val, LLI_CREDIT); *resend_timer = HINIC_MSIX_ATTR_GET(val, RESEND_TIMER); return 0; } /** * hinic_msix_attr_cnt_clear - clear message attribute counters for msix entry * @hwif: the HW interface of a pci function device * @msix_index: msix_index * * Return 0 - Success, negative - Failure **/ int hinic_msix_attr_cnt_clear(struct hinic_hwif *hwif, u16 msix_index) { u32 msix_ctrl, addr; if (!VALID_MSIX_IDX(&hwif->attr, msix_index)) return -EINVAL; msix_ctrl = HINIC_MSIX_CNT_SET(1, RESEND_TIMER); addr = HINIC_CSR_MSIX_CNT_ADDR(msix_index); hinic_hwif_write_reg(hwif, addr, msix_ctrl); return 0; } /** * hinic_set_pf_action - set action on pf channel * @hwif: the HW interface of a pci function device * @action: action on pf channel * * Return 0 - Success, negative - Failure **/ void hinic_set_pf_action(struct hinic_hwif *hwif, enum hinic_pf_action action) { u32 attr5 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR5_ADDR); attr5 = HINIC_FA5_CLEAR(attr5, PF_ACTION); attr5 |= HINIC_FA5_SET(action, PF_ACTION); hinic_hwif_write_reg(hwif, HINIC_CSR_FUNC_ATTR5_ADDR, attr5); } enum hinic_outbound_state hinic_outbound_state_get(struct hinic_hwif *hwif) { u32 attr4 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR); return HINIC_FA4_GET(attr4, OUTBOUND_STATE); } void hinic_outbound_state_set(struct hinic_hwif *hwif, enum hinic_outbound_state outbound_state) { u32 attr4 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR); attr4 = HINIC_FA4_CLEAR(attr4, OUTBOUND_STATE); attr4 |= HINIC_FA4_SET(outbound_state, OUTBOUND_STATE); hinic_hwif_write_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR, attr4); } enum hinic_db_state hinic_db_state_get(struct hinic_hwif *hwif) { u32 attr4 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR); return HINIC_FA4_GET(attr4, DB_STATE); } void hinic_db_state_set(struct hinic_hwif *hwif, enum hinic_db_state db_state) { u32 attr4 = hinic_hwif_read_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR); attr4 = HINIC_FA4_CLEAR(attr4, DB_STATE); attr4 |= HINIC_FA4_SET(db_state, DB_STATE); hinic_hwif_write_reg(hwif, HINIC_CSR_FUNC_ATTR4_ADDR, attr4); } void hinic_set_msix_state(struct hinic_hwif *hwif, u16 msix_idx, enum hinic_msix_state flag) { u32 offset = msix_idx * HINIC_PCI_MSIX_ENTRY_SIZE + HINIC_PCI_MSIX_ENTRY_VECTOR_CTRL; u32 mask_bits; mask_bits = readl(hwif->intr_regs_base + offset); mask_bits &= ~HINIC_PCI_MSIX_ENTRY_CTRL_MASKBIT; if (flag) mask_bits |= HINIC_PCI_MSIX_ENTRY_CTRL_MASKBIT; writel(mask_bits, hwif->intr_regs_base + offset); } /** * hwif_ready - test if the HW is ready for use * @hwif: the HW interface of a pci function device * * Return 0 - Success, negative - Failure **/ static int hwif_ready(struct hinic_hwif *hwif) { struct pci_dev *pdev = hwif->pdev; u32 addr, attr1; addr = HINIC_CSR_FUNC_ATTR1_ADDR; attr1 = hinic_hwif_read_reg(hwif, addr); if (!HINIC_FA1_GET(attr1, INIT_STATUS)) { dev_err(&pdev->dev, "hwif status is not ready\n"); return -EFAULT; } return 0; } /** * set_hwif_attr - set the attributes in the relevant members in hwif * @hwif: the HW interface of a pci function device * @attr0: the first attribute that was read from the hw * @attr1: the second attribute that was read from the hw **/ static void set_hwif_attr(struct hinic_hwif *hwif, u32 attr0, u32 attr1) { hwif->attr.func_idx = HINIC_FA0_GET(attr0, FUNC_IDX); hwif->attr.pf_idx = HINIC_FA0_GET(attr0, PF_IDX); hwif->attr.pci_intf_idx = HINIC_FA0_GET(attr0, PCI_INTF_IDX); hwif->attr.func_type = HINIC_FA0_GET(attr0, FUNC_TYPE); hwif->attr.num_aeqs = BIT(HINIC_FA1_GET(attr1, AEQS_PER_FUNC)); hwif->attr.num_ceqs = BIT(HINIC_FA1_GET(attr1, CEQS_PER_FUNC)); hwif->attr.num_irqs = BIT(HINIC_FA1_GET(attr1, IRQS_PER_FUNC)); hwif->attr.num_dma_attr = BIT(HINIC_FA1_GET(attr1, DMA_ATTR_PER_FUNC)); } /** * read_hwif_attr - read the attributes and set members in hwif * @hwif: the HW interface of a pci function device **/ static void read_hwif_attr(struct hinic_hwif *hwif) { u32 addr, attr0, attr1; addr = HINIC_CSR_FUNC_ATTR0_ADDR; attr0 = hinic_hwif_read_reg(hwif, addr); addr = HINIC_CSR_FUNC_ATTR1_ADDR; attr1 = hinic_hwif_read_reg(hwif, addr); set_hwif_attr(hwif, attr0, attr1); } /** * set_ppf - try to set hwif as ppf and set the type of hwif in this case * @hwif: the HW interface of a pci function device **/ static void set_ppf(struct hinic_hwif *hwif) { struct hinic_func_attr *attr = &hwif->attr; u32 addr, val, ppf_election; /* Read Modify Write */ addr = HINIC_CSR_PPF_ELECTION_ADDR(HINIC_HWIF_PCI_INTF(hwif)); val = hinic_hwif_read_reg(hwif, addr); val = HINIC_PPF_ELECTION_CLEAR(val, IDX); ppf_election = HINIC_PPF_ELECTION_SET(HINIC_HWIF_FUNC_IDX(hwif), IDX); val |= ppf_election; hinic_hwif_write_reg(hwif, addr, val); /* check PPF */ val = hinic_hwif_read_reg(hwif, addr); attr->ppf_idx = HINIC_PPF_ELECTION_GET(val, IDX); if (attr->ppf_idx == HINIC_HWIF_FUNC_IDX(hwif)) attr->func_type = HINIC_PPF; } /** * set_dma_attr - set the dma attributes in the HW * @hwif: the HW interface of a pci function device * @entry_idx: the entry index in the dma table * @st: PCIE TLP steering tag * @at: PCIE TLP AT field * @ph: PCIE TLP Processing Hint field * @no_snooping: PCIE TLP No snooping * @tph_en: PCIE TLP Processing Hint Enable **/ static void set_dma_attr(struct hinic_hwif *hwif, u32 entry_idx, u8 st, u8 at, u8 ph, enum hinic_pcie_nosnoop no_snooping, enum hinic_pcie_tph tph_en) { u32 addr, val, dma_attr_entry; /* Read Modify Write */ addr = HINIC_CSR_DMA_ATTR_ADDR(entry_idx); val = hinic_hwif_read_reg(hwif, addr); val = HINIC_DMA_ATTR_CLEAR(val, ST) & HINIC_DMA_ATTR_CLEAR(val, AT) & HINIC_DMA_ATTR_CLEAR(val, PH) & HINIC_DMA_ATTR_CLEAR(val, NO_SNOOPING) & HINIC_DMA_ATTR_CLEAR(val, TPH_EN); dma_attr_entry = HINIC_DMA_ATTR_SET(st, ST) | HINIC_DMA_ATTR_SET(at, AT) | HINIC_DMA_ATTR_SET(ph, PH) | HINIC_DMA_ATTR_SET(no_snooping, NO_SNOOPING) | HINIC_DMA_ATTR_SET(tph_en, TPH_EN); val |= dma_attr_entry; hinic_hwif_write_reg(hwif, addr, val); } /** * dma_attr_table_init - initialize the the default dma attributes * @hwif: the HW interface of a pci function device **/ static void dma_attr_init(struct hinic_hwif *hwif) { set_dma_attr(hwif, PCIE_ATTR_ENTRY, HINIC_PCIE_ST_DISABLE, HINIC_PCIE_AT_DISABLE, HINIC_PCIE_PH_DISABLE, HINIC_PCIE_SNOOP, HINIC_PCIE_TPH_DISABLE); } /** * hinic_init_hwif - initialize the hw interface * @hwif: the HW interface of a pci function device * @pdev: the pci device for acessing PCI resources * * Return 0 - Success, negative - Failure **/ int hinic_init_hwif(struct hinic_hwif *hwif, struct pci_dev *pdev) { int err; hwif->pdev = pdev; hwif->cfg_regs_bar = pci_ioremap_bar(pdev, HINIC_PCI_CFG_REGS_BAR); if (!hwif->cfg_regs_bar) { dev_err(&pdev->dev, "Failed to map configuration regs\n"); return -ENOMEM; } hwif->intr_regs_base = pci_ioremap_bar(pdev, HINIC_PCI_INTR_REGS_BAR); if (!hwif->intr_regs_base) { dev_err(&pdev->dev, "Failed to map configuration regs\n"); err = -ENOMEM; goto err_map_intr_bar; } err = hwif_ready(hwif); if (err) { dev_err(&pdev->dev, "HW interface is not ready\n"); goto err_hwif_ready; } read_hwif_attr(hwif); if (HINIC_IS_PF(hwif)) set_ppf(hwif); /* No transactionss before DMA is initialized */ dma_attr_init(hwif); return 0; err_hwif_ready: iounmap(hwif->intr_regs_base); err_map_intr_bar: iounmap(hwif->cfg_regs_bar); return err; } /** * hinic_free_hwif - free the HW interface * @hwif: the HW interface of a pci function device **/ void hinic_free_hwif(struct hinic_hwif *hwif) { iounmap(hwif->intr_regs_base); iounmap(hwif->cfg_regs_bar); } |