Re: [PATCH v2 3/9] hw/arm/smmu: Introduce smmu_get_iotlb_key()

2020-07-06 Thread Peter Maydell
On Thu, 2 Jul 2020 at 16:27, Eric Auger  wrote:
>
> Introduce the smmu_get_iotlb_key() helper and the
> SMMU_IOTLB_ASID() macro. Also move smmu_get_iotlb_key and
> smmu_iotlb_key_hash in the IOTLB related code section.
>
> Signed-off-by: Eric Auger 
>
> ---
>
> v1 -> v2:
> - creation
> ---

Reviewed-by: Peter Maydell 

thanks
-- PMM



[PATCH v2 3/9] hw/arm/smmu: Introduce smmu_get_iotlb_key()

2020-07-02 Thread Eric Auger
Introduce the smmu_get_iotlb_key() helper and the
SMMU_IOTLB_ASID() macro. Also move smmu_get_iotlb_key and
smmu_iotlb_key_hash in the IOTLB related code section.

Signed-off-by: Eric Auger 

---

v1 -> v2:
- creation
---
 hw/arm/smmu-internal.h   |  1 +
 include/hw/arm/smmu-common.h |  1 +
 hw/arm/smmu-common.c | 66 
 3 files changed, 38 insertions(+), 30 deletions(-)

diff --git a/hw/arm/smmu-internal.h b/hw/arm/smmu-internal.h
index 7794d6d394..3104f768cd 100644
--- a/hw/arm/smmu-internal.h
+++ b/hw/arm/smmu-internal.h
@@ -96,4 +96,5 @@ uint64_t iova_level_offset(uint64_t iova, int inputsize,
 MAKE_64BIT_MASK(0, gsz - 3);
 }
 
+#define SMMU_IOTLB_ASID(key) ((key).asid)
 #endif
diff --git a/include/hw/arm/smmu-common.h b/include/hw/arm/smmu-common.h
index 1dceec5cb1..5f9f3535d2 100644
--- a/include/hw/arm/smmu-common.h
+++ b/include/hw/arm/smmu-common.h
@@ -155,6 +155,7 @@ IOMMUMemoryRegion *smmu_iommu_mr(SMMUState *s, uint32_t 
sid);
 
 IOMMUTLBEntry *smmu_iotlb_lookup(SMMUState *bs, SMMUTransCfg *cfg, hwaddr 
iova);
 void smmu_iotlb_insert(SMMUState *bs, SMMUTransCfg *cfg, IOMMUTLBEntry *entry);
+SMMUIOTLBKey smmu_get_iotlb_key(uint16_t asid, uint64_t iova);
 void smmu_iotlb_inv_all(SMMUState *s);
 void smmu_iotlb_inv_asid(SMMUState *s, uint16_t asid);
 void smmu_iotlb_inv_iova(SMMUState *s, uint16_t asid, dma_addr_t iova);
diff --git a/hw/arm/smmu-common.c b/hw/arm/smmu-common.c
index f3aa581f80..7dc8541e8b 100644
--- a/hw/arm/smmu-common.c
+++ b/hw/arm/smmu-common.c
@@ -32,10 +32,42 @@
 
 /* IOTLB Management */
 
+static guint smmu_iotlb_key_hash(gconstpointer v)
+{
+SMMUIOTLBKey *key = (SMMUIOTLBKey *)v;
+uint32_t a, b, c;
+
+/* Jenkins hash */
+a = b = c = JHASH_INITVAL + sizeof(*key);
+a += key->asid;
+b += extract64(key->iova, 0, 32);
+c += extract64(key->iova, 32, 32);
+
+__jhash_mix(a, b, c);
+__jhash_final(a, b, c);
+
+return c;
+}
+
+static gboolean smmu_iotlb_key_equal(gconstpointer v1, gconstpointer v2)
+{
+const SMMUIOTLBKey *k1 = v1;
+const SMMUIOTLBKey *k2 = v2;
+
+return (k1->asid == k2->asid) && (k1->iova == k2->iova);
+}
+
+SMMUIOTLBKey smmu_get_iotlb_key(uint16_t asid, uint64_t iova)
+{
+SMMUIOTLBKey key = {.asid = asid, .iova = iova};
+
+return key;
+}
+
 IOMMUTLBEntry *smmu_iotlb_lookup(SMMUState *bs, SMMUTransCfg *cfg,
  hwaddr iova)
 {
-SMMUIOTLBKey key = {.asid = cfg->asid, .iova = iova};
+SMMUIOTLBKey key = smmu_get_iotlb_key(cfg->asid, iova);
 IOMMUTLBEntry *entry = g_hash_table_lookup(bs->iotlb, );
 
 if (entry) {
@@ -62,8 +94,7 @@ void smmu_iotlb_insert(SMMUState *bs, SMMUTransCfg *cfg, 
IOMMUTLBEntry *entry)
 smmu_iotlb_inv_all(bs);
 }
 
-key->asid = cfg->asid;
-key->iova = entry->iova;
+*key = smmu_get_iotlb_key(cfg->asid, entry->iova);
 trace_smmu_iotlb_insert(cfg->asid, entry->iova);
 g_hash_table_insert(bs->iotlb, key, entry);
 }
@@ -80,12 +111,12 @@ static gboolean smmu_hash_remove_by_asid(gpointer key, 
gpointer value,
 uint16_t asid = *(uint16_t *)user_data;
 SMMUIOTLBKey *iotlb_key = (SMMUIOTLBKey *)key;
 
-return iotlb_key->asid == asid;
+return SMMU_IOTLB_ASID(*iotlb_key) == asid;
 }
 
 inline void smmu_iotlb_inv_iova(SMMUState *s, uint16_t asid, dma_addr_t iova)
 {
-SMMUIOTLBKey key = {.asid = asid, .iova = iova};
+SMMUIOTLBKey key = smmu_get_iotlb_key(asid, iova);
 
 trace_smmu_iotlb_inv_iova(asid, iova);
 g_hash_table_remove(s->iotlb, );
@@ -383,31 +414,6 @@ IOMMUMemoryRegion *smmu_iommu_mr(SMMUState *s, uint32_t 
sid)
 return NULL;
 }
 
-static guint smmu_iotlb_key_hash(gconstpointer v)
-{
-SMMUIOTLBKey *key = (SMMUIOTLBKey *)v;
-uint32_t a, b, c;
-
-/* Jenkins hash */
-a = b = c = JHASH_INITVAL + sizeof(*key);
-a += key->asid;
-b += extract64(key->iova, 0, 32);
-c += extract64(key->iova, 32, 32);
-
-__jhash_mix(a, b, c);
-__jhash_final(a, b, c);
-
-return c;
-}
-
-static gboolean smmu_iotlb_key_equal(gconstpointer v1, gconstpointer v2)
-{
-const SMMUIOTLBKey *k1 = v1;
-const SMMUIOTLBKey *k2 = v2;
-
-return (k1->asid == k2->asid) && (k1->iova == k2->iova);
-}
-
 /* Unmap the whole notifier's range */
 static void smmu_unmap_notifier_range(IOMMUNotifier *n)
 {
-- 
2.21.3