ipmmu-vmsa.h 557 B

123456789101112131415161718192021222324
  1. /*
  2. * IPMMU VMSA Platform Data
  3. *
  4. * Copyright (C) 2014 Renesas Electronics Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; version 2 of the License.
  9. */
  10. #ifndef __IPMMU_VMSA_H__
  11. #define __IPMMU_VMSA_H__
  12. struct ipmmu_vmsa_master {
  13. const char *name;
  14. unsigned int utlb;
  15. };
  16. struct ipmmu_vmsa_platform_data {
  17. const struct ipmmu_vmsa_master *masters;
  18. unsigned int num_masters;
  19. };
  20. #endif /* __IPMMU_VMSA_H__ */