mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Stop reaching into other components' registers directly and route those operations through the component that owns them. Move the timestamp/coherency helpers into panthor_gpu, add a doorbell helper, and update call sites accordingly. This keeps register knowledge local to each block and avoids spreading cross-component register accesses across the driver. This is a preparatory cleanup for using per-component iomem bases. v3: - Pick up Ack from Boris and R-bs from Liviu and Steve v2: - Fix incorrect spelling of timestamp helpers - Fix unintended trailing backslash Reviewed-by: Steven Price <steven.price@arm.com> Reviewed-by: Liviu Dudau <liviu.dudau@arm.com> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> Signed-off-by: Karunika Choo <karunika.choo@arm.com> Tested-by: Boris Brezillon <boris.brezillon@collabora.com> Signed-off-by: Liviu Dudau <liviu.dudau@arm.com> Link: https://patch.msgid.link/20260427155934.416502-4-karunika.choo@arm.com
64 lines
2.1 KiB
C
64 lines
2.1 KiB
C
/* 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);
|
|
void panthor_gpu_power_changed_off(struct panthor_device *ptdev);
|
|
int panthor_gpu_power_changed_on(struct panthor_device *ptdev);
|
|
|
|
u64 panthor_gpu_get_timestamp(struct panthor_device *ptdev);
|
|
u64 panthor_gpu_get_timestamp_offset(struct panthor_device *ptdev);
|
|
u64 panthor_gpu_get_cycle_count(struct panthor_device *ptdev);
|
|
|
|
int panthor_gpu_coherency_init(struct panthor_device *ptdev);
|
|
|
|
#endif
|