2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
#ifndef _ASM_SW64_DEVICE_H
|
|
|
|
|
#define _ASM_SW64_DEVICE_H
|
|
|
|
|
|
|
|
|
|
struct dev_archdata {
|
2026-01-29 22:25:33 +08:00
|
|
|
#if defined(CONFIG_SUNWAY_IOMMU) || defined(CONFIG_SUNWAY_IOMMU_V2)
|
2026-01-21 18:59:54 +08:00
|
|
|
void *iommu;
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct pdev_archdata {
|
|
|
|
|
};
|
2026-01-29 22:25:33 +08:00
|
|
|
#endif /* _ASM_SW64_DEVICE_H */
|