mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
eec874ce5f
Previously, in an effort to defer initializing the gpu until firmware was available (ie. rootfs mounted), the gpu was not loaded at when the subdevice was bound. Which resulted that clks/etc were requested in a place that devm couldn't really help unwind if something failed. Instead move request_firmware() to gpu->hw_init() and construct the gpu earlier in adreno_bind(). To avoid the rest of the driver needing to be aware of a gpu that hasn't managed to load firmware and hw_init() yet, stash the gpu ptr in the adreno device's drvdata, and don't set priv->gpu() until hw_init() succeeds. Signed-off-by: Rob Clark <robdclark@gmail.com>
442 lines
12 KiB
C
442 lines
12 KiB
C
/*
|
|
* Copyright (C) 2013 Red Hat
|
|
* Author: Rob Clark <robdclark@gmail.com>
|
|
*
|
|
* Copyright (c) 2014 The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
* the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "adreno_gpu.h"
|
|
#include "msm_gem.h"
|
|
#include "msm_mmu.h"
|
|
|
|
#define RB_SIZE SZ_32K
|
|
#define RB_BLKSIZE 32
|
|
|
|
int adreno_get_param(struct msm_gpu *gpu, uint32_t param, uint64_t *value)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
|
|
switch (param) {
|
|
case MSM_PARAM_GPU_ID:
|
|
*value = adreno_gpu->info->revn;
|
|
return 0;
|
|
case MSM_PARAM_GMEM_SIZE:
|
|
*value = adreno_gpu->gmem;
|
|
return 0;
|
|
case MSM_PARAM_GMEM_BASE:
|
|
*value = 0x100000;
|
|
return 0;
|
|
case MSM_PARAM_CHIP_ID:
|
|
*value = adreno_gpu->rev.patchid |
|
|
(adreno_gpu->rev.minor << 8) |
|
|
(adreno_gpu->rev.major << 16) |
|
|
(adreno_gpu->rev.core << 24);
|
|
return 0;
|
|
case MSM_PARAM_MAX_FREQ:
|
|
*value = adreno_gpu->base.fast_rate;
|
|
return 0;
|
|
case MSM_PARAM_TIMESTAMP:
|
|
if (adreno_gpu->funcs->get_timestamp) {
|
|
int ret;
|
|
|
|
pm_runtime_get_sync(&gpu->pdev->dev);
|
|
ret = adreno_gpu->funcs->get_timestamp(gpu, value);
|
|
pm_runtime_put_autosuspend(&gpu->pdev->dev);
|
|
|
|
return ret;
|
|
}
|
|
return -EINVAL;
|
|
default:
|
|
DBG("%s: invalid param: %u", gpu->name, param);
|
|
return -EINVAL;
|
|
}
|
|
}
|
|
|
|
static int adreno_load_fw(struct adreno_gpu *adreno_gpu)
|
|
{
|
|
struct drm_device *drm = adreno_gpu->base.dev;
|
|
int ret;
|
|
|
|
if (adreno_gpu->pm4)
|
|
return 0;
|
|
|
|
ret = request_firmware(&adreno_gpu->pm4, adreno_gpu->info->pm4fw, drm->dev);
|
|
if (ret) {
|
|
dev_err(drm->dev, "failed to load %s PM4 firmware: %d\n",
|
|
adreno_gpu->info->pm4fw, ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = request_firmware(&adreno_gpu->pfp, adreno_gpu->info->pfpfw, drm->dev);
|
|
if (ret) {
|
|
dev_err(drm->dev, "failed to load %s PFP firmware: %d\n",
|
|
adreno_gpu->info->pfpfw, ret);
|
|
release_firmware(adreno_gpu->pm4);
|
|
adreno_gpu->pm4 = NULL;
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int adreno_hw_init(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
int ret;
|
|
|
|
DBG("%s", gpu->name);
|
|
|
|
ret = adreno_load_fw(adreno_gpu);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = msm_gem_get_iova(gpu->rb->bo, gpu->aspace, &gpu->rb_iova);
|
|
if (ret) {
|
|
gpu->rb_iova = 0;
|
|
dev_err(gpu->dev->dev, "could not map ringbuffer: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
/* reset ringbuffer: */
|
|
gpu->rb->cur = gpu->rb->start;
|
|
|
|
/* reset completed fence seqno: */
|
|
adreno_gpu->memptrs->fence = gpu->fctx->completed_fence;
|
|
adreno_gpu->memptrs->rptr = 0;
|
|
|
|
/* Setup REG_CP_RB_CNTL: */
|
|
adreno_gpu_write(adreno_gpu, REG_ADRENO_CP_RB_CNTL,
|
|
/* size is log2(quad-words): */
|
|
AXXX_CP_RB_CNTL_BUFSZ(ilog2(gpu->rb->size / 8)) |
|
|
AXXX_CP_RB_CNTL_BLKSZ(ilog2(RB_BLKSIZE / 8)) |
|
|
(adreno_is_a430(adreno_gpu) ? AXXX_CP_RB_CNTL_NO_UPDATE : 0));
|
|
|
|
/* Setup ringbuffer address: */
|
|
adreno_gpu_write64(adreno_gpu, REG_ADRENO_CP_RB_BASE,
|
|
REG_ADRENO_CP_RB_BASE_HI, gpu->rb_iova);
|
|
|
|
if (!adreno_is_a430(adreno_gpu)) {
|
|
adreno_gpu_write64(adreno_gpu, REG_ADRENO_CP_RB_RPTR_ADDR,
|
|
REG_ADRENO_CP_RB_RPTR_ADDR_HI,
|
|
rbmemptr(adreno_gpu, rptr));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint32_t get_wptr(struct msm_ringbuffer *ring)
|
|
{
|
|
return ring->cur - ring->start;
|
|
}
|
|
|
|
/* Use this helper to read rptr, since a430 doesn't update rptr in memory */
|
|
static uint32_t get_rptr(struct adreno_gpu *adreno_gpu)
|
|
{
|
|
if (adreno_is_a430(adreno_gpu))
|
|
return adreno_gpu->memptrs->rptr = adreno_gpu_read(
|
|
adreno_gpu, REG_ADRENO_CP_RB_RPTR);
|
|
else
|
|
return adreno_gpu->memptrs->rptr;
|
|
}
|
|
|
|
uint32_t adreno_last_fence(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
return adreno_gpu->memptrs->fence;
|
|
}
|
|
|
|
void adreno_recover(struct msm_gpu *gpu)
|
|
{
|
|
struct drm_device *dev = gpu->dev;
|
|
int ret;
|
|
|
|
// XXX pm-runtime?? we *need* the device to be off after this
|
|
// so maybe continuing to call ->pm_suspend/resume() is better?
|
|
|
|
gpu->funcs->pm_suspend(gpu);
|
|
gpu->funcs->pm_resume(gpu);
|
|
|
|
ret = msm_gpu_hw_init(gpu);
|
|
if (ret) {
|
|
dev_err(dev->dev, "gpu hw init failed: %d\n", ret);
|
|
/* hmm, oh well? */
|
|
}
|
|
}
|
|
|
|
void adreno_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
|
|
struct msm_file_private *ctx)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
struct msm_drm_private *priv = gpu->dev->dev_private;
|
|
struct msm_ringbuffer *ring = gpu->rb;
|
|
unsigned i;
|
|
|
|
for (i = 0; i < submit->nr_cmds; i++) {
|
|
switch (submit->cmd[i].type) {
|
|
case MSM_SUBMIT_CMD_IB_TARGET_BUF:
|
|
/* ignore IB-targets */
|
|
break;
|
|
case MSM_SUBMIT_CMD_CTX_RESTORE_BUF:
|
|
/* ignore if there has not been a ctx switch: */
|
|
if (priv->lastctx == ctx)
|
|
break;
|
|
case MSM_SUBMIT_CMD_BUF:
|
|
OUT_PKT3(ring, adreno_is_a430(adreno_gpu) ?
|
|
CP_INDIRECT_BUFFER_PFE : CP_INDIRECT_BUFFER_PFD, 2);
|
|
OUT_RING(ring, submit->cmd[i].iova);
|
|
OUT_RING(ring, submit->cmd[i].size);
|
|
OUT_PKT2(ring);
|
|
break;
|
|
}
|
|
}
|
|
|
|
OUT_PKT0(ring, REG_AXXX_CP_SCRATCH_REG2, 1);
|
|
OUT_RING(ring, submit->fence->seqno);
|
|
|
|
if (adreno_is_a3xx(adreno_gpu) || adreno_is_a4xx(adreno_gpu)) {
|
|
/* Flush HLSQ lazy updates to make sure there is nothing
|
|
* pending for indirect loads after the timestamp has
|
|
* passed:
|
|
*/
|
|
OUT_PKT3(ring, CP_EVENT_WRITE, 1);
|
|
OUT_RING(ring, HLSQ_FLUSH);
|
|
|
|
OUT_PKT3(ring, CP_WAIT_FOR_IDLE, 1);
|
|
OUT_RING(ring, 0x00000000);
|
|
}
|
|
|
|
OUT_PKT3(ring, CP_EVENT_WRITE, 3);
|
|
OUT_RING(ring, CACHE_FLUSH_TS);
|
|
OUT_RING(ring, rbmemptr(adreno_gpu, fence));
|
|
OUT_RING(ring, submit->fence->seqno);
|
|
|
|
/* we could maybe be clever and only CP_COND_EXEC the interrupt: */
|
|
OUT_PKT3(ring, CP_INTERRUPT, 1);
|
|
OUT_RING(ring, 0x80000000);
|
|
|
|
/* Workaround for missing irq issue on 8x16/a306. Unsure if the
|
|
* root cause is a platform issue or some a306 quirk, but this
|
|
* keeps things humming along:
|
|
*/
|
|
if (adreno_is_a306(adreno_gpu)) {
|
|
OUT_PKT3(ring, CP_WAIT_FOR_IDLE, 1);
|
|
OUT_RING(ring, 0x00000000);
|
|
OUT_PKT3(ring, CP_INTERRUPT, 1);
|
|
OUT_RING(ring, 0x80000000);
|
|
}
|
|
|
|
#if 0
|
|
if (adreno_is_a3xx(adreno_gpu)) {
|
|
/* Dummy set-constant to trigger context rollover */
|
|
OUT_PKT3(ring, CP_SET_CONSTANT, 2);
|
|
OUT_RING(ring, CP_REG(REG_A3XX_HLSQ_CL_KERNEL_GROUP_X_REG));
|
|
OUT_RING(ring, 0x00000000);
|
|
}
|
|
#endif
|
|
|
|
gpu->funcs->flush(gpu);
|
|
}
|
|
|
|
void adreno_flush(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
uint32_t wptr;
|
|
|
|
/*
|
|
* Mask wptr value that we calculate to fit in the HW range. This is
|
|
* to account for the possibility that the last command fit exactly into
|
|
* the ringbuffer and rb->next hasn't wrapped to zero yet
|
|
*/
|
|
wptr = get_wptr(gpu->rb) & ((gpu->rb->size / 4) - 1);
|
|
|
|
/* ensure writes to ringbuffer have hit system memory: */
|
|
mb();
|
|
|
|
adreno_gpu_write(adreno_gpu, REG_ADRENO_CP_RB_WPTR, wptr);
|
|
}
|
|
|
|
bool adreno_idle(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
uint32_t wptr = get_wptr(gpu->rb);
|
|
|
|
/* wait for CP to drain ringbuffer: */
|
|
if (!spin_until(get_rptr(adreno_gpu) == wptr))
|
|
return true;
|
|
|
|
/* TODO maybe we need to reset GPU here to recover from hang? */
|
|
DRM_ERROR("%s: timeout waiting to drain ringbuffer!\n", gpu->name);
|
|
return false;
|
|
}
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
void adreno_show(struct msm_gpu *gpu, struct seq_file *m)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
int i;
|
|
|
|
seq_printf(m, "revision: %d (%d.%d.%d.%d)\n",
|
|
adreno_gpu->info->revn, adreno_gpu->rev.core,
|
|
adreno_gpu->rev.major, adreno_gpu->rev.minor,
|
|
adreno_gpu->rev.patchid);
|
|
|
|
seq_printf(m, "fence: %d/%d\n", adreno_gpu->memptrs->fence,
|
|
gpu->fctx->last_fence);
|
|
seq_printf(m, "rptr: %d\n", get_rptr(adreno_gpu));
|
|
seq_printf(m, "rb wptr: %d\n", get_wptr(gpu->rb));
|
|
|
|
/* dump these out in a form that can be parsed by demsm: */
|
|
seq_printf(m, "IO:region %s 00000000 00020000\n", gpu->name);
|
|
for (i = 0; adreno_gpu->registers[i] != ~0; i += 2) {
|
|
uint32_t start = adreno_gpu->registers[i];
|
|
uint32_t end = adreno_gpu->registers[i+1];
|
|
uint32_t addr;
|
|
|
|
for (addr = start; addr <= end; addr++) {
|
|
uint32_t val = gpu_read(gpu, addr);
|
|
seq_printf(m, "IO:R %08x %08x\n", addr<<2, val);
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/* Dump common gpu status and scratch registers on any hang, to make
|
|
* the hangcheck logs more useful. The scratch registers seem always
|
|
* safe to read when GPU has hung (unlike some other regs, depending
|
|
* on how the GPU hung), and they are useful to match up to cmdstream
|
|
* dumps when debugging hangs:
|
|
*/
|
|
void adreno_dump_info(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
|
|
printk("revision: %d (%d.%d.%d.%d)\n",
|
|
adreno_gpu->info->revn, adreno_gpu->rev.core,
|
|
adreno_gpu->rev.major, adreno_gpu->rev.minor,
|
|
adreno_gpu->rev.patchid);
|
|
|
|
printk("fence: %d/%d\n", adreno_gpu->memptrs->fence,
|
|
gpu->fctx->last_fence);
|
|
printk("rptr: %d\n", get_rptr(adreno_gpu));
|
|
printk("rb wptr: %d\n", get_wptr(gpu->rb));
|
|
}
|
|
|
|
/* would be nice to not have to duplicate the _show() stuff with printk(): */
|
|
void adreno_dump(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
int i;
|
|
|
|
/* dump these out in a form that can be parsed by demsm: */
|
|
printk("IO:region %s 00000000 00020000\n", gpu->name);
|
|
for (i = 0; adreno_gpu->registers[i] != ~0; i += 2) {
|
|
uint32_t start = adreno_gpu->registers[i];
|
|
uint32_t end = adreno_gpu->registers[i+1];
|
|
uint32_t addr;
|
|
|
|
for (addr = start; addr <= end; addr++) {
|
|
uint32_t val = gpu_read(gpu, addr);
|
|
printk("IO:R %08x %08x\n", addr<<2, val);
|
|
}
|
|
}
|
|
}
|
|
|
|
static uint32_t ring_freewords(struct msm_gpu *gpu)
|
|
{
|
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
|
uint32_t size = gpu->rb->size / 4;
|
|
uint32_t wptr = get_wptr(gpu->rb);
|
|
uint32_t rptr = get_rptr(adreno_gpu);
|
|
return (rptr + (size - 1) - wptr) % size;
|
|
}
|
|
|
|
void adreno_wait_ring(struct msm_gpu *gpu, uint32_t ndwords)
|
|
{
|
|
if (spin_until(ring_freewords(gpu) >= ndwords))
|
|
DRM_ERROR("%s: timeout waiting for ringbuffer space\n", gpu->name);
|
|
}
|
|
|
|
int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev,
|
|
struct adreno_gpu *adreno_gpu, const struct adreno_gpu_funcs *funcs)
|
|
{
|
|
struct adreno_platform_config *config = pdev->dev.platform_data;
|
|
struct msm_gpu_config adreno_gpu_config = { 0 };
|
|
struct msm_gpu *gpu = &adreno_gpu->base;
|
|
int ret;
|
|
|
|
adreno_gpu->funcs = funcs;
|
|
adreno_gpu->info = adreno_info(config->rev);
|
|
adreno_gpu->gmem = adreno_gpu->info->gmem;
|
|
adreno_gpu->revn = adreno_gpu->info->revn;
|
|
adreno_gpu->rev = config->rev;
|
|
|
|
gpu->fast_rate = config->fast_rate;
|
|
gpu->bus_freq = config->bus_freq;
|
|
#ifdef DOWNSTREAM_CONFIG_MSM_BUS_SCALING
|
|
gpu->bus_scale_table = config->bus_scale_table;
|
|
#endif
|
|
|
|
DBG("fast_rate=%u, slow_rate=27000000, bus_freq=%u",
|
|
gpu->fast_rate, gpu->bus_freq);
|
|
|
|
adreno_gpu_config.ioname = "kgsl_3d0_reg_memory";
|
|
adreno_gpu_config.irqname = "kgsl_3d0_irq";
|
|
|
|
adreno_gpu_config.va_start = SZ_16M;
|
|
adreno_gpu_config.va_end = 0xffffffff;
|
|
|
|
adreno_gpu_config.ringsz = RB_SIZE;
|
|
|
|
pm_runtime_set_autosuspend_delay(&pdev->dev, DRM_MSM_INACTIVE_PERIOD);
|
|
pm_runtime_use_autosuspend(&pdev->dev);
|
|
pm_runtime_enable(&pdev->dev);
|
|
|
|
ret = msm_gpu_init(drm, pdev, &adreno_gpu->base, &funcs->base,
|
|
adreno_gpu->info->name, &adreno_gpu_config);
|
|
if (ret)
|
|
return ret;
|
|
|
|
adreno_gpu->memptrs = msm_gem_kernel_new(drm,
|
|
sizeof(*adreno_gpu->memptrs), MSM_BO_UNCACHED, gpu->aspace,
|
|
&adreno_gpu->memptrs_bo, &adreno_gpu->memptrs_iova);
|
|
|
|
if (IS_ERR(adreno_gpu->memptrs)) {
|
|
ret = PTR_ERR(adreno_gpu->memptrs);
|
|
adreno_gpu->memptrs = NULL;
|
|
dev_err(drm->dev, "could not allocate memptrs: %d\n", ret);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void adreno_gpu_cleanup(struct adreno_gpu *adreno_gpu)
|
|
{
|
|
struct msm_gpu *gpu = &adreno_gpu->base;
|
|
|
|
if (adreno_gpu->memptrs_bo) {
|
|
if (adreno_gpu->memptrs)
|
|
msm_gem_put_vaddr(adreno_gpu->memptrs_bo);
|
|
|
|
if (adreno_gpu->memptrs_iova)
|
|
msm_gem_put_iova(adreno_gpu->memptrs_bo, gpu->aspace);
|
|
|
|
drm_gem_object_unreference_unlocked(adreno_gpu->memptrs_bo);
|
|
}
|
|
release_firmware(adreno_gpu->pm4);
|
|
release_firmware(adreno_gpu->pfp);
|
|
|
|
msm_gpu_cleanup(gpu);
|
|
}
|