@@ -843,6 +843,7 @@ int arch_domain_teardown(struct domain *d)
void arch_domain_destroy(struct domain *d)
{
+ tee_free_domain_ctx(d);
/* IOMMU page table is shared with P2M, always call
* iommu_domain_destroy() before p2m_final_teardown().
*/
@@ -38,6 +38,7 @@ struct tee_mediator_ops {
*/
int (*domain_init)(struct domain *d);
int (*domain_teardown)(struct domain *d);
+ void (*free_domain_ctx)(struct domain *d);
/*
* Called during domain destruction to relinquish resources used
@@ -70,6 +71,7 @@ int tee_domain_teardown(struct domain *d);
int tee_relinquish_resources(struct domain *d);
uint16_t tee_get_type(void);
void init_tee_secondary(void);
+void tee_free_domain_ctx(struct domain *d);
#define REGISTER_TEE_MEDIATOR(_name, _namestr, _type, _ops) \
static const struct tee_mediator_desc __tee_desc_##_name __used \
@@ -113,6 +115,10 @@ static inline void init_tee_secondary(void)
{
}
+static inline void tee_free_domain_ctx(struct domain *d)
+{
+}
+
#endif /* CONFIG_TEE */
#endif /* __ARCH_ARM_TEE_TEE_H__ */
@@ -102,6 +102,12 @@ void __init init_tee_secondary(void)
cur_mediator->ops->init_secondary();
}
+void tee_free_domain_ctx(struct domain *d)
+{
+ if ( cur_mediator && cur_mediator->ops->free_domain_ctx)
+ cur_mediator->ops->free_domain_ctx(d);
+}
+
/*
* Local variables:
* mode: C