| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* SPDX-License-Identifier: GPL-2.0 or MIT */
- /* Copyright 2018 Marty E. Plummer <hanetzer@startmail.com> */
- /* Copyright 2019 Collabora ltd. */
- #ifndef __PANTHOR_GPU_H__
- #define __PANTHOR_GPU_H__
- #include <linux/types.h>
- struct panthor_device;
- int panthor_gpu_init(struct panthor_device *ptdev);
- void panthor_gpu_unplug(struct panthor_device *ptdev);
- void panthor_gpu_suspend(struct panthor_device *ptdev);
- void panthor_gpu_resume(struct panthor_device *ptdev);
- int panthor_gpu_block_power_on(struct panthor_device *ptdev,
- const char *blk_name,
- u32 pwron_reg, u32 pwrtrans_reg,
- u32 rdy_reg, u64 mask, u32 timeout_us);
- int panthor_gpu_block_power_off(struct panthor_device *ptdev,
- const char *blk_name,
- u32 pwroff_reg, u32 pwrtrans_reg,
- u64 mask, u32 timeout_us);
- /**
- * panthor_gpu_power_on() - Power on the GPU block.
- *
- * Return: 0 on success, a negative error code otherwise.
- */
- #define panthor_gpu_power_on(ptdev, type, mask, timeout_us) \
- panthor_gpu_block_power_on(ptdev, #type, \
- type ## _PWRON, \
- type ## _PWRTRANS, \
- type ## _READY, \
- mask, timeout_us)
- /**
- * panthor_gpu_power_off() - Power off the GPU block.
- *
- * Return: 0 on success, a negative error code otherwise.
- */
- #define panthor_gpu_power_off(ptdev, type, mask, timeout_us) \
- panthor_gpu_block_power_off(ptdev, #type, \
- type ## _PWROFF, \
- type ## _PWRTRANS, \
- mask, timeout_us)
- void panthor_gpu_l2_power_off(struct panthor_device *ptdev);
- int panthor_gpu_l2_power_on(struct panthor_device *ptdev);
- int panthor_gpu_flush_caches(struct panthor_device *ptdev,
- u32 l2, u32 lsc, u32 other);
- int panthor_gpu_soft_reset(struct panthor_device *ptdev);
- #endif
|