| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-08-17 | drm/amdgpu: re-implement fence_default_wait | monk.liu | 1 | -33/+4 | |
| use fence_wait_any to implement fence_default_wait Signed-off-by: monk.liu <[email protected]> Reviewed-by: Christian König <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: new implement for fence_wait_any (v2) | monk.liu | 1 | -43/+72 | |
| origninal method will sleep/schedule at the granurarity of HZ/2 and based on seq signal method, the new implement is based on kernel fance interface, no unnecessary schedule at all v2: replace logic of original amdgpu_fence_wait_any Signed-off-by: monk.liu <[email protected]> Reviewed-by: Christian König <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: use kernel fence interface when possible | monk.liu | 1 | -10/+3 | |
| Signed-off-by: monk.liu <[email protected]> Reviewed-by: Christian König <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: add amdgpu.sched_hw_submission option | Jammy Zhou | 1 | -1/+2 | |
| This option can be used to specify the max number of submissions in the active HW queue. The default value is 2 now. Signed-off-by: Jammy Zhou <[email protected]> Reviewed-by: Chunming Zhou <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: protect fence_process from multiple context | Chunming Zhou | 1 | -1/+5 | |
| fence_process may be called from kthread, user thread and interrupt context. it is possible to called concurrently, then will wake up fence queue multiple times. Signed-off-by: Chunming Zhou <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: add sched isr to fence process | Chunming Zhou | 1 | -1/+17 | |
| Signed-off-by: Chunming Zhou <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: add backend implementation of gpu scheduler (v2) | Chunming Zhou | 1 | -1/+2 | |
| v2: fix rebase breakage Signed-off-by: Chunming Zhou <[email protected]> Acked-by: Christian K?nig <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: add scheduler initialization | Alex Deucher | 1 | -0/+10 | |
| 1. Add kernel parameter option, default 0 2. Add scheduler initialization for amdgpu Signed-off-by: Chunming Zhou <[email protected]> Signed-off-by: Jammy Zhou <[email protected]> Acked-by: Christian K?nig <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: add fence suspend/resume functions | Alex Deucher | 1 | -0/+61 | |
| Added to: - handle draining the ring on suspend - properly enable/disable interrupts on suspend and resume Fix breakages from: commit 467ee3be53d240d08beed2e82a941e820c1ac323 Author: Chunming Zhou <[email protected]> Date: Mon Jun 1 14:14:32 2015 +0800 drm/amdgpu: always enable EOP interrupt v2 Tested-by: Audrey Grodzovsky <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: always enable EOP interrupt v2 | Chunming Zhou | 1 | -36/+6 | |
| v2 (chk): always enable EOP interrupt, independent of scheduler, remove now unused delayed_irq handling. Signed-off-by: Chunming Zhou <[email protected]> Signed-off-by: Christian König <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> | |||||
| 2015-08-17 | drm/amdgpu: remove amdgpu_fence_recreate | Christian König | 1 | -32/+0 | |
| It's not used any more. Signed-off-by: Christian König <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> Reviewed-by: Chunming Zhou <[email protected]> | |||||
| 2015-06-29 | drm/amdgpu: recreate fence from user seq | Christian König | 1 | -2/+35 | |
| And use common fence infrastructure for the wait. Signed-off-by: Christian König <[email protected]> Reviewed-by: Alex Deucher <[email protected]> Reviewed-by: Chunming Zhou <[email protected]> | |||||
| 2015-06-29 | drm/amdgpu: fix wrong type | monk.liu | 1 | -1/+2 | |
| Signed-off-by: monk.liu <[email protected]> Reviewed-by: Christian König <[email protected]> | |||||
| 2015-06-29 | drm/amdgpu: simplify fence debugfs output a bit | Christian König | 1 | -2/+3 | |
| Signed-off-by: Christian König <[email protected]> Reviewed-by: Alex Deucher <[email protected]> | |||||
| 2015-06-05 | drm/amdgpu: disable user fence interrupt (v2) | Chunming Zhou | 1 | -1/+3 | |
| amdgpu submits both kernel and user fences, but just need one interrupt, disable user fence interrupt and don't effect user fence. v2: fix merge error Signed-off-by: Chunming Zhou <[email protected]> Reviewed-by: Alex Deucher <[email protected]> | |||||
| 2015-06-05 | drm/amdgpu: add zero timeout check in amdgpu_fence_wait_seq_timeout | Jack Xiao | 1 | -0/+4 | |
| Signed-off-by: Jack Xiao <[email protected]> Reviewed-by: Jammy Zhou <[email protected]> | |||||
| 2015-06-03 | drm/amdgpu: drop AMDGPU_FENCE_SIGNALED_SEQ | Christian König | 1 | -12/+0 | |
| It's causing issues with VMID handling and comparing the fence value two times actually doesn't make handling faster. Port of radeon commit "d6d5c5b8364bcc4d52cddc68bcb0a330d2af20f3". Signed-off-by: Christian König <[email protected]> Reviewed-by: Alex Deucher <[email protected]> Reviewed-by: Monk Liu <[email protected]> | |||||
| 2015-06-03 | drm/amdgpu: rewording some left radeons | Jammy Zhou | 1 | -2/+2 | |
| Signed-off-by: Jammy Zhou <[email protected]> Reviewed-by: Christian König <[email protected]> | |||||
| 2015-06-03 | drm/amdgpu: add core driver (v4) | Alex Deucher | 1 | -0/+1139 | |
| This adds the non-asic specific core driver code. v2: remove extra kconfig option v3: implement minor fixes from Fengguang Wu v4: fix cast in amdgpu_ucode.c Acked-by: Christian König <[email protected]> Acked-by: Jammy Zhou <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||