@@ -190,6 +190,7 @@ extern void its_setup_baser(int i, struct its_baser *baser);
extern void enable_lpi(u32 redist);
extern void its_enable_defaults(void);
extern struct its_device *its_create_device(u32 dev_id, int nvecs);
+extern struct its_collection *its_create_collection(u32 col_id, u32 target);
#endif /* !__ASSEMBLY__ */
@@ -286,3 +286,20 @@ struct its_device *its_create_device(u32 device_id, int nvecs)
its_data.nb_devices++;
return new;
}
+
+struct its_collection *its_create_collection(u32 col_id, u32 pe)
+{
+ if (col_id >= gicv3_data.cpu_count)
+ report_abort("%s coll_id=%d >= cpu_count %d\n",
+ __func__, col_id, gicv3_data.cpu_count);
+
+ if (its_data.typer.pta)
+ its_data.collections[col_id].target_address =
+ (u64)gicv3_data.redist_base[pe];
+ else
+ its_data.collections[col_id].target_address = pe << 16;
+
+ its_data.collections[col_id].col_id = col_id;
+
+ return &its_data.collections[col_id];
+}
Helper function to create a collection, characterized by its collection id and the target address. Currently the number of collections cannot exceed the number of redistributors. Signed-off-by: Eric Auger <eric.auger@redhat.com> --- --- lib/arm/asm/gic-v3-its.h | 1 + lib/arm/gic-v3-its.c | 17 +++++++++++++++++ 2 files changed, 18 insertions(+)