treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / lima / lima_sched.h
blob1d814fecbcc0f6236ea616fe7a91c031c3708a8e
1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
2 /* Copyright 2017-2019 Qiang Yu <yuq825@gmail.com> */
4 #ifndef __LIMA_SCHED_H__
5 #define __LIMA_SCHED_H__
7 #include <drm/gpu_scheduler.h>
9 struct lima_vm;
11 struct lima_sched_task {
12 struct drm_sched_job base;
14 struct lima_vm *vm;
15 void *frame;
17 struct xarray deps;
18 unsigned long last_dep;
20 struct lima_bo **bos;
21 int num_bos;
23 /* pipe fence */
24 struct dma_fence *fence;
27 struct lima_sched_context {
28 struct drm_sched_entity base;
31 #define LIMA_SCHED_PIPE_MAX_MMU 8
32 #define LIMA_SCHED_PIPE_MAX_L2_CACHE 2
33 #define LIMA_SCHED_PIPE_MAX_PROCESSOR 8
35 struct lima_ip;
37 struct lima_sched_pipe {
38 struct drm_gpu_scheduler base;
40 u64 fence_context;
41 u32 fence_seqno;
42 spinlock_t fence_lock;
44 struct lima_sched_task *current_task;
45 struct lima_vm *current_vm;
47 struct lima_ip *mmu[LIMA_SCHED_PIPE_MAX_MMU];
48 int num_mmu;
50 struct lima_ip *l2_cache[LIMA_SCHED_PIPE_MAX_L2_CACHE];
51 int num_l2_cache;
53 struct lima_ip *processor[LIMA_SCHED_PIPE_MAX_PROCESSOR];
54 int num_processor;
56 struct lima_ip *bcast_processor;
57 struct lima_ip *bcast_mmu;
59 u32 done;
60 bool error;
61 atomic_t task;
63 int frame_size;
64 struct kmem_cache *task_slab;
66 int (*task_validate)(struct lima_sched_pipe *pipe, struct lima_sched_task *task);
67 void (*task_run)(struct lima_sched_pipe *pipe, struct lima_sched_task *task);
68 void (*task_fini)(struct lima_sched_pipe *pipe);
69 void (*task_error)(struct lima_sched_pipe *pipe);
70 void (*task_mmu_error)(struct lima_sched_pipe *pipe);
73 int lima_sched_task_init(struct lima_sched_task *task,
74 struct lima_sched_context *context,
75 struct lima_bo **bos, int num_bos,
76 struct lima_vm *vm);
77 void lima_sched_task_fini(struct lima_sched_task *task);
79 int lima_sched_context_init(struct lima_sched_pipe *pipe,
80 struct lima_sched_context *context,
81 atomic_t *guilty);
82 void lima_sched_context_fini(struct lima_sched_pipe *pipe,
83 struct lima_sched_context *context);
84 struct dma_fence *lima_sched_context_queue_task(struct lima_sched_context *context,
85 struct lima_sched_task *task);
87 int lima_sched_pipe_init(struct lima_sched_pipe *pipe, const char *name);
88 void lima_sched_pipe_fini(struct lima_sched_pipe *pipe);
89 void lima_sched_pipe_task_done(struct lima_sched_pipe *pipe);
91 static inline void lima_sched_pipe_mmu_error(struct lima_sched_pipe *pipe)
93 pipe->error = true;
94 pipe->task_mmu_error(pipe);
97 int lima_sched_slab_init(void);
98 void lima_sched_slab_fini(void);
100 #endif