1/*	$NetBSD: nouveau_nvkm_engine_disp_ovlygk104.c,v 1.3 2021/12/18 23:45:35 riastradh Exp $	*/
2
3/*
4 * Copyright 2012 Red Hat Inc.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Ben Skeggs
25 */
26#include <sys/cdefs.h>
27__KERNEL_RCSID(0, "$NetBSD: nouveau_nvkm_engine_disp_ovlygk104.c,v 1.3 2021/12/18 23:45:35 riastradh Exp $");
28
29#include "channv50.h"
30
31static const struct nv50_disp_mthd_list
32gk104_disp_ovly_mthd_base = {
33	.mthd = 0x0000,
34	.data = {
35		{ 0x0080, 0x665080 },
36		{ 0x0084, 0x665084 },
37		{ 0x0088, 0x665088 },
38		{ 0x008c, 0x66508c },
39		{ 0x0090, 0x665090 },
40		{ 0x0094, 0x665094 },
41		{ 0x00a0, 0x6650a0 },
42		{ 0x00a4, 0x6650a4 },
43		{ 0x00b0, 0x6650b0 },
44		{ 0x00b4, 0x6650b4 },
45		{ 0x00b8, 0x6650b8 },
46		{ 0x00c0, 0x6650c0 },
47		{ 0x00c4, 0x6650c4 },
48		{ 0x00e0, 0x6650e0 },
49		{ 0x00e4, 0x6650e4 },
50		{ 0x00e8, 0x6650e8 },
51		{ 0x0100, 0x665100 },
52		{ 0x0104, 0x665104 },
53		{ 0x0108, 0x665108 },
54		{ 0x010c, 0x66510c },
55		{ 0x0110, 0x665110 },
56		{ 0x0118, 0x665118 },
57		{ 0x011c, 0x66511c },
58		{ 0x0120, 0x665120 },
59		{ 0x0124, 0x665124 },
60		{ 0x0130, 0x665130 },
61		{ 0x0134, 0x665134 },
62		{ 0x0138, 0x665138 },
63		{ 0x013c, 0x66513c },
64		{ 0x0140, 0x665140 },
65		{ 0x0144, 0x665144 },
66		{ 0x0148, 0x665148 },
67		{ 0x014c, 0x66514c },
68		{ 0x0150, 0x665150 },
69		{ 0x0154, 0x665154 },
70		{ 0x0158, 0x665158 },
71		{ 0x015c, 0x66515c },
72		{ 0x0160, 0x665160 },
73		{ 0x0164, 0x665164 },
74		{ 0x0168, 0x665168 },
75		{ 0x016c, 0x66516c },
76		{ 0x0400, 0x665400 },
77		{ 0x0404, 0x665404 },
78		{ 0x0408, 0x665408 },
79		{ 0x040c, 0x66540c },
80		{ 0x0410, 0x665410 },
81		{}
82	}
83};
84
85const struct nv50_disp_chan_mthd
86gk104_disp_ovly_mthd = {
87	.name = "Overlay",
88	.addr = 0x001000,
89	.prev = -0x020000,
90	.data = {
91		{ "Global", 1, &gk104_disp_ovly_mthd_base },
92		{}
93	}
94};
95
96int
97gk104_disp_ovly_new(const struct nvkm_oclass *oclass, void *argv, u32 argc,
98		    struct nv50_disp *disp, struct nvkm_object **pobject)
99{
100	return nv50_disp_ovly_new_(&gf119_disp_dmac_func, &gk104_disp_ovly_mthd,
101				   disp, 5, oclass, argv, argc, pobject);
102}
103