mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 04:37:57 +07:00
f6ffbd4fc1
This replaces the repetitive GPL-2.0 license text in code and header files with the SPDX tags. Generated hardware headers aren't changed, as any changes there need to be done in the upstream rnndb repository. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
21 lines
512 B
C
21 lines
512 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2014-2018 Etnaviv Project
|
|
*/
|
|
|
|
#ifndef __ETNAVIV_IOMMU_H__
|
|
#define __ETNAVIV_IOMMU_H__
|
|
|
|
struct etnaviv_gpu;
|
|
struct etnaviv_iommu_domain;
|
|
|
|
struct etnaviv_iommu_domain *
|
|
etnaviv_iommuv1_domain_alloc(struct etnaviv_gpu *gpu);
|
|
void etnaviv_iommuv1_restore(struct etnaviv_gpu *gpu);
|
|
|
|
struct etnaviv_iommu_domain *
|
|
etnaviv_iommuv2_domain_alloc(struct etnaviv_gpu *gpu);
|
|
void etnaviv_iommuv2_restore(struct etnaviv_gpu *gpu);
|
|
|
|
#endif /* __ETNAVIV_IOMMU_H__ */
|