diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2014-04-02 14:47:37 +0400 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2014-05-26 13:18:21 +0400 |
commit | d25a2a16f0889de4a1cd8639896f35dc9465f6f5 (patch) | |
tree | 3b7e1425317bbc6bd965a05c47e87aff4f2be26d /include/linux/platform_data/ipmmu-vmsa.h | |
parent | 4b660a7f5c8099d88d1a43d8ae138965112592c7 (diff) | |
download | linux-d25a2a16f0889de4a1cd8639896f35dc9465f6f5.tar.xz |
iommu: Add driver for Renesas VMSA-compatible IPMMU
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'include/linux/platform_data/ipmmu-vmsa.h')
-rw-r--r-- | include/linux/platform_data/ipmmu-vmsa.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/linux/platform_data/ipmmu-vmsa.h b/include/linux/platform_data/ipmmu-vmsa.h new file mode 100644 index 000000000000..5275b3ac6d37 --- /dev/null +++ b/include/linux/platform_data/ipmmu-vmsa.h @@ -0,0 +1,24 @@ +/* + * IPMMU VMSA Platform Data + * + * Copyright (C) 2014 Renesas Electronics Corporation + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + */ + +#ifndef __IPMMU_VMSA_H__ +#define __IPMMU_VMSA_H__ + +struct ipmmu_vmsa_master { + const char *name; + unsigned int utlb; +}; + +struct ipmmu_vmsa_platform_data { + const struct ipmmu_vmsa_master *masters; + unsigned int num_masters; +}; + +#endif /* __IPMMU_VMSA_H__ */ |