]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
drm/panfrost: Drop the pfdev argument passed to panfrost_exception_name()
authorBoris Brezillon <boris.brezillon@collabora.com>
Wed, 30 Jun 2021 06:27:40 +0000 (08:27 +0200)
committerBoris Brezillon <boris.brezillon@collabora.com>
Thu, 1 Jul 2021 06:53:28 +0000 (08:53 +0200)
Currently unused. We'll add it back if we need per-GPU definitions.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Steven Price <steven.price@arm.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210630062751.2832545-6-boris.brezillon@collabora.com
drivers/gpu/drm/panfrost/panfrost_device.c
drivers/gpu/drm/panfrost/panfrost_device.h
drivers/gpu/drm/panfrost/panfrost_gpu.c
drivers/gpu/drm/panfrost/panfrost_job.c
drivers/gpu/drm/panfrost/panfrost_mmu.c

index a2a09c51eed7bde4d65f5a96c4787b6a7283d083..f7f5ca94f910f7e024c4b90a465f07e2da9d4a68 100644 (file)
@@ -292,7 +292,7 @@ void panfrost_device_fini(struct panfrost_device *pfdev)
        panfrost_clk_fini(pfdev);
 }
 
-const char *panfrost_exception_name(struct panfrost_device *pfdev, u32 exception_code)
+const char *panfrost_exception_name(u32 exception_code)
 {
        switch (exception_code) {
                /* Non-Fault Status code */
index 8b2cdb8c701d8d4bf03ae68b6a1b0c0ed3de120a..2fe1550da7f869533af7a35c76d1a6673575a77b 100644 (file)
@@ -173,6 +173,6 @@ void panfrost_device_reset(struct panfrost_device *pfdev);
 int panfrost_device_resume(struct device *dev);
 int panfrost_device_suspend(struct device *dev);
 
-const char *panfrost_exception_name(struct panfrost_device *pfdev, u32 exception_code);
+const char *panfrost_exception_name(u32 exception_code);
 
 #endif
index 0e70e27fd8c367f3f64dd940ec8349297ff10759..26e4196b6c90e06d3c5a7c42a7db59658f2d6c7d 100644 (file)
@@ -33,7 +33,7 @@ static irqreturn_t panfrost_gpu_irq_handler(int irq, void *data)
                address |= gpu_read(pfdev, GPU_FAULT_ADDRESS_LO);
 
                dev_warn(pfdev->dev, "GPU Fault 0x%08x (%s) at 0x%016llx\n",
-                        fault_status & 0xFF, panfrost_exception_name(pfdev, fault_status),
+                        fault_status & 0xFF, panfrost_exception_name(fault_status),
                         address);
 
                if (state & GPU_IRQ_MULTIPLE_FAULT)
index 3c1dbae3ebdd1f583c93271ba58bf7ea3a49e1ac..ea3432ffde4035d3c7871b28ffcfa6a090f2d286 100644 (file)
@@ -489,7 +489,7 @@ static irqreturn_t panfrost_job_irq_handler(int irq, void *data)
 
                        dev_err(pfdev->dev, "js fault, js=%d, status=%s, head=0x%x, tail=0x%x",
                                j,
-                               panfrost_exception_name(pfdev, job_read(pfdev, JS_STATUS(j))),
+                               panfrost_exception_name(job_read(pfdev, JS_STATUS(j))),
                                job_read(pfdev, JS_HEAD_LO(j)),
                                job_read(pfdev, JS_TAIL_LO(j)));
 
index 569509c2ba27af4054ab9f918be0cf078ec023bc..2a9bf30edc9d1ca80857c3d261adae3e91815c6e 100644 (file)
@@ -675,7 +675,7 @@ static irqreturn_t panfrost_mmu_irq_handler_thread(int irq, void *data)
                                "TODO",
                                fault_status,
                                (fault_status & (1 << 10) ? "DECODER FAULT" : "SLAVE FAULT"),
-                               exception_type, panfrost_exception_name(pfdev, exception_type),
+                               exception_type, panfrost_exception_name(exception_type),
                                access_type, access_type_name(pfdev, fault_status),
                                source_id);