Skip to content

Commit 1100030

Browse files
superna9999Steven Price
authored andcommitted
drm/panfrost: add amlogic reset quirk callback
The T820, G31 & G52 GPUs integrated by Amlogic in the respective GXM, G12A/SM1 & G12B SoCs needs a quirk in the PWR registers at the GPU reset time. Since the Amlogic's integration of the GPU cores with the SoC is not publicly documented we do not know what does these values, but they permit having a fully functional GPU running with Panfrost. Signed-off-by: Neil Armstrong <[email protected]> [Steven: Fix typo in commit log] Reviewed-by: Steven Price <[email protected]> Reviewed-by: Alyssa Rosenzweig <[email protected]> Signed-off-by: Steven Price <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 91e8909 commit 1100030

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

drivers/gpu/drm/panfrost/panfrost_gpu.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,17 @@ int panfrost_gpu_soft_reset(struct panfrost_device *pfdev)
7676
return 0;
7777
}
7878

79+
void panfrost_gpu_amlogic_quirk(struct panfrost_device *pfdev)
80+
{
81+
/*
82+
* The Amlogic integrated Mali-T820, Mali-G31 & Mali-G52 needs
83+
* these undocumented bits in GPU_PWR_OVERRIDE1 to be set in order
84+
* to operate correctly.
85+
*/
86+
gpu_write(pfdev, GPU_PWR_KEY, GPU_PWR_KEY_UNLOCK);
87+
gpu_write(pfdev, GPU_PWR_OVERRIDE1, 0xfff | (0x20 << 16));
88+
}
89+
7990
static void panfrost_gpu_init_quirks(struct panfrost_device *pfdev)
8091
{
8192
u32 quirks = 0;

drivers/gpu/drm/panfrost/panfrost_gpu.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ int panfrost_gpu_soft_reset(struct panfrost_device *pfdev);
1616
void panfrost_gpu_power_on(struct panfrost_device *pfdev);
1717
void panfrost_gpu_power_off(struct panfrost_device *pfdev);
1818

19+
void panfrost_gpu_amlogic_quirk(struct panfrost_device *pfdev);
20+
1921
#endif

drivers/gpu/drm/panfrost/panfrost_regs.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
#define GPU_STATUS 0x34
5252
#define GPU_STATUS_PRFCNT_ACTIVE BIT(2)
5353
#define GPU_LATEST_FLUSH_ID 0x38
54+
#define GPU_PWR_KEY 0x50 /* (WO) Power manager key register */
55+
#define GPU_PWR_KEY_UNLOCK 0x2968A819
56+
#define GPU_PWR_OVERRIDE0 0x54 /* (RW) Power manager override settings */
57+
#define GPU_PWR_OVERRIDE1 0x58 /* (RW) Power manager override settings */
5458
#define GPU_FAULT_STATUS 0x3C
5559
#define GPU_FAULT_ADDRESS_LO 0x40
5660
#define GPU_FAULT_ADDRESS_HI 0x44

0 commit comments

Comments
 (0)