Lines Matching defs:out
39 dev_warn(&afu->dev, "WARNING: AFU control timed out!\n");
41 goto out;
47 goto out;
67 out:
152 goto out;
167 dev_warn(&afu->dev, "WARNING: PSL Purge timed out!\n");
169 goto out;
173 goto out;
199 out:
226 /* Work out how many pages to allocate */
305 "WARNING: CXL adapter invalidation of all ERAT entries timed out!\n");
326 dev_warn(&adapter->dev, "WARNING: CXL adapter wide TLBIA timed out!\n");
337 dev_warn(&adapter->dev, "WARNING: CXL adapter wide SLBIA timed out!\n");
370 dev_warn(&adapter->dev, "WARNING: cache flush timed out!\n");
448 dev_warn(&ctx->afu->dev, "WARNING: Process Element Command timed out!\n");
450 goto out;
455 goto out;
461 goto out;
476 out:
815 * PSL based cards and will time out an AFU reset if the AFU is still
1039 * (before the sequence was spelled out in the architecture) which is
1473 static int native_afu_cr_read64(struct cxl_afu *afu, int cr, u64 off, u64 *out)
1479 *out = in_le64(afu->native->afu_desc_mmio + afu->crs_offset +
1484 static int native_afu_cr_read32(struct cxl_afu *afu, int cr, u64 off, u32 *out)
1490 *out = in_le32(afu->native->afu_desc_mmio + afu->crs_offset +
1495 static int native_afu_cr_read16(struct cxl_afu *afu, int cr, u64 off, u16 *out)
1503 *out = (val >> ((off & 0x3) * 8)) & 0xffff;
1507 static int native_afu_cr_read8(struct cxl_afu *afu, int cr, u64 off, u8 *out)
1515 *out = (val >> ((off & 0x3) * 8)) & 0xff;