drm/nouveau/kms/nv50-: split core implementation by hardware class
[linux-block.git] / drivers / gpu / drm / nouveau / dispnv50 / head917d.c
1 /*
2  * Copyright 2018 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  */
22 #include "head.h"
23 #include "core.h"
24
25 static void
26 head917d_dither(struct nv50_head *head, struct nv50_head_atom *asyh)
27 {
28         struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
29         u32 *push;
30         if ((push = evo_wait(core, 2))) {
31                 evo_mthd(push, 0x04a0 + (head->base.index * 0x0300), 1);
32                 evo_data(push, asyh->dither.mode << 3 |
33                                asyh->dither.bits << 1 |
34                                asyh->dither.enable);
35                 evo_kick(push, core);
36         }
37 }
38
39 const struct nv50_head_func
40 head917d = {
41         .view = head907d_view,
42         .mode = head907d_mode,
43         .ilut_set = head907d_ilut_set,
44         .ilut_clr = head907d_ilut_clr,
45         .core_calc = head507d_core_calc,
46         .core_set = head907d_core_set,
47         .core_clr = head907d_core_clr,
48         .curs_set = head907d_curs_set,
49         .curs_clr = head907d_curs_clr,
50         .base = head907d_base,
51         .ovly = head907d_ovly,
52         .dither = head917d_dither,
53         .procamp = head907d_procamp,
54         .or = head907d_or,
55 };