mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/riscv/riscv-iommu.c: Introduce a translation tag for the page table cache
This commit introduces a translation tag to avoid invalidating an entry that should not be invalidated when IOMMU executes invalidation commands. E.g. IOTINVAL.VMA with GV=0, AV=0, PSCV=1 invalidates both a mapping of single stage translation and a mapping of nested translation with the same PSCID, but only the former one should be invalidated. Signed-off-by: Jason Chien <jason.chien@sifive.com> Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Message-ID: <20241108110147.11178-1-jason.chien@sifive.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
2d8e825928
commit
fa622855ea
1 changed files with 156 additions and 55 deletions
|
@ -64,8 +64,16 @@ struct RISCVIOMMUContext {
|
||||||
uint64_t msiptp; /* MSI redirection page table pointer */
|
uint64_t msiptp; /* MSI redirection page table pointer */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef enum RISCVIOMMUTransTag {
|
||||||
|
RISCV_IOMMU_TRANS_TAG_BY, /* Bypass */
|
||||||
|
RISCV_IOMMU_TRANS_TAG_SS, /* Single Stage */
|
||||||
|
RISCV_IOMMU_TRANS_TAG_VG, /* G-stage only */
|
||||||
|
RISCV_IOMMU_TRANS_TAG_VN, /* Nested translation */
|
||||||
|
} RISCVIOMMUTransTag;
|
||||||
|
|
||||||
/* Address translation cache entry */
|
/* Address translation cache entry */
|
||||||
struct RISCVIOMMUEntry {
|
struct RISCVIOMMUEntry {
|
||||||
|
RISCVIOMMUTransTag tag; /* Translation Tag */
|
||||||
uint64_t iova:44; /* IOVA Page Number */
|
uint64_t iova:44; /* IOVA Page Number */
|
||||||
uint64_t pscid:20; /* Process Soft-Context identifier */
|
uint64_t pscid:20; /* Process Soft-Context identifier */
|
||||||
uint64_t phys:44; /* Physical Page Number */
|
uint64_t phys:44; /* Physical Page Number */
|
||||||
|
@ -1227,7 +1235,7 @@ static gboolean riscv_iommu_iot_equal(gconstpointer v1, gconstpointer v2)
|
||||||
RISCVIOMMUEntry *t1 = (RISCVIOMMUEntry *) v1;
|
RISCVIOMMUEntry *t1 = (RISCVIOMMUEntry *) v1;
|
||||||
RISCVIOMMUEntry *t2 = (RISCVIOMMUEntry *) v2;
|
RISCVIOMMUEntry *t2 = (RISCVIOMMUEntry *) v2;
|
||||||
return t1->gscid == t2->gscid && t1->pscid == t2->pscid &&
|
return t1->gscid == t2->gscid && t1->pscid == t2->pscid &&
|
||||||
t1->iova == t2->iova;
|
t1->iova == t2->iova && t1->tag == t2->tag;
|
||||||
}
|
}
|
||||||
|
|
||||||
static guint riscv_iommu_iot_hash(gconstpointer v)
|
static guint riscv_iommu_iot_hash(gconstpointer v)
|
||||||
|
@ -1236,67 +1244,115 @@ static guint riscv_iommu_iot_hash(gconstpointer v)
|
||||||
return (guint)t->iova;
|
return (guint)t->iova;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GV: 1 PSCV: 1 AV: 1 */
|
/* GV: 0 AV: 0 PSCV: 0 GVMA: 0 */
|
||||||
|
/* GV: 0 AV: 0 GVMA: 1 */
|
||||||
|
static
|
||||||
|
void riscv_iommu_iot_inval_all(gpointer key, gpointer value, gpointer data)
|
||||||
|
{
|
||||||
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
|
if (iot->tag == arg->tag) {
|
||||||
|
iot->perm = IOMMU_NONE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GV: 0 AV: 0 PSCV: 1 GVMA: 0 */
|
||||||
|
static
|
||||||
|
void riscv_iommu_iot_inval_pscid(gpointer key, gpointer value, gpointer data)
|
||||||
|
{
|
||||||
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
|
if (iot->tag == arg->tag &&
|
||||||
|
iot->pscid == arg->pscid) {
|
||||||
|
iot->perm = IOMMU_NONE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GV: 0 AV: 1 PSCV: 0 GVMA: 0 */
|
||||||
|
static
|
||||||
|
void riscv_iommu_iot_inval_iova(gpointer key, gpointer value, gpointer data)
|
||||||
|
{
|
||||||
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
|
if (iot->tag == arg->tag &&
|
||||||
|
iot->iova == arg->iova) {
|
||||||
|
iot->perm = IOMMU_NONE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GV: 0 AV: 1 PSCV: 1 GVMA: 0 */
|
||||||
static void riscv_iommu_iot_inval_pscid_iova(gpointer key, gpointer value,
|
static void riscv_iommu_iot_inval_pscid_iova(gpointer key, gpointer value,
|
||||||
gpointer data)
|
gpointer data)
|
||||||
{
|
{
|
||||||
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
if (iot->gscid == arg->gscid &&
|
if (iot->tag == arg->tag &&
|
||||||
iot->pscid == arg->pscid &&
|
iot->pscid == arg->pscid &&
|
||||||
iot->iova == arg->iova) {
|
iot->iova == arg->iova) {
|
||||||
iot->perm = IOMMU_NONE;
|
iot->perm = IOMMU_NONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GV: 1 PSCV: 1 AV: 0 */
|
/* GV: 1 AV: 0 PSCV: 0 GVMA: 0 */
|
||||||
static void riscv_iommu_iot_inval_pscid(gpointer key, gpointer value,
|
/* GV: 1 AV: 0 GVMA: 1 */
|
||||||
gpointer data)
|
static
|
||||||
|
void riscv_iommu_iot_inval_gscid(gpointer key, gpointer value, gpointer data)
|
||||||
{
|
{
|
||||||
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
if (iot->gscid == arg->gscid &&
|
if (iot->tag == arg->tag &&
|
||||||
|
iot->gscid == arg->gscid) {
|
||||||
|
iot->perm = IOMMU_NONE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GV: 1 AV: 0 PSCV: 1 GVMA: 0 */
|
||||||
|
static void riscv_iommu_iot_inval_gscid_pscid(gpointer key, gpointer value,
|
||||||
|
gpointer data)
|
||||||
|
{
|
||||||
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
|
if (iot->tag == arg->tag &&
|
||||||
|
iot->gscid == arg->gscid &&
|
||||||
iot->pscid == arg->pscid) {
|
iot->pscid == arg->pscid) {
|
||||||
iot->perm = IOMMU_NONE;
|
iot->perm = IOMMU_NONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GV: 1 GVMA: 1 */
|
/* GV: 1 AV: 1 PSCV: 0 GVMA: 0 */
|
||||||
static void riscv_iommu_iot_inval_gscid_gpa(gpointer key, gpointer value,
|
/* GV: 1 AV: 1 GVMA: 1 */
|
||||||
gpointer data)
|
static void riscv_iommu_iot_inval_gscid_iova(gpointer key, gpointer value,
|
||||||
|
gpointer data)
|
||||||
{
|
{
|
||||||
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
if (iot->gscid == arg->gscid) {
|
if (iot->tag == arg->tag &&
|
||||||
/* simplified cache, no GPA matching */
|
iot->gscid == arg->gscid &&
|
||||||
|
iot->iova == arg->iova) {
|
||||||
iot->perm = IOMMU_NONE;
|
iot->perm = IOMMU_NONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GV: 1 GVMA: 0 */
|
/* GV: 1 AV: 1 PSCV: 1 GVMA: 0 */
|
||||||
static void riscv_iommu_iot_inval_gscid(gpointer key, gpointer value,
|
static void riscv_iommu_iot_inval_gscid_pscid_iova(gpointer key, gpointer value,
|
||||||
gpointer data)
|
gpointer data)
|
||||||
{
|
{
|
||||||
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
||||||
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
RISCVIOMMUEntry *arg = (RISCVIOMMUEntry *) data;
|
||||||
if (iot->gscid == arg->gscid) {
|
if (iot->tag == arg->tag &&
|
||||||
|
iot->gscid == arg->gscid &&
|
||||||
|
iot->pscid == arg->pscid &&
|
||||||
|
iot->iova == arg->iova) {
|
||||||
iot->perm = IOMMU_NONE;
|
iot->perm = IOMMU_NONE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GV: 0 */
|
|
||||||
static void riscv_iommu_iot_inval_all(gpointer key, gpointer value,
|
|
||||||
gpointer data)
|
|
||||||
{
|
|
||||||
RISCVIOMMUEntry *iot = (RISCVIOMMUEntry *) value;
|
|
||||||
iot->perm = IOMMU_NONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* caller should keep ref-count for iot_cache object */
|
/* caller should keep ref-count for iot_cache object */
|
||||||
static RISCVIOMMUEntry *riscv_iommu_iot_lookup(RISCVIOMMUContext *ctx,
|
static RISCVIOMMUEntry *riscv_iommu_iot_lookup(RISCVIOMMUContext *ctx,
|
||||||
GHashTable *iot_cache, hwaddr iova)
|
GHashTable *iot_cache, hwaddr iova, RISCVIOMMUTransTag transtag)
|
||||||
{
|
{
|
||||||
RISCVIOMMUEntry key = {
|
RISCVIOMMUEntry key = {
|
||||||
|
.tag = transtag,
|
||||||
.gscid = get_field(ctx->gatp, RISCV_IOMMU_DC_IOHGATP_GSCID),
|
.gscid = get_field(ctx->gatp, RISCV_IOMMU_DC_IOHGATP_GSCID),
|
||||||
.pscid = get_field(ctx->ta, RISCV_IOMMU_DC_TA_PSCID),
|
.pscid = get_field(ctx->ta, RISCV_IOMMU_DC_TA_PSCID),
|
||||||
.iova = PPN_DOWN(iova),
|
.iova = PPN_DOWN(iova),
|
||||||
|
@ -1322,10 +1378,11 @@ static void riscv_iommu_iot_update(RISCVIOMMUState *s,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void riscv_iommu_iot_inval(RISCVIOMMUState *s, GHFunc func,
|
static void riscv_iommu_iot_inval(RISCVIOMMUState *s, GHFunc func,
|
||||||
uint32_t gscid, uint32_t pscid, hwaddr iova)
|
uint32_t gscid, uint32_t pscid, hwaddr iova, RISCVIOMMUTransTag transtag)
|
||||||
{
|
{
|
||||||
GHashTable *iot_cache;
|
GHashTable *iot_cache;
|
||||||
RISCVIOMMUEntry key = {
|
RISCVIOMMUEntry key = {
|
||||||
|
.tag = transtag,
|
||||||
.gscid = gscid,
|
.gscid = gscid,
|
||||||
.pscid = pscid,
|
.pscid = pscid,
|
||||||
.iova = PPN_DOWN(iova),
|
.iova = PPN_DOWN(iova),
|
||||||
|
@ -1336,9 +1393,24 @@ static void riscv_iommu_iot_inval(RISCVIOMMUState *s, GHFunc func,
|
||||||
g_hash_table_unref(iot_cache);
|
g_hash_table_unref(iot_cache);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static RISCVIOMMUTransTag riscv_iommu_get_transtag(RISCVIOMMUContext *ctx)
|
||||||
|
{
|
||||||
|
uint64_t satp = get_field(ctx->satp, RISCV_IOMMU_ATP_MODE_FIELD);
|
||||||
|
uint64_t gatp = get_field(ctx->gatp, RISCV_IOMMU_ATP_MODE_FIELD);
|
||||||
|
|
||||||
|
if (satp == RISCV_IOMMU_DC_FSC_MODE_BARE) {
|
||||||
|
return (gatp == RISCV_IOMMU_DC_IOHGATP_MODE_BARE) ?
|
||||||
|
RISCV_IOMMU_TRANS_TAG_BY : RISCV_IOMMU_TRANS_TAG_VG;
|
||||||
|
} else {
|
||||||
|
return (gatp == RISCV_IOMMU_DC_IOHGATP_MODE_BARE) ?
|
||||||
|
RISCV_IOMMU_TRANS_TAG_SS : RISCV_IOMMU_TRANS_TAG_VN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int riscv_iommu_translate(RISCVIOMMUState *s, RISCVIOMMUContext *ctx,
|
static int riscv_iommu_translate(RISCVIOMMUState *s, RISCVIOMMUContext *ctx,
|
||||||
IOMMUTLBEntry *iotlb, bool enable_cache)
|
IOMMUTLBEntry *iotlb, bool enable_cache)
|
||||||
{
|
{
|
||||||
|
RISCVIOMMUTransTag transtag = riscv_iommu_get_transtag(ctx);
|
||||||
RISCVIOMMUEntry *iot;
|
RISCVIOMMUEntry *iot;
|
||||||
IOMMUAccessFlags perm;
|
IOMMUAccessFlags perm;
|
||||||
bool enable_pid;
|
bool enable_pid;
|
||||||
|
@ -1364,7 +1436,7 @@ static int riscv_iommu_translate(RISCVIOMMUState *s, RISCVIOMMUContext *ctx,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
iot = riscv_iommu_iot_lookup(ctx, iot_cache, iotlb->iova);
|
iot = riscv_iommu_iot_lookup(ctx, iot_cache, iotlb->iova, transtag);
|
||||||
perm = iot ? iot->perm : IOMMU_NONE;
|
perm = iot ? iot->perm : IOMMU_NONE;
|
||||||
if (perm != IOMMU_NONE) {
|
if (perm != IOMMU_NONE) {
|
||||||
iotlb->translated_addr = PPN_PHYS(iot->phys);
|
iotlb->translated_addr = PPN_PHYS(iot->phys);
|
||||||
|
@ -1395,6 +1467,7 @@ static int riscv_iommu_translate(RISCVIOMMUState *s, RISCVIOMMUContext *ctx,
|
||||||
iot->gscid = get_field(ctx->gatp, RISCV_IOMMU_DC_IOHGATP_GSCID);
|
iot->gscid = get_field(ctx->gatp, RISCV_IOMMU_DC_IOHGATP_GSCID);
|
||||||
iot->pscid = get_field(ctx->ta, RISCV_IOMMU_DC_TA_PSCID);
|
iot->pscid = get_field(ctx->ta, RISCV_IOMMU_DC_TA_PSCID);
|
||||||
iot->perm = iotlb->perm;
|
iot->perm = iotlb->perm;
|
||||||
|
iot->tag = transtag;
|
||||||
riscv_iommu_iot_update(s, iot_cache, iot);
|
riscv_iommu_iot_update(s, iot_cache, iot);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1602,44 +1675,72 @@ static void riscv_iommu_process_cq_tail(RISCVIOMMUState *s)
|
||||||
|
|
||||||
case RISCV_IOMMU_CMD(RISCV_IOMMU_CMD_IOTINVAL_FUNC_GVMA,
|
case RISCV_IOMMU_CMD(RISCV_IOMMU_CMD_IOTINVAL_FUNC_GVMA,
|
||||||
RISCV_IOMMU_CMD_IOTINVAL_OPCODE):
|
RISCV_IOMMU_CMD_IOTINVAL_OPCODE):
|
||||||
if (cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_PSCV) {
|
{
|
||||||
|
bool gv = !!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_GV);
|
||||||
|
bool av = !!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_AV);
|
||||||
|
bool pscv = !!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_PSCV);
|
||||||
|
uint32_t gscid = get_field(cmd.dword0,
|
||||||
|
RISCV_IOMMU_CMD_IOTINVAL_GSCID);
|
||||||
|
uint32_t pscid = get_field(cmd.dword0,
|
||||||
|
RISCV_IOMMU_CMD_IOTINVAL_PSCID);
|
||||||
|
hwaddr iova = (cmd.dword1 << 2) & TARGET_PAGE_MASK;
|
||||||
|
|
||||||
|
if (pscv) {
|
||||||
/* illegal command arguments IOTINVAL.GVMA & PSCV == 1 */
|
/* illegal command arguments IOTINVAL.GVMA & PSCV == 1 */
|
||||||
goto cmd_ill;
|
goto cmd_ill;
|
||||||
} else if (!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_GV)) {
|
|
||||||
/* invalidate all cache mappings */
|
|
||||||
func = riscv_iommu_iot_inval_all;
|
|
||||||
} else if (!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_AV)) {
|
|
||||||
/* invalidate cache matching GSCID */
|
|
||||||
func = riscv_iommu_iot_inval_gscid;
|
|
||||||
} else {
|
|
||||||
/* invalidate cache matching GSCID and ADDR (GPA) */
|
|
||||||
func = riscv_iommu_iot_inval_gscid_gpa;
|
|
||||||
}
|
}
|
||||||
riscv_iommu_iot_inval(s, func,
|
|
||||||
get_field(cmd.dword0, RISCV_IOMMU_CMD_IOTINVAL_GSCID), 0,
|
func = riscv_iommu_iot_inval_all;
|
||||||
cmd.dword1 << 2 & TARGET_PAGE_MASK);
|
|
||||||
|
if (gv) {
|
||||||
|
func = (av) ? riscv_iommu_iot_inval_gscid_iova :
|
||||||
|
riscv_iommu_iot_inval_gscid;
|
||||||
|
}
|
||||||
|
|
||||||
|
riscv_iommu_iot_inval(
|
||||||
|
s, func, gscid, pscid, iova, RISCV_IOMMU_TRANS_TAG_VG);
|
||||||
|
|
||||||
|
riscv_iommu_iot_inval(
|
||||||
|
s, func, gscid, pscid, iova, RISCV_IOMMU_TRANS_TAG_VN);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case RISCV_IOMMU_CMD(RISCV_IOMMU_CMD_IOTINVAL_FUNC_VMA,
|
case RISCV_IOMMU_CMD(RISCV_IOMMU_CMD_IOTINVAL_FUNC_VMA,
|
||||||
RISCV_IOMMU_CMD_IOTINVAL_OPCODE):
|
RISCV_IOMMU_CMD_IOTINVAL_OPCODE):
|
||||||
if (!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_GV)) {
|
{
|
||||||
/* invalidate all cache mappings, simplified model */
|
bool gv = !!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_GV);
|
||||||
func = riscv_iommu_iot_inval_all;
|
bool av = !!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_AV);
|
||||||
} else if (!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_PSCV)) {
|
bool pscv = !!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_PSCV);
|
||||||
/* invalidate cache matching GSCID, simplified model */
|
uint32_t gscid = get_field(cmd.dword0,
|
||||||
func = riscv_iommu_iot_inval_gscid;
|
RISCV_IOMMU_CMD_IOTINVAL_GSCID);
|
||||||
} else if (!(cmd.dword0 & RISCV_IOMMU_CMD_IOTINVAL_AV)) {
|
uint32_t pscid = get_field(cmd.dword0,
|
||||||
/* invalidate cache matching GSCID and PSCID */
|
RISCV_IOMMU_CMD_IOTINVAL_PSCID);
|
||||||
func = riscv_iommu_iot_inval_pscid;
|
hwaddr iova = (cmd.dword1 << 2) & TARGET_PAGE_MASK;
|
||||||
|
RISCVIOMMUTransTag transtag;
|
||||||
|
|
||||||
|
if (gv) {
|
||||||
|
transtag = RISCV_IOMMU_TRANS_TAG_VN;
|
||||||
|
if (pscv) {
|
||||||
|
func = (av) ? riscv_iommu_iot_inval_gscid_pscid_iova :
|
||||||
|
riscv_iommu_iot_inval_gscid_pscid;
|
||||||
|
} else {
|
||||||
|
func = (av) ? riscv_iommu_iot_inval_gscid_iova :
|
||||||
|
riscv_iommu_iot_inval_gscid;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
/* invalidate cache matching GSCID and PSCID and ADDR (IOVA) */
|
transtag = RISCV_IOMMU_TRANS_TAG_SS;
|
||||||
func = riscv_iommu_iot_inval_pscid_iova;
|
if (pscv) {
|
||||||
|
func = (av) ? riscv_iommu_iot_inval_pscid_iova :
|
||||||
|
riscv_iommu_iot_inval_pscid;
|
||||||
|
} else {
|
||||||
|
func = (av) ? riscv_iommu_iot_inval_iova :
|
||||||
|
riscv_iommu_iot_inval_all;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
riscv_iommu_iot_inval(s, func,
|
|
||||||
get_field(cmd.dword0, RISCV_IOMMU_CMD_IOTINVAL_GSCID),
|
riscv_iommu_iot_inval(s, func, gscid, pscid, iova, transtag);
|
||||||
get_field(cmd.dword0, RISCV_IOMMU_CMD_IOTINVAL_PSCID),
|
|
||||||
cmd.dword1 << 2 & TARGET_PAGE_MASK);
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case RISCV_IOMMU_CMD(RISCV_IOMMU_CMD_IODIR_FUNC_INVAL_DDT,
|
case RISCV_IOMMU_CMD(RISCV_IOMMU_CMD_IODIR_FUNC_INVAL_DDT,
|
||||||
RISCV_IOMMU_CMD_IODIR_OPCODE):
|
RISCV_IOMMU_CMD_IODIR_OPCODE):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue