xref: /openbmc/linux/drivers/gpu/drm/nouveau/dispnv50/ovly907e.c (revision 4b4193256c8d3bc3a5397b5cd9494c2ad386317d)
153e0a3e7SBen Skeggs /*
253e0a3e7SBen Skeggs  * Copyright 2018 Red Hat Inc.
353e0a3e7SBen Skeggs  *
453e0a3e7SBen Skeggs  * Permission is hereby granted, free of charge, to any person obtaining a
553e0a3e7SBen Skeggs  * copy of this software and associated documentation files (the "Software"),
653e0a3e7SBen Skeggs  * to deal in the Software without restriction, including without limitation
753e0a3e7SBen Skeggs  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
853e0a3e7SBen Skeggs  * and/or sell copies of the Software, and to permit persons to whom the
953e0a3e7SBen Skeggs  * Software is furnished to do so, subject to the following conditions:
1053e0a3e7SBen Skeggs  *
1153e0a3e7SBen Skeggs  * The above copyright notice and this permission notice shall be included in
1253e0a3e7SBen Skeggs  * all copies or substantial portions of the Software.
1353e0a3e7SBen Skeggs  *
1453e0a3e7SBen Skeggs  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1553e0a3e7SBen Skeggs  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1653e0a3e7SBen Skeggs  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
1753e0a3e7SBen Skeggs  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
1853e0a3e7SBen Skeggs  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
1953e0a3e7SBen Skeggs  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2053e0a3e7SBen Skeggs  * OTHER DEALINGS IN THE SOFTWARE.
2153e0a3e7SBen Skeggs  */
2253e0a3e7SBen Skeggs #include "ovly.h"
232ce7f386SBen Skeggs #include "atom.h"
2453e0a3e7SBen Skeggs 
256d6e11e2SBen Skeggs #include <nvif/push507c.h>
266d6e11e2SBen Skeggs 
27*f844eb48SBen Skeggs #include <nvhw/class/cl907e.h>
28*f844eb48SBen Skeggs 
296d6e11e2SBen Skeggs static int
ovly907e_image_set(struct nv50_wndw * wndw,struct nv50_wndw_atom * asyw)302ce7f386SBen Skeggs ovly907e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
312ce7f386SBen Skeggs {
326d6e11e2SBen Skeggs 	struct nvif_push *push = wndw->wndw.push;
336d6e11e2SBen Skeggs 	int ret;
346d6e11e2SBen Skeggs 
356d6e11e2SBen Skeggs 	if ((ret = PUSH_WAIT(push, 12)))
366d6e11e2SBen Skeggs 		return ret;
376d6e11e2SBen Skeggs 
38*f844eb48SBen Skeggs 	PUSH_MTHD(push, NV907E, SET_PRESENT_CONTROL,
39*f844eb48SBen Skeggs 		  NVDEF(NV907E, SET_PRESENT_CONTROL, BEGIN_MODE, ASAP) |
40*f844eb48SBen Skeggs 		  NVVAL(NV907E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
41*f844eb48SBen Skeggs 
42*f844eb48SBen Skeggs 	PUSH_MTHD(push, NV907E, SET_CONTEXT_DMA_ISO, asyw->image.handle[0]);
43*f844eb48SBen Skeggs 
44*f844eb48SBen Skeggs 	PUSH_MTHD(push, NV907E, SET_COMPOSITION_CONTROL,
45*f844eb48SBen Skeggs 		  NVDEF(NV907E, SET_COMPOSITION_CONTROL, MODE, OPAQUE));
46*f844eb48SBen Skeggs 
47*f844eb48SBen Skeggs 	PUSH_MTHD(push, NV907E, SURFACE_SET_OFFSET, asyw->image.offset[0] >> 8);
48*f844eb48SBen Skeggs 
49*f844eb48SBen Skeggs 	PUSH_MTHD(push, NV907E, SURFACE_SET_SIZE,
50*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
51*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
52*f844eb48SBen Skeggs 
53*f844eb48SBen Skeggs 				SURFACE_SET_STORAGE,
54*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
55*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_STORAGE, PITCH, (asyw->image.pitch[0] >> 8)) |
56*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
57*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
58*f844eb48SBen Skeggs 
59*f844eb48SBen Skeggs 				SURFACE_SET_PARAMS,
60*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
61*f844eb48SBen Skeggs 		  NVVAL(NV907E, SURFACE_SET_PARAMS, COLOR_SPACE, asyw->image.colorspace));
626d6e11e2SBen Skeggs 	return 0;
632ce7f386SBen Skeggs }
642ce7f386SBen Skeggs 
652ce7f386SBen Skeggs const struct nv50_wndw_func
6653e0a3e7SBen Skeggs ovly907e = {
672ce7f386SBen Skeggs 	.acquire = ovly507e_acquire,
682ce7f386SBen Skeggs 	.release = ovly507e_release,
69fe8a2eecSBen Skeggs 	.ntfy_set = base507c_ntfy_set,
70bcae99c2SBen Skeggs 	.ntfy_clr = base507c_ntfy_clr,
712ce7f386SBen Skeggs 	.ntfy_reset = ovly827e_ntfy_reset,
722ce7f386SBen Skeggs 	.ntfy_wait_begun = ovly827e_ntfy_wait_begun,
732ce7f386SBen Skeggs 	.image_set = ovly907e_image_set,
748944d8b3SBen Skeggs 	.image_clr = base507c_image_clr,
752ce7f386SBen Skeggs 	.scale_set = ovly507e_scale_set,
763afb4db7SBen Skeggs 	.update = base507c_update,
7753e0a3e7SBen Skeggs };
7853e0a3e7SBen Skeggs 
7938a72243SIlia Mirkin static const u32
8038a72243SIlia Mirkin ovly907e_format[] = {
8138a72243SIlia Mirkin 	DRM_FORMAT_YUYV,
8238a72243SIlia Mirkin 	DRM_FORMAT_UYVY,
8338a72243SIlia Mirkin 	DRM_FORMAT_XRGB8888,
8438a72243SIlia Mirkin 	DRM_FORMAT_XRGB1555,
8538a72243SIlia Mirkin 	DRM_FORMAT_XBGR2101010,
8638a72243SIlia Mirkin 	DRM_FORMAT_XBGR16161616F,
8738a72243SIlia Mirkin 	0
8838a72243SIlia Mirkin };
8938a72243SIlia Mirkin 
9053e0a3e7SBen Skeggs int
ovly907e_new(struct nouveau_drm * drm,int head,s32 oclass,struct nv50_wndw ** pwndw)9153e0a3e7SBen Skeggs ovly907e_new(struct nouveau_drm *drm, int head, s32 oclass,
9253e0a3e7SBen Skeggs 	     struct nv50_wndw **pwndw)
9353e0a3e7SBen Skeggs {
9438a72243SIlia Mirkin 	return ovly507e_new_(&ovly907e, ovly907e_format, drm, head, oclass,
9553e0a3e7SBen Skeggs 			     0x00000004 << (head * 4), pwndw);
9653e0a3e7SBen Skeggs }
97