mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
drm/msm: deal with arbitrary # of cmd buffers
For some optimizations coming on the userspace side, splitting larger draw or gmem cmds into multiple cmdstream buffers, we need to support much more than the previous small/arbitrary limit. Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
e1e9db2ca7
commit
6b597ce2f7
@ -139,7 +139,7 @@ void adreno_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
|
|||||||
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
|
||||||
struct msm_drm_private *priv = gpu->dev->dev_private;
|
struct msm_drm_private *priv = gpu->dev->dev_private;
|
||||||
struct msm_ringbuffer *ring = gpu->rb;
|
struct msm_ringbuffer *ring = gpu->rb;
|
||||||
unsigned i, ibs = 0;
|
unsigned i;
|
||||||
|
|
||||||
for (i = 0; i < submit->nr_cmds; i++) {
|
for (i = 0; i < submit->nr_cmds; i++) {
|
||||||
switch (submit->cmd[i].type) {
|
switch (submit->cmd[i].type) {
|
||||||
@ -155,18 +155,11 @@ void adreno_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
|
|||||||
CP_INDIRECT_BUFFER_PFE : CP_INDIRECT_BUFFER_PFD, 2);
|
CP_INDIRECT_BUFFER_PFE : CP_INDIRECT_BUFFER_PFD, 2);
|
||||||
OUT_RING(ring, submit->cmd[i].iova);
|
OUT_RING(ring, submit->cmd[i].iova);
|
||||||
OUT_RING(ring, submit->cmd[i].size);
|
OUT_RING(ring, submit->cmd[i].size);
|
||||||
ibs++;
|
OUT_PKT2(ring);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* on a320, at least, we seem to need to pad things out to an
|
|
||||||
* even number of qwords to avoid issue w/ CP hanging on wrap-
|
|
||||||
* around:
|
|
||||||
*/
|
|
||||||
if (ibs % 2)
|
|
||||||
OUT_PKT2(ring);
|
|
||||||
|
|
||||||
OUT_PKT0(ring, REG_AXXX_CP_SCRATCH_REG2, 1);
|
OUT_PKT0(ring, REG_AXXX_CP_SCRATCH_REG2, 1);
|
||||||
OUT_RING(ring, submit->fence->seqno);
|
OUT_RING(ring, submit->fence->seqno);
|
||||||
|
|
||||||
|
@ -93,8 +93,6 @@ static inline bool is_vunmapable(struct msm_gem_object *msm_obj)
|
|||||||
return (msm_obj->vmap_count == 0) && msm_obj->vaddr;
|
return (msm_obj->vmap_count == 0) && msm_obj->vaddr;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MAX_CMDS 4
|
|
||||||
|
|
||||||
/* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
|
/* Created per submit-ioctl, to track bo's and cmdstream bufs, etc,
|
||||||
* associated with the cmdstream submission for synchronization (and
|
* associated with the cmdstream submission for synchronization (and
|
||||||
* make it easier to unwind when things go wrong, etc). This only
|
* make it easier to unwind when things go wrong, etc). This only
|
||||||
@ -116,7 +114,7 @@ struct msm_gem_submit {
|
|||||||
uint32_t size; /* in dwords */
|
uint32_t size; /* in dwords */
|
||||||
uint32_t iova;
|
uint32_t iova;
|
||||||
uint32_t idx; /* cmdstream buffer idx in bos[] */
|
uint32_t idx; /* cmdstream buffer idx in bos[] */
|
||||||
} cmd[MAX_CMDS];
|
} *cmd; /* array of size nr_cmds */
|
||||||
struct {
|
struct {
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
struct msm_gem_object *obj;
|
struct msm_gem_object *obj;
|
||||||
|
@ -29,10 +29,11 @@
|
|||||||
#define BO_PINNED 0x2000
|
#define BO_PINNED 0x2000
|
||||||
|
|
||||||
static struct msm_gem_submit *submit_create(struct drm_device *dev,
|
static struct msm_gem_submit *submit_create(struct drm_device *dev,
|
||||||
struct msm_gpu *gpu, int nr)
|
struct msm_gpu *gpu, int nr_bos, int nr_cmds)
|
||||||
{
|
{
|
||||||
struct msm_gem_submit *submit;
|
struct msm_gem_submit *submit;
|
||||||
int sz = sizeof(*submit) + (nr * sizeof(submit->bos[0]));
|
int sz = sizeof(*submit) + (nr_bos * sizeof(submit->bos[0])) +
|
||||||
|
(nr_cmds * sizeof(*submit->cmd));
|
||||||
|
|
||||||
submit = kmalloc(sz, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
|
submit = kmalloc(sz, GFP_TEMPORARY | __GFP_NOWARN | __GFP_NORETRY);
|
||||||
if (!submit)
|
if (!submit)
|
||||||
@ -42,6 +43,7 @@ static struct msm_gem_submit *submit_create(struct drm_device *dev,
|
|||||||
submit->gpu = gpu;
|
submit->gpu = gpu;
|
||||||
submit->fence = NULL;
|
submit->fence = NULL;
|
||||||
submit->pid = get_pid(task_pid(current));
|
submit->pid = get_pid(task_pid(current));
|
||||||
|
submit->cmd = (void *)&submit->bos[nr_bos];
|
||||||
|
|
||||||
/* initially, until copy_from_user() and bo lookup succeeds: */
|
/* initially, until copy_from_user() and bo lookup succeeds: */
|
||||||
submit->nr_bos = 0;
|
submit->nr_bos = 0;
|
||||||
@ -371,14 +373,11 @@ int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
|
|||||||
if (args->pipe != MSM_PIPE_3D0)
|
if (args->pipe != MSM_PIPE_3D0)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (args->nr_cmds > MAX_CMDS)
|
|
||||||
return -EINVAL;
|
|
||||||
|
|
||||||
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
submit = submit_create(dev, gpu, args->nr_bos);
|
submit = submit_create(dev, gpu, args->nr_bos, args->nr_cmds);
|
||||||
if (!submit) {
|
if (!submit) {
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto out_unlock;
|
goto out_unlock;
|
||||||
|
Loading…
Reference in New Issue
Block a user