aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gud/MobiCoreKernelApi/wsm.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gud/MobiCoreKernelApi/wsm.h')
-rw-r--r--drivers/gud/MobiCoreKernelApi/wsm.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/drivers/gud/MobiCoreKernelApi/wsm.h b/drivers/gud/MobiCoreKernelApi/wsm.h
new file mode 100644
index 0000000..e30e45c
--- /dev/null
+++ b/drivers/gud/MobiCoreKernelApi/wsm.h
@@ -0,0 +1,34 @@
+/** @addtogroup MCD_MCDIMPL_DAEMON_SRV
+ * @{
+ * @file
+ *
+ * World shared memory definitions.
+ *
+ * <!-- Copyright Giesecke & Devrient GmbH 2009 - 2011 -->
+ */
+#ifndef WSM_H_
+#define WSM_H_
+
+#include "common.h"
+#include <linux/list.h>
+
+typedef struct {
+ addr_t virtAddr;
+ uint32_t len;
+ uint32_t handle;
+ addr_t physAddr;
+ struct list_head list;
+} wsm_t;
+
+typedef wsm_t *wsm_ptr;
+typedef struct list_head wsmVector_t;
+
+wsm_ptr wsm_create(
+ addr_t virtAddr,
+ uint32_t len,
+ uint32_t handle,
+ addr_t physAddr //= NULL this may be unknown, so is can be omitted.
+);
+#endif /* WSM_H_ */
+
+/** @} */