Merge branch 'linux-5.9' of git://github.com/skeggsb/linux into drm-next
- Conversion of all push buffer emission to a new set of macros, with better safety, sanity-checking, debug ability, and the use of NVIDIA's class headers. The headers have been trimmed to just what we use as they're rather extensive, the full versions can be found on NVIDIA's github[1]. - Proper push buffer space management for EVO/NVD channels. - Fixes to firmware loading behaviour in odd situations (various combinations of missing/incompatible FW). - runpm reference leak fixes - crc compile fixes without debugfs - 2MiB system memory pages support on Pascal and newer - misc other cleanups Signed-off-by: Dave Airlie <airlied@redhat.com> From: Ben Skeggs <skeggsb@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/ <CACAvsv6XYgiXDK6TpvsjMo+8AkrMw7ZxmA=vKk6Gd-xuv6txBA@mail.gmail.com
This commit is contained in:
commit
fc01d1f10b
|
@ -32,6 +32,13 @@ nouveau-y += nouveau_vga.o
|
|||
|
||||
# DRM - memory management
|
||||
nouveau-y += nouveau_bo.o
|
||||
nouveau-y += nouveau_bo0039.o
|
||||
nouveau-y += nouveau_bo5039.o
|
||||
nouveau-y += nouveau_bo74c1.o
|
||||
nouveau-y += nouveau_bo85b5.o
|
||||
nouveau-y += nouveau_bo9039.o
|
||||
nouveau-y += nouveau_bo90b5.o
|
||||
nouveau-y += nouveau_boa0b5.o
|
||||
nouveau-y += nouveau_gem.o
|
||||
nouveau-$(CONFIG_DRM_NOUVEAU_SVM) += nouveau_svm.o
|
||||
nouveau-$(CONFIG_DRM_NOUVEAU_SVM) += nouveau_dmem.o
|
||||
|
|
|
@ -76,6 +76,14 @@ config NOUVEAU_DEBUG_MMU
|
|||
help
|
||||
Say Y here if you want to enable verbose MMU debug output.
|
||||
|
||||
config NOUVEAU_DEBUG_PUSH
|
||||
bool "Enable additional push buffer debugging"
|
||||
depends on DRM_NOUVEAU
|
||||
default n
|
||||
help
|
||||
Say Y here if you want to enable verbose push buffer debug output
|
||||
and sanity checks.
|
||||
|
||||
config DRM_NOUVEAU_BACKLIGHT
|
||||
bool "Support for backlight control"
|
||||
depends on DRM_NOUVEAU
|
||||
|
|
|
@ -44,6 +44,8 @@
|
|||
#include <subdev/bios/pll.h>
|
||||
#include <subdev/clk.h>
|
||||
|
||||
#include <nvif/push006c.h>
|
||||
|
||||
#include <nvif/event.h>
|
||||
#include <nvif/cl0046.h>
|
||||
|
||||
|
@ -759,7 +761,7 @@ static void nv_crtc_destroy(struct drm_crtc *crtc)
|
|||
nouveau_bo_unmap(nv_crtc->cursor.nvbo);
|
||||
nouveau_bo_unpin(nv_crtc->cursor.nvbo);
|
||||
nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
|
||||
nvif_notify_fini(&nv_crtc->vblank);
|
||||
nvif_notify_dtor(&nv_crtc->vblank);
|
||||
kfree(nv_crtc);
|
||||
}
|
||||
|
||||
|
@ -1105,6 +1107,7 @@ nv04_page_flip_emit(struct nouveau_channel *chan,
|
|||
struct nouveau_fence_chan *fctx = chan->fence;
|
||||
struct nouveau_drm *drm = chan->drm;
|
||||
struct drm_device *dev = drm->dev;
|
||||
struct nvif_push *push = chan->chan.push;
|
||||
unsigned long flags;
|
||||
int ret;
|
||||
|
||||
|
@ -1119,13 +1122,12 @@ nv04_page_flip_emit(struct nouveau_channel *chan,
|
|||
goto fail;
|
||||
|
||||
/* Emit the pageflip */
|
||||
ret = RING_SPACE(chan, 2);
|
||||
ret = PUSH_WAIT(push, 2);
|
||||
if (ret)
|
||||
goto fail;
|
||||
|
||||
BEGIN_NV04(chan, NvSubSw, NV_SW_PAGE_FLIP, 1);
|
||||
OUT_RING (chan, 0x00000000);
|
||||
FIRE_RING (chan);
|
||||
PUSH_NVSQ(push, NV_SW, NV_SW_PAGE_FLIP, 0x00000000);
|
||||
PUSH_KICK(push);
|
||||
|
||||
ret = nouveau_fence_new(chan, false, pfence);
|
||||
if (ret)
|
||||
|
@ -1155,6 +1157,7 @@ nv04_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|||
struct nouveau_cli *cli;
|
||||
struct nouveau_fence *fence;
|
||||
struct nv04_display *dispnv04 = nv04_display(dev);
|
||||
struct nvif_push *push;
|
||||
int head = nouveau_crtc(crtc)->index;
|
||||
int ret;
|
||||
|
||||
|
@ -1162,6 +1165,7 @@ nv04_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|||
if (!chan)
|
||||
return -ENODEV;
|
||||
cli = (void *)chan->user.client;
|
||||
push = chan->chan.push;
|
||||
|
||||
s = kzalloc(sizeof(*s), GFP_KERNEL);
|
||||
if (!s)
|
||||
|
@ -1203,18 +1207,14 @@ nv04_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
|
|||
|
||||
/* Emit a page flip */
|
||||
if (swap_interval) {
|
||||
ret = RING_SPACE(chan, 8);
|
||||
ret = PUSH_WAIT(push, 8);
|
||||
if (ret)
|
||||
goto fail_unreserve;
|
||||
|
||||
BEGIN_NV04(chan, NvSubImageBlit, 0x012c, 1);
|
||||
OUT_RING (chan, 0);
|
||||
BEGIN_NV04(chan, NvSubImageBlit, 0x0134, 1);
|
||||
OUT_RING (chan, head);
|
||||
BEGIN_NV04(chan, NvSubImageBlit, 0x0100, 1);
|
||||
OUT_RING (chan, 0);
|
||||
BEGIN_NV04(chan, NvSubImageBlit, 0x0130, 1);
|
||||
OUT_RING (chan, 0);
|
||||
PUSH_NVSQ(push, NV05F, 0x012c, 0);
|
||||
PUSH_NVSQ(push, NV05F, 0x0134, head);
|
||||
PUSH_NVSQ(push, NV05F, 0x0100, 0);
|
||||
PUSH_NVSQ(push, NV05F, 0x0130, 0);
|
||||
}
|
||||
|
||||
nouveau_bo_ref(new_bo, &dispnv04->image[head]);
|
||||
|
@ -1351,7 +1351,7 @@ nv04_crtc_create(struct drm_device *dev, int crtc_num)
|
|||
|
||||
nv04_cursor_init(nv_crtc);
|
||||
|
||||
ret = nvif_notify_init(&disp->disp.object, nv04_crtc_vblank_handler,
|
||||
ret = nvif_notify_ctor(&disp->disp.object, "kmsVbl", nv04_crtc_vblank_handler,
|
||||
false, NV04_DISP_NTFY_VBLANK,
|
||||
&(struct nvif_notify_head_req_v0) {
|
||||
.head = nv_crtc->index,
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include "nouveau_connector.h"
|
||||
#include "nouveau_bo.h"
|
||||
#include "nouveau_gem.h"
|
||||
#include "nouveau_chan.h"
|
||||
|
||||
#include <nvif/if0004.h>
|
||||
|
||||
|
@ -178,7 +179,7 @@ nv04_display_destroy(struct drm_device *dev)
|
|||
|
||||
nouveau_hw_save_vga_fonts(dev, 0);
|
||||
|
||||
nvif_notify_fini(&disp->flip);
|
||||
nvif_notify_dtor(&disp->flip);
|
||||
|
||||
nouveau_display(dev)->priv = NULL;
|
||||
kfree(disp);
|
||||
|
@ -214,8 +215,8 @@ nv04_display_create(struct drm_device *dev)
|
|||
dev->driver_features &= ~DRIVER_ATOMIC;
|
||||
|
||||
/* Request page flip completion event. */
|
||||
if (drm->nvsw.client) {
|
||||
nvif_notify_init(&drm->nvsw, nv04_flip_complete,
|
||||
if (drm->channel) {
|
||||
nvif_notify_ctor(&drm->channel->nvsw, "kmsFlip", nv04_flip_complete,
|
||||
false, NV04_NVSW_NTFY_UEVENT,
|
||||
NULL, 0, 0, &disp->flip);
|
||||
}
|
||||
|
|
|
@ -11,14 +11,10 @@ int base507c_acquire(struct nv50_wndw *, struct nv50_wndw_atom *,
|
|||
struct nv50_head_atom *);
|
||||
void base507c_release(struct nv50_wndw *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
void base507c_sema_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void base507c_sema_clr(struct nv50_wndw *);
|
||||
void base507c_ntfy_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void base507c_ntfy_clr(struct nv50_wndw *);
|
||||
void base507c_xlut_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void base507c_xlut_clr(struct nv50_wndw *);
|
||||
void base507c_image_clr(struct nv50_wndw *);
|
||||
void base507c_update(struct nv50_wndw *, u32 *);
|
||||
int base507c_sema_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int base507c_sema_clr(struct nv50_wndw *);
|
||||
int base507c_xlut_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int base507c_xlut_clr(struct nv50_wndw *);
|
||||
|
||||
int base827c_new(struct nouveau_drm *, int, s32, struct nv50_wndw **);
|
||||
|
||||
|
|
|
@ -23,91 +23,122 @@
|
|||
|
||||
#include <nvif/cl507c.h>
|
||||
#include <nvif/event.h>
|
||||
#include <nvif/push507c.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
#include <nvhw/class/cl507c.h>
|
||||
|
||||
#include <drm/drm_atomic_helper.h>
|
||||
#include <drm/drm_fourcc.h>
|
||||
#include <drm/drm_plane_helper.h>
|
||||
|
||||
#include "nouveau_bo.h"
|
||||
|
||||
void
|
||||
int
|
||||
base507c_update(struct nv50_wndw *wndw, u32 *interlock)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x0080, 1);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_CORE]);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, UPDATE, interlock[NV50_DISP_INTERLOCK_CORE]);
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_image_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 4))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_PRESENT_CONTROL,
|
||||
NVDEF(NV507C, SET_PRESENT_CONTROL, BEGIN_MODE, NON_TEARING) |
|
||||
NVVAL(NV507C, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, 0));
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_CONTEXT_DMA_ISO, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
base507c_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 13))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, asyw->image.mode << 8 |
|
||||
asyw->image.interval << 4);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
if (asyw->image.format == 0xca) {
|
||||
evo_mthd(push, 0x0110, 2);
|
||||
evo_data(push, 1);
|
||||
evo_data(push, 0x6400);
|
||||
} else {
|
||||
evo_mthd(push, 0x0110, 2);
|
||||
evo_data(push, 0);
|
||||
evo_data(push, 0);
|
||||
}
|
||||
evo_mthd(push, 0x0800, 5);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 20 |
|
||||
(asyw->image.pitch[0] >> 8) << 8 |
|
||||
asyw->image.blocks[0] << 8 |
|
||||
asyw->image.blockh);
|
||||
evo_data(push, asyw->image.kind << 16 |
|
||||
asyw->image.format << 8);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 13)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_PRESENT_CONTROL,
|
||||
NVVAL(NV507C, SET_PRESENT_CONTROL, BEGIN_MODE, asyw->image.mode) |
|
||||
NVVAL(NV507C, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_CONTEXT_DMA_ISO, asyw->image.handle[0]);
|
||||
|
||||
if (asyw->image.format == NV507C_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16) {
|
||||
PUSH_MTHD(push, NV507C, SET_PROCESSING,
|
||||
NVDEF(NV507C, SET_PROCESSING, USE_GAIN_OFS, ENABLE),
|
||||
|
||||
SET_CONVERSION,
|
||||
NVVAL(NV507C, SET_CONVERSION, GAIN, 0) |
|
||||
NVVAL(NV507C, SET_CONVERSION, OFS, 0x64));
|
||||
} else {
|
||||
PUSH_MTHD(push, NV507C, SET_PROCESSING,
|
||||
NVDEF(NV507C, SET_PROCESSING, USE_GAIN_OFS, DISABLE));
|
||||
}
|
||||
|
||||
PUSH_MTHD(push, NV507C, SURFACE_SET_OFFSET(0, 0), asyw->image.offset[0] >> 8);
|
||||
|
||||
PUSH_MTHD(push, NV507C, SURFACE_SET_SIZE(0),
|
||||
NVVAL(NV507C, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NV507C, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SURFACE_SET_STORAGE(0),
|
||||
NVVAL(NV507C, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout) |
|
||||
NVVAL(NV507C, SURFACE_SET_STORAGE, PITCH, asyw->image.pitch[0] >> 8) |
|
||||
NVVAL(NV507C, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NV507C, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh),
|
||||
|
||||
SURFACE_SET_PARAMS(0),
|
||||
NVVAL(NV507C, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVDEF(NV507C, SURFACE_SET_PARAMS, SUPER_SAMPLE, X1_AA) |
|
||||
NVDEF(NV507C, SURFACE_SET_PARAMS, GAMMA, LINEAR) |
|
||||
NVDEF(NV507C, SURFACE_SET_PARAMS, LAYOUT, FRM) |
|
||||
NVVAL(NV507C, SURFACE_SET_PARAMS, KIND, asyw->image.kind) |
|
||||
NVDEF(NV507C, SURFACE_SET_PARAMS, PART_STRIDE, PARTSTRIDE_256));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_xlut_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x00e0, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_BASE_LUT_LO,
|
||||
NVDEF(NV507C, SET_BASE_LUT_LO, ENABLE, DISABLE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_xlut_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x00e0, 1);
|
||||
evo_data(push, 0x40000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_BASE_LUT_LO,
|
||||
NVDEF(NV507C, SET_BASE_LUT_LO, ENABLE, USE_CORE_LUT));
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -115,66 +146,77 @@ base507c_ntfy_wait_begun(struct nouveau_bo *bo, u32 offset,
|
|||
struct nvif_device *device)
|
||||
{
|
||||
s64 time = nvif_msec(device, 2000ULL,
|
||||
u32 data = nouveau_bo_rd32(bo, offset / 4);
|
||||
if ((data & 0xc0000000) == 0x40000000)
|
||||
if (NVBO_TD32(bo, offset, NV_DISP_BASE_NOTIFIER_1, _0, STATUS, ==, BEGUN))
|
||||
break;
|
||||
usleep_range(1, 2);
|
||||
);
|
||||
return time < 0 ? time : 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_ntfy_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x00a4, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_CONTEXT_DMA_NOTIFIER, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_ntfy_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 3))) {
|
||||
evo_mthd(push, 0x00a0, 2);
|
||||
evo_data(push, asyw->ntfy.awaken << 30 | asyw->ntfy.offset);
|
||||
evo_data(push, asyw->ntfy.handle);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 3)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_NOTIFIER_CONTROL,
|
||||
NVVAL(NV507C, SET_NOTIFIER_CONTROL, MODE, asyw->ntfy.awaken) |
|
||||
NVVAL(NV507C, SET_NOTIFIER_CONTROL, OFFSET, asyw->ntfy.offset >> 2),
|
||||
|
||||
SET_CONTEXT_DMA_NOTIFIER, asyw->ntfy.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
base507c_ntfy_reset(struct nouveau_bo *bo, u32 offset)
|
||||
{
|
||||
nouveau_bo_wr32(bo, offset / 4, 0x00000000);
|
||||
NVBO_WR32(bo, offset, NV_DISP_BASE_NOTIFIER_1, _0,
|
||||
NVDEF(NV_DISP_BASE_NOTIFIER_1, _0, STATUS, NOT_BEGUN));
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_sema_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x0094, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_CONTEXT_DMA_SEMAPHORE, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
base507c_sema_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 5))) {
|
||||
evo_mthd(push, 0x0088, 4);
|
||||
evo_data(push, asyw->sema.offset);
|
||||
evo_data(push, asyw->sema.acquire);
|
||||
evo_data(push, asyw->sema.release);
|
||||
evo_data(push, asyw->sema.handle);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507C, SET_SEMAPHORE_CONTROL, asyw->sema.offset,
|
||||
SET_SEMAPHORE_ACQUIRE, asyw->sema.acquire,
|
||||
SET_SEMAPHORE_RELEASE, asyw->sema.release,
|
||||
SET_CONTEXT_DMA_SEMAPHORE, asyw->sema.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -282,8 +324,9 @@ base507c_new_(const struct nv50_wndw_func *func, const u32 *format,
|
|||
return ret;
|
||||
}
|
||||
|
||||
ret = nvif_notify_init(&wndw->wndw.base.user, wndw->notify.func,
|
||||
false, NV50_DISP_BASE_CHANNEL_DMA_V0_NTFY_UEVENT,
|
||||
ret = nvif_notify_ctor(&wndw->wndw.base.user, "kmsBaseNtfy",
|
||||
wndw->notify.func, false,
|
||||
NV50_DISP_BASE_CHANNEL_DMA_V0_NTFY_UEVENT,
|
||||
&(struct nvif_notify_uevent_req) {},
|
||||
sizeof(struct nvif_notify_uevent_req),
|
||||
sizeof(struct nvif_notify_uevent_rep),
|
||||
|
|
|
@ -21,36 +21,56 @@
|
|||
*/
|
||||
#include "base.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl827c.h>
|
||||
|
||||
static int
|
||||
base827c_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 13))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, asyw->image.mode << 8 |
|
||||
asyw->image.interval << 4);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
if (asyw->image.format == 0xca) {
|
||||
evo_mthd(push, 0x0110, 2);
|
||||
evo_data(push, 1);
|
||||
evo_data(push, 0x6400);
|
||||
} else {
|
||||
evo_mthd(push, 0x0110, 2);
|
||||
evo_data(push, 0);
|
||||
evo_data(push, 0);
|
||||
}
|
||||
evo_mthd(push, 0x0800, 5);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 20 |
|
||||
(asyw->image.pitch[0] >> 8) << 8 |
|
||||
asyw->image.blocks[0] << 8 |
|
||||
asyw->image.blockh);
|
||||
evo_data(push, asyw->image.format << 8);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 13)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827C, SET_PRESENT_CONTROL,
|
||||
NVVAL(NV827C, SET_PRESENT_CONTROL, BEGIN_MODE, asyw->image.mode) |
|
||||
NVVAL(NV827C, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
|
||||
|
||||
PUSH_MTHD(push, NV827C, SET_CONTEXT_DMAS_ISO(0), asyw->image.handle, 1);
|
||||
|
||||
if (asyw->image.format == NV827C_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16) {
|
||||
PUSH_MTHD(push, NV827C, SET_PROCESSING,
|
||||
NVDEF(NV827C, SET_PROCESSING, USE_GAIN_OFS, ENABLE),
|
||||
|
||||
SET_CONVERSION,
|
||||
NVVAL(NV827C, SET_CONVERSION, GAIN, 0) |
|
||||
NVVAL(NV827C, SET_CONVERSION, OFS, 0x64));
|
||||
} else {
|
||||
PUSH_MTHD(push, NV827C, SET_PROCESSING,
|
||||
NVDEF(NV827C, SET_PROCESSING, USE_GAIN_OFS, DISABLE));
|
||||
}
|
||||
|
||||
PUSH_MTHD(push, NV827C, SURFACE_SET_OFFSET(0, 0), asyw->image.offset[0] >> 8,
|
||||
SURFACE_SET_OFFSET(0, 1), 0x00000000,
|
||||
|
||||
SURFACE_SET_SIZE(0),
|
||||
NVVAL(NV827C, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NV827C, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SURFACE_SET_STORAGE(0),
|
||||
NVVAL(NV827C, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NV827C, SURFACE_SET_STORAGE, PITCH, asyw->image.pitch[0] >> 8) |
|
||||
NVVAL(NV827C, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NV827C, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SURFACE_SET_PARAMS(0),
|
||||
NVVAL(NV827C, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVDEF(NV827C, SURFACE_SET_PARAMS, SUPER_SAMPLE, X1_AA) |
|
||||
NVDEF(NV827C, SURFACE_SET_PARAMS, GAMMA, LINEAR) |
|
||||
NVDEF(NV827C, SURFACE_SET_PARAMS, LAYOUT, FRM));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct nv50_wndw_func
|
||||
|
|
|
@ -21,58 +21,86 @@
|
|||
*/
|
||||
#include "base.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl907c.h>
|
||||
|
||||
static int
|
||||
base907c_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 10))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, asyw->image.mode << 8 |
|
||||
asyw->image.interval << 4);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
evo_mthd(push, 0x0400, 5);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 24 |
|
||||
(asyw->image.pitch[0] >> 8) << 8 |
|
||||
asyw->image.blocks[0] << 8 |
|
||||
asyw->image.blockh);
|
||||
evo_data(push, asyw->image.format << 8);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 10)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_PRESENT_CONTROL,
|
||||
NVVAL(NV907C, SET_PRESENT_CONTROL, BEGIN_MODE, asyw->image.mode) |
|
||||
NVDEF(NV907C, SET_PRESENT_CONTROL, TIMESTAMP_MODE, DISABLE) |
|
||||
NVVAL(NV907C, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_CONTEXT_DMAS_ISO(0), asyw->image.handle, 1);
|
||||
|
||||
PUSH_MTHD(push, NV907C, SURFACE_SET_OFFSET(0, 0), asyw->image.offset[0] >> 8,
|
||||
SURFACE_SET_OFFSET(0, 1), 0x00000000,
|
||||
|
||||
SURFACE_SET_SIZE(0),
|
||||
NVVAL(NV907C, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NV907C, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SURFACE_SET_STORAGE(0),
|
||||
NVVAL(NV907C, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NV907C, SURFACE_SET_STORAGE, PITCH, asyw->image.pitch[0] >> 8) |
|
||||
NVVAL(NV907C, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NV907C, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SURFACE_SET_PARAMS(0),
|
||||
NVVAL(NV907C, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVDEF(NV907C, SURFACE_SET_PARAMS, SUPER_SAMPLE, X1_AA) |
|
||||
NVDEF(NV907C, SURFACE_SET_PARAMS, GAMMA, LINEAR) |
|
||||
NVDEF(NV907C, SURFACE_SET_PARAMS, LAYOUT, FRM));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
base907c_xlut_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 6))) {
|
||||
evo_mthd(push, 0x00e0, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x00e8, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x00fc, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 6)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_BASE_LUT_LO,
|
||||
NVDEF(NV907C, SET_BASE_LUT_LO, ENABLE, DISABLE));
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_OUTPUT_LUT_LO,
|
||||
NVDEF(NV907C, SET_OUTPUT_LUT_LO, ENABLE, DISABLE));
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_CONTEXT_DMA_LUT, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
base907c_xlut_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 6))) {
|
||||
evo_mthd(push, 0x00e0, 3);
|
||||
evo_data(push, asyw->xlut.i.enable << 30 |
|
||||
asyw->xlut.i.mode << 24);
|
||||
evo_data(push, asyw->xlut.i.offset >> 8);
|
||||
evo_data(push, 0x40000000);
|
||||
evo_mthd(push, 0x00fc, 1);
|
||||
evo_data(push, asyw->xlut.handle);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 6)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_BASE_LUT_LO,
|
||||
NVVAL(NV907C, SET_BASE_LUT_LO, ENABLE, asyw->xlut.i.enable) |
|
||||
NVVAL(NV907C, SET_BASE_LUT_LO, MODE, asyw->xlut.i.mode),
|
||||
|
||||
SET_BASE_LUT_HI, asyw->xlut.i.offset >> 8,
|
||||
|
||||
SET_OUTPUT_LUT_LO,
|
||||
NVDEF(NV907C, SET_OUTPUT_LUT_LO, ENABLE, USE_CORE_LUT));
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_CONTEXT_DMA_LUT, asyw->xlut.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static bool
|
||||
|
@ -81,8 +109,12 @@ base907c_ilut(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw, int size)
|
|||
if (size != 256 && size != 1024)
|
||||
return false;
|
||||
|
||||
asyw->xlut.i.mode = size == 1024 ? 4 : 7;
|
||||
asyw->xlut.i.enable = 2;
|
||||
if (size == 1024)
|
||||
asyw->xlut.i.mode = NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_1025_UNITY_RANGE;
|
||||
else
|
||||
asyw->xlut.i.mode = NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_257_UNITY_RANGE;
|
||||
|
||||
asyw->xlut.i.enable = NV907C_SET_BASE_LUT_LO_ENABLE_ENABLE;
|
||||
asyw->xlut.i.load = head907d_olut_load;
|
||||
return true;
|
||||
}
|
||||
|
@ -125,28 +157,35 @@ base907c_csc(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw,
|
|||
}
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
base907c_csc_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x0140, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_CSC_RED2RED,
|
||||
NVDEF(NV907C, SET_CSC_RED2RED, OWNER, CORE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
base907c_csc_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push, i;
|
||||
if ((push = evo_wait(&wndw->wndw, 13))) {
|
||||
evo_mthd(push, 0x0140, 12);
|
||||
evo_data(push, asyw->csc.matrix[0] | 0x80000000);
|
||||
for (i = 1; i < 12; i++)
|
||||
evo_data(push, asyw->csc.matrix[i]);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 13)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907C, SET_CSC_RED2RED,
|
||||
NVDEF(NV907C, SET_CSC_RED2RED, OWNER, BASE) |
|
||||
NVVAL(NV907C, SET_CSC_RED2RED, COEFF, asyw->csc.matrix[0]),
|
||||
|
||||
SET_CSC_GRN2RED, &asyw->csc.matrix[1], 11);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_wndw_func
|
||||
|
|
|
@ -15,15 +15,15 @@ int nv50_core_new(struct nouveau_drm *, struct nv50_core **);
|
|||
void nv50_core_del(struct nv50_core **);
|
||||
|
||||
struct nv50_core_func {
|
||||
void (*init)(struct nv50_core *);
|
||||
int (*init)(struct nv50_core *);
|
||||
void (*ntfy_init)(struct nouveau_bo *, u32 offset);
|
||||
int (*caps_init)(struct nouveau_drm *, struct nv50_disp *);
|
||||
int (*ntfy_wait_done)(struct nouveau_bo *, u32 offset,
|
||||
struct nvif_device *);
|
||||
void (*update)(struct nv50_core *, u32 *interlock, bool ntfy);
|
||||
int (*update)(struct nv50_core *, u32 *interlock, bool ntfy);
|
||||
|
||||
struct {
|
||||
void (*owner)(struct nv50_core *);
|
||||
int (*owner)(struct nv50_core *);
|
||||
} wndw;
|
||||
|
||||
const struct nv50_head_func *head;
|
||||
|
@ -31,7 +31,7 @@ struct nv50_core_func {
|
|||
const struct nv50_crc_func *crc;
|
||||
#endif
|
||||
const struct nv50_outp_func {
|
||||
void (*ctrl)(struct nv50_core *, int or, u32 ctrl,
|
||||
int (*ctrl)(struct nv50_core *, int or, u32 ctrl,
|
||||
struct nv50_head_atom *);
|
||||
/* XXX: Only used by SORs and PIORs for now */
|
||||
void (*get_caps)(struct nv50_disp *,
|
||||
|
@ -42,11 +42,11 @@ struct nv50_core_func {
|
|||
int core507d_new(struct nouveau_drm *, s32, struct nv50_core **);
|
||||
int core507d_new_(const struct nv50_core_func *, struct nouveau_drm *, s32,
|
||||
struct nv50_core **);
|
||||
void core507d_init(struct nv50_core *);
|
||||
int core507d_init(struct nv50_core *);
|
||||
void core507d_ntfy_init(struct nouveau_bo *, u32);
|
||||
int core507d_caps_init(struct nouveau_drm *, struct nv50_disp *);
|
||||
int core507d_ntfy_wait_done(struct nouveau_bo *, u32, struct nvif_device *);
|
||||
void core507d_update(struct nv50_core *, u32 *, bool);
|
||||
int core507d_update(struct nv50_core *, u32 *, bool);
|
||||
|
||||
extern const struct nv50_outp_func dac507d;
|
||||
extern const struct nv50_outp_func sor507d;
|
||||
|
@ -63,8 +63,8 @@ int core917d_new(struct nouveau_drm *, s32, struct nv50_core **);
|
|||
int corec37d_new(struct nouveau_drm *, s32, struct nv50_core **);
|
||||
int corec37d_caps_init(struct nouveau_drm *, struct nv50_disp *);
|
||||
int corec37d_ntfy_wait_done(struct nouveau_bo *, u32, struct nvif_device *);
|
||||
void corec37d_update(struct nv50_core *, u32 *, bool);
|
||||
void corec37d_wndw_owner(struct nv50_core *);
|
||||
int corec37d_update(struct nv50_core *, u32 *, bool);
|
||||
int corec37d_wndw_owner(struct nv50_core *);
|
||||
extern const struct nv50_outp_func sorc37d;
|
||||
|
||||
int corec57d_new(struct nouveau_drm *, s32, struct nv50_core **);
|
||||
|
|
|
@ -23,25 +23,36 @@
|
|||
#include "head.h"
|
||||
|
||||
#include <nvif/cl507d.h>
|
||||
#include <nvif/push507c.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
#include <nvhw/class/cl507d.h>
|
||||
|
||||
#include "nouveau_bo.h"
|
||||
|
||||
void
|
||||
int
|
||||
core507d_update(struct nv50_core *core, u32 *interlock, bool ntfy)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 5))) {
|
||||
if (ntfy) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, 0x80000000 | NV50_DISP_CORE_NTFY);
|
||||
}
|
||||
evo_mthd(push, 0x0080, 2);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_BASE] |
|
||||
interlock[NV50_DISP_INTERLOCK_OVLY]);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &core->chan);
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
if (ntfy) {
|
||||
PUSH_MTHD(push, NV507D, SET_NOTIFIER_CONTROL,
|
||||
NVDEF(NV507D, SET_NOTIFIER_CONTROL, MODE, WRITE) |
|
||||
NVVAL(NV507D, SET_NOTIFIER_CONTROL, OFFSET, NV50_DISP_CORE_NTFY >> 2) |
|
||||
NVDEF(NV507D, SET_NOTIFIER_CONTROL, NOTIFY, ENABLE));
|
||||
}
|
||||
|
||||
PUSH_MTHD(push, NV507D, UPDATE, interlock[NV50_DISP_INTERLOCK_BASE] |
|
||||
interlock[NV50_DISP_INTERLOCK_OVLY] |
|
||||
NVDEF(NV507D, UPDATE, NOT_DRIVER_FRIENDLY, FALSE) |
|
||||
NVDEF(NV507D, UPDATE, NOT_DRIVER_UNFRIENDLY, FALSE) |
|
||||
NVDEF(NV507D, UPDATE, INHIBIT_INTERRUPTS, FALSE));
|
||||
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -49,7 +60,7 @@ core507d_ntfy_wait_done(struct nouveau_bo *bo, u32 offset,
|
|||
struct nvif_device *device)
|
||||
{
|
||||
s64 time = nvif_msec(device, 2000ULL,
|
||||
if (nouveau_bo_rd32(bo, offset / 4))
|
||||
if (NVBO_TD32(bo, offset, NV_DISP_CORE_NOTIFIER_1, COMPLETION_0, DONE, ==, TRUE))
|
||||
break;
|
||||
usleep_range(1, 2);
|
||||
);
|
||||
|
@ -59,32 +70,34 @@ core507d_ntfy_wait_done(struct nouveau_bo *bo, u32 offset,
|
|||
void
|
||||
core507d_ntfy_init(struct nouveau_bo *bo, u32 offset)
|
||||
{
|
||||
nouveau_bo_wr32(bo, offset / 4, 0x00000000);
|
||||
NVBO_WR32(bo, offset, NV_DISP_CORE_NOTIFIER_1, COMPLETION_0,
|
||||
NVDEF(NV_DISP_CORE_NOTIFIER_1, COMPLETION_0, DONE, FALSE));
|
||||
}
|
||||
|
||||
int
|
||||
core507d_caps_init(struct nouveau_drm *drm, struct nv50_disp *disp)
|
||||
{
|
||||
u32 *push = evo_wait(&disp->core->chan, 2);
|
||||
struct nvif_push *push = disp->core->chan.push;
|
||||
int ret;
|
||||
|
||||
if (push) {
|
||||
evo_mthd(push, 0x008c, 1);
|
||||
evo_data(push, 0x0);
|
||||
evo_kick(push, &disp->core->chan);
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
PUSH_MTHD(push, NV507D, GET_CAPABILITIES, 0x00000000);
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
core507d_init(struct nv50_core *core)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 2))) {
|
||||
evo_mthd(push, 0x0088, 1);
|
||||
evo_data(push, core->chan.sync.handle);
|
||||
evo_kick(push, &core->chan);
|
||||
}
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, SET_CONTEXT_DMA_NOTIFIER, core->chan.sync.handle);
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
static const struct nv50_core_func
|
||||
|
|
|
@ -23,56 +23,67 @@
|
|||
#include "head.h"
|
||||
|
||||
#include <nvif/class.h>
|
||||
#include <nouveau_bo.h>
|
||||
|
||||
#include <nvif/pushc37b.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
void
|
||||
#include <nvhw/class/clc37d.h>
|
||||
|
||||
#include <nouveau_bo.h>
|
||||
|
||||
int
|
||||
corec37d_wndw_owner(struct nv50_core *core)
|
||||
{
|
||||
struct nvif_push *push = core->chan.push;
|
||||
const u32 windows = 8; /*XXX*/
|
||||
u32 *push, i;
|
||||
if ((push = evo_wait(&core->chan, 2 * windows))) {
|
||||
for (i = 0; i < windows; i++) {
|
||||
evo_mthd(push, 0x1000 + (i * 0x080), 1);
|
||||
evo_data(push, i >> 1);
|
||||
}
|
||||
evo_kick(push, &core->chan);
|
||||
int ret, i;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, windows * 2)))
|
||||
return ret;
|
||||
|
||||
for (i = 0; i < windows; i++) {
|
||||
PUSH_MTHD(push, NVC37D, WINDOW_SET_CONTROL(i),
|
||||
NVDEF(NVC37D, WINDOW_SET_CONTROL, OWNER, HEAD(i >> 1)));
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
corec37d_update(struct nv50_core *core, u32 *interlock, bool ntfy)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 9))) {
|
||||
if (ntfy) {
|
||||
evo_mthd(push, 0x020c, 1);
|
||||
evo_data(push, 0x00001000 | NV50_DISP_CORE_NTFY);
|
||||
}
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
evo_mthd(push, 0x0218, 2);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_CURS]);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_WNDW]);
|
||||
evo_mthd(push, 0x0200, 1);
|
||||
evo_data(push, 0x00000001);
|
||||
if ((ret = PUSH_WAIT(push, 9)))
|
||||
return ret;
|
||||
|
||||
if (ntfy) {
|
||||
evo_mthd(push, 0x020c, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
}
|
||||
evo_kick(push, &core->chan);
|
||||
if (ntfy) {
|
||||
PUSH_MTHD(push, NVC37D, SET_NOTIFIER_CONTROL,
|
||||
NVDEF(NVC37D, SET_NOTIFIER_CONTROL, MODE, WRITE) |
|
||||
NVVAL(NVC37D, SET_NOTIFIER_CONTROL, OFFSET, NV50_DISP_CORE_NTFY >> 4) |
|
||||
NVDEF(NVC37D, SET_NOTIFIER_CONTROL, NOTIFY, ENABLE));
|
||||
}
|
||||
|
||||
PUSH_MTHD(push, NVC37D, SET_INTERLOCK_FLAGS, interlock[NV50_DISP_INTERLOCK_CURS],
|
||||
SET_WINDOW_INTERLOCK_FLAGS, interlock[NV50_DISP_INTERLOCK_WNDW]);
|
||||
PUSH_MTHD(push, NVC37D, UPDATE, 0x00000001 |
|
||||
NVDEF(NVC37D, UPDATE, SPECIAL_HANDLING, NONE) |
|
||||
NVDEF(NVC37D, UPDATE, INHIBIT_INTERRUPTS, FALSE));
|
||||
|
||||
if (ntfy) {
|
||||
PUSH_MTHD(push, NVC37D, SET_NOTIFIER_CONTROL,
|
||||
NVDEF(NVC37D, SET_NOTIFIER_CONTROL, NOTIFY, DISABLE));
|
||||
}
|
||||
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
int
|
||||
corec37d_ntfy_wait_done(struct nouveau_bo *bo, u32 offset,
|
||||
struct nvif_device *device)
|
||||
{
|
||||
u32 data;
|
||||
s64 time = nvif_msec(device, 2000ULL,
|
||||
data = nouveau_bo_rd32(bo, offset / 4 + 0);
|
||||
if ((data & 0xc0000000) == 0x80000000)
|
||||
if (NVBO_TD32(bo, offset, NV_DISP_NOTIFIER, _0, STATUS, ==, FINISHED))
|
||||
break;
|
||||
usleep_range(1, 2);
|
||||
);
|
||||
|
@ -82,18 +93,19 @@ corec37d_ntfy_wait_done(struct nouveau_bo *bo, u32 offset,
|
|||
void
|
||||
corec37d_ntfy_init(struct nouveau_bo *bo, u32 offset)
|
||||
{
|
||||
nouveau_bo_wr32(bo, offset / 4 + 0, 0x00000000);
|
||||
nouveau_bo_wr32(bo, offset / 4 + 1, 0x00000000);
|
||||
nouveau_bo_wr32(bo, offset / 4 + 2, 0x00000000);
|
||||
nouveau_bo_wr32(bo, offset / 4 + 3, 0x00000000);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFIER, _0,
|
||||
NVDEF(NV_DISP_NOTIFIER, _0, STATUS, NOT_BEGUN));
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFIER, _1, 0);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFIER, _2, 0);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFIER, _3, 0);
|
||||
}
|
||||
|
||||
int corec37d_caps_init(struct nouveau_drm *drm, struct nv50_disp *disp)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = nvif_object_init(&disp->disp->object, 0, GV100_DISP_CAPS,
|
||||
NULL, 0, &disp->caps);
|
||||
ret = nvif_object_ctor(&disp->disp->object, "dispCaps", 0,
|
||||
GV100_DISP_CAPS, NULL, 0, &disp->caps);
|
||||
if (ret) {
|
||||
NV_ERROR(drm,
|
||||
"Failed to init notifier caps region: %d\n",
|
||||
|
@ -112,24 +124,37 @@ int corec37d_caps_init(struct nouveau_drm *drm, struct nv50_disp *disp)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
corec37d_init(struct nv50_core *core)
|
||||
{
|
||||
struct nvif_push *push = core->chan.push;
|
||||
const u32 windows = 8; /*XXX*/
|
||||
u32 *push, i;
|
||||
if ((push = evo_wait(&core->chan, 2 + 5 * windows))) {
|
||||
evo_mthd(push, 0x0208, 1);
|
||||
evo_data(push, core->chan.sync.handle);
|
||||
for (i = 0; i < windows; i++) {
|
||||
evo_mthd(push, 0x1004 + (i * 0x080), 2);
|
||||
evo_data(push, 0x0000001f);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x1010 + (i * 0x080), 1);
|
||||
evo_data(push, 0x00127fff);
|
||||
}
|
||||
evo_kick(push, &core->chan);
|
||||
core->assign_windows = true;
|
||||
int ret, i;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2 + windows * 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, SET_CONTEXT_DMA_NOTIFIER, core->chan.sync.handle);
|
||||
|
||||
for (i = 0; i < windows; i++) {
|
||||
PUSH_MTHD(push, NVC37D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS(i),
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED1BPP, TRUE) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED2BPP, TRUE) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED4BPP, TRUE) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED8BPP, TRUE) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, YUV_PACKED422, TRUE),
|
||||
|
||||
WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS(i), 0x00000000);
|
||||
|
||||
PUSH_MTHD(push, NVC37D, WINDOW_SET_WINDOW_USAGE_BOUNDS(i),
|
||||
NVVAL(NVC37D, WINDOW_SET_WINDOW_USAGE_BOUNDS, MAX_PIXELS_FETCHED_PER_LINE, 0x7fff) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_USAGE_BOUNDS, INPUT_LUT, USAGE_1025) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_USAGE_BOUNDS, INPUT_SCALER_TAPS, TAPS_2) |
|
||||
NVDEF(NVC37D, WINDOW_SET_WINDOW_USAGE_BOUNDS, UPSCALING_ALLOWED, FALSE));
|
||||
}
|
||||
|
||||
core->assign_windows = true;
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
static const struct nv50_core_func
|
||||
|
|
|
@ -22,24 +22,40 @@
|
|||
#include "core.h"
|
||||
#include "head.h"
|
||||
|
||||
static void
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
#include <nvhw/class/clc57d.h>
|
||||
|
||||
static int
|
||||
corec57d_init(struct nv50_core *core)
|
||||
{
|
||||
struct nvif_push *push = core->chan.push;
|
||||
const u32 windows = 8; /*XXX*/
|
||||
u32 *push, i;
|
||||
if ((push = evo_wait(&core->chan, 2 + 5 * windows))) {
|
||||
evo_mthd(push, 0x0208, 1);
|
||||
evo_data(push, core->chan.sync.handle);
|
||||
for (i = 0; i < windows; i++) {
|
||||
evo_mthd(push, 0x1004 + (i * 0x080), 2);
|
||||
evo_data(push, 0x0000000f);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x1010 + (i * 0x080), 1);
|
||||
evo_data(push, 0x00117fff);
|
||||
}
|
||||
evo_kick(push, &core->chan);
|
||||
core->assign_windows = true;
|
||||
int ret, i;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2 + windows * 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57D, SET_CONTEXT_DMA_NOTIFIER, core->chan.sync.handle);
|
||||
|
||||
for (i = 0; i < windows; i++) {
|
||||
PUSH_MTHD(push, NVC57D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS(i),
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED1BPP, TRUE) |
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED2BPP, TRUE) |
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED4BPP, TRUE) |
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS, RGB_PACKED8BPP, TRUE),
|
||||
|
||||
WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS(i), 0x00000000);
|
||||
|
||||
PUSH_MTHD(push, NVC57D, WINDOW_SET_WINDOW_USAGE_BOUNDS(i),
|
||||
NVVAL(NVC57D, WINDOW_SET_WINDOW_USAGE_BOUNDS, MAX_PIXELS_FETCHED_PER_LINE, 0x7fff) |
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_USAGE_BOUNDS, ILUT_ALLOWED, TRUE) |
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_USAGE_BOUNDS, INPUT_SCALER_TAPS, TAPS_2) |
|
||||
NVDEF(NVC57D, WINDOW_SET_WINDOW_USAGE_BOUNDS, UPSCALING_ALLOWED, FALSE));
|
||||
}
|
||||
|
||||
core->assign_windows = true;
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
static const struct nv50_core_func
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
#include <nvif/cl0002.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
#include <nvhw/class/cl907d.h>
|
||||
|
||||
#include "nouveau_drv.h"
|
||||
#include "core.h"
|
||||
#include "head.h"
|
||||
|
@ -478,10 +480,6 @@ void nv50_crc_atomic_clr(struct nv50_head *head)
|
|||
func->set_src(head, 0, NV50_CRC_SOURCE_TYPE_NONE, NULL, 0);
|
||||
}
|
||||
|
||||
#define NV50_CRC_RASTER_ACTIVE 0
|
||||
#define NV50_CRC_RASTER_COMPLETE 1
|
||||
#define NV50_CRC_RASTER_INACTIVE 2
|
||||
|
||||
static inline int
|
||||
nv50_crc_raster_type(enum nv50_crc_source source)
|
||||
{
|
||||
|
@ -490,11 +488,11 @@ nv50_crc_raster_type(enum nv50_crc_source source)
|
|||
case NV50_CRC_SOURCE_AUTO:
|
||||
case NV50_CRC_SOURCE_RG:
|
||||
case NV50_CRC_SOURCE_OUTP_ACTIVE:
|
||||
return NV50_CRC_RASTER_ACTIVE;
|
||||
return NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_ACTIVE_RASTER;
|
||||
case NV50_CRC_SOURCE_OUTP_COMPLETE:
|
||||
return NV50_CRC_RASTER_COMPLETE;
|
||||
return NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_COMPLETE_RASTER;
|
||||
case NV50_CRC_SOURCE_OUTP_INACTIVE:
|
||||
return NV50_CRC_RASTER_INACTIVE;
|
||||
return NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_NON_ACTIVE_RASTER;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -510,11 +508,11 @@ nv50_crc_ctx_init(struct nv50_head *head, struct nvif_mmu *mmu,
|
|||
struct nv50_core *core = nv50_disp(head->base.base.dev)->core;
|
||||
int ret;
|
||||
|
||||
ret = nvif_mem_init_map(mmu, NVIF_MEM_VRAM, len, &ctx->mem);
|
||||
ret = nvif_mem_ctor_map(mmu, "kmsCrcNtfy", NVIF_MEM_VRAM, len, &ctx->mem);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = nvif_object_init(&core->chan.base.user,
|
||||
ret = nvif_object_ctor(&core->chan.base.user, "kmsCrcNtfyCtxDma",
|
||||
NV50_DISP_HANDLE_CRC_CTX(head, idx),
|
||||
NV_DMA_IN_MEMORY,
|
||||
&(struct nv_dma_v0) {
|
||||
|
@ -531,15 +529,15 @@ nv50_crc_ctx_init(struct nv50_head *head, struct nvif_mmu *mmu,
|
|||
return 0;
|
||||
|
||||
fail_fini:
|
||||
nvif_mem_fini(&ctx->mem);
|
||||
nvif_mem_dtor(&ctx->mem);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static inline void
|
||||
nv50_crc_ctx_fini(struct nv50_crc_notifier_ctx *ctx)
|
||||
{
|
||||
nvif_object_fini(&ctx->ntfy);
|
||||
nvif_mem_fini(&ctx->mem);
|
||||
nvif_object_dtor(&ctx->ntfy);
|
||||
nvif_mem_dtor(&ctx->mem);
|
||||
}
|
||||
|
||||
int nv50_crc_set_source(struct drm_crtc *crtc, const char *source_str)
|
||||
|
|
|
@ -50,9 +50,9 @@ struct nv50_crc_atom {
|
|||
};
|
||||
|
||||
struct nv50_crc_func {
|
||||
void (*set_src)(struct nv50_head *, int or, enum nv50_crc_source_type,
|
||||
struct nv50_crc_notifier_ctx *, u32 wndw);
|
||||
void (*set_ctx)(struct nv50_head *, struct nv50_crc_notifier_ctx *);
|
||||
int (*set_src)(struct nv50_head *, int or, enum nv50_crc_source_type,
|
||||
struct nv50_crc_notifier_ctx *, u32 wndw);
|
||||
int (*set_ctx)(struct nv50_head *, struct nv50_crc_notifier_ctx *);
|
||||
u32 (*get_entry)(struct nv50_head *, struct nv50_crc_notifier_ctx *,
|
||||
enum nv50_crc_source, int idx);
|
||||
bool (*ctx_finished)(struct nv50_head *,
|
||||
|
@ -106,26 +106,27 @@ struct nv50_crc_atom {};
|
|||
#define nv50_crc_set_source NULL
|
||||
|
||||
static inline void nv50_crc_init(struct drm_device *dev) {}
|
||||
static inline int nv50_head_crc_late_register(struct nv50_head *) {}
|
||||
static inline void
|
||||
nv50_crc_handle_vblank(struct nv50_head *head) { return 0; }
|
||||
static inline int
|
||||
nv50_head_crc_late_register(struct nv50_head *head) { return 0; }
|
||||
static inline void nv50_crc_handle_vblank(struct nv50_head *head) {}
|
||||
|
||||
static inline int
|
||||
nv50_crc_atomic_check_head(struct nv50_head *, struct nv50_head_atom *,
|
||||
struct nv50_head_atom *) {}
|
||||
nv50_crc_atomic_check_head(struct nv50_head *head,
|
||||
struct nv50_head_atom *asyh,
|
||||
struct nv50_head_atom *armh) { return 0; }
|
||||
static inline void nv50_crc_atomic_check_outp(struct nv50_atom *atom) {}
|
||||
static inline void
|
||||
nv50_crc_atomic_stop_reporting(struct drm_atomic_state *) {}
|
||||
nv50_crc_atomic_stop_reporting(struct drm_atomic_state *state) {}
|
||||
static inline void
|
||||
nv50_crc_atomic_init_notifier_contexts(struct drm_atomic_state *) {}
|
||||
nv50_crc_atomic_init_notifier_contexts(struct drm_atomic_state *state) {}
|
||||
static inline void
|
||||
nv50_crc_atomic_release_notifier_contexts(struct drm_atomic_state *) {}
|
||||
nv50_crc_atomic_release_notifier_contexts(struct drm_atomic_state *state) {}
|
||||
static inline void
|
||||
nv50_crc_atomic_start_reporting(struct drm_atomic_state *) {}
|
||||
nv50_crc_atomic_start_reporting(struct drm_atomic_state *state) {}
|
||||
static inline void
|
||||
nv50_crc_atomic_set(struct nv50_head *, struct nv50_head_atom *) {}
|
||||
nv50_crc_atomic_set(struct nv50_head *head, struct nv50_head_atom *state) {}
|
||||
static inline void
|
||||
nv50_crc_atomic_clr(struct nv50_head *) {}
|
||||
nv50_crc_atomic_clr(struct nv50_head *head) {}
|
||||
|
||||
#endif /* IS_ENABLED(CONFIG_DEBUG_FS) */
|
||||
#endif /* !__NV50_CRC_H__ */
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
#include "disp.h"
|
||||
#include "head.h"
|
||||
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl907d.h>
|
||||
|
||||
#define CRC907D_MAX_ENTRIES 255
|
||||
|
||||
struct crc907d_notifier {
|
||||
|
@ -18,68 +22,67 @@ struct crc907d_notifier {
|
|||
} entries[CRC907D_MAX_ENTRIES];
|
||||
} __packed;
|
||||
|
||||
static void
|
||||
static int
|
||||
crc907d_set_src(struct nv50_head *head, int or,
|
||||
enum nv50_crc_source_type source,
|
||||
struct nv50_crc_notifier_ctx *ctx, u32 wndw)
|
||||
{
|
||||
struct drm_crtc *crtc = &head->base.base;
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
const u32 hoff = head->base.index * 0x300;
|
||||
u32 *push;
|
||||
u32 crc_args = 0xfff00000;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 crc_args = NVDEF(NV907D, HEAD_SET_CRC_CONTROL, CONTROLLING_CHANNEL, CORE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, EXPECT_BUFFER_COLLAPSE, FALSE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, TIMESTAMP_MODE, FALSE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, SECONDARY_OUTPUT, NONE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, CRC_DURING_SNOOZE, DISABLE);
|
||||
int ret;
|
||||
|
||||
switch (source) {
|
||||
case NV50_CRC_SOURCE_TYPE_SOR:
|
||||
crc_args |= (0x00000f0f + or * 16) << 8;
|
||||
crc_args |= NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, SOR(or));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_TYPE_PIOR:
|
||||
crc_args |= (0x000000ff + or * 256) << 8;
|
||||
crc_args |= NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, PIOR(or));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_TYPE_DAC:
|
||||
crc_args |= (0x00000ff0 + or) << 8;
|
||||
crc_args |= NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, DAC(or));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_TYPE_RG:
|
||||
crc_args |= (0x00000ff8 + drm_crtc_index(crtc)) << 8;
|
||||
crc_args |= NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, RG(i));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_TYPE_SF:
|
||||
crc_args |= (0x00000f8f + drm_crtc_index(crtc) * 16) << 8;
|
||||
crc_args |= NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, SF(i));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_NONE:
|
||||
crc_args |= 0x000fff00;
|
||||
crc_args |= NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, NONE);
|
||||
break;
|
||||
}
|
||||
|
||||
push = evo_wait(core, 4);
|
||||
if (!push)
|
||||
return;
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
if (source) {
|
||||
evo_mthd(push, 0x0438 + hoff, 1);
|
||||
evo_data(push, ctx->ntfy.handle);
|
||||
evo_mthd(push, 0x0430 + hoff, 1);
|
||||
evo_data(push, crc_args);
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_CRC(i), ctx->ntfy.handle);
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CRC_CONTROL(i), crc_args);
|
||||
} else {
|
||||
evo_mthd(push, 0x0430 + hoff, 1);
|
||||
evo_data(push, crc_args);
|
||||
evo_mthd(push, 0x0438 + hoff, 1);
|
||||
evo_data(push, 0);
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CRC_CONTROL(i), crc_args);
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_CRC(i), 0);
|
||||
}
|
||||
evo_kick(push, core);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void crc907d_set_ctx(struct nv50_head *head,
|
||||
struct nv50_crc_notifier_ctx *ctx)
|
||||
static int
|
||||
crc907d_set_ctx(struct nv50_head *head, struct nv50_crc_notifier_ctx *ctx)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push = evo_wait(core, 2);
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if (!push)
|
||||
return;
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
evo_mthd(push, 0x0438 + (head->base.index * 0x300), 1);
|
||||
evo_data(push, ctx ? ctx->ntfy.handle : 0);
|
||||
evo_kick(push, core);
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_CRC(i), ctx ? ctx->ntfy.handle : 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static u32 crc907d_get_entry(struct nv50_head *head,
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
#include "disp.h"
|
||||
#include "head.h"
|
||||
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/clc37d.h>
|
||||
|
||||
#define CRCC37D_MAX_ENTRIES 2047
|
||||
|
||||
struct crcc37d_notifier {
|
||||
|
@ -30,62 +34,59 @@ struct crcc37d_notifier {
|
|||
} entries[CRCC37D_MAX_ENTRIES];
|
||||
} __packed;
|
||||
|
||||
static void
|
||||
static int
|
||||
crcc37d_set_src(struct nv50_head *head, int or,
|
||||
enum nv50_crc_source_type source,
|
||||
struct nv50_crc_notifier_ctx *ctx, u32 wndw)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
const u32 hoff = head->base.index * 0x400;
|
||||
u32 *push;
|
||||
u32 crc_args;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 crc_args = NVVAL(NVC37D, HEAD_SET_CRC_CONTROL, CONTROLLING_CHANNEL, wndw) |
|
||||
NVDEF(NVC37D, HEAD_SET_CRC_CONTROL, EXPECT_BUFFER_COLLAPSE, FALSE) |
|
||||
NVDEF(NVC37D, HEAD_SET_CRC_CONTROL, SECONDARY_CRC, NONE) |
|
||||
NVDEF(NVC37D, HEAD_SET_CRC_CONTROL, CRC_DURING_SNOOZE, DISABLE);
|
||||
int ret;
|
||||
|
||||
switch (source) {
|
||||
case NV50_CRC_SOURCE_TYPE_SOR:
|
||||
crc_args = (0x00000050 + or) << 12;
|
||||
crc_args |= NVDEF(NVC37D, HEAD_SET_CRC_CONTROL, PRIMARY_CRC, SOR(or));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_TYPE_PIOR:
|
||||
crc_args = (0x00000060 + or) << 12;
|
||||
crc_args |= NVDEF(NVC37D, HEAD_SET_CRC_CONTROL, PRIMARY_CRC, PIOR(or));
|
||||
break;
|
||||
case NV50_CRC_SOURCE_TYPE_SF:
|
||||
crc_args = 0x00000030 << 12;
|
||||
crc_args |= NVDEF(NVC37D, HEAD_SET_CRC_CONTROL, PRIMARY_CRC, SF);
|
||||
break;
|
||||
default:
|
||||
crc_args = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
push = evo_wait(core, 4);
|
||||
if (!push)
|
||||
return;
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
if (source) {
|
||||
evo_mthd(push, 0x2180 + hoff, 1);
|
||||
evo_data(push, ctx->ntfy.handle);
|
||||
evo_mthd(push, 0x2184 + hoff, 1);
|
||||
evo_data(push, crc_args | wndw);
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTEXT_DMA_CRC(i), ctx->ntfy.handle);
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CRC_CONTROL(i), crc_args);
|
||||
} else {
|
||||
evo_mthd(push, 0x2184 + hoff, 1);
|
||||
evo_data(push, 0);
|
||||
evo_mthd(push, 0x2180 + hoff, 1);
|
||||
evo_data(push, 0);
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CRC_CONTROL(i), 0);
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTEXT_DMA_CRC(i), 0);
|
||||
}
|
||||
|
||||
evo_kick(push, core);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void crcc37d_set_ctx(struct nv50_head *head,
|
||||
struct nv50_crc_notifier_ctx *ctx)
|
||||
static int
|
||||
crcc37d_set_ctx(struct nv50_head *head, struct nv50_crc_notifier_ctx *ctx)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push = evo_wait(core, 2);
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if (!push)
|
||||
return;
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
evo_mthd(push, 0x2180 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, ctx ? ctx->ntfy.handle : 0);
|
||||
evo_kick(push, core);
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTEXT_DMA_CRC(i), ctx ? ctx->ntfy.handle : 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static u32 crcc37d_get_entry(struct nv50_head *head,
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
#include <nvif/cl507a.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
#include <nvhw/class/cl507a.h>
|
||||
|
||||
#include <drm/drm_atomic_helper.h>
|
||||
#include <drm/drm_plane_helper.h>
|
||||
|
||||
|
@ -33,27 +35,37 @@ bool
|
|||
curs507a_space(struct nv50_wndw *wndw)
|
||||
{
|
||||
nvif_msec(&nouveau_drm(wndw->plane.dev)->client.device, 100,
|
||||
if (nvif_rd32(&wndw->wimm.base.user, 0x0008) >= 4)
|
||||
if (NVIF_TV32(&wndw->wimm.base.user, NV507A, FREE, COUNT, >=, 4))
|
||||
return true;
|
||||
);
|
||||
|
||||
WARN_ON(1);
|
||||
return false;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
curs507a_update(struct nv50_wndw *wndw, u32 *interlock)
|
||||
{
|
||||
if (curs507a_space(wndw))
|
||||
nvif_wr32(&wndw->wimm.base.user, 0x0080, 0x00000000);
|
||||
struct nvif_object *user = &wndw->wimm.base.user;
|
||||
int ret = nvif_chan_wait(&wndw->wimm, 1);
|
||||
if (ret == 0) {
|
||||
NVIF_WR32(user, NV507A, UPDATE,
|
||||
NVDEF(NV507A, UPDATE, INTERLOCK_WITH_CORE, DISABLE));
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
curs507a_point(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
if (curs507a_space(wndw)) {
|
||||
nvif_wr32(&wndw->wimm.base.user, 0x0084, asyw->point.y << 16 |
|
||||
asyw->point.x);
|
||||
struct nvif_object *user = &wndw->wimm.base.user;
|
||||
int ret = nvif_chan_wait(&wndw->wimm, 1);
|
||||
if (ret == 0) {
|
||||
NVIF_WR32(user, NV507A, SET_CURSOR_HOT_SPOT_POINT_OUT,
|
||||
NVVAL(NV507A, SET_CURSOR_HOT_SPOT_POINT_OUT, X, asyw->point.x) |
|
||||
NVVAL(NV507A, SET_CURSOR_HOT_SPOT_POINT_OUT, Y, asyw->point.y));
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
const struct nv50_wimm_func
|
||||
|
@ -138,8 +150,8 @@ curs507a_new_(const struct nv50_wimm_func *func, struct nouveau_drm *drm,
|
|||
if (*pwndw = wndw, ret)
|
||||
return ret;
|
||||
|
||||
ret = nvif_object_init(&disp->disp->object, 0, oclass, &args,
|
||||
sizeof(args), &wndw->wimm.base.user);
|
||||
ret = nvif_object_ctor(&disp->disp->object, "kmsCurs", 0, oclass,
|
||||
&args, sizeof(args), &wndw->wimm.base.user);
|
||||
if (ret) {
|
||||
NV_ERROR(drm, "curs%04x allocation failed: %d\n", oclass, ret);
|
||||
return ret;
|
||||
|
|
|
@ -22,20 +22,29 @@
|
|||
#include "curs.h"
|
||||
#include "atom.h"
|
||||
|
||||
static void
|
||||
#include <nvhw/class/clc37a.h>
|
||||
|
||||
static int
|
||||
cursc37a_update(struct nv50_wndw *wndw, u32 *interlock)
|
||||
{
|
||||
if (curs507a_space(wndw))
|
||||
nvif_wr32(&wndw->wimm.base.user, 0x0200, 0x00000001);
|
||||
struct nvif_object *user = &wndw->wimm.base.user;
|
||||
int ret = nvif_chan_wait(&wndw->wimm, 1);
|
||||
if (ret == 0)
|
||||
NVIF_WR32(user, NVC37A, UPDATE, 0x00000001);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
cursc37a_point(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
if (curs507a_space(wndw)) {
|
||||
nvif_wr32(&wndw->wimm.base.user, 0x0208, asyw->point.y << 16 |
|
||||
asyw->point.x);
|
||||
struct nvif_object *user = &wndw->wimm.base.user;
|
||||
int ret = nvif_chan_wait(&wndw->wimm, 1);
|
||||
if (ret == 0) {
|
||||
NVIF_WR32(user, NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT(0),
|
||||
NVVAL(NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT, X, asyw->point.x) |
|
||||
NVVAL(NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT, Y, asyw->point.y));
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const struct nv50_wimm_func
|
||||
|
|
|
@ -21,21 +21,29 @@
|
|||
*/
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl507d.h>
|
||||
|
||||
static int
|
||||
dac507d_ctrl(struct nv50_core *core, int or, u32 ctrl,
|
||||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
u32 *push, sync = 0;
|
||||
if ((push = evo_wait(&core->chan, 3))) {
|
||||
if (asyh) {
|
||||
sync |= asyh->or.nvsync << 1;
|
||||
sync |= asyh->or.nhsync;
|
||||
}
|
||||
evo_mthd(push, 0x0400 + (or * 0x080), 2);
|
||||
evo_data(push, ctrl);
|
||||
evo_data(push, sync);
|
||||
evo_kick(push, &core->chan);
|
||||
struct nvif_push *push = core->chan.push;
|
||||
u32 sync = 0;
|
||||
int ret;
|
||||
|
||||
if (asyh) {
|
||||
sync |= NVVAL(NV507D, DAC_SET_POLARITY, HSYNC, asyh->or.nhsync);
|
||||
sync |= NVVAL(NV507D, DAC_SET_POLARITY, VSYNC, asyh->or.nvsync);
|
||||
}
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 3)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, DAC_SET_CONTROL(or), ctrl,
|
||||
DAC_SET_POLARITY(or), sync);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_outp_func
|
||||
|
|
|
@ -21,16 +21,22 @@
|
|||
*/
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl907d.h>
|
||||
|
||||
static int
|
||||
dac907d_ctrl(struct nv50_core *core, int or, u32 ctrl,
|
||||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 2))) {
|
||||
evo_mthd(push, 0x0180 + (or * 0x020), 1);
|
||||
evo_data(push, ctrl);
|
||||
evo_kick(push, &core->chan);
|
||||
}
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, DAC_SET_CONTROL(or), ctrl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_outp_func
|
||||
|
|
|
@ -41,6 +41,8 @@
|
|||
#include <drm/drm_scdc_helper.h>
|
||||
#include <drm/drm_vblank.h>
|
||||
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvif/class.h>
|
||||
#include <nvif/cl0002.h>
|
||||
#include <nvif/cl5070.h>
|
||||
|
@ -48,6 +50,13 @@
|
|||
#include <nvif/event.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
#include <nvhw/class/cl507c.h>
|
||||
#include <nvhw/class/cl507d.h>
|
||||
#include <nvhw/class/cl837d.h>
|
||||
#include <nvhw/class/cl887d.h>
|
||||
#include <nvhw/class/cl907d.h>
|
||||
#include <nvhw/class/cl917d.h>
|
||||
|
||||
#include "nouveau_drv.h"
|
||||
#include "nouveau_dma.h"
|
||||
#include "nouveau_gem.h"
|
||||
|
@ -79,8 +88,9 @@ nv50_chan_create(struct nvif_device *device, struct nvif_object *disp,
|
|||
while (oclass[0]) {
|
||||
for (i = 0; i < n; i++) {
|
||||
if (sclass[i].oclass == oclass[0]) {
|
||||
ret = nvif_object_init(disp, 0, oclass[0],
|
||||
data, size, &chan->user);
|
||||
ret = nvif_object_ctor(disp, "kmsChan", 0,
|
||||
oclass[0], data, size,
|
||||
&chan->user);
|
||||
if (ret == 0)
|
||||
nvif_object_map(&chan->user, NULL, 0);
|
||||
nvif_object_sclass_put(&sclass);
|
||||
|
@ -97,7 +107,7 @@ nv50_chan_create(struct nvif_device *device, struct nvif_object *disp,
|
|||
static void
|
||||
nv50_chan_destroy(struct nv50_chan *chan)
|
||||
{
|
||||
nvif_object_fini(&chan->user);
|
||||
nvif_object_dtor(&chan->user);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
@ -107,12 +117,106 @@ nv50_chan_destroy(struct nv50_chan *chan)
|
|||
void
|
||||
nv50_dmac_destroy(struct nv50_dmac *dmac)
|
||||
{
|
||||
nvif_object_fini(&dmac->vram);
|
||||
nvif_object_fini(&dmac->sync);
|
||||
nvif_object_dtor(&dmac->vram);
|
||||
nvif_object_dtor(&dmac->sync);
|
||||
|
||||
nv50_chan_destroy(&dmac->base);
|
||||
|
||||
nvif_mem_fini(&dmac->push);
|
||||
nvif_mem_dtor(&dmac->_push.mem);
|
||||
}
|
||||
|
||||
static void
|
||||
nv50_dmac_kick(struct nvif_push *push)
|
||||
{
|
||||
struct nv50_dmac *dmac = container_of(push, typeof(*dmac), _push);
|
||||
|
||||
dmac->cur = push->cur - (u32 *)dmac->_push.mem.object.map.ptr;
|
||||
if (dmac->put != dmac->cur) {
|
||||
/* Push buffer fetches are not coherent with BAR1, we need to ensure
|
||||
* writes have been flushed right through to VRAM before writing PUT.
|
||||
*/
|
||||
if (dmac->push->mem.type & NVIF_MEM_VRAM) {
|
||||
struct nvif_device *device = dmac->base.device;
|
||||
nvif_wr32(&device->object, 0x070000, 0x00000001);
|
||||
nvif_msec(device, 2000,
|
||||
if (!(nvif_rd32(&device->object, 0x070000) & 0x00000002))
|
||||
break;
|
||||
);
|
||||
}
|
||||
|
||||
NVIF_WV32(&dmac->base.user, NV507C, PUT, PTR, dmac->cur);
|
||||
dmac->put = dmac->cur;
|
||||
}
|
||||
|
||||
push->bgn = push->cur;
|
||||
}
|
||||
|
||||
static int
|
||||
nv50_dmac_free(struct nv50_dmac *dmac)
|
||||
{
|
||||
u32 get = NVIF_RV32(&dmac->base.user, NV507C, GET, PTR);
|
||||
if (get > dmac->cur) /* NVIDIA stay 5 away from GET, do the same. */
|
||||
return get - dmac->cur - 5;
|
||||
return dmac->max - dmac->cur;
|
||||
}
|
||||
|
||||
static int
|
||||
nv50_dmac_wind(struct nv50_dmac *dmac)
|
||||
{
|
||||
/* Wait for GET to depart from the beginning of the push buffer to
|
||||
* prevent writing PUT == GET, which would be ignored by HW.
|
||||
*/
|
||||
u32 get = NVIF_RV32(&dmac->base.user, NV507C, GET, PTR);
|
||||
if (get == 0) {
|
||||
/* Corner-case, HW idle, but non-committed work pending. */
|
||||
if (dmac->put == 0)
|
||||
nv50_dmac_kick(dmac->push);
|
||||
|
||||
if (nvif_msec(dmac->base.device, 2000,
|
||||
if (NVIF_TV32(&dmac->base.user, NV507C, GET, PTR, >, 0))
|
||||
break;
|
||||
) < 0)
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
PUSH_RSVD(dmac->push, PUSH_JUMP(dmac->push, 0));
|
||||
dmac->cur = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
nv50_dmac_wait(struct nvif_push *push, u32 size)
|
||||
{
|
||||
struct nv50_dmac *dmac = container_of(push, typeof(*dmac), _push);
|
||||
int free;
|
||||
|
||||
if (WARN_ON(size > dmac->max))
|
||||
return -EINVAL;
|
||||
|
||||
dmac->cur = push->cur - (u32 *)dmac->_push.mem.object.map.ptr;
|
||||
if (dmac->cur + size >= dmac->max) {
|
||||
int ret = nv50_dmac_wind(dmac);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
push->cur = dmac->_push.mem.object.map.ptr;
|
||||
push->cur = push->cur + dmac->cur;
|
||||
nv50_dmac_kick(push);
|
||||
}
|
||||
|
||||
if (nvif_msec(dmac->base.device, 2000,
|
||||
if ((free = nv50_dmac_free(dmac)) >= size)
|
||||
break;
|
||||
) < 0) {
|
||||
WARN_ON(1);
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
push->bgn = dmac->_push.mem.object.map.ptr;
|
||||
push->bgn = push->bgn + dmac->cur;
|
||||
push->cur = push->bgn;
|
||||
push->end = push->cur + free;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -139,13 +243,21 @@ nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp,
|
|||
if (device->info.family == NV_DEVICE_INFO_V0_PASCAL)
|
||||
type |= NVIF_MEM_VRAM;
|
||||
|
||||
ret = nvif_mem_init_map(&cli->mmu, type, 0x1000, &dmac->push);
|
||||
ret = nvif_mem_ctor_map(&cli->mmu, "kmsChanPush", type, 0x1000,
|
||||
&dmac->_push.mem);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
dmac->ptr = dmac->push.object.map.ptr;
|
||||
dmac->ptr = dmac->_push.mem.object.map.ptr;
|
||||
dmac->_push.wait = nv50_dmac_wait;
|
||||
dmac->_push.kick = nv50_dmac_kick;
|
||||
dmac->push = &dmac->_push;
|
||||
dmac->push->bgn = dmac->_push.mem.object.map.ptr;
|
||||
dmac->push->cur = dmac->push->bgn;
|
||||
dmac->push->end = dmac->push->bgn;
|
||||
dmac->max = 0x1000/4 - 1;
|
||||
|
||||
args->pushbuf = nvif_handle(&dmac->push.object);
|
||||
args->pushbuf = nvif_handle(&dmac->_push.mem.object);
|
||||
|
||||
ret = nv50_chan_create(device, disp, oclass, head, data, size,
|
||||
&dmac->base);
|
||||
|
@ -155,7 +267,7 @@ nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp,
|
|||
if (!syncbuf)
|
||||
return 0;
|
||||
|
||||
ret = nvif_object_init(&dmac->base.user, NV50_DISP_HANDLE_SYNCBUF,
|
||||
ret = nvif_object_ctor(&dmac->base.user, "kmsSyncCtxDma", NV50_DISP_HANDLE_SYNCBUF,
|
||||
NV_DMA_IN_MEMORY,
|
||||
&(struct nv_dma_v0) {
|
||||
.target = NV_DMA_V0_TARGET_VRAM,
|
||||
|
@ -167,7 +279,7 @@ nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp,
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = nvif_object_init(&dmac->base.user, NV50_DISP_HANDLE_VRAM,
|
||||
ret = nvif_object_ctor(&dmac->base.user, "kmsVramCtxDma", NV50_DISP_HANDLE_VRAM,
|
||||
NV_DMA_IN_MEMORY,
|
||||
&(struct nv_dma_v0) {
|
||||
.target = NV_DMA_V0_TARGET_VRAM,
|
||||
|
@ -182,64 +294,6 @@ nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* EVO channel helpers
|
||||
*****************************************************************************/
|
||||
static void
|
||||
evo_flush(struct nv50_dmac *dmac)
|
||||
{
|
||||
/* Push buffer fetches are not coherent with BAR1, we need to ensure
|
||||
* writes have been flushed right through to VRAM before writing PUT.
|
||||
*/
|
||||
if (dmac->push.type & NVIF_MEM_VRAM) {
|
||||
struct nvif_device *device = dmac->base.device;
|
||||
nvif_wr32(&device->object, 0x070000, 0x00000001);
|
||||
nvif_msec(device, 2000,
|
||||
if (!(nvif_rd32(&device->object, 0x070000) & 0x00000002))
|
||||
break;
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
u32 *
|
||||
evo_wait(struct nv50_dmac *evoc, int nr)
|
||||
{
|
||||
struct nv50_dmac *dmac = evoc;
|
||||
struct nvif_device *device = dmac->base.device;
|
||||
u32 put = nvif_rd32(&dmac->base.user, 0x0000) / 4;
|
||||
|
||||
mutex_lock(&dmac->lock);
|
||||
if (put + nr >= (PAGE_SIZE / 4) - 8) {
|
||||
dmac->ptr[put] = 0x20000000;
|
||||
evo_flush(dmac);
|
||||
|
||||
nvif_wr32(&dmac->base.user, 0x0000, 0x00000000);
|
||||
if (nvif_msec(device, 2000,
|
||||
if (!nvif_rd32(&dmac->base.user, 0x0004))
|
||||
break;
|
||||
) < 0) {
|
||||
mutex_unlock(&dmac->lock);
|
||||
pr_err("nouveau: evo channel stalled\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
put = 0;
|
||||
}
|
||||
|
||||
return dmac->ptr + put;
|
||||
}
|
||||
|
||||
void
|
||||
evo_kick(u32 *push, struct nv50_dmac *evoc)
|
||||
{
|
||||
struct nv50_dmac *dmac = evoc;
|
||||
|
||||
evo_flush(dmac);
|
||||
|
||||
nvif_wr32(&dmac->base.user, 0x0000, (push - dmac->ptr) << 2);
|
||||
mutex_unlock(&dmac->lock);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Output path helpers
|
||||
*****************************************************************************/
|
||||
|
@ -365,8 +419,9 @@ nv50_dac_disable(struct drm_encoder *encoder)
|
|||
{
|
||||
struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
|
||||
struct nv50_core *core = nv50_disp(encoder->dev)->core;
|
||||
const u32 ctrl = NVDEF(NV507D, DAC_SET_CONTROL, OWNER, NONE);
|
||||
if (nv_encoder->crtc)
|
||||
core->func->dac->ctrl(core, nv_encoder->or, 0x00000000, NULL);
|
||||
core->func->dac->ctrl(core, nv_encoder->or, ctrl, NULL);
|
||||
nv_encoder->crtc = NULL;
|
||||
nv50_outp_release(nv_encoder);
|
||||
}
|
||||
|
@ -378,10 +433,23 @@ nv50_dac_enable(struct drm_encoder *encoder)
|
|||
struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
|
||||
struct nv50_head_atom *asyh = nv50_head_atom(nv_crtc->base.state);
|
||||
struct nv50_core *core = nv50_disp(encoder->dev)->core;
|
||||
u32 ctrl = 0;
|
||||
|
||||
switch (nv_crtc->index) {
|
||||
case 0: ctrl |= NVDEF(NV507D, DAC_SET_CONTROL, OWNER, HEAD0); break;
|
||||
case 1: ctrl |= NVDEF(NV507D, DAC_SET_CONTROL, OWNER, HEAD1); break;
|
||||
case 2: ctrl |= NVDEF(NV907D, DAC_SET_CONTROL, OWNER_MASK, HEAD2); break;
|
||||
case 3: ctrl |= NVDEF(NV907D, DAC_SET_CONTROL, OWNER_MASK, HEAD3); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
|
||||
ctrl |= NVDEF(NV507D, DAC_SET_CONTROL, PROTOCOL, RGB_CRT);
|
||||
|
||||
nv50_outp_acquire(nv_encoder, false);
|
||||
|
||||
core->func->dac->ctrl(core, nv_encoder->or, 1 << nv_crtc->index, asyh);
|
||||
core->func->dac->ctrl(core, nv_encoder->or, ctrl, asyh);
|
||||
asyh->or.depth = 0;
|
||||
|
||||
nv_encoder->crtc = encoder->crtc;
|
||||
|
@ -931,10 +999,10 @@ static u8
|
|||
nv50_dp_bpc_to_depth(unsigned int bpc)
|
||||
{
|
||||
switch (bpc) {
|
||||
case 6: return 0x2;
|
||||
case 8: return 0x5;
|
||||
case 10: /* fall-through */
|
||||
default: return 0x6;
|
||||
case 6: return NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_18_444;
|
||||
case 8: return NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_444;
|
||||
case 10:
|
||||
default: return NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_30_444;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -973,9 +1041,9 @@ nv50_msto_enable(struct drm_encoder *encoder)
|
|||
nv50_outp_acquire(mstm->outp, false /*XXX: MST audio.*/);
|
||||
|
||||
if (mstm->outp->link & 1)
|
||||
proto = 0x8;
|
||||
proto = NV917D_SOR_SET_CONTROL_PROTOCOL_DP_A;
|
||||
else
|
||||
proto = 0x9;
|
||||
proto = NV917D_SOR_SET_CONTROL_PROTOCOL_DP_B;
|
||||
|
||||
mstm->outp->update(mstm->outp, head->base.index, armh, proto,
|
||||
nv50_dp_bpc_to_depth(armh->or.bpc));
|
||||
|
@ -1504,10 +1572,10 @@ nv50_sor_update(struct nouveau_encoder *nv_encoder, u8 head,
|
|||
|
||||
if (!asyh) {
|
||||
nv_encoder->ctrl &= ~BIT(head);
|
||||
if (!(nv_encoder->ctrl & 0x0000000f))
|
||||
if (NVDEF_TEST(nv_encoder->ctrl, NV507D, SOR_SET_CONTROL, OWNER, ==, NONE))
|
||||
nv_encoder->ctrl = 0;
|
||||
} else {
|
||||
nv_encoder->ctrl |= proto << 8;
|
||||
nv_encoder->ctrl |= NVVAL(NV507D, SOR_SET_CONTROL, PROTOCOL, proto);
|
||||
nv_encoder->ctrl |= BIT(head);
|
||||
asyh->or.depth = depth;
|
||||
}
|
||||
|
@ -1565,8 +1633,8 @@ nv50_sor_enable(struct drm_encoder *encoder)
|
|||
struct nouveau_connector *nv_connector;
|
||||
struct nvbios *bios = &drm->vbios;
|
||||
bool hda = false;
|
||||
u8 proto = 0xf;
|
||||
u8 depth = 0x0;
|
||||
u8 proto = NV507D_SOR_SET_CONTROL_PROTOCOL_CUSTOM;
|
||||
u8 depth = NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_DEFAULT;
|
||||
|
||||
nv_connector = nouveau_encoder_connector_get(nv_encoder);
|
||||
nv_encoder->crtc = encoder->crtc;
|
||||
|
@ -1580,7 +1648,7 @@ nv50_sor_enable(struct drm_encoder *encoder)
|
|||
switch (nv_encoder->dcb->type) {
|
||||
case DCB_OUTPUT_TMDS:
|
||||
if (nv_encoder->link & 1) {
|
||||
proto = 0x1;
|
||||
proto = NV507D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A;
|
||||
/* Only enable dual-link if:
|
||||
* - Need to (i.e. rate > 165MHz)
|
||||
* - DCB says we can
|
||||
|
@ -1590,15 +1658,15 @@ nv50_sor_enable(struct drm_encoder *encoder)
|
|||
if (mode->clock >= 165000 &&
|
||||
nv_encoder->dcb->duallink_possible &&
|
||||
!drm_detect_hdmi_monitor(nv_connector->edid))
|
||||
proto |= 0x4;
|
||||
proto = NV507D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS;
|
||||
} else {
|
||||
proto = 0x2;
|
||||
proto = NV507D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B;
|
||||
}
|
||||
|
||||
nv50_hdmi_enable(&nv_encoder->base.base, mode);
|
||||
break;
|
||||
case DCB_OUTPUT_LVDS:
|
||||
proto = 0x0;
|
||||
proto = NV507D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM;
|
||||
|
||||
if (bios->fp_no_ddc) {
|
||||
if (bios->fp.dual_link)
|
||||
|
@ -1632,9 +1700,9 @@ nv50_sor_enable(struct drm_encoder *encoder)
|
|||
depth = nv50_dp_bpc_to_depth(asyh->or.bpc);
|
||||
|
||||
if (nv_encoder->link & 1)
|
||||
proto = 0x8;
|
||||
proto = NV887D_SOR_SET_CONTROL_PROTOCOL_DP_A;
|
||||
else
|
||||
proto = 0x9;
|
||||
proto = NV887D_SOR_SET_CONTROL_PROTOCOL_DP_B;
|
||||
|
||||
nv50_audio_enable(encoder, mode);
|
||||
break;
|
||||
|
@ -1769,8 +1837,9 @@ nv50_pior_disable(struct drm_encoder *encoder)
|
|||
{
|
||||
struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
|
||||
struct nv50_core *core = nv50_disp(encoder->dev)->core;
|
||||
const u32 ctrl = NVDEF(NV507D, PIOR_SET_CONTROL, OWNER, NONE);
|
||||
if (nv_encoder->crtc)
|
||||
core->func->pior->ctrl(core, nv_encoder->or, 0x00000000, NULL);
|
||||
core->func->pior->ctrl(core, nv_encoder->or, ctrl, NULL);
|
||||
nv_encoder->crtc = NULL;
|
||||
nv50_outp_release(nv_encoder);
|
||||
}
|
||||
|
@ -1782,29 +1851,36 @@ nv50_pior_enable(struct drm_encoder *encoder)
|
|||
struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
|
||||
struct nv50_head_atom *asyh = nv50_head_atom(nv_crtc->base.state);
|
||||
struct nv50_core *core = nv50_disp(encoder->dev)->core;
|
||||
u8 owner = 1 << nv_crtc->index;
|
||||
u8 proto;
|
||||
u32 ctrl = 0;
|
||||
|
||||
switch (nv_crtc->index) {
|
||||
case 0: ctrl |= NVDEF(NV507D, PIOR_SET_CONTROL, OWNER, HEAD0); break;
|
||||
case 1: ctrl |= NVDEF(NV507D, PIOR_SET_CONTROL, OWNER, HEAD1); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
|
||||
nv50_outp_acquire(nv_encoder, false);
|
||||
|
||||
switch (asyh->or.bpc) {
|
||||
case 10: asyh->or.depth = 0x6; break;
|
||||
case 8: asyh->or.depth = 0x5; break;
|
||||
case 6: asyh->or.depth = 0x2; break;
|
||||
default: asyh->or.depth = 0x0; break;
|
||||
case 10: asyh->or.depth = NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_30_444; break;
|
||||
case 8: asyh->or.depth = NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_444; break;
|
||||
case 6: asyh->or.depth = NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_18_444; break;
|
||||
default: asyh->or.depth = NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_DEFAULT; break;
|
||||
}
|
||||
|
||||
switch (nv_encoder->dcb->type) {
|
||||
case DCB_OUTPUT_TMDS:
|
||||
case DCB_OUTPUT_DP:
|
||||
proto = 0x0;
|
||||
ctrl |= NVDEF(NV507D, PIOR_SET_CONTROL, PROTOCOL, EXT_TMDS_ENC);
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
break;
|
||||
}
|
||||
|
||||
core->func->pior->ctrl(core, nv_encoder->or, (proto << 8) | owner, asyh);
|
||||
core->func->pior->ctrl(core, nv_encoder->or, ctrl, asyh);
|
||||
nv_encoder->crtc = encoder->crtc;
|
||||
}
|
||||
|
||||
|
@ -2171,8 +2247,10 @@ nv50_disp_atomic_commit(struct drm_device *dev,
|
|||
int ret, i;
|
||||
|
||||
ret = pm_runtime_get_sync(dev->dev);
|
||||
if (ret < 0 && ret != -EACCES)
|
||||
if (ret < 0 && ret != -EACCES) {
|
||||
pm_runtime_put_autosuspend(dev->dev);
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = drm_atomic_helper_setup_commit(state, nonblock);
|
||||
if (ret)
|
||||
|
@ -2463,7 +2541,7 @@ nv50_display_destroy(struct drm_device *dev)
|
|||
nv50_audio_component_fini(nouveau_drm(dev));
|
||||
|
||||
nvif_object_unmap(&disp->caps);
|
||||
nvif_object_fini(&disp->caps);
|
||||
nvif_object_dtor(&disp->caps);
|
||||
nv50_core_del(&disp->core);
|
||||
|
||||
nouveau_bo_unmap(disp->sync);
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#define __NV50_KMS_H__
|
||||
#include <linux/workqueue.h>
|
||||
#include <nvif/mem.h>
|
||||
#include <nvif/push.h>
|
||||
|
||||
#include "nouveau_display.h"
|
||||
|
||||
|
@ -61,7 +62,8 @@ struct nv50_chan {
|
|||
struct nv50_dmac {
|
||||
struct nv50_chan base;
|
||||
|
||||
struct nvif_mem push;
|
||||
struct nvif_push _push;
|
||||
struct nvif_push *push;
|
||||
u32 *ptr;
|
||||
|
||||
struct nvif_object sync;
|
||||
|
@ -71,6 +73,10 @@ struct nv50_dmac {
|
|||
* grabbed by evo_wait (if the pushbuf reservation is successful) and
|
||||
* dropped again by evo_kick. */
|
||||
struct mutex lock;
|
||||
|
||||
u32 cur;
|
||||
u32 put;
|
||||
u32 max;
|
||||
};
|
||||
|
||||
struct nv50_outp_atom {
|
||||
|
@ -106,18 +112,4 @@ void evo_kick(u32 *, struct nv50_dmac *);
|
|||
extern const u64 disp50xx_modifiers[];
|
||||
extern const u64 disp90xx_modifiers[];
|
||||
extern const u64 wndwc57e_modifiers[];
|
||||
|
||||
#define evo_mthd(p, m, s) do { \
|
||||
const u32 _m = (m), _s = (s); \
|
||||
if (drm_debug_enabled(DRM_UT_KMS)) \
|
||||
pr_err("%04x %d %s\n", _m, _s, __func__); \
|
||||
*((p)++) = ((_s << 18) | _m); \
|
||||
} while(0)
|
||||
|
||||
#define evo_data(p, d) do { \
|
||||
const u32 _d = (d); \
|
||||
if (drm_debug_enabled(DRM_UT_KMS)) \
|
||||
pr_err("\t%08x\n", _d); \
|
||||
*((p)++) = _d; \
|
||||
} while(0)
|
||||
#endif
|
||||
|
|
|
@ -106,9 +106,9 @@ nv50_head_atomic_check_dither(struct nv50_head_atom *armh,
|
|||
}
|
||||
}
|
||||
|
||||
asyh->dither.enable = mode;
|
||||
asyh->dither.bits = mode >> 1;
|
||||
asyh->dither.mode = mode >> 3;
|
||||
asyh->dither.enable = NVVAL_GET(mode, NV507D, HEAD_SET_DITHER_CONTROL, ENABLE);
|
||||
asyh->dither.bits = NVVAL_GET(mode, NV507D, HEAD_SET_DITHER_CONTROL, BITS);
|
||||
asyh->dither.mode = NVVAL_GET(mode, NV507D, HEAD_SET_DITHER_CONTROL, MODE);
|
||||
asyh->set.dither = true;
|
||||
}
|
||||
|
||||
|
@ -489,7 +489,7 @@ nv50_head_destroy(struct drm_crtc *crtc)
|
|||
{
|
||||
struct nv50_head *head = nv50_head(crtc);
|
||||
|
||||
nvif_notify_fini(&head->base.vblank);
|
||||
nvif_notify_dtor(&head->base.vblank);
|
||||
nv50_lut_fini(&head->olut);
|
||||
drm_crtc_cleanup(crtc);
|
||||
kfree(head);
|
||||
|
@ -598,7 +598,7 @@ nv50_head_create(struct drm_device *dev, int index)
|
|||
}
|
||||
}
|
||||
|
||||
ret = nvif_notify_init(&disp->disp->object, nv50_head_vblank_handler,
|
||||
ret = nvif_notify_ctor(&disp->disp->object, "kmsVbl", nv50_head_vblank_handler,
|
||||
false, NV04_DISP_NTFY_VBLANK,
|
||||
&(struct nvif_notify_head_req_v0) {
|
||||
.head = nv_crtc->index,
|
||||
|
|
|
@ -25,74 +25,72 @@ void nv50_head_flush_clr(struct nv50_head *head,
|
|||
struct nv50_head_atom *asyh, bool flush);
|
||||
|
||||
struct nv50_head_func {
|
||||
void (*view)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*mode)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*view)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*mode)(struct nv50_head *, struct nv50_head_atom *);
|
||||
bool (*olut)(struct nv50_head *, struct nv50_head_atom *, int);
|
||||
bool olut_identity;
|
||||
int olut_size;
|
||||
void (*olut_set)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*olut_clr)(struct nv50_head *);
|
||||
int (*olut_set)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*olut_clr)(struct nv50_head *);
|
||||
void (*core_calc)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*core_set)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*core_clr)(struct nv50_head *);
|
||||
int (*core_set)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*core_clr)(struct nv50_head *);
|
||||
int (*curs_layout)(struct nv50_head *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
int (*curs_format)(struct nv50_head *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
void (*curs_set)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*curs_clr)(struct nv50_head *);
|
||||
void (*base)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*ovly)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*dither)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*procamp)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*or)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*curs_set)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*curs_clr)(struct nv50_head *);
|
||||
int (*base)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*ovly)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*dither)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*procamp)(struct nv50_head *, struct nv50_head_atom *);
|
||||
int (*or)(struct nv50_head *, struct nv50_head_atom *);
|
||||
void (*static_wndw_map)(struct nv50_head *, struct nv50_head_atom *);
|
||||
};
|
||||
|
||||
extern const struct nv50_head_func head507d;
|
||||
void head507d_view(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head507d_mode(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head507d_view(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head507d_mode(struct nv50_head *, struct nv50_head_atom *);
|
||||
bool head507d_olut(struct nv50_head *, struct nv50_head_atom *, int);
|
||||
void head507d_core_calc(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head507d_core_clr(struct nv50_head *);
|
||||
int head507d_core_clr(struct nv50_head *);
|
||||
int head507d_curs_layout(struct nv50_head *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
int head507d_curs_format(struct nv50_head *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
void head507d_base(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head507d_ovly(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head507d_dither(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head507d_procamp(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head507d_base(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head507d_ovly(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head507d_dither(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head507d_procamp(struct nv50_head *, struct nv50_head_atom *);
|
||||
|
||||
extern const struct nv50_head_func head827d;
|
||||
|
||||
extern const struct nv50_head_func head907d;
|
||||
void head907d_view(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head907d_mode(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_view(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_mode(struct nv50_head *, struct nv50_head_atom *);
|
||||
bool head907d_olut(struct nv50_head *, struct nv50_head_atom *, int);
|
||||
void head907d_olut_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head907d_olut_clr(struct nv50_head *);
|
||||
void head907d_core_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head907d_core_clr(struct nv50_head *);
|
||||
void head907d_curs_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head907d_curs_clr(struct nv50_head *);
|
||||
void head907d_ovly(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head907d_procamp(struct nv50_head *, struct nv50_head_atom *);
|
||||
void head907d_or(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_olut_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_olut_clr(struct nv50_head *);
|
||||
int head907d_core_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_core_clr(struct nv50_head *);
|
||||
int head907d_curs_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_curs_clr(struct nv50_head *);
|
||||
int head907d_ovly(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_procamp(struct nv50_head *, struct nv50_head_atom *);
|
||||
int head907d_or(struct nv50_head *, struct nv50_head_atom *);
|
||||
|
||||
extern const struct nv50_head_func head917d;
|
||||
int head917d_curs_layout(struct nv50_head *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
|
||||
extern const struct nv50_head_func headc37d;
|
||||
void headc37d_view(struct nv50_head *, struct nv50_head_atom *);
|
||||
void headc37d_core_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
void headc37d_core_clr(struct nv50_head *);
|
||||
int headc37d_view(struct nv50_head *, struct nv50_head_atom *);
|
||||
int headc37d_curs_format(struct nv50_head *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
void headc37d_curs_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
void headc37d_curs_clr(struct nv50_head *);
|
||||
void headc37d_dither(struct nv50_head *, struct nv50_head_atom *);
|
||||
int headc37d_curs_set(struct nv50_head *, struct nv50_head_atom *);
|
||||
int headc37d_curs_clr(struct nv50_head *);
|
||||
int headc37d_dither(struct nv50_head *, struct nv50_head_atom *);
|
||||
void headc37d_static_wndw_map(struct nv50_head *, struct nv50_head_atom *);
|
||||
|
||||
extern const struct nv50_head_func headc57d;
|
||||
|
|
|
@ -22,111 +22,141 @@
|
|||
#include "head.h"
|
||||
#include "core.h"
|
||||
|
||||
void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl507d.h>
|
||||
|
||||
int
|
||||
head507d_procamp(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x08a8 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, asyh->procamp.sat.sin << 20 |
|
||||
asyh->procamp.sat.cos << 8);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_PROCAMP(i),
|
||||
NVDEF(NV507D, HEAD_SET_PROCAMP, COLOR_SPACE, RGB) |
|
||||
NVDEF(NV507D, HEAD_SET_PROCAMP, CHROMA_LPF, AUTO) |
|
||||
NVVAL(NV507D, HEAD_SET_PROCAMP, SAT_COS, asyh->procamp.sat.cos) |
|
||||
NVVAL(NV507D, HEAD_SET_PROCAMP, SAT_SINE, asyh->procamp.sat.sin) |
|
||||
NVDEF(NV507D, HEAD_SET_PROCAMP, TRANSITION, HARD));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head507d_dither(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x08a0 + (head->base.index * 0x0400), 1);
|
||||
evo_data(push, asyh->dither.mode << 3 |
|
||||
asyh->dither.bits << 1 |
|
||||
asyh->dither.enable);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_DITHER_CONTROL(i),
|
||||
NVVAL(NV507D, HEAD_SET_DITHER_CONTROL, ENABLE, asyh->dither.enable) |
|
||||
NVVAL(NV507D, HEAD_SET_DITHER_CONTROL, BITS, asyh->dither.bits) |
|
||||
NVVAL(NV507D, HEAD_SET_DITHER_CONTROL, MODE, asyh->dither.mode) |
|
||||
NVVAL(NV507D, HEAD_SET_DITHER_CONTROL, PHASE, 0));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head507d_ovly(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 bounds = 0;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if (asyh->ovly.cpp) {
|
||||
switch (asyh->ovly.cpp) {
|
||||
case 4: bounds |= 0x00000300; break;
|
||||
case 2: bounds |= 0x00000100; break;
|
||||
case 4: bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_32); break;
|
||||
case 2: bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
bounds |= 0x00000001;
|
||||
bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, USABLE, TRUE);
|
||||
} else {
|
||||
bounds |= 0x00000100;
|
||||
bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16);
|
||||
}
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0904 + head->base.index * 0x400, 1);
|
||||
evo_data(push, bounds);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(i), bounds);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head507d_base(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 bounds = 0;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if (asyh->base.cpp) {
|
||||
switch (asyh->base.cpp) {
|
||||
case 8: bounds |= 0x00000500; break;
|
||||
case 4: bounds |= 0x00000300; break;
|
||||
case 2: bounds |= 0x00000100; break;
|
||||
case 1: bounds |= 0x00000000; break;
|
||||
case 8: bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_64); break;
|
||||
case 4: bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_32); break;
|
||||
case 2: bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16); break;
|
||||
case 1: bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_8); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
bounds |= 0x00000001;
|
||||
bounds |= NVDEF(NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, USABLE, TRUE);
|
||||
}
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0900 + head->base.index * 0x400, 1);
|
||||
evo_data(push, bounds);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(i), bounds);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head507d_curs_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0880 + head->base.index * 0x400, 1);
|
||||
evo_data(push, 0x05000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_CURSOR, ENABLE, DISABLE) |
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_CURSOR, FORMAT, A8R8G8B8) |
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_CURSOR, SIZE, W64_H64));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head507d_curs_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 3))) {
|
||||
evo_mthd(push, 0x0880 + head->base.index * 0x400, 2);
|
||||
evo_data(push, 0x80000000 | asyh->curs.layout << 26 |
|
||||
asyh->curs.format << 24);
|
||||
evo_data(push, asyh->curs.offset >> 8);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 3)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_CURSOR, ENABLE, ENABLE) |
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL_CURSOR, FORMAT, asyh->curs.format) |
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL_CURSOR, SIZE, asyh->curs.layout) |
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_X, 0) |
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_Y, 0) |
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_CURSOR, COMPOSITION, ALPHA_BLEND) |
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_CURSOR, SUB_OWNER, NONE),
|
||||
|
||||
HEAD_SET_OFFSET_CURSOR(i), asyh->curs.offset >> 8);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -134,7 +164,7 @@ head507d_curs_format(struct nv50_head *head, struct nv50_wndw_atom *asyw,
|
|||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
switch (asyw->image.format) {
|
||||
case 0xcf: asyh->curs.format = 1; break;
|
||||
case 0xcf: asyh->curs.format = NV507D_HEAD_SET_CONTROL_CURSOR_FORMAT_A8R8G8B8; break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
return -EINVAL;
|
||||
|
@ -147,54 +177,70 @@ head507d_curs_layout(struct nv50_head *head, struct nv50_wndw_atom *asyw,
|
|||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
switch (asyw->image.w) {
|
||||
case 32: asyh->curs.layout = 0; break;
|
||||
case 64: asyh->curs.layout = 1; break;
|
||||
case 32: asyh->curs.layout = NV507D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32; break;
|
||||
case 64: asyh->curs.layout = NV507D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64; break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head507d_core_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0874 + head->base.index * 0x400, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_CONTEXT_DMA_ISO(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head507d_core_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 9))) {
|
||||
evo_mthd(push, 0x0860 + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->core.offset >> 8);
|
||||
evo_mthd(push, 0x0868 + head->base.index * 0x400, 4);
|
||||
evo_data(push, asyh->core.h << 16 | asyh->core.w);
|
||||
evo_data(push, asyh->core.layout << 20 |
|
||||
(asyh->core.pitch >> 8) << 8 |
|
||||
asyh->core.blocks << 8 |
|
||||
asyh->core.blockh);
|
||||
evo_data(push, asyh->core.kind << 16 |
|
||||
asyh->core.format << 8);
|
||||
evo_data(push, asyh->core.handle);
|
||||
evo_mthd(push, 0x08c0 + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->core.y << 16 | asyh->core.x);
|
||||
evo_kick(push, core);
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
/* EVO will complain with INVALID_STATE if we have an
|
||||
* active cursor and (re)specify HeadSetContextDmaIso
|
||||
* without also updating HeadSetOffsetCursor.
|
||||
*/
|
||||
asyh->set.curs = asyh->curs.visible;
|
||||
asyh->set.olut = asyh->olut.handle != 0;
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 9)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_OFFSET(i, 0),
|
||||
NVVAL(NV507D, HEAD_SET_OFFSET, ORIGIN, asyh->core.offset >> 8));
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_SIZE(i),
|
||||
NVVAL(NV507D, HEAD_SET_SIZE, WIDTH, asyh->core.w) |
|
||||
NVVAL(NV507D, HEAD_SET_SIZE, HEIGHT, asyh->core.h),
|
||||
|
||||
HEAD_SET_STORAGE(i),
|
||||
NVVAL(NV507D, HEAD_SET_STORAGE, BLOCK_HEIGHT, asyh->core.blockh) |
|
||||
NVVAL(NV507D, HEAD_SET_STORAGE, PITCH, asyh->core.pitch >> 8) |
|
||||
NVVAL(NV507D, HEAD_SET_STORAGE, PITCH, asyh->core.blocks) |
|
||||
NVVAL(NV507D, HEAD_SET_STORAGE, MEMORY_LAYOUT, asyh->core.layout),
|
||||
|
||||
HEAD_SET_PARAMS(i),
|
||||
NVVAL(NV507D, HEAD_SET_PARAMS, FORMAT, asyh->core.format) |
|
||||
NVVAL(NV507D, HEAD_SET_PARAMS, KIND, asyh->core.kind) |
|
||||
NVDEF(NV507D, HEAD_SET_PARAMS, PART_STRIDE, PARTSTRIDE_256),
|
||||
|
||||
HEAD_SET_CONTEXT_DMA_ISO(i),
|
||||
NVVAL(NV507D, HEAD_SET_CONTEXT_DMA_ISO, HANDLE, asyh->core.handle));
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_VIEWPORT_POINT_IN(i, 0),
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_POINT_IN, X, asyh->core.x) |
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_POINT_IN, Y, asyh->core.y));
|
||||
|
||||
/* EVO will complain with INVALID_STATE if we have an
|
||||
* active cursor and (re)specify HeadSetContextDmaIso
|
||||
* without also updating HeadSetOffsetCursor.
|
||||
*/
|
||||
asyh->set.curs = asyh->curs.visible;
|
||||
asyh->set.olut = asyh->olut.handle != 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -221,37 +267,47 @@ head507d_core_calc(struct nv50_head *head, struct nv50_head_atom *asyh)
|
|||
}
|
||||
asyh->core.handle = disp->core->chan.vram.handle;
|
||||
asyh->core.offset = 0;
|
||||
asyh->core.format = 0xcf;
|
||||
asyh->core.kind = 0;
|
||||
asyh->core.layout = 1;
|
||||
asyh->core.blockh = 0;
|
||||
asyh->core.format = NV507D_HEAD_SET_PARAMS_FORMAT_A8R8G8B8;
|
||||
asyh->core.kind = NV507D_HEAD_SET_PARAMS_KIND_KIND_PITCH;
|
||||
asyh->core.layout = NV507D_HEAD_SET_STORAGE_MEMORY_LAYOUT_PITCH;
|
||||
asyh->core.blockh = NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB;
|
||||
asyh->core.blocks = 0;
|
||||
asyh->core.pitch = ALIGN(asyh->core.w, 64) * 4;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head507d_olut_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0840 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_BASE_LUT_LO(i),
|
||||
NVDEF(NV507D, HEAD_SET_BASE_LUT_LO, ENABLE, DISABLE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head507d_olut_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 3))) {
|
||||
evo_mthd(push, 0x0840 + (head->base.index * 0x400), 2);
|
||||
evo_data(push, 0x80000000 | asyh->olut.mode << 30);
|
||||
evo_data(push, asyh->olut.offset >> 8);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 3)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_BASE_LUT_LO(i),
|
||||
NVDEF(NV507D, HEAD_SET_BASE_LUT_LO, ENABLE, ENABLE) |
|
||||
NVVAL(NV507D, HEAD_SET_BASE_LUT_LO, MODE, asyh->olut.mode) |
|
||||
NVVAL(NV507D, HEAD_SET_BASE_LUT_LO, ORIGIN, 0),
|
||||
|
||||
HEAD_SET_BASE_LUT_HI(i),
|
||||
NVVAL(NV507D, HEAD_SET_BASE_LUT_HI, ORIGIN, asyh->olut.offset >> 8));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -278,53 +334,97 @@ head507d_olut(struct nv50_head *head, struct nv50_head_atom *asyh, int size)
|
|||
return false;
|
||||
|
||||
if (asyh->base.cpp == 1)
|
||||
asyh->olut.mode = 0;
|
||||
asyh->olut.mode = NV507D_HEAD_SET_BASE_LUT_LO_MODE_LORES;
|
||||
else
|
||||
asyh->olut.mode = 1;
|
||||
asyh->olut.mode = NV507D_HEAD_SET_BASE_LUT_LO_MODE_HIRES;
|
||||
|
||||
asyh->olut.load = head507d_olut_load;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head507d_mode(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
struct nv50_head_mode *m = &asyh->mode;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 13))) {
|
||||
evo_mthd(push, 0x0804 + (head->base.index * 0x400), 2);
|
||||
evo_data(push, 0x00800000 | m->clock);
|
||||
evo_data(push, m->interlace ? 0x00000002 : 0x00000000);
|
||||
evo_mthd(push, 0x0810 + (head->base.index * 0x400), 7);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, m->v.active << 16 | m->h.active );
|
||||
evo_data(push, m->v.synce << 16 | m->h.synce );
|
||||
evo_data(push, m->v.blanke << 16 | m->h.blanke );
|
||||
evo_data(push, m->v.blanks << 16 | m->h.blanks );
|
||||
evo_data(push, m->v.blank2e << 16 | m->v.blank2s);
|
||||
evo_data(push, asyh->mode.v.blankus);
|
||||
evo_mthd(push, 0x082c + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 13)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_PIXEL_CLOCK(i),
|
||||
NVVAL(NV507D, HEAD_SET_PIXEL_CLOCK, FREQUENCY, m->clock) |
|
||||
NVDEF(NV507D, HEAD_SET_PIXEL_CLOCK, MODE, CLK_CUSTOM) |
|
||||
NVDEF(NV507D, HEAD_SET_PIXEL_CLOCK, ADJ1000DIV1001, FALSE) |
|
||||
NVDEF(NV507D, HEAD_SET_PIXEL_CLOCK, NOT_DRIVER, FALSE),
|
||||
|
||||
HEAD_SET_CONTROL(i),
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL, STRUCTURE, m->interlace));
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_OVERSCAN_COLOR(i),
|
||||
NVVAL(NV507D, HEAD_SET_OVERSCAN_COLOR, RED, 0) |
|
||||
NVVAL(NV507D, HEAD_SET_OVERSCAN_COLOR, GRN, 0) |
|
||||
NVVAL(NV507D, HEAD_SET_OVERSCAN_COLOR, BLU, 0),
|
||||
|
||||
HEAD_SET_RASTER_SIZE(i),
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_SIZE, WIDTH, m->h.active) |
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_SIZE, HEIGHT, m->v.active),
|
||||
|
||||
HEAD_SET_RASTER_SYNC_END(i),
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_SYNC_END, X, m->h.synce) |
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_SYNC_END, Y, m->v.synce),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_END(i),
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_BLANK_END, X, m->h.blanke) |
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_BLANK_END, Y, m->v.blanke),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_START(i),
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_BLANK_START, X, m->h.blanks) |
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_BLANK_START, Y, m->v.blanks),
|
||||
|
||||
HEAD_SET_RASTER_VERT_BLANK2(i),
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_VERT_BLANK2, YSTART, m->v.blank2s) |
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_VERT_BLANK2, YEND, m->v.blank2e),
|
||||
|
||||
HEAD_SET_RASTER_VERT_BLANK_DMI(i),
|
||||
NVVAL(NV507D, HEAD_SET_RASTER_VERT_BLANK_DMI, DURATION, m->v.blankus));
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_DEFAULT_BASE_COLOR(i),
|
||||
NVVAL(NV507D, HEAD_SET_DEFAULT_BASE_COLOR, RED, 0) |
|
||||
NVVAL(NV507D, HEAD_SET_DEFAULT_BASE_COLOR, GREEN, 0) |
|
||||
NVVAL(NV507D, HEAD_SET_DEFAULT_BASE_COLOR, BLUE, 0));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head507d_view(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 7))) {
|
||||
evo_mthd(push, 0x08a4 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x08c8 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, asyh->view.iH << 16 | asyh->view.iW);
|
||||
evo_mthd(push, 0x08d8 + (head->base.index * 0x400), 2);
|
||||
evo_data(push, asyh->view.oH << 16 | asyh->view.oW);
|
||||
evo_data(push, asyh->view.oH << 16 | asyh->view.oW);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 7)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_CONTROL_OUTPUT_SCALER(i),
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_OUTPUT_SCALER, VERTICAL_TAPS, TAPS_1) |
|
||||
NVDEF(NV507D, HEAD_SET_CONTROL_OUTPUT_SCALER, HORIZONTAL_TAPS, TAPS_1) |
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL_OUTPUT_SCALER, HRESPONSE_BIAS, 0) |
|
||||
NVVAL(NV507D, HEAD_SET_CONTROL_OUTPUT_SCALER, VRESPONSE_BIAS, 0));
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_VIEWPORT_SIZE_IN(i),
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) |
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH));
|
||||
|
||||
PUSH_MTHD(push, NV507D, HEAD_SET_VIEWPORT_SIZE_OUT(i),
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) |
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH),
|
||||
|
||||
HEAD_SET_VIEWPORT_SIZE_OUT_MIN(i),
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, WIDTH, asyh->view.oW) |
|
||||
NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, HEIGHT, asyh->view.oH));
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_head_func
|
||||
|
|
|
@ -22,85 +22,128 @@
|
|||
#include "head.h"
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl827d.h>
|
||||
|
||||
static int
|
||||
head827d_curs_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x0880 + head->base.index * 0x400, 1);
|
||||
evo_data(push, 0x05000000);
|
||||
evo_mthd(push, 0x089c + head->base.index * 0x400, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NV827D, HEAD_SET_CONTROL_CURSOR, ENABLE, DISABLE) |
|
||||
NVDEF(NV827D, HEAD_SET_CONTROL_CURSOR, FORMAT, A8R8G8B8) |
|
||||
NVDEF(NV827D, HEAD_SET_CONTROL_CURSOR, SIZE, W64_H64));
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_CONTEXT_DMA_CURSOR(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head827d_curs_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 5))) {
|
||||
evo_mthd(push, 0x0880 + head->base.index * 0x400, 2);
|
||||
evo_data(push, 0x80000000 | asyh->curs.layout << 26 |
|
||||
asyh->curs.format << 24);
|
||||
evo_data(push, asyh->curs.offset >> 8);
|
||||
evo_mthd(push, 0x089c + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->curs.handle);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NV827D, HEAD_SET_CONTROL_CURSOR, ENABLE, ENABLE) |
|
||||
NVVAL(NV827D, HEAD_SET_CONTROL_CURSOR, FORMAT, asyh->curs.format) |
|
||||
NVVAL(NV827D, HEAD_SET_CONTROL_CURSOR, SIZE, asyh->curs.layout) |
|
||||
NVVAL(NV827D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_X, 0) |
|
||||
NVVAL(NV827D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_Y, 0) |
|
||||
NVDEF(NV827D, HEAD_SET_CONTROL_CURSOR, COMPOSITION, ALPHA_BLEND) |
|
||||
NVDEF(NV827D, HEAD_SET_CONTROL_CURSOR, SUB_OWNER, NONE),
|
||||
|
||||
HEAD_SET_OFFSET_CURSOR(i), asyh->curs.offset >> 8);
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_CONTEXT_DMA_CURSOR(i), asyh->curs.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head827d_core_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 9))) {
|
||||
evo_mthd(push, 0x0860 + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->core.offset >> 8);
|
||||
evo_mthd(push, 0x0868 + head->base.index * 0x400, 4);
|
||||
evo_data(push, asyh->core.h << 16 | asyh->core.w);
|
||||
evo_data(push, asyh->core.layout << 20 |
|
||||
(asyh->core.pitch >> 8) << 8 |
|
||||
asyh->core.blocks << 8 |
|
||||
asyh->core.blockh);
|
||||
evo_data(push, asyh->core.format << 8);
|
||||
evo_data(push, asyh->core.handle);
|
||||
evo_mthd(push, 0x08c0 + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->core.y << 16 | asyh->core.x);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 9)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_OFFSET(i, 0),
|
||||
NVVAL(NV827D, HEAD_SET_OFFSET, ORIGIN, asyh->core.offset >> 8));
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_SIZE(i),
|
||||
NVVAL(NV827D, HEAD_SET_SIZE, WIDTH, asyh->core.w) |
|
||||
NVVAL(NV827D, HEAD_SET_SIZE, HEIGHT, asyh->core.h),
|
||||
|
||||
HEAD_SET_STORAGE(i),
|
||||
NVVAL(NV827D, HEAD_SET_STORAGE, BLOCK_HEIGHT, asyh->core.blockh) |
|
||||
NVVAL(NV827D, HEAD_SET_STORAGE, PITCH, asyh->core.pitch >> 8) |
|
||||
NVVAL(NV827D, HEAD_SET_STORAGE, PITCH, asyh->core.blocks) |
|
||||
NVVAL(NV827D, HEAD_SET_STORAGE, MEMORY_LAYOUT, asyh->core.layout),
|
||||
|
||||
HEAD_SET_PARAMS(i),
|
||||
NVVAL(NV827D, HEAD_SET_PARAMS, FORMAT, asyh->core.format) |
|
||||
NVDEF(NV827D, HEAD_SET_PARAMS, SUPER_SAMPLE, X1_AA) |
|
||||
NVDEF(NV827D, HEAD_SET_PARAMS, GAMMA, LINEAR),
|
||||
|
||||
HEAD_SET_CONTEXT_DMAS_ISO(i, 0),
|
||||
NVVAL(NV827D, HEAD_SET_CONTEXT_DMAS_ISO, HANDLE, asyh->core.handle));
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_VIEWPORT_POINT_IN(i, 0),
|
||||
NVVAL(NV827D, HEAD_SET_VIEWPORT_POINT_IN, X, asyh->core.x) |
|
||||
NVVAL(NV827D, HEAD_SET_VIEWPORT_POINT_IN, Y, asyh->core.y));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head827d_olut_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x0840 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x085c + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_BASE_LUT_LO(i),
|
||||
NVDEF(NV827D, HEAD_SET_BASE_LUT_LO, ENABLE, DISABLE));
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_CONTEXT_DMA_LUT(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head827d_olut_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 5))) {
|
||||
evo_mthd(push, 0x0840 + (head->base.index * 0x400), 2);
|
||||
evo_data(push, 0x80000000 | asyh->olut.mode << 30);
|
||||
evo_data(push, asyh->olut.offset >> 8);
|
||||
evo_mthd(push, 0x085c + (head->base.index * 0x400), 1);
|
||||
evo_data(push, asyh->olut.handle);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_BASE_LUT_LO(i),
|
||||
NVDEF(NV827D, HEAD_SET_BASE_LUT_LO, ENABLE, ENABLE) |
|
||||
NVVAL(NV827D, HEAD_SET_BASE_LUT_LO, MODE, asyh->olut.mode) |
|
||||
NVVAL(NV827D, HEAD_SET_BASE_LUT_LO, ORIGIN, 0),
|
||||
|
||||
HEAD_SET_BASE_LUT_HI(i),
|
||||
NVVAL(NV827D, HEAD_SET_BASE_LUT_HI, ORIGIN, asyh->olut.offset >> 8));
|
||||
|
||||
PUSH_MTHD(push, NV827D, HEAD_SET_CONTEXT_DMA_LUT(i), asyh->olut.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_head_func
|
||||
|
|
|
@ -29,196 +29,257 @@
|
|||
#include "core.h"
|
||||
#include "crc.h"
|
||||
|
||||
void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl907d.h>
|
||||
|
||||
int
|
||||
head907d_or(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 3))) {
|
||||
evo_mthd(push, 0x0404 + (head->base.index * 0x300), 2);
|
||||
evo_data(push, asyh->or.depth << 6 |
|
||||
asyh->or.nvsync << 4 |
|
||||
asyh->or.nhsync << 3 |
|
||||
asyh->or.crc_raster);
|
||||
evo_data(push, 0x31ec6000 | head->base.index << 25 |
|
||||
asyh->mode.interlace);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 3)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTROL_OUTPUT_RESOURCE(i),
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, CRC_MODE, asyh->or.crc_raster) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, HSYNC_POLARITY, asyh->or.nhsync) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, VSYNC_POLARITY, asyh->or.nvsync) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, PIXEL_DEPTH, asyh->or.depth),
|
||||
|
||||
HEAD_SET_CONTROL(i), 0x31ec6000 | head->base.index << 25 |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL, STRUCTURE, asyh->mode.interlace));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_procamp(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0498 + (head->base.index * 0x300), 1);
|
||||
evo_data(push, asyh->procamp.sat.sin << 20 |
|
||||
asyh->procamp.sat.cos << 8);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_PROCAMP(i),
|
||||
NVDEF(NV907D, HEAD_SET_PROCAMP, COLOR_SPACE, RGB) |
|
||||
NVDEF(NV907D, HEAD_SET_PROCAMP, CHROMA_LPF, AUTO) |
|
||||
NVVAL(NV907D, HEAD_SET_PROCAMP, SAT_COS, asyh->procamp.sat.cos) |
|
||||
NVVAL(NV907D, HEAD_SET_PROCAMP, SAT_SINE, asyh->procamp.sat.sin) |
|
||||
NVDEF(NV907D, HEAD_SET_PROCAMP, DYNAMIC_RANGE, VESA) |
|
||||
NVDEF(NV907D, HEAD_SET_PROCAMP, RANGE_COMPRESSION, DISABLE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head907d_dither(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0490 + (head->base.index * 0x0300), 1);
|
||||
evo_data(push, asyh->dither.mode << 3 |
|
||||
asyh->dither.bits << 1 |
|
||||
asyh->dither.enable);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_DITHER_CONTROL(i),
|
||||
NVVAL(NV907D, HEAD_SET_DITHER_CONTROL, ENABLE, asyh->dither.enable) |
|
||||
NVVAL(NV907D, HEAD_SET_DITHER_CONTROL, BITS, asyh->dither.bits) |
|
||||
NVVAL(NV907D, HEAD_SET_DITHER_CONTROL, MODE, asyh->dither.mode) |
|
||||
NVVAL(NV907D, HEAD_SET_DITHER_CONTROL, PHASE, 0));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_ovly(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 bounds = 0;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if (asyh->ovly.cpp) {
|
||||
switch (asyh->ovly.cpp) {
|
||||
case 8: bounds |= 0x00000500; break;
|
||||
case 4: bounds |= 0x00000300; break;
|
||||
case 2: bounds |= 0x00000100; break;
|
||||
case 8: bounds |= NVDEF(NV907D, HEAD_SET_OVERLAY_USAGE_BOUNDS, PIXEL_DEPTH, BPP_64); break;
|
||||
case 4: bounds |= NVDEF(NV907D, HEAD_SET_OVERLAY_USAGE_BOUNDS, PIXEL_DEPTH, BPP_32); break;
|
||||
case 2: bounds |= NVDEF(NV907D, HEAD_SET_OVERLAY_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
bounds |= 0x00000001;
|
||||
bounds |= NVDEF(NV907D, HEAD_SET_OVERLAY_USAGE_BOUNDS, USABLE, TRUE);
|
||||
} else {
|
||||
bounds |= 0x00000100;
|
||||
bounds |= NVDEF(NV907D, HEAD_SET_OVERLAY_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16);
|
||||
}
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x04d4 + head->base.index * 0x300, 1);
|
||||
evo_data(push, bounds);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_OVERLAY_USAGE_BOUNDS(i), bounds);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head907d_base(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 bounds = 0;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if (asyh->base.cpp) {
|
||||
switch (asyh->base.cpp) {
|
||||
case 8: bounds |= 0x00000500; break;
|
||||
case 4: bounds |= 0x00000300; break;
|
||||
case 2: bounds |= 0x00000100; break;
|
||||
case 1: bounds |= 0x00000000; break;
|
||||
case 8: bounds |= NVDEF(NV907D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_64); break;
|
||||
case 4: bounds |= NVDEF(NV907D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_32); break;
|
||||
case 2: bounds |= NVDEF(NV907D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16); break;
|
||||
case 1: bounds |= NVDEF(NV907D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_8); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
bounds |= 0x00000001;
|
||||
bounds |= NVDEF(NV907D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, USABLE, TRUE);
|
||||
}
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x04d0 + head->base.index * 0x300, 1);
|
||||
evo_data(push, bounds);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(i), bounds);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_curs_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x0480 + head->base.index * 0x300, 1);
|
||||
evo_data(push, 0x05000000);
|
||||
evo_mthd(push, 0x048c + head->base.index * 0x300, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_CURSOR, ENABLE, DISABLE) |
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_CURSOR, FORMAT, A8R8G8B8) |
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_CURSOR, SIZE, W64_H64));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_CURSOR(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_curs_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 5))) {
|
||||
evo_mthd(push, 0x0480 + head->base.index * 0x300, 2);
|
||||
evo_data(push, 0x80000000 | asyh->curs.layout << 26 |
|
||||
asyh->curs.format << 24);
|
||||
evo_data(push, asyh->curs.offset >> 8);
|
||||
evo_mthd(push, 0x048c + head->base.index * 0x300, 1);
|
||||
evo_data(push, asyh->curs.handle);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_CURSOR, ENABLE, ENABLE) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_CURSOR, FORMAT, asyh->curs.format) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_CURSOR, SIZE, asyh->curs.layout) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_X, 0) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_Y, 0) |
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_CURSOR, COMPOSITION, ALPHA_BLEND),
|
||||
|
||||
HEAD_SET_OFFSET_CURSOR(i), asyh->curs.offset >> 8);
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_CURSOR(i), asyh->curs.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_core_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x0474 + head->base.index * 0x300, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMAS_ISO(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_core_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 9))) {
|
||||
evo_mthd(push, 0x0460 + head->base.index * 0x300, 1);
|
||||
evo_data(push, asyh->core.offset >> 8);
|
||||
evo_mthd(push, 0x0468 + head->base.index * 0x300, 4);
|
||||
evo_data(push, asyh->core.h << 16 | asyh->core.w);
|
||||
evo_data(push, asyh->core.layout << 24 |
|
||||
(asyh->core.pitch >> 8) << 8 |
|
||||
asyh->core.blocks << 8 |
|
||||
asyh->core.blockh);
|
||||
evo_data(push, asyh->core.format << 8);
|
||||
evo_data(push, asyh->core.handle);
|
||||
evo_mthd(push, 0x04b0 + head->base.index * 0x300, 1);
|
||||
evo_data(push, asyh->core.y << 16 | asyh->core.x);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 9)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_OFFSET(i),
|
||||
NVVAL(NV907D, HEAD_SET_OFFSET, ORIGIN, asyh->core.offset >> 8));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_SIZE(i),
|
||||
NVVAL(NV907D, HEAD_SET_SIZE, WIDTH, asyh->core.w) |
|
||||
NVVAL(NV907D, HEAD_SET_SIZE, HEIGHT, asyh->core.h),
|
||||
|
||||
HEAD_SET_STORAGE(i),
|
||||
NVVAL(NV907D, HEAD_SET_STORAGE, BLOCK_HEIGHT, asyh->core.blockh) |
|
||||
NVVAL(NV907D, HEAD_SET_STORAGE, PITCH, asyh->core.pitch >> 8) |
|
||||
NVVAL(NV907D, HEAD_SET_STORAGE, PITCH, asyh->core.blocks) |
|
||||
NVVAL(NV907D, HEAD_SET_STORAGE, MEMORY_LAYOUT, asyh->core.layout),
|
||||
|
||||
HEAD_SET_PARAMS(i),
|
||||
NVVAL(NV907D, HEAD_SET_PARAMS, FORMAT, asyh->core.format) |
|
||||
NVDEF(NV907D, HEAD_SET_PARAMS, SUPER_SAMPLE, X1_AA) |
|
||||
NVDEF(NV907D, HEAD_SET_PARAMS, GAMMA, LINEAR),
|
||||
|
||||
HEAD_SET_CONTEXT_DMAS_ISO(i),
|
||||
NVVAL(NV907D, HEAD_SET_CONTEXT_DMAS_ISO, HANDLE, asyh->core.handle));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_VIEWPORT_POINT_IN(i),
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_POINT_IN, X, asyh->core.x) |
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_POINT_IN, Y, asyh->core.y));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_olut_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x0448 + (head->base.index * 0x300), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x045c + (head->base.index * 0x300), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_OUTPUT_LUT_LO(i),
|
||||
NVDEF(NV907D, HEAD_SET_OUTPUT_LUT_LO, ENABLE, DISABLE));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_LUT(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_olut_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 5))) {
|
||||
evo_mthd(push, 0x0448 + (head->base.index * 0x300), 2);
|
||||
evo_data(push, 0x80000000 | asyh->olut.mode << 24);
|
||||
evo_data(push, asyh->olut.offset >> 8);
|
||||
evo_mthd(push, 0x045c + (head->base.index * 0x300), 1);
|
||||
evo_data(push, asyh->olut.handle);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_OUTPUT_LUT_LO(i),
|
||||
NVDEF(NV907D, HEAD_SET_OUTPUT_LUT_LO, ENABLE, ENABLE) |
|
||||
NVVAL(NV907D, HEAD_SET_OUTPUT_LUT_LO, MODE, asyh->olut.mode) |
|
||||
NVDEF(NV907D, HEAD_SET_OUTPUT_LUT_LO, NEVER_YIELD_TO_BASE, DISABLE),
|
||||
|
||||
HEAD_SET_OUTPUT_LUT_HI(i),
|
||||
NVVAL(NV907D, HEAD_SET_OUTPUT_LUT_HI, ORIGIN, asyh->olut.offset >> 8));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTEXT_DMA_LUT(i), asyh->olut.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -244,52 +305,110 @@ head907d_olut(struct nv50_head *head, struct nv50_head_atom *asyh, int size)
|
|||
if (size != 256 && size != 1024)
|
||||
return false;
|
||||
|
||||
asyh->olut.mode = size == 1024 ? 4 : 7;
|
||||
if (size == 1024)
|
||||
asyh->olut.mode = NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_UNITY_RANGE;
|
||||
else
|
||||
asyh->olut.mode = NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_257_UNITY_RANGE;
|
||||
|
||||
asyh->olut.load = head907d_olut_load;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_mode(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
struct nv50_head_mode *m = &asyh->mode;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 14))) {
|
||||
evo_mthd(push, 0x0410 + (head->base.index * 0x300), 6);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, m->v.active << 16 | m->h.active );
|
||||
evo_data(push, m->v.synce << 16 | m->h.synce );
|
||||
evo_data(push, m->v.blanke << 16 | m->h.blanke );
|
||||
evo_data(push, m->v.blanks << 16 | m->h.blanks );
|
||||
evo_data(push, m->v.blank2e << 16 | m->v.blank2s);
|
||||
evo_mthd(push, 0x042c + (head->base.index * 0x300), 2);
|
||||
evo_data(push, 0x00000000); /* ??? */
|
||||
evo_data(push, 0xffffff00);
|
||||
evo_mthd(push, 0x0450 + (head->base.index * 0x300), 3);
|
||||
evo_data(push, m->clock * 1000);
|
||||
evo_data(push, 0x00200000); /* ??? */
|
||||
evo_data(push, m->clock * 1000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 14)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_OVERSCAN_COLOR(i),
|
||||
NVVAL(NV907D, HEAD_SET_OVERSCAN_COLOR, RED, 0) |
|
||||
NVVAL(NV907D, HEAD_SET_OVERSCAN_COLOR, GRN, 0) |
|
||||
NVVAL(NV907D, HEAD_SET_OVERSCAN_COLOR, BLU, 0),
|
||||
|
||||
HEAD_SET_RASTER_SIZE(i),
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_SIZE, WIDTH, m->h.active) |
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_SIZE, HEIGHT, m->v.active),
|
||||
|
||||
HEAD_SET_RASTER_SYNC_END(i),
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_SYNC_END, X, m->h.synce) |
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_SYNC_END, Y, m->v.synce),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_END(i),
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_BLANK_END, X, m->h.blanke) |
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_BLANK_END, Y, m->v.blanke),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_START(i),
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_BLANK_START, X, m->h.blanks) |
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_BLANK_START, Y, m->v.blanks),
|
||||
|
||||
HEAD_SET_RASTER_VERT_BLANK2(i),
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_VERT_BLANK2, YSTART, m->v.blank2s) |
|
||||
NVVAL(NV907D, HEAD_SET_RASTER_VERT_BLANK2, YEND, m->v.blank2e));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_DEFAULT_BASE_COLOR(i),
|
||||
NVVAL(NV907D, HEAD_SET_DEFAULT_BASE_COLOR, RED, 0) |
|
||||
NVVAL(NV907D, HEAD_SET_DEFAULT_BASE_COLOR, GREEN, 0) |
|
||||
NVVAL(NV907D, HEAD_SET_DEFAULT_BASE_COLOR, BLUE, 0),
|
||||
|
||||
HEAD_SET_CRC_CONTROL(i),
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, CONTROLLING_CHANNEL, CORE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, EXPECT_BUFFER_COLLAPSE, FALSE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, TIMESTAMP_MODE, FALSE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, PRIMARY_OUTPUT, NONE) |
|
||||
NVDEF(NV907D, HEAD_SET_CRC_CONTROL, SECONDARY_OUTPUT, NONE));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY(i),
|
||||
NVVAL(NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY, HERTZ, m->clock * 1000) |
|
||||
NVDEF(NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY, ADJ1000DIV1001, FALSE),
|
||||
|
||||
HEAD_SET_PIXEL_CLOCK_CONFIGURATION(i),
|
||||
NVDEF(NV907D, HEAD_SET_PIXEL_CLOCK_CONFIGURATION, MODE, CLK_CUSTOM) |
|
||||
NVDEF(NV907D, HEAD_SET_PIXEL_CLOCK_CONFIGURATION, NOT_DRIVER, FALSE) |
|
||||
NVDEF(NV907D, HEAD_SET_PIXEL_CLOCK_CONFIGURATION, ENABLE_HOPPING, FALSE),
|
||||
|
||||
HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(i),
|
||||
NVVAL(NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX, HERTZ, m->clock * 1000) |
|
||||
NVDEF(NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX, ADJ1000DIV1001, FALSE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
head907d_view(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 8))) {
|
||||
evo_mthd(push, 0x0494 + (head->base.index * 0x300), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x04b8 + (head->base.index * 0x300), 1);
|
||||
evo_data(push, asyh->view.iH << 16 | asyh->view.iW);
|
||||
evo_mthd(push, 0x04c0 + (head->base.index * 0x300), 3);
|
||||
evo_data(push, asyh->view.oH << 16 | asyh->view.oW);
|
||||
evo_data(push, asyh->view.oH << 16 | asyh->view.oW);
|
||||
evo_data(push, asyh->view.oH << 16 | asyh->view.oW);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 8)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_CONTROL_OUTPUT_SCALER(i),
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_OUTPUT_SCALER, VERTICAL_TAPS, TAPS_1) |
|
||||
NVDEF(NV907D, HEAD_SET_CONTROL_OUTPUT_SCALER, HORIZONTAL_TAPS, TAPS_1) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_OUTPUT_SCALER, HRESPONSE_BIAS, 0) |
|
||||
NVVAL(NV907D, HEAD_SET_CONTROL_OUTPUT_SCALER, VRESPONSE_BIAS, 0));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_VIEWPORT_SIZE_IN(i),
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) |
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH));
|
||||
|
||||
PUSH_MTHD(push, NV907D, HEAD_SET_VIEWPORT_SIZE_OUT(i),
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) |
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH),
|
||||
|
||||
HEAD_SET_VIEWPORT_SIZE_OUT_MIN(i),
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, WIDTH, asyh->view.oW) |
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, HEIGHT, asyh->view.oH),
|
||||
|
||||
HEAD_SET_VIEWPORT_SIZE_OUT_MAX(i),
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_OUT_MAX, WIDTH, asyh->view.oW) |
|
||||
NVVAL(NV907D, HEAD_SET_VIEWPORT_SIZE_OUT_MAX, HEIGHT, asyh->view.oH));
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_head_func
|
||||
|
|
|
@ -22,45 +22,55 @@
|
|||
#include "head.h"
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl917d.h>
|
||||
|
||||
static int
|
||||
head917d_dither(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x04a0 + (head->base.index * 0x0300), 1);
|
||||
evo_data(push, asyh->dither.mode << 3 |
|
||||
asyh->dither.bits << 1 |
|
||||
asyh->dither.enable);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV917D, HEAD_SET_DITHER_CONTROL(i),
|
||||
NVVAL(NV917D, HEAD_SET_DITHER_CONTROL, ENABLE, asyh->dither.enable) |
|
||||
NVVAL(NV917D, HEAD_SET_DITHER_CONTROL, BITS, asyh->dither.bits) |
|
||||
NVVAL(NV917D, HEAD_SET_DITHER_CONTROL, MODE, asyh->dither.mode) |
|
||||
NVVAL(NV917D, HEAD_SET_DITHER_CONTROL, PHASE, 0));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
head917d_base(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u32 bounds = 0;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if (asyh->base.cpp) {
|
||||
switch (asyh->base.cpp) {
|
||||
case 8: bounds |= 0x00000500; break;
|
||||
case 4: bounds |= 0x00000300; break;
|
||||
case 2: bounds |= 0x00000100; break;
|
||||
case 1: bounds |= 0x00000000; break;
|
||||
case 8: bounds |= NVDEF(NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_64); break;
|
||||
case 4: bounds |= NVDEF(NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_32); break;
|
||||
case 2: bounds |= NVDEF(NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_16); break;
|
||||
case 1: bounds |= NVDEF(NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, PIXEL_DEPTH, BPP_8); break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
bounds |= 0x00020001;
|
||||
bounds |= NVDEF(NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, USABLE, TRUE);
|
||||
bounds |= NVDEF(NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS, BASE_LUT, USAGE_1025);
|
||||
}
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x04d0 + head->base.index * 0x300, 1);
|
||||
evo_data(push, bounds);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV917D, HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(i), bounds);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -68,10 +78,10 @@ head917d_curs_layout(struct nv50_head *head, struct nv50_wndw_atom *asyw,
|
|||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
switch (asyw->state.fb->width) {
|
||||
case 32: asyh->curs.layout = 0; break;
|
||||
case 64: asyh->curs.layout = 1; break;
|
||||
case 128: asyh->curs.layout = 2; break;
|
||||
case 256: asyh->curs.layout = 3; break;
|
||||
case 32: asyh->curs.layout = NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32; break;
|
||||
case 64: asyh->curs.layout = NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64; break;
|
||||
case 128: asyh->curs.layout = NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W128_H128; break;
|
||||
case 256: asyh->curs.layout = NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W256_H256; break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
|
|
@ -23,96 +23,131 @@
|
|||
#include "atom.h"
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
#include <nvhw/class/clc37d.h>
|
||||
|
||||
static int
|
||||
headc37d_or(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u8 depth;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
/*XXX: This is a dirty hack until OR depth handling is
|
||||
* improved later for deep colour etc.
|
||||
*/
|
||||
switch (asyh->or.depth) {
|
||||
case 6: depth = 5; break;
|
||||
case 5: depth = 4; break;
|
||||
case 2: depth = 1; break;
|
||||
case 0: depth = 4; break;
|
||||
default:
|
||||
depth = asyh->or.depth;
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
|
||||
evo_mthd(push, 0x2004 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, depth << 4 |
|
||||
asyh->or.nvsync << 3 |
|
||||
asyh->or.nhsync << 2 |
|
||||
asyh->or.crc_raster);
|
||||
evo_kick(push, core);
|
||||
/*XXX: This is a dirty hack until OR depth handling is
|
||||
* improved later for deep colour etc.
|
||||
*/
|
||||
switch (asyh->or.depth) {
|
||||
case 6: depth = 5; break;
|
||||
case 5: depth = 4; break;
|
||||
case 2: depth = 1; break;
|
||||
case 0: depth = 4; break;
|
||||
default:
|
||||
depth = asyh->or.depth;
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTROL_OUTPUT_RESOURCE(i),
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, CRC_MODE, asyh->or.crc_raster) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, HSYNC_POLARITY, asyh->or.nhsync) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, VSYNC_POLARITY, asyh->or.nvsync) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, PIXEL_DEPTH, depth) |
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, COLOR_SPACE_OVERRIDE, DISABLE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
headc37d_procamp(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x2000 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x80000000 |
|
||||
asyh->procamp.sat.sin << 16 |
|
||||
asyh->procamp.sat.cos << 4);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_PROCAMP(i),
|
||||
NVDEF(NVC37D, HEAD_SET_PROCAMP, COLOR_SPACE, RGB) |
|
||||
NVDEF(NVC37D, HEAD_SET_PROCAMP, CHROMA_LPF, DISABLE) |
|
||||
NVVAL(NVC37D, HEAD_SET_PROCAMP, SAT_COS, asyh->procamp.sat.cos) |
|
||||
NVVAL(NVC37D, HEAD_SET_PROCAMP, SAT_SINE, asyh->procamp.sat.sin) |
|
||||
NVDEF(NVC37D, HEAD_SET_PROCAMP, DYNAMIC_RANGE, VESA) |
|
||||
NVDEF(NVC37D, HEAD_SET_PROCAMP, RANGE_COMPRESSION, DISABLE) |
|
||||
NVDEF(NVC37D, HEAD_SET_PROCAMP, BLACK_LEVEL, GRAPHICS));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
headc37d_dither(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x2018 + (head->base.index * 0x0400), 1);
|
||||
evo_data(push, asyh->dither.mode << 8 |
|
||||
asyh->dither.bits << 4 |
|
||||
asyh->dither.enable);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_DITHER_CONTROL(i),
|
||||
NVVAL(NVC37D, HEAD_SET_DITHER_CONTROL, ENABLE, asyh->dither.enable) |
|
||||
NVVAL(NVC37D, HEAD_SET_DITHER_CONTROL, BITS, asyh->dither.bits) |
|
||||
NVDEF(NVC37D, HEAD_SET_DITHER_CONTROL, OFFSET_ENABLE, DISABLE) |
|
||||
NVVAL(NVC37D, HEAD_SET_DITHER_CONTROL, MODE, asyh->dither.mode) |
|
||||
NVVAL(NVC37D, HEAD_SET_DITHER_CONTROL, PHASE, 0));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
headc37d_curs_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x209c + head->base.index * 0x400, 1);
|
||||
evo_data(push, 0x000000cf);
|
||||
evo_mthd(push, 0x2088 + head->base.index * 0x400, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR, ENABLE, DISABLE) |
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR, FORMAT, A8R8G8B8));
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTEXT_DMA_CURSOR(i, 0), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
headc37d_curs_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 7))) {
|
||||
evo_mthd(push, 0x209c + head->base.index * 0x400, 2);
|
||||
evo_data(push, 0x80000000 |
|
||||
asyh->curs.layout << 8 |
|
||||
asyh->curs.format << 0);
|
||||
evo_data(push, 0x000072ff);
|
||||
evo_mthd(push, 0x2088 + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->curs.handle);
|
||||
evo_mthd(push, 0x2090 + head->base.index * 0x400, 1);
|
||||
evo_data(push, asyh->curs.offset >> 8);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 7)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTROL_CURSOR(i),
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR, ENABLE, ENABLE) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_CURSOR, FORMAT, asyh->curs.format) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_CURSOR, SIZE, asyh->curs.layout) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_X, 0) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_CURSOR, HOT_SPOT_Y, 0) |
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR, DE_GAMMA, NONE),
|
||||
|
||||
HEAD_SET_CONTROL_CURSOR_COMPOSITION(i),
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_CURSOR_COMPOSITION, K1, 0xff) |
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR_COMPOSITION, CURSOR_COLOR_FACTOR_SELECT,
|
||||
K1) |
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR_COMPOSITION, VIEWPORT_COLOR_FACTOR_SELECT,
|
||||
NEG_K1_TIMES_SRC) |
|
||||
NVDEF(NVC37D, HEAD_SET_CONTROL_CURSOR_COMPOSITION, MODE, BLEND));
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTEXT_DMA_CURSOR(i, 0), asyh->curs.handle);
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_OFFSET_CURSOR(i, 0), asyh->curs.offset >> 8);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -123,32 +158,38 @@ headc37d_curs_format(struct nv50_head *head, struct nv50_wndw_atom *asyw,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
headc37d_olut_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x20ac + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTEXT_DMA_OUTPUT_LUT(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
headc37d_olut_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x20a4 + (head->base.index * 0x400), 3);
|
||||
evo_data(push, asyh->olut.output_mode << 8 |
|
||||
asyh->olut.range << 4 |
|
||||
asyh->olut.size);
|
||||
evo_data(push, asyh->olut.offset >> 8);
|
||||
evo_data(push, asyh->olut.handle);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_CONTROL_OUTPUT_LUT(i),
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_LUT, SIZE, asyh->olut.size) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_LUT, RANGE, asyh->olut.range) |
|
||||
NVVAL(NVC37D, HEAD_SET_CONTROL_OUTPUT_LUT, OUTPUT_MODE, asyh->olut.output_mode),
|
||||
|
||||
HEAD_SET_OFFSET_OUTPUT_LUT(i), asyh->olut.offset >> 8,
|
||||
HEAD_SET_CONTEXT_DMA_OUTPUT_LUT(i), asyh->olut.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static bool
|
||||
|
@ -157,51 +198,77 @@ headc37d_olut(struct nv50_head *head, struct nv50_head_atom *asyh, int size)
|
|||
if (size != 256 && size != 1024)
|
||||
return false;
|
||||
|
||||
asyh->olut.mode = 2;
|
||||
asyh->olut.size = size == 1024 ? 2 : 0;
|
||||
asyh->olut.range = 0;
|
||||
asyh->olut.output_mode = 1;
|
||||
asyh->olut.size = size == 1024 ? NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_SIZE_SIZE_1025 :
|
||||
NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_SIZE_SIZE_257;
|
||||
asyh->olut.range = NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_RANGE_UNITY;
|
||||
asyh->olut.output_mode = NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_OUTPUT_MODE_INTERPOLATE;
|
||||
asyh->olut.load = head907d_olut_load;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
headc37d_mode(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
struct nv50_head_mode *m = &asyh->mode;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 13))) {
|
||||
evo_mthd(push, 0x2064 + (head->base.index * 0x400), 5);
|
||||
evo_data(push, (m->v.active << 16) | m->h.active );
|
||||
evo_data(push, (m->v.synce << 16) | m->h.synce );
|
||||
evo_data(push, (m->v.blanke << 16) | m->h.blanke );
|
||||
evo_data(push, (m->v.blanks << 16) | m->h.blanks );
|
||||
evo_data(push, (m->v.blank2e << 16) | m->v.blank2s);
|
||||
evo_mthd(push, 0x2008 + (head->base.index * 0x400), 2);
|
||||
evo_data(push, m->interlace);
|
||||
evo_data(push, m->clock * 1000);
|
||||
evo_mthd(push, 0x2028 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, m->clock * 1000);
|
||||
/*XXX: HEAD_USAGE_BOUNDS, doesn't belong here. */
|
||||
evo_mthd(push, 0x2030 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000124);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 15)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_RASTER_SIZE(i),
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_SIZE, WIDTH, m->h.active) |
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_SIZE, HEIGHT, m->v.active),
|
||||
|
||||
HEAD_SET_RASTER_SYNC_END(i),
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_SYNC_END, X, m->h.synce) |
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_SYNC_END, Y, m->v.synce),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_END(i),
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_BLANK_END, X, m->h.blanke) |
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_BLANK_END, Y, m->v.blanke),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_START(i),
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_BLANK_START, X, m->h.blanks) |
|
||||
NVVAL(NVC37D, HEAD_SET_RASTER_BLANK_START, Y, m->v.blanks));
|
||||
|
||||
//XXX:
|
||||
PUSH_NVSQ(push, NVC37D, 0x2074 + (i * 0x400), m->v.blank2e << 16 | m->v.blank2s);
|
||||
PUSH_NVSQ(push, NVC37D, 0x2008 + (i * 0x400), m->interlace);
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_PIXEL_CLOCK_FREQUENCY(i),
|
||||
NVVAL(NVC37D, HEAD_SET_PIXEL_CLOCK_FREQUENCY, HERTZ, m->clock * 1000));
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(i),
|
||||
NVVAL(NVC37D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX, HERTZ, m->clock * 1000));
|
||||
|
||||
/*XXX: HEAD_USAGE_BOUNDS, doesn't belong here. */
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_HEAD_USAGE_BOUNDS(i),
|
||||
NVDEF(NVC37D, HEAD_SET_HEAD_USAGE_BOUNDS, CURSOR, USAGE_W256_H256) |
|
||||
NVDEF(NVC37D, HEAD_SET_HEAD_USAGE_BOUNDS, OUTPUT_LUT, USAGE_1025) |
|
||||
NVDEF(NVC37D, HEAD_SET_HEAD_USAGE_BOUNDS, UPSCALING_ALLOWED, TRUE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
headc37d_view(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x204c + (head->base.index * 0x400), 1);
|
||||
evo_data(push, (asyh->view.iH << 16) | asyh->view.iW);
|
||||
evo_mthd(push, 0x2058 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, (asyh->view.oH << 16) | asyh->view.oW);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_VIEWPORT_SIZE_IN(i),
|
||||
NVVAL(NVC37D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) |
|
||||
NVVAL(NVC37D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH));
|
||||
|
||||
PUSH_MTHD(push, NVC37D, HEAD_SET_VIEWPORT_SIZE_OUT(i),
|
||||
NVVAL(NVC37D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) |
|
||||
NVVAL(NVC37D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -23,83 +23,97 @@
|
|||
#include "atom.h"
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
#include <nvhw/class/clc57d.h>
|
||||
|
||||
static int
|
||||
headc57d_or(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
u8 depth;
|
||||
u32 *push;
|
||||
int ret;
|
||||
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
/*XXX: This is a dirty hack until OR depth handling is
|
||||
* improved later for deep colour etc.
|
||||
*/
|
||||
switch (asyh->or.depth) {
|
||||
case 6: depth = 5; break;
|
||||
case 5: depth = 4; break;
|
||||
case 2: depth = 1; break;
|
||||
case 0: depth = 4; break;
|
||||
default:
|
||||
depth = asyh->or.depth;
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
|
||||
evo_mthd(push, 0x2004 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0xfc000000 |
|
||||
depth << 4 |
|
||||
asyh->or.nvsync << 3 |
|
||||
asyh->or.nhsync << 2 |
|
||||
asyh->or.crc_raster);
|
||||
evo_kick(push, core);
|
||||
/*XXX: This is a dirty hack until OR depth handling is
|
||||
* improved later for deep colour etc.
|
||||
*/
|
||||
switch (asyh->or.depth) {
|
||||
case 6: depth = 5; break;
|
||||
case 5: depth = 4; break;
|
||||
case 2: depth = 1; break;
|
||||
case 0: depth = 4; break;
|
||||
default:
|
||||
depth = asyh->or.depth;
|
||||
WARN_ON(1);
|
||||
break;
|
||||
}
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE(i),
|
||||
NVVAL(NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, CRC_MODE, asyh->or.crc_raster) |
|
||||
NVVAL(NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, HSYNC_POLARITY, asyh->or.nhsync) |
|
||||
NVVAL(NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, VSYNC_POLARITY, asyh->or.nvsync) |
|
||||
NVVAL(NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, PIXEL_DEPTH, depth) |
|
||||
NVDEF(NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, COLOR_SPACE_OVERRIDE, DISABLE) |
|
||||
NVDEF(NVC57D, HEAD_SET_CONTROL_OUTPUT_RESOURCE, EXT_PACKET_WIN, NONE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
headc57d_procamp(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x2000 + (head->base.index * 0x400), 1);
|
||||
#if 0
|
||||
evo_data(push, 0x80000000 |
|
||||
asyh->procamp.sat.sin << 16 |
|
||||
asyh->procamp.sat.cos << 4);
|
||||
#else
|
||||
evo_data(push, 0);
|
||||
#endif
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
//TODO:
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_PROCAMP(i),
|
||||
NVDEF(NVC57D, HEAD_SET_PROCAMP, COLOR_SPACE, RGB) |
|
||||
NVDEF(NVC57D, HEAD_SET_PROCAMP, CHROMA_LPF, DISABLE) |
|
||||
NVDEF(NVC57D, HEAD_SET_PROCAMP, DYNAMIC_RANGE, VESA));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
static int
|
||||
headc57d_olut_clr(struct nv50_head *head)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 2))) {
|
||||
evo_mthd(push, 0x2288 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_CONTEXT_DMA_OLUT(i), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
static int
|
||||
headc57d_olut_set(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 4))) {
|
||||
evo_mthd(push, 0x2280 + (head->base.index * 0x400), 4);
|
||||
evo_data(push, asyh->olut.size << 8 |
|
||||
asyh->olut.mode << 2 |
|
||||
asyh->olut.output_mode);
|
||||
evo_data(push, 0xffffffff); /* FP_NORM_SCALE. */
|
||||
evo_data(push, asyh->olut.handle);
|
||||
evo_data(push, asyh->olut.offset >> 8);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_OLUT_CONTROL(i),
|
||||
NVVAL(NVC57D, HEAD_SET_OLUT_CONTROL, INTERPOLATE, asyh->olut.output_mode) |
|
||||
NVDEF(NVC57D, HEAD_SET_OLUT_CONTROL, MIRROR, DISABLE) |
|
||||
NVVAL(NVC57D, HEAD_SET_OLUT_CONTROL, MODE, asyh->olut.mode) |
|
||||
NVVAL(NVC57D, HEAD_SET_OLUT_CONTROL, SIZE, asyh->olut.size),
|
||||
|
||||
HEAD_SET_OLUT_FP_NORM_SCALE(i), 0xffffffff,
|
||||
HEAD_SET_CONTEXT_DMA_OLUT(i), asyh->olut.handle,
|
||||
HEAD_SET_OFFSET_OLUT(i), asyh->olut.offset >> 8);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -161,9 +175,9 @@ headc57d_olut(struct nv50_head *head, struct nv50_head_atom *asyh, int size)
|
|||
if (size != 0 && size != 256 && size != 1024)
|
||||
return false;
|
||||
|
||||
asyh->olut.mode = 2; /* DIRECT10 */
|
||||
asyh->olut.mode = NVC57D_HEAD_SET_OLUT_CONTROL_MODE_DIRECT10;
|
||||
asyh->olut.size = 4 /* VSS header. */ + 1024 + 1 /* Entries. */;
|
||||
asyh->olut.output_mode = 1; /* INTERPOLATE_ENABLE. */
|
||||
asyh->olut.output_mode = NVC57D_HEAD_SET_OLUT_CONTROL_INTERPOLATE_ENABLE;
|
||||
if (size == 256)
|
||||
asyh->olut.load = headc57d_olut_load_8;
|
||||
else
|
||||
|
@ -171,29 +185,50 @@ headc57d_olut(struct nv50_head *head, struct nv50_head_atom *asyh, int size)
|
|||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
headc57d_mode(struct nv50_head *head, struct nv50_head_atom *asyh)
|
||||
{
|
||||
struct nv50_dmac *core = &nv50_disp(head->base.base.dev)->core->chan;
|
||||
struct nvif_push *push = nv50_disp(head->base.base.dev)->core->chan.push;
|
||||
struct nv50_head_mode *m = &asyh->mode;
|
||||
u32 *push;
|
||||
if ((push = evo_wait(core, 13))) {
|
||||
evo_mthd(push, 0x2064 + (head->base.index * 0x400), 5);
|
||||
evo_data(push, (m->v.active << 16) | m->h.active );
|
||||
evo_data(push, (m->v.synce << 16) | m->h.synce );
|
||||
evo_data(push, (m->v.blanke << 16) | m->h.blanke );
|
||||
evo_data(push, (m->v.blanks << 16) | m->h.blanks );
|
||||
evo_data(push, (m->v.blank2e << 16) | m->v.blank2s);
|
||||
evo_mthd(push, 0x2008 + (head->base.index * 0x400), 2);
|
||||
evo_data(push, m->interlace);
|
||||
evo_data(push, m->clock * 1000);
|
||||
evo_mthd(push, 0x2028 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, m->clock * 1000);
|
||||
/*XXX: HEAD_USAGE_BOUNDS, doesn't belong here. */
|
||||
evo_mthd(push, 0x2030 + (head->base.index * 0x400), 1);
|
||||
evo_data(push, 0x00001014);
|
||||
evo_kick(push, core);
|
||||
}
|
||||
const int i = head->base.index;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 15)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_RASTER_SIZE(i),
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_SIZE, WIDTH, m->h.active) |
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_SIZE, HEIGHT, m->v.active),
|
||||
|
||||
HEAD_SET_RASTER_SYNC_END(i),
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_SYNC_END, X, m->h.synce) |
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_SYNC_END, Y, m->v.synce),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_END(i),
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_BLANK_END, X, m->h.blanke) |
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_BLANK_END, Y, m->v.blanke),
|
||||
|
||||
HEAD_SET_RASTER_BLANK_START(i),
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_BLANK_START, X, m->h.blanks) |
|
||||
NVVAL(NVC57D, HEAD_SET_RASTER_BLANK_START, Y, m->v.blanks));
|
||||
|
||||
//XXX:
|
||||
PUSH_NVSQ(push, NVC57D, 0x2074 + (i * 0x400), m->v.blank2e << 16 | m->v.blank2s);
|
||||
PUSH_NVSQ(push, NVC57D, 0x2008 + (i * 0x400), m->interlace);
|
||||
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_PIXEL_CLOCK_FREQUENCY(i),
|
||||
NVVAL(NVC57D, HEAD_SET_PIXEL_CLOCK_FREQUENCY, HERTZ, m->clock * 1000));
|
||||
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(i),
|
||||
NVVAL(NVC57D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX, HERTZ, m->clock * 1000));
|
||||
|
||||
/*XXX: HEAD_USAGE_BOUNDS, doesn't belong here. */
|
||||
PUSH_MTHD(push, NVC57D, HEAD_SET_HEAD_USAGE_BOUNDS(i),
|
||||
NVDEF(NVC57D, HEAD_SET_HEAD_USAGE_BOUNDS, CURSOR, USAGE_W256_H256) |
|
||||
NVDEF(NVC57D, HEAD_SET_HEAD_USAGE_BOUNDS, OLUT_ALLOWED, TRUE) |
|
||||
NVDEF(NVC57D, HEAD_SET_HEAD_USAGE_BOUNDS, OUTPUT_SCALER_TAPS, TAPS_2) |
|
||||
NVDEF(NVC57D, HEAD_SET_HEAD_USAGE_BOUNDS, UPSCALING_ALLOWED, TRUE));
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_head_func
|
||||
|
|
|
@ -60,7 +60,7 @@ nv50_lut_fini(struct nv50_lut *lut)
|
|||
{
|
||||
int i;
|
||||
for (i = 0; i < ARRAY_SIZE(lut->mem); i++)
|
||||
nvif_mem_fini(&lut->mem[i]);
|
||||
nvif_mem_dtor(&lut->mem[i]);
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -70,8 +70,8 @@ nv50_lut_init(struct nv50_disp *disp, struct nvif_mmu *mmu,
|
|||
const u32 size = disp->disp->object.oclass < GF110_DISP ? 257 : 1025;
|
||||
int i;
|
||||
for (i = 0; i < ARRAY_SIZE(lut->mem); i++) {
|
||||
int ret = nvif_mem_init_map(mmu, NVIF_MEM_VRAM, size * 8,
|
||||
&lut->mem[i]);
|
||||
int ret = nvif_mem_ctor_map(mmu, "kmsLut", NVIF_MEM_VRAM,
|
||||
size * 8, &lut->mem[i]);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -33,8 +33,8 @@ oimm507b_init_(const struct nv50_wimm_func *func, struct nouveau_drm *drm,
|
|||
struct nv50_disp *disp = nv50_disp(drm->dev);
|
||||
int ret;
|
||||
|
||||
ret = nvif_object_init(&disp->disp->object, 0, oclass, &args,
|
||||
sizeof(args), &wndw->wimm.base.user);
|
||||
ret = nvif_object_ctor(&disp->disp->object, "kmsOvim", 0, oclass,
|
||||
&args, sizeof(args), &wndw->wimm.base.user);
|
||||
if (ret) {
|
||||
NV_ERROR(drm, "oimm%04x allocation failed: %d\n", oclass, ret);
|
||||
return ret;
|
||||
|
|
|
@ -10,11 +10,7 @@ int ovly507e_acquire(struct nv50_wndw *, struct nv50_wndw_atom *,
|
|||
struct nv50_head_atom *);
|
||||
void ovly507e_release(struct nv50_wndw *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
void ovly507e_ntfy_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void ovly507e_ntfy_clr(struct nv50_wndw *);
|
||||
void ovly507e_image_clr(struct nv50_wndw *);
|
||||
void ovly507e_scale_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void ovly507e_update(struct nv50_wndw *, u32 *);
|
||||
int ovly507e_scale_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
|
||||
extern const u32 ovly827e_format[];
|
||||
void ovly827e_ntfy_reset(struct nouveau_bo *, u32);
|
||||
|
|
|
@ -28,91 +28,68 @@
|
|||
|
||||
#include <nvif/cl507e.h>
|
||||
#include <nvif/event.h>
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
void
|
||||
ovly507e_update(struct nv50_wndw *wndw, u32 *interlock)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x0080, 1);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_CORE]);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
}
|
||||
#include <nvhw/class/cl507e.h>
|
||||
|
||||
void
|
||||
int
|
||||
ovly507e_scale_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 4))) {
|
||||
evo_mthd(push, 0x00e0, 3);
|
||||
evo_data(push, asyw->scale.sy << 16 | asyw->scale.sx);
|
||||
evo_data(push, asyw->scale.sh << 16 | asyw->scale.sw);
|
||||
evo_data(push, asyw->scale.dw);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507E, SET_POINT_IN,
|
||||
NVVAL(NV507E, SET_POINT_IN, X, asyw->scale.sx) |
|
||||
NVVAL(NV507E, SET_POINT_IN, Y, asyw->scale.sy),
|
||||
|
||||
SET_SIZE_IN,
|
||||
NVVAL(NV507E, SET_SIZE_IN, WIDTH, asyw->scale.sw) |
|
||||
NVVAL(NV507E, SET_SIZE_IN, HEIGHT, asyw->scale.sh),
|
||||
|
||||
SET_SIZE_OUT,
|
||||
NVVAL(NV507E, SET_SIZE_OUT, WIDTH, asyw->scale.dw));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
ovly507e_image_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 4))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
ovly507e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 12))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, asyw->image.interval << 4);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
evo_mthd(push, 0x0100, 1);
|
||||
evo_data(push, 0x00000002);
|
||||
evo_mthd(push, 0x0800, 1);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_mthd(push, 0x0808, 3);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 20 |
|
||||
(asyw->image.pitch[0] >> 8) << 8 |
|
||||
asyw->image.blocks[0] << 8 |
|
||||
asyw->image.blockh);
|
||||
evo_data(push, asyw->image.kind << 16 |
|
||||
asyw->image.format << 8 |
|
||||
asyw->image.colorspace);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
void
|
||||
ovly507e_ntfy_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x00a4, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
}
|
||||
if ((ret = PUSH_WAIT(push, 12)))
|
||||
return ret;
|
||||
|
||||
void
|
||||
ovly507e_ntfy_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 3))) {
|
||||
evo_mthd(push, 0x00a0, 2);
|
||||
evo_data(push, asyw->ntfy.awaken << 30 | asyw->ntfy.offset);
|
||||
evo_data(push, asyw->ntfy.handle);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
PUSH_MTHD(push, NV507E, SET_PRESENT_CONTROL,
|
||||
NVDEF(NV507E, SET_PRESENT_CONTROL, BEGIN_MODE, ASAP) |
|
||||
NVVAL(NV507E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
|
||||
|
||||
PUSH_MTHD(push, NV507E, SET_CONTEXT_DMA_ISO, asyw->image.handle[0]);
|
||||
|
||||
PUSH_MTHD(push, NV507E, SET_COMPOSITION_CONTROL,
|
||||
NVDEF(NV507E, SET_COMPOSITION_CONTROL, MODE, OPAQUE_SUSPEND_BASE));
|
||||
|
||||
PUSH_MTHD(push, NV507E, SURFACE_SET_OFFSET, asyw->image.offset[0] >> 8);
|
||||
|
||||
PUSH_MTHD(push, NV507E, SURFACE_SET_SIZE,
|
||||
NVVAL(NV507E, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NV507E, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SURFACE_SET_STORAGE,
|
||||
NVVAL(NV507E, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NV507E, SURFACE_SET_STORAGE, PITCH, (asyw->image.pitch[0] >> 8)) |
|
||||
NVVAL(NV507E, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NV507E, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SURFACE_SET_PARAMS,
|
||||
NVVAL(NV507E, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVVAL(NV507E, SURFACE_SET_PARAMS, COLOR_SPACE, asyw->image.colorspace) |
|
||||
NVVAL(NV507E, SURFACE_SET_PARAMS, KIND, asyw->image.kind) |
|
||||
NVDEF(NV507E, SURFACE_SET_PARAMS, PART_STRIDE, PARTSTRIDE_256));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -146,14 +123,14 @@ static const struct nv50_wndw_func
|
|||
ovly507e = {
|
||||
.acquire = ovly507e_acquire,
|
||||
.release = ovly507e_release,
|
||||
.ntfy_set = ovly507e_ntfy_set,
|
||||
.ntfy_clr = ovly507e_ntfy_clr,
|
||||
.ntfy_set = base507c_ntfy_set,
|
||||
.ntfy_clr = base507c_ntfy_clr,
|
||||
.ntfy_reset = base507c_ntfy_reset,
|
||||
.ntfy_wait_begun = base507c_ntfy_wait_begun,
|
||||
.image_set = ovly507e_image_set,
|
||||
.image_clr = ovly507e_image_clr,
|
||||
.image_clr = base507c_image_clr,
|
||||
.scale_set = ovly507e_scale_set,
|
||||
.update = ovly507e_update,
|
||||
.update = base507c_update,
|
||||
};
|
||||
|
||||
static const u32
|
||||
|
@ -192,7 +169,8 @@ ovly507e_new_(const struct nv50_wndw_func *func, const u32 *format,
|
|||
return ret;
|
||||
}
|
||||
|
||||
ret = nvif_notify_init(&wndw->wndw.base.user, wndw->notify.func, false,
|
||||
ret = nvif_notify_ctor(&wndw->wndw.base.user, "kmsOvlyNtfy",
|
||||
wndw->notify.func, false,
|
||||
NV50_DISP_OVERLAY_CHANNEL_DMA_V0_NTFY_UEVENT,
|
||||
&(struct nvif_notify_uevent_req) {},
|
||||
sizeof(struct nvif_notify_uevent_req),
|
||||
|
|
|
@ -24,31 +24,45 @@
|
|||
|
||||
#include <nouveau_bo.h>
|
||||
|
||||
#include <nvif/push507c.h>
|
||||
#include <nvif/timer.h>
|
||||
|
||||
static void
|
||||
#include <nvhw/class/cl827e.h>
|
||||
|
||||
static int
|
||||
ovly827e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 12))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, asyw->image.interval << 4);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
evo_mthd(push, 0x0100, 1);
|
||||
evo_data(push, 0x00000002);
|
||||
evo_mthd(push, 0x0800, 1);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_mthd(push, 0x0808, 3);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 20 |
|
||||
(asyw->image.pitch[0] >> 8) << 8 |
|
||||
asyw->image.blocks[0] << 8 |
|
||||
asyw->image.blockh);
|
||||
evo_data(push, asyw->image.format << 8 |
|
||||
asyw->image.colorspace);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 12)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV827E, SET_PRESENT_CONTROL,
|
||||
NVDEF(NV827E, SET_PRESENT_CONTROL, BEGIN_MODE, ASAP) |
|
||||
NVVAL(NV827E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
|
||||
|
||||
PUSH_MTHD(push, NV827E, SET_CONTEXT_DMA_ISO, asyw->image.handle[0]);
|
||||
|
||||
PUSH_MTHD(push, NV827E, SET_COMPOSITION_CONTROL,
|
||||
NVDEF(NV827E, SET_COMPOSITION_CONTROL, MODE, OPAQUE_SUSPEND_BASE));
|
||||
|
||||
PUSH_MTHD(push, NV827E, SURFACE_SET_OFFSET, asyw->image.offset[0] >> 8);
|
||||
|
||||
PUSH_MTHD(push, NV827E, SURFACE_SET_SIZE,
|
||||
NVVAL(NV827E, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NV827E, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SURFACE_SET_STORAGE,
|
||||
NVVAL(NV827E, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NV827E, SURFACE_SET_STORAGE, PITCH, (asyw->image.pitch[0] >> 8)) |
|
||||
NVVAL(NV827E, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NV827E, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SURFACE_SET_PARAMS,
|
||||
NVVAL(NV827E, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVVAL(NV827E, SURFACE_SET_PARAMS, COLOR_SPACE, asyw->image.colorspace));
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -56,8 +70,7 @@ ovly827e_ntfy_wait_begun(struct nouveau_bo *bo, u32 offset,
|
|||
struct nvif_device *device)
|
||||
{
|
||||
s64 time = nvif_msec(device, 2000ULL,
|
||||
u32 data = nouveau_bo_rd32(bo, offset / 4 + 3);
|
||||
if ((data & 0xffff0000) == 0xffff0000)
|
||||
if (NVBO_TD32(bo, offset, NV_DISP_NOTIFICATION_1, _3, STATUS, ==, BEGUN))
|
||||
break;
|
||||
usleep_range(1, 2);
|
||||
);
|
||||
|
@ -67,24 +80,25 @@ ovly827e_ntfy_wait_begun(struct nouveau_bo *bo, u32 offset,
|
|||
void
|
||||
ovly827e_ntfy_reset(struct nouveau_bo *bo, u32 offset)
|
||||
{
|
||||
nouveau_bo_wr32(bo, offset / 4 + 0, 0x00000000);
|
||||
nouveau_bo_wr32(bo, offset / 4 + 1, 0x00000000);
|
||||
nouveau_bo_wr32(bo, offset / 4 + 2, 0x00000000);
|
||||
nouveau_bo_wr32(bo, offset / 4 + 3, 0x80000000);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFICATION_1, TIME_STAMP_0, 0);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFICATION_1, TIME_STAMP_1, 0);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFICATION_1, _2, 0);
|
||||
NVBO_WR32(bo, offset, NV_DISP_NOTIFICATION_1, _3,
|
||||
NVDEF(NV_DISP_NOTIFICATION_1, _3, STATUS, NOT_BEGUN));
|
||||
}
|
||||
|
||||
static const struct nv50_wndw_func
|
||||
ovly827e = {
|
||||
.acquire = ovly507e_acquire,
|
||||
.release = ovly507e_release,
|
||||
.ntfy_set = ovly507e_ntfy_set,
|
||||
.ntfy_clr = ovly507e_ntfy_clr,
|
||||
.ntfy_set = base507c_ntfy_set,
|
||||
.ntfy_clr = base507c_ntfy_clr,
|
||||
.ntfy_reset = ovly827e_ntfy_reset,
|
||||
.ntfy_wait_begun = ovly827e_ntfy_wait_begun,
|
||||
.image_set = ovly827e_image_set,
|
||||
.image_clr = ovly507e_image_clr,
|
||||
.image_clr = base507c_image_clr,
|
||||
.scale_set = ovly507e_scale_set,
|
||||
.update = ovly507e_update,
|
||||
.update = base507c_update,
|
||||
};
|
||||
|
||||
const u32
|
||||
|
|
|
@ -22,43 +22,58 @@
|
|||
#include "ovly.h"
|
||||
#include "atom.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl907e.h>
|
||||
|
||||
static int
|
||||
ovly907e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 12))) {
|
||||
evo_mthd(push, 0x0084, 1);
|
||||
evo_data(push, asyw->image.interval << 4);
|
||||
evo_mthd(push, 0x00c0, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
evo_mthd(push, 0x0100, 1);
|
||||
evo_data(push, 0x00000002);
|
||||
evo_mthd(push, 0x0400, 1);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_mthd(push, 0x0408, 3);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 24 |
|
||||
(asyw->image.pitch[0] >> 8) << 8 |
|
||||
asyw->image.blocks[0] << 8 |
|
||||
asyw->image.blockh);
|
||||
evo_data(push, asyw->image.format << 8 |
|
||||
asyw->image.colorspace);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 12)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907E, SET_PRESENT_CONTROL,
|
||||
NVDEF(NV907E, SET_PRESENT_CONTROL, BEGIN_MODE, ASAP) |
|
||||
NVVAL(NV907E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
|
||||
|
||||
PUSH_MTHD(push, NV907E, SET_CONTEXT_DMA_ISO, asyw->image.handle[0]);
|
||||
|
||||
PUSH_MTHD(push, NV907E, SET_COMPOSITION_CONTROL,
|
||||
NVDEF(NV907E, SET_COMPOSITION_CONTROL, MODE, OPAQUE));
|
||||
|
||||
PUSH_MTHD(push, NV907E, SURFACE_SET_OFFSET, asyw->image.offset[0] >> 8);
|
||||
|
||||
PUSH_MTHD(push, NV907E, SURFACE_SET_SIZE,
|
||||
NVVAL(NV907E, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NV907E, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SURFACE_SET_STORAGE,
|
||||
NVVAL(NV907E, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NV907E, SURFACE_SET_STORAGE, PITCH, (asyw->image.pitch[0] >> 8)) |
|
||||
NVVAL(NV907E, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NV907E, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SURFACE_SET_PARAMS,
|
||||
NVVAL(NV907E, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVVAL(NV907E, SURFACE_SET_PARAMS, COLOR_SPACE, asyw->image.colorspace));
|
||||
return 0;
|
||||
}
|
||||
|
||||
const struct nv50_wndw_func
|
||||
ovly907e = {
|
||||
.acquire = ovly507e_acquire,
|
||||
.release = ovly507e_release,
|
||||
.ntfy_set = ovly507e_ntfy_set,
|
||||
.ntfy_clr = ovly507e_ntfy_clr,
|
||||
.ntfy_set = base507c_ntfy_set,
|
||||
.ntfy_clr = base507c_ntfy_clr,
|
||||
.ntfy_reset = ovly827e_ntfy_reset,
|
||||
.ntfy_wait_begun = ovly827e_ntfy_wait_begun,
|
||||
.image_set = ovly907e_image_set,
|
||||
.image_clr = ovly507e_image_clr,
|
||||
.image_clr = base507c_image_clr,
|
||||
.scale_set = ovly507e_scale_set,
|
||||
.update = ovly507e_update,
|
||||
.update = base507c_update,
|
||||
};
|
||||
|
||||
static const u32
|
||||
|
|
|
@ -21,21 +21,29 @@
|
|||
*/
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl507d.h>
|
||||
#include <nvhw/class/cl837d.h>
|
||||
|
||||
static int
|
||||
pior507d_ctrl(struct nv50_core *core, int or, u32 ctrl,
|
||||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 2))) {
|
||||
if (asyh) {
|
||||
ctrl |= asyh->or.depth << 16;
|
||||
ctrl |= asyh->or.nvsync << 13;
|
||||
ctrl |= asyh->or.nhsync << 12;
|
||||
}
|
||||
evo_mthd(push, 0x0700 + (or * 0x040), 1);
|
||||
evo_data(push, ctrl);
|
||||
evo_kick(push, &core->chan);
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if (asyh) {
|
||||
ctrl |= NVVAL(NV507D, PIOR_SET_CONTROL, HSYNC_POLARITY, asyh->or.nhsync);
|
||||
ctrl |= NVVAL(NV507D, PIOR_SET_CONTROL, VSYNC_POLARITY, asyh->or.nvsync);
|
||||
ctrl |= NVVAL(NV837D, PIOR_SET_CONTROL, PIXEL_DEPTH, asyh->or.depth);
|
||||
}
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, PIOR_SET_CONTROL(or), ctrl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -21,21 +21,29 @@
|
|||
*/
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
#include <nvhw/class/cl507d.h>
|
||||
#include <nvhw/class/cl837d.h>
|
||||
|
||||
static int
|
||||
sor507d_ctrl(struct nv50_core *core, int or, u32 ctrl,
|
||||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 2))) {
|
||||
if (asyh) {
|
||||
ctrl |= asyh->or.depth << 16;
|
||||
ctrl |= asyh->or.nvsync << 13;
|
||||
ctrl |= asyh->or.nhsync << 12;
|
||||
}
|
||||
evo_mthd(push, 0x0600 + (or * 0x40), 1);
|
||||
evo_data(push, ctrl);
|
||||
evo_kick(push, &core->chan);
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if (asyh) {
|
||||
ctrl |= NVVAL(NV507D, SOR_SET_CONTROL, HSYNC_POLARITY, asyh->or.nhsync);
|
||||
ctrl |= NVVAL(NV507D, SOR_SET_CONTROL, VSYNC_POLARITY, asyh->or.nvsync);
|
||||
ctrl |= NVVAL(NV837D, SOR_SET_CONTROL, PIXEL_DEPTH, asyh->or.depth);
|
||||
}
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV507D, SOR_SET_CONTROL(or), ctrl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -21,28 +21,34 @@
|
|||
*/
|
||||
#include "core.h"
|
||||
|
||||
#include <nouveau_bo.h>
|
||||
#include <nvif/class.h>
|
||||
#include <nvif/push507c.h>
|
||||
|
||||
static void
|
||||
#include <nvhw/class/cl907d.h>
|
||||
|
||||
#include <nouveau_bo.h>
|
||||
|
||||
static int
|
||||
sor907d_ctrl(struct nv50_core *core, int or, u32 ctrl,
|
||||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 2))) {
|
||||
evo_mthd(push, 0x0200 + (or * 0x20), 1);
|
||||
evo_data(push, ctrl);
|
||||
evo_kick(push, &core->chan);
|
||||
}
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NV907D, SOR_SET_CONTROL(or), ctrl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
sor907d_get_caps(struct nv50_disp *disp, struct nouveau_encoder *outp, int or)
|
||||
{
|
||||
struct nouveau_bo *bo = disp->sync;
|
||||
const int off = or * 2;
|
||||
u32 tmp = nouveau_bo_rd32(disp->sync, 0x000014 + off);
|
||||
|
||||
outp->caps.dp_interlace = !!(tmp & 0x04000000);
|
||||
outp->caps.dp_interlace =
|
||||
NVBO_RV32(bo, off, NV907D_CORE_NOTIFIER_3, CAPABILITIES_CAP_SOR0_20, DP_INTERLACE);
|
||||
}
|
||||
|
||||
const struct nv50_outp_func
|
||||
|
|
|
@ -21,16 +21,22 @@
|
|||
*/
|
||||
#include "core.h"
|
||||
|
||||
static void
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
#include <nvhw/class/clc37d.h>
|
||||
|
||||
static int
|
||||
sorc37d_ctrl(struct nv50_core *core, int or, u32 ctrl,
|
||||
struct nv50_head_atom *asyh)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&core->chan, 2))) {
|
||||
evo_mthd(push, 0x0300 + (or * 0x20), 1);
|
||||
evo_data(push, ctrl);
|
||||
evo_kick(push, &core->chan);
|
||||
}
|
||||
struct nvif_push *push = core->chan.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37D, SOR_SET_CONTROL(or), ctrl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -24,30 +24,38 @@
|
|||
#include "wndw.h"
|
||||
|
||||
#include <nvif/clc37b.h>
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
static void
|
||||
#include <nvhw/class/clc37b.h>
|
||||
|
||||
static int
|
||||
wimmc37b_update(struct nv50_wndw *wndw, u32 *interlock)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wimm, 2))) {
|
||||
evo_mthd(push, 0x0200, 1);
|
||||
if (interlock[NV50_DISP_INTERLOCK_WNDW] & wndw->interlock.data)
|
||||
evo_data(push, 0x00000003);
|
||||
else
|
||||
evo_data(push, 0x00000001);
|
||||
evo_kick(push, &wndw->wimm);
|
||||
}
|
||||
struct nvif_push *push = wndw->wimm.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37B, UPDATE, 0x00000001 |
|
||||
NVVAL(NVC37B, UPDATE, INTERLOCK_WITH_WINDOW,
|
||||
!!(interlock[NV50_DISP_INTERLOCK_WNDW] & wndw->interlock.data)));
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wimmc37b_point(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wimm, 2))) {
|
||||
evo_mthd(push, 0x0208, 1);
|
||||
evo_data(push, asyw->point.y << 16 | asyw->point.x);
|
||||
evo_kick(push, &wndw->wimm);
|
||||
}
|
||||
struct nvif_push *push = wndw->wimm.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37B, SET_POINT_OUT(0),
|
||||
NVVAL(NVC37B, SET_POINT_OUT, X, asyw->point.x) |
|
||||
NVVAL(NVC37B, SET_POINT_OUT, Y, asyw->point.y));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct nv50_wimm_func
|
||||
|
|
|
@ -26,6 +26,10 @@
|
|||
#include <nvif/class.h>
|
||||
#include <nvif/cl0002.h>
|
||||
|
||||
#include <nvhw/class/cl507c.h>
|
||||
#include <nvhw/class/cl507e.h>
|
||||
#include <nvhw/class/clc37e.h>
|
||||
|
||||
#include <drm/drm_atomic_helper.h>
|
||||
#include <drm/drm_fourcc.h>
|
||||
|
||||
|
@ -35,7 +39,7 @@
|
|||
static void
|
||||
nv50_wndw_ctxdma_del(struct nv50_wndw_ctxdma *ctxdma)
|
||||
{
|
||||
nvif_object_fini(&ctxdma->object);
|
||||
nvif_object_dtor(&ctxdma->object);
|
||||
list_del(&ctxdma->head);
|
||||
kfree(ctxdma);
|
||||
}
|
||||
|
@ -94,8 +98,8 @@ nv50_wndw_ctxdma_new(struct nv50_wndw *wndw, struct drm_framebuffer *fb)
|
|||
argc += sizeof(args.gf119);
|
||||
}
|
||||
|
||||
ret = nvif_object_init(wndw->ctxdma.parent, handle, NV_DMA_IN_MEMORY,
|
||||
&args, argc, &ctxdma->object);
|
||||
ret = nvif_object_ctor(wndw->ctxdma.parent, "kmsFbCtxDma", handle,
|
||||
NV_DMA_IN_MEMORY, &args, argc, &ctxdma->object);
|
||||
if (ret) {
|
||||
nv50_wndw_ctxdma_del(ctxdma);
|
||||
return ERR_PTR(ret);
|
||||
|
@ -137,7 +141,7 @@ nv50_wndw_flush_set(struct nv50_wndw *wndw, u32 *interlock,
|
|||
struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
if (interlock[NV50_DISP_INTERLOCK_CORE]) {
|
||||
asyw->image.mode = 0;
|
||||
asyw->image.mode = NV507C_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING;
|
||||
asyw->image.interval = 1;
|
||||
}
|
||||
|
||||
|
@ -201,13 +205,18 @@ static int
|
|||
nv50_wndw_atomic_check_acquire_yuv(struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
switch (asyw->state.fb->format->format) {
|
||||
case DRM_FORMAT_YUYV: asyw->image.format = 0x28; break;
|
||||
case DRM_FORMAT_UYVY: asyw->image.format = 0x29; break;
|
||||
case DRM_FORMAT_YUYV:
|
||||
asyw->image.format = NV507E_SURFACE_SET_PARAMS_FORMAT_VE8YO8UE8YE8;
|
||||
break;
|
||||
case DRM_FORMAT_UYVY:
|
||||
asyw->image.format = NV507E_SURFACE_SET_PARAMS_FORMAT_YO8VE8YE8UE8;
|
||||
break;
|
||||
default:
|
||||
WARN_ON(1);
|
||||
return -EINVAL;
|
||||
}
|
||||
asyw->image.colorspace = 1;
|
||||
|
||||
asyw->image.colorspace = NV507E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_601;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -215,24 +224,41 @@ static int
|
|||
nv50_wndw_atomic_check_acquire_rgb(struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
switch (asyw->state.fb->format->format) {
|
||||
case DRM_FORMAT_C8 : asyw->image.format = 0x1e; break;
|
||||
case DRM_FORMAT_XRGB8888 :
|
||||
case DRM_FORMAT_ARGB8888 : asyw->image.format = 0xcf; break;
|
||||
case DRM_FORMAT_RGB565 : asyw->image.format = 0xe8; break;
|
||||
case DRM_FORMAT_XRGB1555 :
|
||||
case DRM_FORMAT_ARGB1555 : asyw->image.format = 0xe9; break;
|
||||
case DRM_FORMAT_XBGR2101010 :
|
||||
case DRM_FORMAT_ABGR2101010 : asyw->image.format = 0xd1; break;
|
||||
case DRM_FORMAT_XBGR8888 :
|
||||
case DRM_FORMAT_ABGR8888 : asyw->image.format = 0xd5; break;
|
||||
case DRM_FORMAT_XRGB2101010 :
|
||||
case DRM_FORMAT_ARGB2101010 : asyw->image.format = 0xdf; break;
|
||||
case DRM_FORMAT_C8:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_I8;
|
||||
break;
|
||||
case DRM_FORMAT_XRGB8888:
|
||||
case DRM_FORMAT_ARGB8888:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8;
|
||||
break;
|
||||
case DRM_FORMAT_RGB565:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_R5G6B5;
|
||||
break;
|
||||
case DRM_FORMAT_XRGB1555:
|
||||
case DRM_FORMAT_ARGB1555:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5;
|
||||
break;
|
||||
case DRM_FORMAT_XBGR2101010:
|
||||
case DRM_FORMAT_ABGR2101010:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_A2B10G10R10;
|
||||
break;
|
||||
case DRM_FORMAT_XBGR8888:
|
||||
case DRM_FORMAT_ABGR8888:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_A8B8G8R8;
|
||||
break;
|
||||
case DRM_FORMAT_XRGB2101010:
|
||||
case DRM_FORMAT_ARGB2101010:
|
||||
asyw->image.format = NVC37E_SET_PARAMS_FORMAT_A2R10G10B10;
|
||||
break;
|
||||
case DRM_FORMAT_XBGR16161616F:
|
||||
case DRM_FORMAT_ABGR16161616F: asyw->image.format = 0xca; break;
|
||||
case DRM_FORMAT_ABGR16161616F:
|
||||
asyw->image.format = NV507C_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16;
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
asyw->image.colorspace = 0;
|
||||
|
||||
asyw->image.colorspace = NV507E_SURFACE_SET_PARAMS_COLOR_SPACE_RGB;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -265,7 +291,7 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset,
|
|||
}
|
||||
|
||||
if (asyw->image.kind) {
|
||||
asyw->image.layout = 0;
|
||||
asyw->image.layout = NV507C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR;
|
||||
if (drm->client.device.info.chipset >= 0xc0)
|
||||
asyw->image.blockh = tile_mode >> 4;
|
||||
else
|
||||
|
@ -273,8 +299,8 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset,
|
|||
asyw->image.blocks[0] = fb->pitches[0] / 64;
|
||||
asyw->image.pitch[0] = 0;
|
||||
} else {
|
||||
asyw->image.layout = 1;
|
||||
asyw->image.blockh = 0;
|
||||
asyw->image.layout = NV507C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH;
|
||||
asyw->image.blockh = NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB;
|
||||
asyw->image.blocks[0] = 0;
|
||||
asyw->image.pitch[0] = fb->pitches[0];
|
||||
}
|
||||
|
@ -283,7 +309,12 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset,
|
|||
asyw->image.interval = 1;
|
||||
else
|
||||
asyw->image.interval = 0;
|
||||
asyw->image.mode = asyw->image.interval ? 0 : 1;
|
||||
|
||||
if (asyw->image.interval)
|
||||
asyw->image.mode = NV507C_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING;
|
||||
else
|
||||
asyw->image.mode = NV507C_SET_PRESENT_CONTROL_BEGIN_MODE_IMMEDIATE;
|
||||
|
||||
asyw->set.image = wndw->func->image_set != NULL;
|
||||
}
|
||||
|
||||
|
@ -303,17 +334,17 @@ nv50_wndw_atomic_check_acquire(struct nv50_wndw *wndw, bool modeset,
|
|||
asyw->blend.k1 = asyw->state.alpha >> 8;
|
||||
switch (asyw->state.pixel_blend_mode) {
|
||||
case DRM_MODE_BLEND_PREMULTI:
|
||||
asyw->blend.src_color = 2; /* K1 */
|
||||
asyw->blend.dst_color = 7; /* NEG_K1_TIMES_SRC */
|
||||
asyw->blend.src_color = NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_K1;
|
||||
asyw->blend.dst_color = NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_NEG_K1_TIMES_SRC;
|
||||
break;
|
||||
case DRM_MODE_BLEND_COVERAGE:
|
||||
asyw->blend.src_color = 5; /* K1_TIMES_SRC */
|
||||
asyw->blend.dst_color = 7; /* NEG_K1_TIMES_SRC */
|
||||
asyw->blend.src_color = NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_K1_TIMES_SRC;
|
||||
asyw->blend.dst_color = NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_NEG_K1_TIMES_SRC;
|
||||
break;
|
||||
case DRM_MODE_BLEND_PIXEL_NONE:
|
||||
default:
|
||||
asyw->blend.src_color = 2; /* K1 */
|
||||
asyw->blend.dst_color = 4; /* NEG_K1 */
|
||||
asyw->blend.src_color = NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_K1;
|
||||
asyw->blend.dst_color = NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_NEG_K1;
|
||||
break;
|
||||
}
|
||||
if (memcmp(&armw->blend, &asyw->blend, sizeof(asyw->blend)))
|
||||
|
@ -609,7 +640,7 @@ nv50_wndw_destroy(struct drm_plane *plane)
|
|||
nv50_wndw_ctxdma_del(ctxdma);
|
||||
}
|
||||
|
||||
nvif_notify_fini(&wndw->notify);
|
||||
nvif_notify_dtor(&wndw->notify);
|
||||
nv50_dmac_destroy(&wndw->wimm);
|
||||
nv50_dmac_destroy(&wndw->wndw);
|
||||
|
||||
|
|
|
@ -57,48 +57,59 @@ struct nv50_wndw_func {
|
|||
void (*prepare)(struct nv50_wndw *, struct nv50_head_atom *asyh,
|
||||
struct nv50_wndw_atom *asyw);
|
||||
|
||||
void (*sema_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void (*sema_clr)(struct nv50_wndw *);
|
||||
int (*sema_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*sema_clr)(struct nv50_wndw *);
|
||||
void (*ntfy_reset)(struct nouveau_bo *, u32 offset);
|
||||
void (*ntfy_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void (*ntfy_clr)(struct nv50_wndw *);
|
||||
int (*ntfy_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*ntfy_clr)(struct nv50_wndw *);
|
||||
int (*ntfy_wait_begun)(struct nouveau_bo *, u32 offset,
|
||||
struct nvif_device *);
|
||||
bool (*ilut)(struct nv50_wndw *, struct nv50_wndw_atom *, int);
|
||||
void (*csc)(struct nv50_wndw *, struct nv50_wndw_atom *,
|
||||
const struct drm_color_ctm *);
|
||||
void (*csc_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void (*csc_clr)(struct nv50_wndw *);
|
||||
int (*csc_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*csc_clr)(struct nv50_wndw *);
|
||||
bool ilut_identity;
|
||||
int ilut_size;
|
||||
bool olut_core;
|
||||
void (*xlut_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void (*xlut_clr)(struct nv50_wndw *);
|
||||
void (*image_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void (*image_clr)(struct nv50_wndw *);
|
||||
void (*scale_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void (*blend_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*xlut_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*xlut_clr)(struct nv50_wndw *);
|
||||
int (*image_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*image_clr)(struct nv50_wndw *);
|
||||
int (*scale_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*blend_set)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
|
||||
void (*update)(struct nv50_wndw *, u32 *interlock);
|
||||
int (*update)(struct nv50_wndw *, u32 *interlock);
|
||||
};
|
||||
|
||||
extern const struct drm_plane_funcs nv50_wndw;
|
||||
|
||||
void base507c_ntfy_reset(struct nouveau_bo *, u32);
|
||||
int base507c_ntfy_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int base507c_ntfy_clr(struct nv50_wndw *);
|
||||
int base507c_ntfy_wait_begun(struct nouveau_bo *, u32, struct nvif_device *);
|
||||
int base507c_image_clr(struct nv50_wndw *);
|
||||
int base507c_update(struct nv50_wndw *, u32 *);
|
||||
|
||||
void base907c_csc(struct nv50_wndw *, struct nv50_wndw_atom *,
|
||||
const struct drm_color_ctm *);
|
||||
|
||||
struct nv50_wimm_func {
|
||||
void (*point)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int (*point)(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
|
||||
void (*update)(struct nv50_wndw *, u32 *interlock);
|
||||
int (*update)(struct nv50_wndw *, u32 *interlock);
|
||||
};
|
||||
|
||||
extern const struct nv50_wimm_func curs507a;
|
||||
bool curs507a_space(struct nv50_wndw *);
|
||||
|
||||
static inline __must_check int
|
||||
nvif_chan_wait(struct nv50_dmac *dmac, u32 size)
|
||||
{
|
||||
struct nv50_wndw *wndw = container_of(dmac, typeof(*wndw), wimm);
|
||||
return curs507a_space(wndw) ? 0 : -ETIMEDOUT;
|
||||
}
|
||||
|
||||
int wndwc37e_new(struct nouveau_drm *, enum drm_plane_type, int, s32,
|
||||
struct nv50_wndw **);
|
||||
int wndwc37e_new_(const struct nv50_wndw_func *, struct nouveau_drm *,
|
||||
|
@ -108,13 +119,13 @@ int wndwc37e_acquire(struct nv50_wndw *, struct nv50_wndw_atom *,
|
|||
struct nv50_head_atom *);
|
||||
void wndwc37e_release(struct nv50_wndw *, struct nv50_wndw_atom *,
|
||||
struct nv50_head_atom *);
|
||||
void wndwc37e_sema_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void wndwc37e_sema_clr(struct nv50_wndw *);
|
||||
void wndwc37e_ntfy_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void wndwc37e_ntfy_clr(struct nv50_wndw *);
|
||||
void wndwc37e_image_clr(struct nv50_wndw *);
|
||||
void wndwc37e_blend_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
void wndwc37e_update(struct nv50_wndw *, u32 *);
|
||||
int wndwc37e_sema_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int wndwc37e_sema_clr(struct nv50_wndw *);
|
||||
int wndwc37e_ntfy_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int wndwc37e_ntfy_clr(struct nv50_wndw *);
|
||||
int wndwc37e_image_clr(struct nv50_wndw *);
|
||||
int wndwc37e_blend_set(struct nv50_wndw *, struct nv50_wndw_atom *);
|
||||
int wndwc37e_update(struct nv50_wndw *, u32 *);
|
||||
|
||||
int wndwc57e_new(struct nouveau_drm *, enum drm_plane_type, int, s32,
|
||||
struct nv50_wndw **);
|
||||
|
|
|
@ -27,48 +27,59 @@
|
|||
#include <nouveau_bo.h>
|
||||
|
||||
#include <nvif/clc37e.h>
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
static void
|
||||
#include <nvhw/class/clc37e.h>
|
||||
|
||||
static int
|
||||
wndwc37e_csc_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc37e_csc_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push, i;
|
||||
if ((push = evo_wait(&wndw->wndw, 13))) {
|
||||
evo_mthd(push, 0x02bc, 12);
|
||||
for (i = 0; i < 12; i++)
|
||||
evo_data(push, asyw->csc.matrix[i]);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 13)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CSC_RED2RED, asyw->csc.matrix, 12);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc37e_ilut_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x02b8, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTEXT_DMA_INPUT_LUT, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc37e_ilut_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 4))) {
|
||||
evo_mthd(push, 0x02b0, 3);
|
||||
evo_data(push, asyw->xlut.i.output_mode << 8 |
|
||||
asyw->xlut.i.range << 4 |
|
||||
asyw->xlut.i.size);
|
||||
evo_data(push, asyw->xlut.i.offset >> 8);
|
||||
evo_data(push, asyw->xlut.handle);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTROL_INPUT_LUT,
|
||||
NVVAL(NVC37E, SET_CONTROL_INPUT_LUT, OUTPUT_MODE, asyw->xlut.i.output_mode) |
|
||||
NVVAL(NVC37E, SET_CONTROL_INPUT_LUT, RANGE, asyw->xlut.i.range) |
|
||||
NVVAL(NVC37E, SET_CONTROL_INPUT_LUT, SIZE, asyw->xlut.i.size),
|
||||
|
||||
SET_OFFSET_INPUT_LUT, asyw->xlut.i.offset >> 8,
|
||||
SET_CONTEXT_DMA_INPUT_LUT, asyw->xlut.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static bool
|
||||
|
@ -77,144 +88,206 @@ wndwc37e_ilut(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw, int size)
|
|||
if (size != 256 && size != 1024)
|
||||
return false;
|
||||
|
||||
asyw->xlut.i.mode = 2;
|
||||
asyw->xlut.i.size = size == 1024 ? 2 : 0;
|
||||
asyw->xlut.i.range = 0;
|
||||
asyw->xlut.i.output_mode = 1;
|
||||
asyw->xlut.i.size = size == 1024 ? NVC37E_SET_CONTROL_INPUT_LUT_SIZE_SIZE_1025 :
|
||||
NVC37E_SET_CONTROL_INPUT_LUT_SIZE_SIZE_257;
|
||||
asyw->xlut.i.range = NVC37E_SET_CONTROL_INPUT_LUT_RANGE_UNITY;
|
||||
asyw->xlut.i.output_mode = NVC37E_SET_CONTROL_INPUT_LUT_OUTPUT_MODE_INTERPOLATE;
|
||||
asyw->xlut.i.load = head907d_olut_load;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_blend_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 8))) {
|
||||
evo_mthd(push, 0x02ec, 7);
|
||||
evo_data(push, asyw->blend.depth << 4);
|
||||
evo_data(push, asyw->blend.k1);
|
||||
evo_data(push, asyw->blend.dst_color << 12 |
|
||||
asyw->blend.dst_color << 8 |
|
||||
asyw->blend.src_color << 4 |
|
||||
asyw->blend.src_color);
|
||||
evo_data(push, 0xffff0000);
|
||||
evo_data(push, 0xffff0000);
|
||||
evo_data(push, 0xffff0000);
|
||||
evo_data(push, 0xffff0000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 8)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_COMPOSITION_CONTROL,
|
||||
NVDEF(NVC37E, SET_COMPOSITION_CONTROL, COLOR_KEY_SELECT, DISABLE) |
|
||||
NVVAL(NVC37E, SET_COMPOSITION_CONTROL, DEPTH, asyw->blend.depth),
|
||||
|
||||
SET_COMPOSITION_CONSTANT_ALPHA,
|
||||
NVVAL(NVC37E, SET_COMPOSITION_CONSTANT_ALPHA, K1, asyw->blend.k1) |
|
||||
NVVAL(NVC37E, SET_COMPOSITION_CONSTANT_ALPHA, K2, 0),
|
||||
|
||||
SET_COMPOSITION_FACTOR_SELECT,
|
||||
NVVAL(NVC37E, SET_COMPOSITION_FACTOR_SELECT, SRC_COLOR_FACTOR_MATCH_SELECT,
|
||||
asyw->blend.src_color) |
|
||||
NVVAL(NVC37E, SET_COMPOSITION_FACTOR_SELECT, SRC_COLOR_FACTOR_NO_MATCH_SELECT,
|
||||
asyw->blend.src_color) |
|
||||
NVVAL(NVC37E, SET_COMPOSITION_FACTOR_SELECT, DST_COLOR_FACTOR_MATCH_SELECT,
|
||||
asyw->blend.dst_color) |
|
||||
NVVAL(NVC37E, SET_COMPOSITION_FACTOR_SELECT, DST_COLOR_FACTOR_NO_MATCH_SELECT,
|
||||
asyw->blend.dst_color),
|
||||
|
||||
SET_KEY_ALPHA,
|
||||
NVVAL(NVC37E, SET_KEY_ALPHA, MIN, 0x0000) |
|
||||
NVVAL(NVC37E, SET_KEY_ALPHA, MAX, 0xffff),
|
||||
|
||||
SET_KEY_RED_CR,
|
||||
NVVAL(NVC37E, SET_KEY_RED_CR, MIN, 0x0000) |
|
||||
NVVAL(NVC37E, SET_KEY_RED_CR, MAX, 0xffff),
|
||||
|
||||
SET_KEY_GREEN_Y,
|
||||
NVVAL(NVC37E, SET_KEY_GREEN_Y, MIN, 0x0000) |
|
||||
NVVAL(NVC37E, SET_KEY_GREEN_Y, MAX, 0xffff),
|
||||
|
||||
SET_KEY_BLUE_CB,
|
||||
NVVAL(NVC37E, SET_KEY_BLUE_CB, MIN, 0x0000) |
|
||||
NVVAL(NVC37E, SET_KEY_BLUE_CB, MAX, 0xffff));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_image_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 4))) {
|
||||
evo_mthd(push, 0x0308, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_mthd(push, 0x0240, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_PRESENT_CONTROL,
|
||||
NVVAL(NVC37E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, 0) |
|
||||
NVDEF(NVC37E, SET_PRESENT_CONTROL, BEGIN_MODE, NON_TEARING));
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTEXT_DMA_ISO(0), 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc37e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if (!(push = evo_wait(&wndw->wndw, 17)))
|
||||
return;
|
||||
if ((ret = PUSH_WAIT(push, 17)))
|
||||
return ret;
|
||||
|
||||
evo_mthd(push, 0x0308, 1);
|
||||
evo_data(push, asyw->image.mode << 4 | asyw->image.interval);
|
||||
evo_mthd(push, 0x0224, 4);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 4 | asyw->image.blockh);
|
||||
evo_data(push, asyw->csc.valid << 17 |
|
||||
asyw->image.colorspace << 8 |
|
||||
asyw->image.format);
|
||||
evo_data(push, asyw->image.blocks[0] | (asyw->image.pitch[0] >> 6));
|
||||
evo_mthd(push, 0x0240, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
evo_mthd(push, 0x0260, 1);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_mthd(push, 0x0290, 1);
|
||||
evo_data(push, (asyw->state.src_y >> 16) << 16 |
|
||||
(asyw->state.src_x >> 16));
|
||||
evo_mthd(push, 0x0298, 1);
|
||||
evo_data(push, (asyw->state.src_h >> 16) << 16 |
|
||||
(asyw->state.src_w >> 16));
|
||||
evo_mthd(push, 0x02a4, 1);
|
||||
evo_data(push, asyw->state.crtc_h << 16 |
|
||||
asyw->state.crtc_w);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
PUSH_MTHD(push, NVC37E, SET_PRESENT_CONTROL,
|
||||
NVVAL(NVC37E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval) |
|
||||
NVVAL(NVC37E, SET_PRESENT_CONTROL, BEGIN_MODE, asyw->image.mode) |
|
||||
NVDEF(NVC37E, SET_PRESENT_CONTROL, TIMESTAMP_MODE, DISABLE));
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_SIZE,
|
||||
NVVAL(NVC37E, SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NVC37E, SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SET_STORAGE,
|
||||
NVVAL(NVC37E, SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NVC37E, SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SET_PARAMS,
|
||||
NVVAL(NVC37E, SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVVAL(NVC37E, SET_PARAMS, COLOR_SPACE, asyw->image.colorspace) |
|
||||
NVDEF(NVC37E, SET_PARAMS, INPUT_RANGE, BYPASS) |
|
||||
NVDEF(NVC37E, SET_PARAMS, UNDERREPLICATE, DISABLE) |
|
||||
NVDEF(NVC37E, SET_PARAMS, DE_GAMMA, NONE) |
|
||||
NVVAL(NVC37E, SET_PARAMS, CSC, asyw->csc.valid) |
|
||||
NVDEF(NVC37E, SET_PARAMS, CLAMP_BEFORE_BLEND, DISABLE) |
|
||||
NVDEF(NVC37E, SET_PARAMS, SWAP_UV, DISABLE),
|
||||
|
||||
SET_PLANAR_STORAGE(0),
|
||||
NVVAL(NVC37E, SET_PLANAR_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NVC37E, SET_PLANAR_STORAGE, PITCH, asyw->image.pitch[0] >> 6));
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTEXT_DMA_ISO(0), asyw->image.handle, 1);
|
||||
PUSH_MTHD(push, NVC37E, SET_OFFSET(0), asyw->image.offset[0] >> 8);
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_POINT_IN(0),
|
||||
NVVAL(NVC37E, SET_POINT_IN, X, asyw->state.src_x >> 16) |
|
||||
NVVAL(NVC37E, SET_POINT_IN, Y, asyw->state.src_y >> 16));
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_SIZE_IN,
|
||||
NVVAL(NVC37E, SET_SIZE_IN, WIDTH, asyw->state.src_w >> 16) |
|
||||
NVVAL(NVC37E, SET_SIZE_IN, HEIGHT, asyw->state.src_h >> 16));
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_SIZE_OUT,
|
||||
NVVAL(NVC37E, SET_SIZE_OUT, WIDTH, asyw->state.crtc_w) |
|
||||
NVVAL(NVC37E, SET_SIZE_OUT, HEIGHT, asyw->state.crtc_h));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_ntfy_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x021c, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTEXT_DMA_NOTIFIER, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_ntfy_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 3))) {
|
||||
evo_mthd(push, 0x021c, 2);
|
||||
evo_data(push, asyw->ntfy.handle);
|
||||
evo_data(push, asyw->ntfy.offset | asyw->ntfy.awaken);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 3)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTEXT_DMA_NOTIFIER, asyw->ntfy.handle,
|
||||
|
||||
SET_NOTIFIER_CONTROL,
|
||||
NVVAL(NVC37E, SET_NOTIFIER_CONTROL, MODE, asyw->ntfy.awaken) |
|
||||
NVVAL(NVC37E, SET_NOTIFIER_CONTROL, OFFSET, asyw->ntfy.offset >> 4));
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_sema_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x0218, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_CONTEXT_DMA_SEMAPHORE, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_sema_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 5))) {
|
||||
evo_mthd(push, 0x020c, 4);
|
||||
evo_data(push, asyw->sema.offset);
|
||||
evo_data(push, asyw->sema.acquire);
|
||||
evo_data(push, asyw->sema.release);
|
||||
evo_data(push, asyw->sema.handle);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_SEMAPHORE_CONTROL, asyw->sema.offset,
|
||||
SET_SEMAPHORE_ACQUIRE, asyw->sema.acquire,
|
||||
SET_SEMAPHORE_RELEASE, asyw->sema.release,
|
||||
SET_CONTEXT_DMA_SEMAPHORE, asyw->sema.handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
wndwc37e_update(struct nv50_wndw *wndw, u32 *interlock)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 5))) {
|
||||
evo_mthd(push, 0x0370, 2);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_CURS] << 1 |
|
||||
interlock[NV50_DISP_INTERLOCK_CORE]);
|
||||
evo_data(push, interlock[NV50_DISP_INTERLOCK_WNDW]);
|
||||
evo_mthd(push, 0x0200, 1);
|
||||
if (interlock[NV50_DISP_INTERLOCK_WIMM] & wndw->interlock.data)
|
||||
evo_data(push, 0x00001001);
|
||||
else
|
||||
evo_data(push, 0x00000001);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 5)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC37E, SET_INTERLOCK_FLAGS, interlock[NV50_DISP_INTERLOCK_CURS] << 1 |
|
||||
interlock[NV50_DISP_INTERLOCK_CORE],
|
||||
SET_WINDOW_INTERLOCK_FLAGS, interlock[NV50_DISP_INTERLOCK_WNDW]);
|
||||
|
||||
PUSH_MTHD(push, NVC37E, UPDATE, 0x00000001 |
|
||||
NVVAL(NVC37E, UPDATE, INTERLOCK_WITH_WIN_IMM,
|
||||
!!(interlock[NV50_DISP_INTERLOCK_WIMM] & wndw->interlock.data)));
|
||||
|
||||
return PUSH_KICK(push);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -27,97 +27,120 @@
|
|||
#include <nouveau_bo.h>
|
||||
|
||||
#include <nvif/clc37e.h>
|
||||
#include <nvif/pushc37b.h>
|
||||
|
||||
static void
|
||||
#include <nvhw/class/clc57e.h>
|
||||
|
||||
static int
|
||||
wndwc57e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if (!(push = evo_wait(&wndw->wndw, 17)))
|
||||
return;
|
||||
if ((ret = PUSH_WAIT(push, 17)))
|
||||
return ret;
|
||||
|
||||
evo_mthd(push, 0x0308, 1);
|
||||
evo_data(push, asyw->image.mode << 4 | asyw->image.interval);
|
||||
evo_mthd(push, 0x0224, 4);
|
||||
evo_data(push, asyw->image.h << 16 | asyw->image.w);
|
||||
evo_data(push, asyw->image.layout << 4 | asyw->image.blockh);
|
||||
evo_data(push, asyw->image.colorspace << 8 |
|
||||
asyw->image.format);
|
||||
evo_data(push, asyw->image.blocks[0] | (asyw->image.pitch[0] >> 6));
|
||||
evo_mthd(push, 0x0240, 1);
|
||||
evo_data(push, asyw->image.handle[0]);
|
||||
evo_mthd(push, 0x0260, 1);
|
||||
evo_data(push, asyw->image.offset[0] >> 8);
|
||||
evo_mthd(push, 0x0290, 1);
|
||||
evo_data(push, (asyw->state.src_y >> 16) << 16 |
|
||||
(asyw->state.src_x >> 16));
|
||||
evo_mthd(push, 0x0298, 1);
|
||||
evo_data(push, (asyw->state.src_h >> 16) << 16 |
|
||||
(asyw->state.src_w >> 16));
|
||||
evo_mthd(push, 0x02a4, 1);
|
||||
evo_data(push, asyw->state.crtc_h << 16 |
|
||||
asyw->state.crtc_w);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
PUSH_MTHD(push, NVC57E, SET_PRESENT_CONTROL,
|
||||
NVVAL(NVC57E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval) |
|
||||
NVVAL(NVC57E, SET_PRESENT_CONTROL, BEGIN_MODE, asyw->image.mode) |
|
||||
NVDEF(NVC57E, SET_PRESENT_CONTROL, TIMESTAMP_MODE, DISABLE));
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_SIZE,
|
||||
NVVAL(NVC57E, SET_SIZE, WIDTH, asyw->image.w) |
|
||||
NVVAL(NVC57E, SET_SIZE, HEIGHT, asyw->image.h),
|
||||
|
||||
SET_STORAGE,
|
||||
NVVAL(NVC57E, SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
|
||||
NVVAL(NVC57E, SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
|
||||
|
||||
SET_PARAMS,
|
||||
NVVAL(NVC57E, SET_PARAMS, FORMAT, asyw->image.format) |
|
||||
NVDEF(NVC57E, SET_PARAMS, CLAMP_BEFORE_BLEND, DISABLE) |
|
||||
NVDEF(NVC57E, SET_PARAMS, SWAP_UV, DISABLE) |
|
||||
NVDEF(NVC57E, SET_PARAMS, FMT_ROUNDING_MODE, ROUND_TO_NEAREST),
|
||||
|
||||
SET_PLANAR_STORAGE(0),
|
||||
NVVAL(NVC57E, SET_PLANAR_STORAGE, PITCH, asyw->image.blocks[0]) |
|
||||
NVVAL(NVC57E, SET_PLANAR_STORAGE, PITCH, asyw->image.pitch[0] >> 6));
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_CONTEXT_DMA_ISO(0), asyw->image.handle, 1);
|
||||
PUSH_MTHD(push, NVC57E, SET_OFFSET(0), asyw->image.offset[0] >> 8);
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_POINT_IN(0),
|
||||
NVVAL(NVC57E, SET_POINT_IN, X, asyw->state.src_x >> 16) |
|
||||
NVVAL(NVC57E, SET_POINT_IN, Y, asyw->state.src_y >> 16));
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_SIZE_IN,
|
||||
NVVAL(NVC57E, SET_SIZE_IN, WIDTH, asyw->state.src_w >> 16) |
|
||||
NVVAL(NVC57E, SET_SIZE_IN, HEIGHT, asyw->state.src_h >> 16));
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_SIZE_OUT,
|
||||
NVVAL(NVC57E, SET_SIZE_OUT, WIDTH, asyw->state.crtc_w) |
|
||||
NVVAL(NVC57E, SET_SIZE_OUT, HEIGHT, asyw->state.crtc_h));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc57e_csc_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 13))) {
|
||||
evo_mthd(push, 0x0400, 12);
|
||||
evo_data(push, 0x00010000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00010000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_data(push, 0x00010000);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
const u32 identity[12] = {
|
||||
0x00010000, 0x00000000, 0x00000000, 0x00000000,
|
||||
0x00000000, 0x00010000, 0x00000000, 0x00000000,
|
||||
0x00000000, 0x00000000, 0x00010000, 0x00000000,
|
||||
};
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 1 + ARRAY_SIZE(identity))))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_FMT_COEFFICIENT_C00, identity, ARRAY_SIZE(identity));
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc57e_csc_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push, i;
|
||||
if ((push = evo_wait(&wndw->wndw, 13))) {
|
||||
evo_mthd(push, 0x0400, 12);
|
||||
for (i = 0; i < 12; i++)
|
||||
evo_data(push, asyw->csc.matrix[i]);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 13)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_FMT_COEFFICIENT_C00, asyw->csc.matrix, 12);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc57e_ilut_clr(struct nv50_wndw *wndw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 2))) {
|
||||
evo_mthd(push, 0x0444, 1);
|
||||
evo_data(push, 0x00000000);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 2)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_CONTEXT_DMA_ILUT, 0x00000000);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
wndwc57e_ilut_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
|
||||
{
|
||||
u32 *push;
|
||||
if ((push = evo_wait(&wndw->wndw, 4))) {
|
||||
evo_mthd(push, 0x0440, 3);
|
||||
evo_data(push, asyw->xlut.i.size << 8 |
|
||||
asyw->xlut.i.mode << 2 |
|
||||
asyw->xlut.i.output_mode);
|
||||
evo_data(push, asyw->xlut.handle);
|
||||
evo_data(push, asyw->xlut.i.offset >> 8);
|
||||
evo_kick(push, &wndw->wndw);
|
||||
}
|
||||
struct nvif_push *push = wndw->wndw.push;
|
||||
int ret;
|
||||
|
||||
if ((ret = PUSH_WAIT(push, 4)))
|
||||
return ret;
|
||||
|
||||
PUSH_MTHD(push, NVC57E, SET_ILUT_CONTROL,
|
||||
NVVAL(NVC57E, SET_ILUT_CONTROL, SIZE, asyw->xlut.i.size) |
|
||||
NVVAL(NVC57E, SET_ILUT_CONTROL, MODE, asyw->xlut.i.mode) |
|
||||
NVVAL(NVC57E, SET_ILUT_CONTROL, INTERPOLATE, asyw->xlut.i.output_mode),
|
||||
|
||||
SET_CONTEXT_DMA_ILUT, asyw->xlut.handle,
|
||||
SET_OFFSET_ILUT, asyw->xlut.i.offset >> 8);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static u16
|
||||
|
@ -162,13 +185,13 @@ wndwc57e_ilut(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw, int size)
|
|||
if (size = size ? size : 1024, size != 256 && size != 1024)
|
||||
return false;
|
||||
|
||||
if (size == 256) {
|
||||
asyw->xlut.i.mode = 1; /* DIRECT8. */
|
||||
} else {
|
||||
asyw->xlut.i.mode = 2; /* DIRECT10. */
|
||||
}
|
||||
if (size == 256)
|
||||
asyw->xlut.i.mode = NVC57E_SET_ILUT_CONTROL_MODE_DIRECT8;
|
||||
else
|
||||
asyw->xlut.i.mode = NVC57E_SET_ILUT_CONTROL_MODE_DIRECT10;
|
||||
|
||||
asyw->xlut.i.size = 4 /* VSS header. */ + size + 1 /* Entries. */;
|
||||
asyw->xlut.i.output_mode = 0; /* INTERPOLATE_DISABLE. */
|
||||
asyw->xlut.i.output_mode = NVC57E_SET_ILUT_CONTROL_INTERPOLATE_DISABLE;
|
||||
asyw->xlut.i.load = wndwc57e_ilut_load;
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ struct nv_pmu_args {
|
|||
#define NV_PMU_UNIT_ACR 0x0a
|
||||
|
||||
struct nv_pmu_init_msg {
|
||||
struct nv_falcon_msg hdr;
|
||||
struct nvfw_falcon_msg hdr;
|
||||
#define NV_PMU_INIT_MSG_INIT 0x00
|
||||
u8 msg_type;
|
||||
|
||||
|
@ -44,7 +44,7 @@ struct nv_pmu_init_msg {
|
|||
};
|
||||
|
||||
struct nv_pmu_acr_cmd {
|
||||
struct nv_falcon_cmd hdr;
|
||||
struct nvfw_falcon_cmd hdr;
|
||||
#define NV_PMU_ACR_CMD_INIT_WPR_REGION 0x00
|
||||
#define NV_PMU_ACR_CMD_BOOTSTRAP_FALCON 0x01
|
||||
#define NV_PMU_ACR_CMD_BOOTSTRAP_MULTIPLE_FALCONS 0x03
|
||||
|
@ -52,7 +52,7 @@ struct nv_pmu_acr_cmd {
|
|||
};
|
||||
|
||||
struct nv_pmu_acr_msg {
|
||||
struct nv_falcon_cmd hdr;
|
||||
struct nvfw_falcon_cmd hdr;
|
||||
u8 msg_type;
|
||||
};
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ struct nv_sec2_args {
|
|||
#define NV_SEC2_UNIT_ACR 0x08
|
||||
|
||||
struct nv_sec2_init_msg {
|
||||
struct nv_falcon_msg hdr;
|
||||
struct nvfw_falcon_msg hdr;
|
||||
#define NV_SEC2_INIT_MSG_INIT 0x00
|
||||
u8 msg_type;
|
||||
|
||||
|
@ -34,13 +34,13 @@ struct nv_sec2_init_msg {
|
|||
};
|
||||
|
||||
struct nv_sec2_acr_cmd {
|
||||
struct nv_falcon_cmd hdr;
|
||||
struct nvfw_falcon_cmd hdr;
|
||||
#define NV_SEC2_ACR_CMD_BOOTSTRAP_FALCON 0x00
|
||||
u8 cmd_type;
|
||||
};
|
||||
|
||||
struct nv_sec2_acr_msg {
|
||||
struct nv_falcon_cmd hdr;
|
||||
struct nvfw_falcon_cmd hdr;
|
||||
u8 msg_type;
|
||||
};
|
||||
|
||||
|
|
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* Copyright (c) 2001-2001, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _cl0039_h_
|
||||
#define _cl0039_h_
|
||||
|
||||
/* dma method offsets, fields, and values */
|
||||
#define NV039_SET_OBJECT (0x00000000)
|
||||
#define NV039_NO_OPERATION (0x00000100)
|
||||
#define NV039_SET_CONTEXT_DMA_NOTIFIES (0x00000180)
|
||||
#define NV039_SET_CONTEXT_DMA_BUFFER_IN (0x00000184)
|
||||
#define NV039_SET_CONTEXT_DMA_BUFFER_OUT (0x00000188)
|
||||
|
||||
#define NV039_OFFSET_IN (0x0000030C)
|
||||
#define NV039_OFFSET_OUT (0x00000310)
|
||||
#define NV039_PITCH_IN (0x00000314)
|
||||
#define NV039_PITCH_OUT (0x00000318)
|
||||
#define NV039_LINE_LENGTH_IN (0x0000031C)
|
||||
#define NV039_LINE_COUNT (0x00000320)
|
||||
#define NV039_FORMAT (0x00000324)
|
||||
#define NV039_FORMAT_IN 7:0
|
||||
#define NV039_FORMAT_OUT 31:8
|
||||
#define NV039_BUFFER_NOTIFY (0x00000328)
|
||||
#define NV039_BUFFER_NOTIFY_WRITE_ONLY (0x00000000)
|
||||
#define NV039_BUFFER_NOTIFY_WRITE_THEN_AWAKEN (0x00000001)
|
||||
#endif /* _cl0039_h_ */
|
|
@ -0,0 +1,46 @@
|
|||
/*******************************************************************************
|
||||
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
*******************************************************************************/
|
||||
#ifndef _cl006c_h_
|
||||
#define _cl006c_h_
|
||||
|
||||
/* fields and values */
|
||||
#define NV06C_PUT (0x00000040)
|
||||
#define NV06C_PUT_PTR 31:2
|
||||
#define NV06C_GET (0x00000044)
|
||||
#define NV06C_GET_PTR 31:2
|
||||
|
||||
/* dma method descriptor format */
|
||||
#define NV06C_METHOD_ADDRESS 12:2
|
||||
#define NV06C_METHOD_SUBCHANNEL 15:13
|
||||
#define NV06C_METHOD_COUNT 28:18
|
||||
#define NV06C_OPCODE 31:29
|
||||
#define NV06C_OPCODE_METHOD (0x00000000)
|
||||
#define NV06C_OPCODE_NONINC_METHOD (0x00000002)
|
||||
|
||||
/* dma data format */
|
||||
#define NV06C_DATA 31:0
|
||||
|
||||
/* dma jump format */
|
||||
#define NV06C_OPCODE_JUMP (0x00000001)
|
||||
#define NV06C_JUMP_OFFSET 28:2
|
||||
#endif /* _cl006c_h_ */
|
|
@ -0,0 +1,30 @@
|
|||
/*******************************************************************************
|
||||
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
*******************************************************************************/
|
||||
#ifndef _cl006e_h_
|
||||
#define _cl006e_h_
|
||||
|
||||
/* fields and values */
|
||||
#define NV06E_SET_OBJECT (0x00000000)
|
||||
#define NV06E_REFERENCE (0x00000048)
|
||||
#define NV06E_SET_REFERENCE (0x00000050)
|
||||
#endif /* _cl006e_h_ */
|
|
@ -0,0 +1,10 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
#ifndef _cl176e_h_
|
||||
#define _cl176e_h_
|
||||
|
||||
#define NV176E_SET_OBJECT (0x00000000)
|
||||
#define NV176E_SET_CONTEXT_DMA_SEMAPHORE (0x00000060)
|
||||
#define NV176E_SEMAPHORE_OFFSET (0x00000064)
|
||||
#define NV176E_SEMAPHORE_ACQUIRE (0x00000068)
|
||||
#define NV176E_SEMAPHORE_RELEASE (0x0000006c)
|
||||
#endif
|
|
@ -0,0 +1,35 @@
|
|||
/*******************************************************************************
|
||||
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
*******************************************************************************/
|
||||
#ifndef _cl206e_h_
|
||||
#define _cl206e_h_
|
||||
|
||||
/* dma opcode2 format */
|
||||
#define NV206E_DMA_OPCODE2 1:0
|
||||
#define NV206E_DMA_OPCODE2_NONE (0x00000000)
|
||||
/* dma jump_long format */
|
||||
#define NV206E_DMA_OPCODE2_JUMP_LONG (0x00000001)
|
||||
#define NV206E_DMA_JUMP_LONG_OFFSET 31:2
|
||||
/* dma call format */
|
||||
#define NV206E_DMA_OPCODE2_CALL (0x00000002)
|
||||
#define NV206E_DMA_CALL_OFFSET 31:2
|
||||
#endif /* _cl206e_h_ */
|
|
@ -0,0 +1,337 @@
|
|||
/*
|
||||
* Copyright (c) 2003 - 2004, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _cl_nv50_twod_h_
|
||||
#define _cl_nv50_twod_h_
|
||||
|
||||
#define NV502D_SET_OBJECT 0x0000
|
||||
#define NV502D_SET_OBJECT_POINTER 15:0
|
||||
|
||||
#define NV502D_WAIT_FOR_IDLE 0x0110
|
||||
#define NV502D_WAIT_FOR_IDLE_V 31:0
|
||||
|
||||
#define NV502D_SET_DST_CONTEXT_DMA 0x0184
|
||||
#define NV502D_SET_DST_CONTEXT_DMA_HANDLE 31:0
|
||||
|
||||
#define NV502D_SET_SRC_CONTEXT_DMA 0x0188
|
||||
#define NV502D_SET_SRC_CONTEXT_DMA_HANDLE 31:0
|
||||
|
||||
#define NV502D_SET_SEMAPHORE_CONTEXT_DMA 0x018c
|
||||
#define NV502D_SET_SEMAPHORE_CONTEXT_DMA_HANDLE 31:0
|
||||
|
||||
#define NV502D_SET_DST_FORMAT 0x0200
|
||||
#define NV502D_SET_DST_FORMAT_V 7:0
|
||||
#define NV502D_SET_DST_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV502D_SET_DST_FORMAT_V_A8RL8GL8BL8 0x000000D0
|
||||
#define NV502D_SET_DST_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV502D_SET_DST_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV502D_SET_DST_FORMAT_V_A8BL8GL8RL8 0x000000D6
|
||||
#define NV502D_SET_DST_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV502D_SET_DST_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV502D_SET_DST_FORMAT_V_X8RL8GL8BL8 0x000000E7
|
||||
#define NV502D_SET_DST_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV502D_SET_DST_FORMAT_V_X8BL8GL8RL8 0x000000FA
|
||||
#define NV502D_SET_DST_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV502D_SET_DST_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV502D_SET_DST_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV502D_SET_DST_FORMAT_V_Y8 0x000000F3
|
||||
#define NV502D_SET_DST_FORMAT_V_Y16 0x000000EE
|
||||
#define NV502D_SET_DST_FORMAT_V_Y32 0x000000FF
|
||||
#define NV502D_SET_DST_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV502D_SET_DST_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV502D_SET_DST_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV502D_SET_DST_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
#define NV502D_SET_DST_FORMAT_V_Y1_8X8 0x0000001C
|
||||
#define NV502D_SET_DST_FORMAT_V_RF16 0x000000F2
|
||||
#define NV502D_SET_DST_FORMAT_V_RF32 0x000000E5
|
||||
#define NV502D_SET_DST_FORMAT_V_RF32_GF32 0x000000CB
|
||||
#define NV502D_SET_DST_FORMAT_V_RF16_GF16_BF16_AF16 0x000000CA
|
||||
#define NV502D_SET_DST_FORMAT_V_RF16_GF16_BF16_X16 0x000000CE
|
||||
#define NV502D_SET_DST_FORMAT_V_RF32_GF32_BF32_AF32 0x000000C0
|
||||
#define NV502D_SET_DST_FORMAT_V_RF32_GF32_BF32_X32 0x000000C3
|
||||
|
||||
#define NV502D_SET_DST_MEMORY_LAYOUT 0x0204
|
||||
#define NV502D_SET_DST_MEMORY_LAYOUT_V 0:0
|
||||
#define NV502D_SET_DST_MEMORY_LAYOUT_V_BLOCKLINEAR 0x00000000
|
||||
#define NV502D_SET_DST_MEMORY_LAYOUT_V_PITCH 0x00000001
|
||||
|
||||
#define NV502D_SET_DST_PITCH 0x0214
|
||||
#define NV502D_SET_DST_PITCH_V 31:0
|
||||
|
||||
#define NV502D_SET_DST_WIDTH 0x0218
|
||||
#define NV502D_SET_DST_WIDTH_V 31:0
|
||||
|
||||
#define NV502D_SET_DST_HEIGHT 0x021c
|
||||
#define NV502D_SET_DST_HEIGHT_V 31:0
|
||||
|
||||
#define NV502D_SET_DST_OFFSET_UPPER 0x0220
|
||||
#define NV502D_SET_DST_OFFSET_UPPER_V 7:0
|
||||
|
||||
#define NV502D_SET_DST_OFFSET_LOWER 0x0224
|
||||
#define NV502D_SET_DST_OFFSET_LOWER_V 31:0
|
||||
|
||||
#define NV502D_SET_SRC_FORMAT 0x0230
|
||||
#define NV502D_SET_SRC_FORMAT_V 7:0
|
||||
#define NV502D_SET_SRC_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV502D_SET_SRC_FORMAT_V_A8RL8GL8BL8 0x000000D0
|
||||
#define NV502D_SET_SRC_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV502D_SET_SRC_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV502D_SET_SRC_FORMAT_V_A8BL8GL8RL8 0x000000D6
|
||||
#define NV502D_SET_SRC_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV502D_SET_SRC_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV502D_SET_SRC_FORMAT_V_X8RL8GL8BL8 0x000000E7
|
||||
#define NV502D_SET_SRC_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV502D_SET_SRC_FORMAT_V_X8BL8GL8RL8 0x000000FA
|
||||
#define NV502D_SET_SRC_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV502D_SET_SRC_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV502D_SET_SRC_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV502D_SET_SRC_FORMAT_V_Y8 0x000000F3
|
||||
#define NV502D_SET_SRC_FORMAT_V_AY8 0x0000001D
|
||||
#define NV502D_SET_SRC_FORMAT_V_Y16 0x000000EE
|
||||
#define NV502D_SET_SRC_FORMAT_V_Y32 0x000000FF
|
||||
#define NV502D_SET_SRC_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV502D_SET_SRC_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV502D_SET_SRC_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV502D_SET_SRC_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
#define NV502D_SET_SRC_FORMAT_V_Y1_8X8 0x0000001C
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF16 0x000000F2
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF32 0x000000E5
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF32_GF32 0x000000CB
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF16_GF16_BF16_AF16 0x000000CA
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF16_GF16_BF16_X16 0x000000CE
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF32_GF32_BF32_AF32 0x000000C0
|
||||
#define NV502D_SET_SRC_FORMAT_V_RF32_GF32_BF32_X32 0x000000C3
|
||||
|
||||
#define NV502D_SET_SRC_MEMORY_LAYOUT 0x0234
|
||||
#define NV502D_SET_SRC_MEMORY_LAYOUT_V 0:0
|
||||
#define NV502D_SET_SRC_MEMORY_LAYOUT_V_BLOCKLINEAR 0x00000000
|
||||
#define NV502D_SET_SRC_MEMORY_LAYOUT_V_PITCH 0x00000001
|
||||
|
||||
#define NV502D_SET_SRC_PITCH 0x0244
|
||||
#define NV502D_SET_SRC_PITCH_V 31:0
|
||||
|
||||
#define NV502D_SET_SRC_WIDTH 0x0248
|
||||
#define NV502D_SET_SRC_WIDTH_V 31:0
|
||||
|
||||
#define NV502D_SET_SRC_HEIGHT 0x024c
|
||||
#define NV502D_SET_SRC_HEIGHT_V 31:0
|
||||
|
||||
#define NV502D_SET_SRC_OFFSET_UPPER 0x0250
|
||||
#define NV502D_SET_SRC_OFFSET_UPPER_V 7:0
|
||||
|
||||
#define NV502D_SET_SRC_OFFSET_LOWER 0x0254
|
||||
#define NV502D_SET_SRC_OFFSET_LOWER_V 31:0
|
||||
|
||||
#define NV502D_SET_CLIP_ENABLE 0x0290
|
||||
#define NV502D_SET_CLIP_ENABLE_V 0:0
|
||||
#define NV502D_SET_CLIP_ENABLE_V_FALSE 0x00000000
|
||||
#define NV502D_SET_CLIP_ENABLE_V_TRUE 0x00000001
|
||||
|
||||
#define NV502D_SET_ROP 0x02a0
|
||||
#define NV502D_SET_ROP_V 7:0
|
||||
|
||||
#define NV502D_SET_OPERATION 0x02ac
|
||||
#define NV502D_SET_OPERATION_V 2:0
|
||||
#define NV502D_SET_OPERATION_V_SRCCOPY_AND 0x00000000
|
||||
#define NV502D_SET_OPERATION_V_ROP_AND 0x00000001
|
||||
#define NV502D_SET_OPERATION_V_BLEND_AND 0x00000002
|
||||
#define NV502D_SET_OPERATION_V_SRCCOPY 0x00000003
|
||||
#define NV502D_SET_OPERATION_V_ROP 0x00000004
|
||||
#define NV502D_SET_OPERATION_V_SRCCOPY_PREMULT 0x00000005
|
||||
#define NV502D_SET_OPERATION_V_BLEND_PREMULT 0x00000006
|
||||
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT 0x02e8
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V 2:0
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8X8R5G6B5 0x00000000
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A1R5G5B5 0x00000001
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8R8G8B8 0x00000002
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8Y8 0x00000003
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8X8Y16 0x00000004
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_Y32 0x00000005
|
||||
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_FORMAT 0x02ec
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_FORMAT_V 0:0
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_FORMAT_V_CGA6_M1 0x00000000
|
||||
#define NV502D_SET_MONOCHROME_PATTERN_FORMAT_V_LE_M1 0x00000001
|
||||
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE 0x0580
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE_V 2:0
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE_V_POINTS 0x00000000
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE_V_LINES 0x00000001
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE_V_POLYLINE 0x00000002
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE_V_TRIANGLES 0x00000003
|
||||
#define NV502D_RENDER_SOLID_PRIM_MODE_V_RECTS 0x00000004
|
||||
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT 0x0584
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V 7:0
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Y8 0x000000F3
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Y16 0x000000EE
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Y32 0x000000FF
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR 0x0588
|
||||
#define NV502D_SET_RENDER_SOLID_PRIM_COLOR_V 31:0
|
||||
|
||||
#define NV502D_RENDER_SOLID_PRIM_POINT_SET_X(j) (0x0600+(j)*8)
|
||||
#define NV502D_RENDER_SOLID_PRIM_POINT_SET_X_V 31:0
|
||||
|
||||
#define NV502D_RENDER_SOLID_PRIM_POINT_Y(j) (0x0604+(j)*8)
|
||||
#define NV502D_RENDER_SOLID_PRIM_POINT_Y_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DATA_TYPE 0x0800
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DATA_TYPE_V 0:0
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DATA_TYPE_V_COLOR 0x00000000
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DATA_TYPE_V_INDEX 0x00000001
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT 0x0804
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V 7:0
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Y8 0x000000F3
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Y16 0x000000EE
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Y32 0x000000FF
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_INDEX_FORMAT 0x0808
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V 1:0
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V_I1 0x00000000
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V_I4 0x00000001
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V_I8 0x00000002
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_FORMAT 0x080c
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_FORMAT_V 0:0
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_FORMAT_V_CGA6_M1 0x00000000
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_FORMAT_V_LE_M1 0x00000001
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_WRAP 0x0810
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_WRAP_V 1:0
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_WRAP_V_WRAP_PIXEL 0x00000000
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_WRAP_V_WRAP_BYTE 0x00000001
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_WRAP_V_WRAP_DWORD 0x00000002
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR0 0x0814
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR0_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR1 0x0818
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_COLOR1_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_OPACITY 0x081c
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_OPACITY_V 0:0
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_OPACITY_V_TRANSPARENT 0x00000000
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_MONO_OPACITY_V_OPAQUE 0x00000001
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_SRC_WIDTH 0x0838
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_SRC_WIDTH_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_SRC_HEIGHT 0x083c
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_SRC_HEIGHT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DX_DU_FRAC 0x0840
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DX_DU_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DX_DU_INT 0x0844
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DX_DU_INT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DY_DV_FRAC 0x0848
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DY_DV_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DY_DV_INT 0x084c
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DY_DV_INT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_X0_FRAC 0x0850
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_X0_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_X0_INT 0x0854
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_X0_INT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_Y0_FRAC 0x0858
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_Y0_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_Y0_INT 0x085c
|
||||
#define NV502D_SET_PIXELS_FROM_CPU_DST_Y0_INT_V 31:0
|
||||
|
||||
#define NV502D_PIXELS_FROM_CPU_DATA 0x0860
|
||||
#define NV502D_PIXELS_FROM_CPU_DATA_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP 0x0888
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP_V 0:0
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP_V_FALSE 0x00000000
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP_V_TRUE 0x00000001
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_X0 0x08b0
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_X0_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_Y0 0x08b4
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_Y0_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_WIDTH 0x08b8
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_WIDTH_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_HEIGHT 0x08bc
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DST_HEIGHT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DU_DX_FRAC 0x08c0
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DU_DX_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DU_DX_INT 0x08c4
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DU_DX_INT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DV_DY_FRAC 0x08c8
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DV_DY_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DV_DY_INT 0x08cc
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_DV_DY_INT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SRC_X0_FRAC 0x08d0
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SRC_X0_FRAC_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SRC_X0_INT 0x08d4
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SRC_X0_INT_V 31:0
|
||||
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SRC_Y0_FRAC 0x08d8
|
||||
#define NV502D_SET_PIXELS_FROM_MEMORY_SRC_Y0_FRAC_V 31:0
|
||||
|
||||
#define NV502D_PIXELS_FROM_MEMORY_SRC_Y0_INT 0x08dc
|
||||
#define NV502D_PIXELS_FROM_MEMORY_SRC_Y0_INT_V 31:0
|
||||
#endif /* _cl_nv50_twod_h_ */
|
|
@ -0,0 +1,153 @@
|
|||
/*
|
||||
* Copyright (c) 2003-2004, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _cl_nv50_memory_to_memory_format_h_
|
||||
#define _cl_nv50_memory_to_memory_format_h_
|
||||
|
||||
#define NV5039_SET_OBJECT 0x0000
|
||||
#define NV5039_SET_OBJECT_POINTER 15:0
|
||||
|
||||
#define NV5039_NO_OPERATION 0x0100
|
||||
#define NV5039_NO_OPERATION_V 31:0
|
||||
|
||||
#define NV5039_SET_CONTEXT_DMA_NOTIFY 0x0180
|
||||
#define NV5039_SET_CONTEXT_DMA_NOTIFY_HANDLE 31:0
|
||||
|
||||
#define NV5039_SET_CONTEXT_DMA_BUFFER_IN 0x0184
|
||||
#define NV5039_SET_CONTEXT_DMA_BUFFER_IN_HANDLE 31:0
|
||||
|
||||
#define NV5039_SET_CONTEXT_DMA_BUFFER_OUT 0x0188
|
||||
#define NV5039_SET_CONTEXT_DMA_BUFFER_OUT_HANDLE 31:0
|
||||
|
||||
#define NV5039_SET_SRC_MEMORY_LAYOUT 0x0200
|
||||
#define NV5039_SET_SRC_MEMORY_LAYOUT_V 0:0
|
||||
#define NV5039_SET_SRC_MEMORY_LAYOUT_V_BLOCKLINEAR 0x00000000
|
||||
#define NV5039_SET_SRC_MEMORY_LAYOUT_V_PITCH 0x00000001
|
||||
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE 0x0204
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_WIDTH 3:0
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_WIDTH_ONE_GOB 0x00000000
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT 7:4
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT_ONE_GOB 0x00000000
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT_TWO_GOBS 0x00000001
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT_FOUR_GOBS 0x00000002
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT_EIGHT_GOBS 0x00000003
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT_SIXTEEN_GOBS 0x00000004
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_HEIGHT_THIRTYTWO_GOBS 0x00000005
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH 11:8
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH_ONE_GOB 0x00000000
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH_TWO_GOBS 0x00000001
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH_FOUR_GOBS 0x00000002
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH_EIGHT_GOBS 0x00000003
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH_SIXTEEN_GOBS 0x00000004
|
||||
#define NV5039_SET_SRC_BLOCK_SIZE_DEPTH_THIRTYTWO_GOBS 0x00000005
|
||||
|
||||
#define NV5039_SET_SRC_WIDTH 0x0208
|
||||
#define NV5039_SET_SRC_WIDTH_V 31:0
|
||||
|
||||
#define NV5039_SET_SRC_HEIGHT 0x020c
|
||||
#define NV5039_SET_SRC_HEIGHT_V 31:0
|
||||
|
||||
#define NV5039_SET_SRC_DEPTH 0x0210
|
||||
#define NV5039_SET_SRC_DEPTH_V 31:0
|
||||
|
||||
#define NV5039_SET_SRC_LAYER 0x0214
|
||||
#define NV5039_SET_SRC_LAYER_V 31:0
|
||||
|
||||
#define NV5039_SET_SRC_ORIGIN 0x0218
|
||||
#define NV5039_SET_SRC_ORIGIN_X 15:0
|
||||
#define NV5039_SET_SRC_ORIGIN_Y 31:16
|
||||
|
||||
#define NV5039_SET_DST_MEMORY_LAYOUT 0x021c
|
||||
#define NV5039_SET_DST_MEMORY_LAYOUT_V 0:0
|
||||
#define NV5039_SET_DST_MEMORY_LAYOUT_V_BLOCKLINEAR 0x00000000
|
||||
#define NV5039_SET_DST_MEMORY_LAYOUT_V_PITCH 0x00000001
|
||||
|
||||
#define NV5039_SET_DST_BLOCK_SIZE 0x0220
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_WIDTH 3:0
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_WIDTH_ONE_GOB 0x00000000
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT 7:4
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT_ONE_GOB 0x00000000
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT_TWO_GOBS 0x00000001
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT_FOUR_GOBS 0x00000002
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT_EIGHT_GOBS 0x00000003
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT_SIXTEEN_GOBS 0x00000004
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_HEIGHT_THIRTYTWO_GOBS 0x00000005
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH 11:8
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH_ONE_GOB 0x00000000
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH_TWO_GOBS 0x00000001
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH_FOUR_GOBS 0x00000002
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH_EIGHT_GOBS 0x00000003
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH_SIXTEEN_GOBS 0x00000004
|
||||
#define NV5039_SET_DST_BLOCK_SIZE_DEPTH_THIRTYTWO_GOBS 0x00000005
|
||||
|
||||
#define NV5039_SET_DST_WIDTH 0x0224
|
||||
#define NV5039_SET_DST_WIDTH_V 31:0
|
||||
|
||||
#define NV5039_SET_DST_HEIGHT 0x0228
|
||||
#define NV5039_SET_DST_HEIGHT_V 31:0
|
||||
|
||||
#define NV5039_SET_DST_DEPTH 0x022c
|
||||
#define NV5039_SET_DST_DEPTH_V 31:0
|
||||
|
||||
#define NV5039_SET_DST_LAYER 0x0230
|
||||
#define NV5039_SET_DST_LAYER_V 31:0
|
||||
|
||||
#define NV5039_SET_DST_ORIGIN 0x0234
|
||||
#define NV5039_SET_DST_ORIGIN_X 15:0
|
||||
#define NV5039_SET_DST_ORIGIN_Y 31:16
|
||||
|
||||
#define NV5039_OFFSET_IN_UPPER 0x0238
|
||||
#define NV5039_OFFSET_IN_UPPER_VALUE 7:0
|
||||
|
||||
#define NV5039_OFFSET_OUT_UPPER 0x023c
|
||||
#define NV5039_OFFSET_OUT_UPPER_VALUE 7:0
|
||||
|
||||
#define NV5039_OFFSET_IN 0x030c
|
||||
#define NV5039_OFFSET_IN_VALUE 31:0
|
||||
|
||||
#define NV5039_OFFSET_OUT 0x0310
|
||||
#define NV5039_OFFSET_OUT_VALUE 31:0
|
||||
|
||||
#define NV5039_PITCH_IN 0x0314
|
||||
#define NV5039_PITCH_IN_VALUE 31:0
|
||||
|
||||
#define NV5039_PITCH_OUT 0x0318
|
||||
#define NV5039_PITCH_OUT_VALUE 31:0
|
||||
|
||||
#define NV5039_LINE_LENGTH_IN 0x031c
|
||||
#define NV5039_LINE_LENGTH_IN_VALUE 31:0
|
||||
|
||||
#define NV5039_LINE_COUNT 0x0320
|
||||
#define NV5039_LINE_COUNT_VALUE 31:0
|
||||
|
||||
#define NV5039_FORMAT 0x0324
|
||||
#define NV5039_FORMAT_IN 7:0
|
||||
#define NV5039_FORMAT_IN_ONE 0x00000001
|
||||
#define NV5039_FORMAT_OUT 15:8
|
||||
#define NV5039_FORMAT_OUT_ONE 0x00000001
|
||||
|
||||
#define NV5039_BUFFER_NOTIFY 0x0328
|
||||
#define NV5039_BUFFER_NOTIFY_TYPE 31:0
|
||||
#define NV5039_BUFFER_NOTIFY_TYPE_WRITE_ONLY 0x00000000
|
||||
#define NV5039_BUFFER_NOTIFY_TYPE_WRITE_THEN_AWAKEN 0x00000001
|
||||
#endif /* _cl_nv50_memory_to_memory_format_h_ */
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl507a_h_
|
||||
#define _cl507a_h_
|
||||
|
||||
#define NV507A_FREE (0x00000008)
|
||||
#define NV507A_FREE_COUNT 5:0
|
||||
#define NV507A_UPDATE (0x00000080)
|
||||
#define NV507A_UPDATE_INTERLOCK_WITH_CORE 0:0
|
||||
#define NV507A_UPDATE_INTERLOCK_WITH_CORE_DISABLE (0x00000000)
|
||||
#define NV507A_UPDATE_INTERLOCK_WITH_CORE_ENABLE (0x00000001)
|
||||
#define NV507A_SET_CURSOR_HOT_SPOT_POINT_OUT (0x00000084)
|
||||
#define NV507A_SET_CURSOR_HOT_SPOT_POINT_OUT_X 15:0
|
||||
#define NV507A_SET_CURSOR_HOT_SPOT_POINT_OUT_Y 31:16
|
||||
#endif // _cl507a_h
|
|
@ -0,0 +1,165 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl507c_h_
|
||||
#define _cl507c_h_
|
||||
|
||||
#define NV_DISP_BASE_NOTIFIER_1 0x00000000
|
||||
#define NV_DISP_BASE_NOTIFIER_1_SIZEOF 0x00000004
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0 0x00000000
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0_PRESENTATION_COUNT 15:0
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0_TIMESTAMP 29:16
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0_STATUS 31:30
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0_STATUS_NOT_BEGUN 0x00000000
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0_STATUS_BEGUN 0x00000001
|
||||
#define NV_DISP_BASE_NOTIFIER_1__0_STATUS_FINISHED 0x00000002
|
||||
|
||||
|
||||
// dma opcode instructions
|
||||
#define NV507C_DMA 0x00000000
|
||||
#define NV507C_DMA_OPCODE 31:29
|
||||
#define NV507C_DMA_OPCODE_METHOD 0x00000000
|
||||
#define NV507C_DMA_OPCODE_JUMP 0x00000001
|
||||
#define NV507C_DMA_OPCODE_NONINC_METHOD 0x00000002
|
||||
#define NV507C_DMA_OPCODE_SET_SUBDEVICE_MASK 0x00000003
|
||||
#define NV507C_DMA_OPCODE 31:29
|
||||
#define NV507C_DMA_OPCODE_METHOD 0x00000000
|
||||
#define NV507C_DMA_OPCODE_NONINC_METHOD 0x00000002
|
||||
#define NV507C_DMA_METHOD_COUNT 27:18
|
||||
#define NV507C_DMA_METHOD_OFFSET 11:2
|
||||
#define NV507C_DMA_DATA 31:0
|
||||
#define NV507C_DMA_NOP 0x00000000
|
||||
#define NV507C_DMA_OPCODE 31:29
|
||||
#define NV507C_DMA_OPCODE_JUMP 0x00000001
|
||||
#define NV507C_DMA_JUMP_OFFSET 11:2
|
||||
#define NV507C_DMA_OPCODE 31:29
|
||||
#define NV507C_DMA_OPCODE_SET_SUBDEVICE_MASK 0x00000003
|
||||
#define NV507C_DMA_SET_SUBDEVICE_MASK_VALUE 11:0
|
||||
|
||||
// class methods
|
||||
#define NV507C_PUT (0x00000000)
|
||||
#define NV507C_PUT_PTR 11:2
|
||||
#define NV507C_GET (0x00000004)
|
||||
#define NV507C_GET_PTR 11:2
|
||||
#define NV507C_UPDATE (0x00000080)
|
||||
#define NV507C_UPDATE_INTERLOCK_WITH_CORE 0:0
|
||||
#define NV507C_UPDATE_INTERLOCK_WITH_CORE_DISABLE (0x00000000)
|
||||
#define NV507C_UPDATE_INTERLOCK_WITH_CORE_ENABLE (0x00000001)
|
||||
#define NV507C_SET_PRESENT_CONTROL (0x00000084)
|
||||
#define NV507C_SET_PRESENT_CONTROL_BEGIN_MODE 9:8
|
||||
#define NV507C_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING (0x00000000)
|
||||
#define NV507C_SET_PRESENT_CONTROL_BEGIN_MODE_IMMEDIATE (0x00000001)
|
||||
#define NV507C_SET_PRESENT_CONTROL_BEGIN_MODE_ON_LINE (0x00000002)
|
||||
#define NV507C_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 7:4
|
||||
#define NV507C_SET_PRESENT_CONTROL_BEGIN_LINE 30:16
|
||||
#define NV507C_SET_PRESENT_CONTROL_ON_LINE_MARGIN 15:10
|
||||
#define NV507C_SET_SEMAPHORE_CONTROL (0x00000088)
|
||||
#define NV507C_SET_SEMAPHORE_CONTROL_OFFSET 11:2
|
||||
#define NV507C_SET_SEMAPHORE_ACQUIRE (0x0000008C)
|
||||
#define NV507C_SET_SEMAPHORE_ACQUIRE_VALUE 31:0
|
||||
#define NV507C_SET_SEMAPHORE_RELEASE (0x00000090)
|
||||
#define NV507C_SET_SEMAPHORE_RELEASE_VALUE 31:0
|
||||
#define NV507C_SET_CONTEXT_DMA_SEMAPHORE (0x00000094)
|
||||
#define NV507C_SET_CONTEXT_DMA_SEMAPHORE_HANDLE 31:0
|
||||
#define NV507C_SET_NOTIFIER_CONTROL (0x000000A0)
|
||||
#define NV507C_SET_NOTIFIER_CONTROL_MODE 30:30
|
||||
#define NV507C_SET_NOTIFIER_CONTROL_MODE_WRITE (0x00000000)
|
||||
#define NV507C_SET_NOTIFIER_CONTROL_MODE_WRITE_AWAKEN (0x00000001)
|
||||
#define NV507C_SET_NOTIFIER_CONTROL_OFFSET 11:2
|
||||
#define NV507C_SET_CONTEXT_DMA_NOTIFIER (0x000000A4)
|
||||
#define NV507C_SET_CONTEXT_DMA_NOTIFIER_HANDLE 31:0
|
||||
#define NV507C_SET_CONTEXT_DMA_ISO (0x000000C0)
|
||||
#define NV507C_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NV507C_SET_BASE_LUT_LO (0x000000E0)
|
||||
#define NV507C_SET_BASE_LUT_LO_ENABLE 31:30
|
||||
#define NV507C_SET_BASE_LUT_LO_ENABLE_DISABLE (0x00000000)
|
||||
#define NV507C_SET_BASE_LUT_LO_ENABLE_USE_CORE_LUT (0x00000001)
|
||||
#define NV507C_SET_BASE_LUT_LO_ENABLE_ENABLE (0x00000003)
|
||||
#define NV507C_SET_BASE_LUT_LO_MODE 29:29
|
||||
#define NV507C_SET_BASE_LUT_LO_MODE_LORES (0x00000000)
|
||||
#define NV507C_SET_BASE_LUT_LO_MODE_HIRES (0x00000001)
|
||||
#define NV507C_SET_BASE_LUT_LO_ORIGIN 7:2
|
||||
#define NV507C_SET_PROCESSING (0x00000110)
|
||||
#define NV507C_SET_PROCESSING_USE_GAIN_OFS 0:0
|
||||
#define NV507C_SET_PROCESSING_USE_GAIN_OFS_DISABLE (0x00000000)
|
||||
#define NV507C_SET_PROCESSING_USE_GAIN_OFS_ENABLE (0x00000001)
|
||||
#define NV507C_SET_CONVERSION (0x00000114)
|
||||
#define NV507C_SET_CONVERSION_GAIN 15:0
|
||||
#define NV507C_SET_CONVERSION_OFS 31:16
|
||||
|
||||
#define NV507C_SURFACE_SET_OFFSET(a,b) (0x00000800 + (a)*0x00000020 + (b)*0x00000004)
|
||||
#define NV507C_SURFACE_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV507C_SURFACE_SET_SIZE(a) (0x00000808 + (a)*0x00000020)
|
||||
#define NV507C_SURFACE_SET_SIZE_WIDTH 14:0
|
||||
#define NV507C_SURFACE_SET_SIZE_HEIGHT 30:16
|
||||
#define NV507C_SURFACE_SET_STORAGE(a) (0x0000080C + (a)*0x00000020)
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV507C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV507C_SURFACE_SET_STORAGE_PITCH 17:8
|
||||
#define NV507C_SURFACE_SET_STORAGE_MEMORY_LAYOUT 20:20
|
||||
#define NV507C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV507C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV507C_SURFACE_SET_PARAMS(a) (0x00000810 + (a)*0x00000020)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT 15:8
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_VOID16 (0x0000001F)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_VOID32 (0x0000002E)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NV507C_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV507C_SURFACE_SET_PARAMS_SUPER_SAMPLE 1:0
|
||||
#define NV507C_SURFACE_SET_PARAMS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV507C_SURFACE_SET_PARAMS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV507C_SURFACE_SET_PARAMS_GAMMA 2:2
|
||||
#define NV507C_SURFACE_SET_PARAMS_GAMMA_LINEAR (0x00000000)
|
||||
#define NV507C_SURFACE_SET_PARAMS_GAMMA_SRGB (0x00000001)
|
||||
#define NV507C_SURFACE_SET_PARAMS_LAYOUT 5:4
|
||||
#define NV507C_SURFACE_SET_PARAMS_LAYOUT_FRM (0x00000000)
|
||||
#define NV507C_SURFACE_SET_PARAMS_LAYOUT_FLD1 (0x00000001)
|
||||
#define NV507C_SURFACE_SET_PARAMS_LAYOUT_FLD2 (0x00000002)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND 22:16
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_PITCH (0x00000000)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_8BX2 (0x00000070)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_8BX2_BANKSWIZ (0x00000072)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_16BX1 (0x00000074)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_16BX1_BANKSWIZ (0x00000076)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C32_MS4 (0x00000078)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C32_MS8 (0x00000079)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C32_MS4_BANKSWIZ (0x0000007A)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C32_MS8_BANKSWIZ (0x0000007B)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C64_MS4 (0x0000007C)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C64_MS8 (0x0000007D)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_KIND_C128_MS4 (0x0000007E)
|
||||
#define NV507C_SURFACE_SET_PARAMS_KIND_FROM_PTE (0x0000007F)
|
||||
#define NV507C_SURFACE_SET_PARAMS_PART_STRIDE 24:24
|
||||
#define NV507C_SURFACE_SET_PARAMS_PART_STRIDE_PARTSTRIDE_256 (0x00000000)
|
||||
#define NV507C_SURFACE_SET_PARAMS_PART_STRIDE_PARTSTRIDE_1024 (0x00000001)
|
||||
#endif // _cl507c_h
|
|
@ -0,0 +1,372 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl507d_h_
|
||||
#define _cl507d_h_
|
||||
|
||||
#define NV_DISP_CORE_NOTIFIER_1 0x00000000
|
||||
#define NV_DISP_CORE_NOTIFIER_1_SIZEOF 0x00000054
|
||||
#define NV_DISP_CORE_NOTIFIER_1_COMPLETION_0 0x00000000
|
||||
#define NV_DISP_CORE_NOTIFIER_1_COMPLETION_0_DONE 0:0
|
||||
#define NV_DISP_CORE_NOTIFIER_1_COMPLETION_0_DONE_FALSE 0x00000000
|
||||
#define NV_DISP_CORE_NOTIFIER_1_COMPLETION_0_DONE_TRUE 0x00000001
|
||||
#define NV_DISP_CORE_NOTIFIER_1_COMPLETION_0_R0 15:1
|
||||
#define NV_DISP_CORE_NOTIFIER_1_COMPLETION_0_TIMESTAMP 29:16
|
||||
|
||||
|
||||
// class methods
|
||||
#define NV507D_UPDATE (0x00000080)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_CURSOR0 0:0
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_CURSOR0_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_CURSOR0_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_CURSOR1 8:8
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_CURSOR1_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_CURSOR1_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_BASE0 1:1
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_BASE0_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_BASE0_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_BASE1 9:9
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_BASE1_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_BASE1_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY0 2:2
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY0_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY0_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY1 10:10
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY1_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY1_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY_IMM0 3:3
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY_IMM0_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY_IMM0_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY_IMM1 11:11
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY_IMM1_DISABLE (0x00000000)
|
||||
#define NV507D_UPDATE_INTERLOCK_WITH_OVERLAY_IMM1_ENABLE (0x00000001)
|
||||
#define NV507D_UPDATE_NOT_DRIVER_FRIENDLY 31:31
|
||||
#define NV507D_UPDATE_NOT_DRIVER_FRIENDLY_FALSE (0x00000000)
|
||||
#define NV507D_UPDATE_NOT_DRIVER_FRIENDLY_TRUE (0x00000001)
|
||||
#define NV507D_UPDATE_NOT_DRIVER_UNFRIENDLY 30:30
|
||||
#define NV507D_UPDATE_NOT_DRIVER_UNFRIENDLY_FALSE (0x00000000)
|
||||
#define NV507D_UPDATE_NOT_DRIVER_UNFRIENDLY_TRUE (0x00000001)
|
||||
#define NV507D_UPDATE_INHIBIT_INTERRUPTS 29:29
|
||||
#define NV507D_UPDATE_INHIBIT_INTERRUPTS_FALSE (0x00000000)
|
||||
#define NV507D_UPDATE_INHIBIT_INTERRUPTS_TRUE (0x00000001)
|
||||
#define NV507D_SET_NOTIFIER_CONTROL (0x00000084)
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_MODE 30:30
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_MODE_WRITE (0x00000000)
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_MODE_WRITE_AWAKEN (0x00000001)
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_OFFSET 11:2
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_NOTIFY 31:31
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_NOTIFY_DISABLE (0x00000000)
|
||||
#define NV507D_SET_NOTIFIER_CONTROL_NOTIFY_ENABLE (0x00000001)
|
||||
#define NV507D_SET_CONTEXT_DMA_NOTIFIER (0x00000088)
|
||||
#define NV507D_SET_CONTEXT_DMA_NOTIFIER_HANDLE 31:0
|
||||
#define NV507D_GET_CAPABILITIES (0x0000008C)
|
||||
#define NV507D_GET_CAPABILITIES_DUMMY 31:0
|
||||
|
||||
#define NV507D_DAC_SET_CONTROL(a) (0x00000400 + (a)*0x00000080)
|
||||
#define NV507D_DAC_SET_CONTROL_OWNER 3:0
|
||||
#define NV507D_DAC_SET_CONTROL_OWNER_NONE (0x00000000)
|
||||
#define NV507D_DAC_SET_CONTROL_OWNER_HEAD0 (0x00000001)
|
||||
#define NV507D_DAC_SET_CONTROL_OWNER_HEAD1 (0x00000002)
|
||||
#define NV507D_DAC_SET_CONTROL_SUB_OWNER 5:4
|
||||
#define NV507D_DAC_SET_CONTROL_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV507D_DAC_SET_CONTROL_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV507D_DAC_SET_CONTROL_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV507D_DAC_SET_CONTROL_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL 13:8
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_RGB_CRT (0x00000000)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CPST_NTSC_M (0x00000001)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CPST_NTSC_J (0x00000002)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CPST_PAL_BDGHI (0x00000003)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CPST_PAL_M (0x00000004)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CPST_PAL_N (0x00000005)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CPST_PAL_CN (0x00000006)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_NTSC_M (0x00000007)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_NTSC_J (0x00000008)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_PAL_BDGHI (0x00000009)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_PAL_M (0x0000000A)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_PAL_N (0x0000000B)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_PAL_CN (0x0000000C)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_480P_60 (0x0000000D)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_576P_50 (0x0000000E)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_720P_50 (0x0000000F)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_720P_60 (0x00000010)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_1080I_50 (0x00000011)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_COMP_1080I_60 (0x00000012)
|
||||
#define NV507D_DAC_SET_CONTROL_PROTOCOL_CUSTOM (0x0000003F)
|
||||
#define NV507D_DAC_SET_CONTROL_INVALIDATE_FIRST_FIELD 14:14
|
||||
#define NV507D_DAC_SET_CONTROL_INVALIDATE_FIRST_FIELD_FALSE (0x00000000)
|
||||
#define NV507D_DAC_SET_CONTROL_INVALIDATE_FIRST_FIELD_TRUE (0x00000001)
|
||||
#define NV507D_DAC_SET_POLARITY(a) (0x00000404 + (a)*0x00000080)
|
||||
#define NV507D_DAC_SET_POLARITY_HSYNC 0:0
|
||||
#define NV507D_DAC_SET_POLARITY_HSYNC_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_DAC_SET_POLARITY_HSYNC_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV507D_DAC_SET_POLARITY_VSYNC 1:1
|
||||
#define NV507D_DAC_SET_POLARITY_VSYNC_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_DAC_SET_POLARITY_VSYNC_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV507D_DAC_SET_POLARITY_RESERVED 31:2
|
||||
|
||||
#define NV507D_SOR_SET_CONTROL(a) (0x00000600 + (a)*0x00000040)
|
||||
#define NV507D_SOR_SET_CONTROL_OWNER 3:0
|
||||
#define NV507D_SOR_SET_CONTROL_OWNER_NONE (0x00000000)
|
||||
#define NV507D_SOR_SET_CONTROL_OWNER_HEAD0 (0x00000001)
|
||||
#define NV507D_SOR_SET_CONTROL_OWNER_HEAD1 (0x00000002)
|
||||
#define NV507D_SOR_SET_CONTROL_SUB_OWNER 5:4
|
||||
#define NV507D_SOR_SET_CONTROL_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV507D_SOR_SET_CONTROL_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV507D_SOR_SET_CONTROL_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV507D_SOR_SET_CONTROL_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM (0x00000000)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A (0x00000001)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B (0x00000002)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_AB (0x00000003)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_DUAL_SINGLE_TMDS (0x00000004)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS (0x00000005)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_DDI_OUT (0x00000007)
|
||||
#define NV507D_SOR_SET_CONTROL_PROTOCOL_CUSTOM (0x0000000F)
|
||||
#define NV507D_SOR_SET_CONTROL_HSYNC_POLARITY 12:12
|
||||
#define NV507D_SOR_SET_CONTROL_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_SOR_SET_CONTROL_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV507D_SOR_SET_CONTROL_VSYNC_POLARITY 13:13
|
||||
#define NV507D_SOR_SET_CONTROL_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_SOR_SET_CONTROL_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV507D_SOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV507D_SOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_SOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
|
||||
#define NV507D_PIOR_SET_CONTROL(a) (0x00000700 + (a)*0x00000040)
|
||||
#define NV507D_PIOR_SET_CONTROL_OWNER 3:0
|
||||
#define NV507D_PIOR_SET_CONTROL_OWNER_NONE (0x00000000)
|
||||
#define NV507D_PIOR_SET_CONTROL_OWNER_HEAD0 (0x00000001)
|
||||
#define NV507D_PIOR_SET_CONTROL_OWNER_HEAD1 (0x00000002)
|
||||
#define NV507D_PIOR_SET_CONTROL_SUB_OWNER 5:4
|
||||
#define NV507D_PIOR_SET_CONTROL_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV507D_PIOR_SET_CONTROL_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV507D_PIOR_SET_CONTROL_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV507D_PIOR_SET_CONTROL_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV507D_PIOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV507D_PIOR_SET_CONTROL_PROTOCOL_EXT_TMDS_ENC (0x00000000)
|
||||
#define NV507D_PIOR_SET_CONTROL_PROTOCOL_EXT_TV_ENC (0x00000001)
|
||||
#define NV507D_PIOR_SET_CONTROL_HSYNC_POLARITY 12:12
|
||||
#define NV507D_PIOR_SET_CONTROL_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_PIOR_SET_CONTROL_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV507D_PIOR_SET_CONTROL_VSYNC_POLARITY 13:13
|
||||
#define NV507D_PIOR_SET_CONTROL_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_PIOR_SET_CONTROL_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV507D_PIOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV507D_PIOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV507D_PIOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK(a) (0x00000804 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_FREQUENCY 21:0
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_MODE 23:22
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_MODE_CLK_25 (0x00000000)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_MODE_CLK_28 (0x00000001)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_MODE_CLK_CUSTOM (0x00000002)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_ADJ1000DIV1001 24:24
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_NOT_DRIVER 25:25
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_NOT_DRIVER_FALSE (0x00000000)
|
||||
#define NV507D_HEAD_SET_PIXEL_CLOCK_NOT_DRIVER_TRUE (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL(a) (0x00000808 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_CONTROL_STRUCTURE 2:1
|
||||
#define NV507D_HEAD_SET_CONTROL_STRUCTURE_PROGRESSIVE (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_STRUCTURE_INTERLACED (0x00000001)
|
||||
#define NV507D_HEAD_SET_OVERSCAN_COLOR(a) (0x00000810 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_OVERSCAN_COLOR_RED 9:0
|
||||
#define NV507D_HEAD_SET_OVERSCAN_COLOR_GRN 19:10
|
||||
#define NV507D_HEAD_SET_OVERSCAN_COLOR_BLU 29:20
|
||||
#define NV507D_HEAD_SET_RASTER_SIZE(a) (0x00000814 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_RASTER_SIZE_WIDTH 14:0
|
||||
#define NV507D_HEAD_SET_RASTER_SIZE_HEIGHT 30:16
|
||||
#define NV507D_HEAD_SET_RASTER_SYNC_END(a) (0x00000818 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_RASTER_SYNC_END_X 14:0
|
||||
#define NV507D_HEAD_SET_RASTER_SYNC_END_Y 30:16
|
||||
#define NV507D_HEAD_SET_RASTER_BLANK_END(a) (0x0000081C + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_RASTER_BLANK_END_X 14:0
|
||||
#define NV507D_HEAD_SET_RASTER_BLANK_END_Y 30:16
|
||||
#define NV507D_HEAD_SET_RASTER_BLANK_START(a) (0x00000820 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_RASTER_BLANK_START_X 14:0
|
||||
#define NV507D_HEAD_SET_RASTER_BLANK_START_Y 30:16
|
||||
#define NV507D_HEAD_SET_RASTER_VERT_BLANK2(a) (0x00000824 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_RASTER_VERT_BLANK2_YSTART 14:0
|
||||
#define NV507D_HEAD_SET_RASTER_VERT_BLANK2_YEND 30:16
|
||||
#define NV507D_HEAD_SET_RASTER_VERT_BLANK_DMI(a) (0x00000828 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_RASTER_VERT_BLANK_DMI_DURATION 11:0
|
||||
#define NV507D_HEAD_SET_DEFAULT_BASE_COLOR(a) (0x0000082C + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_DEFAULT_BASE_COLOR_RED 9:0
|
||||
#define NV507D_HEAD_SET_DEFAULT_BASE_COLOR_GREEN 19:10
|
||||
#define NV507D_HEAD_SET_DEFAULT_BASE_COLOR_BLUE 29:20
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO(a) (0x00000840 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_ENABLE 31:31
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_ENABLE_DISABLE (0x00000000)
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_ENABLE_ENABLE (0x00000001)
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_MODE 30:30
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_MODE_LORES (0x00000000)
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_MODE_HIRES (0x00000001)
|
||||
#define NV507D_HEAD_SET_BASE_LUT_LO_ORIGIN 7:2
|
||||
#define NV507D_HEAD_SET_BASE_LUT_HI(a) (0x00000844 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_BASE_LUT_HI_ORIGIN 31:0
|
||||
#define NV507D_HEAD_SET_OFFSET(a,b) (0x00000860 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NV507D_HEAD_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV507D_HEAD_SET_SIZE(a) (0x00000868 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_SIZE_WIDTH 14:0
|
||||
#define NV507D_HEAD_SET_SIZE_HEIGHT 30:16
|
||||
#define NV507D_HEAD_SET_STORAGE(a) (0x0000086C + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV507D_HEAD_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV507D_HEAD_SET_STORAGE_PITCH 17:8
|
||||
#define NV507D_HEAD_SET_STORAGE_MEMORY_LAYOUT 20:20
|
||||
#define NV507D_HEAD_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV507D_HEAD_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV507D_HEAD_SET_PARAMS(a) (0x00000870 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT 15:8
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_VOID16 (0x0000001F)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_VOID32 (0x0000002E)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NV507D_HEAD_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND 22:16
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_PITCH (0x00000000)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_GENERIC_8BX2 (0x00000070)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_GENERIC_8BX2_BANKSWIZ (0x00000072)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_GENERIC_16BX1 (0x00000074)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_GENERIC_16BX1_BANKSWIZ (0x00000076)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C32_MS4 (0x00000078)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C32_MS8 (0x00000079)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C32_MS4_BANKSWIZ (0x0000007A)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C32_MS8_BANKSWIZ (0x0000007B)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C64_MS4 (0x0000007C)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C64_MS8 (0x0000007D)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_KIND_C128_MS4 (0x0000007E)
|
||||
#define NV507D_HEAD_SET_PARAMS_KIND_FROM_PTE (0x0000007F)
|
||||
#define NV507D_HEAD_SET_PARAMS_PART_STRIDE 24:24
|
||||
#define NV507D_HEAD_SET_PARAMS_PART_STRIDE_PARTSTRIDE_256 (0x00000000)
|
||||
#define NV507D_HEAD_SET_PARAMS_PART_STRIDE_PARTSTRIDE_1024 (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTEXT_DMA_ISO(a) (0x00000874 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR(a) (0x00000880 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_ENABLE 31:31
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_ENABLE_DISABLE (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_ENABLE_ENABLE (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_FORMAT 25:24
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_FORMAT_A1R5G5B5 (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_FORMAT_A8R8G8B8 (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SIZE 26:26
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32 (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64 (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_X 13:8
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_Y 21:16
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_COMPOSITION 29:28
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_ALPHA_BLEND (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_PREMULT_ALPHA_BLEND (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_XOR (0x00000002)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER 5:4
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV507D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV507D_HEAD_SET_OFFSET_CURSOR(a) (0x00000884 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_OFFSET_CURSOR_ORIGIN 31:0
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL(a) (0x000008A0 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_ENABLE 0:0
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_ENABLE_DISABLE (0x00000000)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_ENABLE_ENABLE (0x00000001)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_BITS 2:1
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_6_BITS (0x00000000)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_8_BITS (0x00000001)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_MODE 6:3
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_ERR_ACC (0x00000000)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_ERR_ACC (0x00000001)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_2X2 (0x00000002)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_2X2 (0x00000003)
|
||||
#define NV507D_HEAD_SET_DITHER_CONTROL_PHASE 8:7
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER(a) (0x000008A4 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS 2:0
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_1 (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_2 (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_3 (0x00000002)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_3_ADAPTIVE (0x00000003)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_5 (0x00000004)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS 4:3
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS_TAPS_1 (0x00000000)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS_TAPS_2 (0x00000001)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS_TAPS_8 (0x00000002)
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_HRESPONSE_BIAS 23:16
|
||||
#define NV507D_HEAD_SET_CONTROL_OUTPUT_SCALER_VRESPONSE_BIAS 31:24
|
||||
#define NV507D_HEAD_SET_PROCAMP(a) (0x000008A8 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_PROCAMP_COLOR_SPACE 1:0
|
||||
#define NV507D_HEAD_SET_PROCAMP_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NV507D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NV507D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NV507D_HEAD_SET_PROCAMP_CHROMA_LPF 2:2
|
||||
#define NV507D_HEAD_SET_PROCAMP_CHROMA_LPF_AUTO (0x00000000)
|
||||
#define NV507D_HEAD_SET_PROCAMP_CHROMA_LPF_ON (0x00000001)
|
||||
#define NV507D_HEAD_SET_PROCAMP_SAT_COS 19:8
|
||||
#define NV507D_HEAD_SET_PROCAMP_SAT_SINE 31:20
|
||||
#define NV507D_HEAD_SET_PROCAMP_TRANSITION 4:3
|
||||
#define NV507D_HEAD_SET_PROCAMP_TRANSITION_HARD (0x00000000)
|
||||
#define NV507D_HEAD_SET_PROCAMP_TRANSITION_NTSC (0x00000001)
|
||||
#define NV507D_HEAD_SET_PROCAMP_TRANSITION_PAL (0x00000002)
|
||||
#define NV507D_HEAD_SET_VIEWPORT_POINT_IN(a,b) (0x000008C0 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NV507D_HEAD_SET_VIEWPORT_POINT_IN_X 14:0
|
||||
#define NV507D_HEAD_SET_VIEWPORT_POINT_IN_Y 30:16
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_IN(a) (0x000008C8 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_IN_WIDTH 14:0
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_IN_HEIGHT 30:16
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_OUT(a) (0x000008D8 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_OUT_WIDTH 14:0
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_OUT_HEIGHT 30:16
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_OUT_MIN(a) (0x000008DC + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_OUT_MIN_WIDTH 14:0
|
||||
#define NV507D_HEAD_SET_VIEWPORT_SIZE_OUT_MIN_HEIGHT 30:16
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(a) (0x00000900 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE 0:0
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE_FALSE (0x00000000)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE_TRUE (0x00000001)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH 11:8
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_8 (0x00000000)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_16 (0x00000001)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_32 (0x00000003)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_64 (0x00000005)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE 13:12
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV507D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS(a) (0x00000904 + (a)*0x00000400)
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS_USABLE 0:0
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS_USABLE_FALSE (0x00000000)
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS_USABLE_TRUE (0x00000001)
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH 11:8
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH_BPP_16 (0x00000001)
|
||||
#define NV507D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH_BPP_32 (0x00000003)
|
||||
#endif // _cl507d_h
|
|
@ -0,0 +1,93 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl507e_h_
|
||||
#define _cl507e_h_
|
||||
|
||||
// class methods
|
||||
#define NV507E_SET_PRESENT_CONTROL (0x00000084)
|
||||
#define NV507E_SET_PRESENT_CONTROL_BEGIN_MODE 1:0
|
||||
#define NV507E_SET_PRESENT_CONTROL_BEGIN_MODE_ASAP (0x00000000)
|
||||
#define NV507E_SET_PRESENT_CONTROL_BEGIN_MODE_TIMESTAMP (0x00000003)
|
||||
#define NV507E_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 7:4
|
||||
#define NV507E_SET_CONTEXT_DMA_ISO (0x000000C0)
|
||||
#define NV507E_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NV507E_SET_POINT_IN (0x000000E0)
|
||||
#define NV507E_SET_POINT_IN_X 14:0
|
||||
#define NV507E_SET_POINT_IN_Y 30:16
|
||||
#define NV507E_SET_SIZE_IN (0x000000E4)
|
||||
#define NV507E_SET_SIZE_IN_WIDTH 14:0
|
||||
#define NV507E_SET_SIZE_IN_HEIGHT 30:16
|
||||
#define NV507E_SET_SIZE_OUT (0x000000E8)
|
||||
#define NV507E_SET_SIZE_OUT_WIDTH 14:0
|
||||
#define NV507E_SET_COMPOSITION_CONTROL (0x00000100)
|
||||
#define NV507E_SET_COMPOSITION_CONTROL_MODE 3:0
|
||||
#define NV507E_SET_COMPOSITION_CONTROL_MODE_SOURCE_COLOR_VALUE_KEYING (0x00000000)
|
||||
#define NV507E_SET_COMPOSITION_CONTROL_MODE_DESTINATION_COLOR_VALUE_KEYING (0x00000001)
|
||||
#define NV507E_SET_COMPOSITION_CONTROL_MODE_OPAQUE_SUSPEND_BASE (0x00000002)
|
||||
|
||||
#define NV507E_SURFACE_SET_OFFSET (0x00000800)
|
||||
#define NV507E_SURFACE_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV507E_SURFACE_SET_SIZE (0x00000808)
|
||||
#define NV507E_SURFACE_SET_SIZE_WIDTH 14:0
|
||||
#define NV507E_SURFACE_SET_SIZE_HEIGHT 30:16
|
||||
#define NV507E_SURFACE_SET_STORAGE (0x0000080C)
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV507E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV507E_SURFACE_SET_STORAGE_PITCH 17:8
|
||||
#define NV507E_SURFACE_SET_STORAGE_MEMORY_LAYOUT 20:20
|
||||
#define NV507E_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV507E_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV507E_SURFACE_SET_PARAMS (0x00000810)
|
||||
#define NV507E_SURFACE_SET_PARAMS_FORMAT 15:8
|
||||
#define NV507E_SURFACE_SET_PARAMS_FORMAT_VE8YO8UE8YE8 (0x00000028)
|
||||
#define NV507E_SURFACE_SET_PARAMS_FORMAT_YO8VE8YE8UE8 (0x00000029)
|
||||
#define NV507E_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV507E_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV507E_SURFACE_SET_PARAMS_COLOR_SPACE 1:0
|
||||
#define NV507E_SURFACE_SET_PARAMS_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NV507E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NV507E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND 22:16
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_PITCH (0x00000000)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_8BX2 (0x00000070)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_8BX2_BANKSWIZ (0x00000072)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_16BX1 (0x00000074)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_GENERIC_16BX1_BANKSWIZ (0x00000076)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C32_MS4 (0x00000078)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C32_MS8 (0x00000079)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C32_MS4_BANKSWIZ (0x0000007A)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C32_MS8_BANKSWIZ (0x0000007B)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C64_MS4 (0x0000007C)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C64_MS8 (0x0000007D)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_KIND_C128_MS4 (0x0000007E)
|
||||
#define NV507E_SURFACE_SET_PARAMS_KIND_FROM_PTE (0x0000007F)
|
||||
#define NV507E_SURFACE_SET_PARAMS_PART_STRIDE 24:24
|
||||
#define NV507E_SURFACE_SET_PARAMS_PART_STRIDE_PARTSTRIDE_256 (0x00000000)
|
||||
#define NV507E_SURFACE_SET_PARAMS_PART_STRIDE_PARTSTRIDE_1024 (0x00000001)
|
||||
#endif // _cl507e_h
|
|
@ -0,0 +1,39 @@
|
|||
/*******************************************************************************
|
||||
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
*******************************************************************************/
|
||||
#ifndef _cl826f_h_
|
||||
#define _cl826f_h_
|
||||
|
||||
#define NV826F_SEMAPHOREA (0x00000010)
|
||||
#define NV826F_SEMAPHOREA_OFFSET_UPPER 7:0
|
||||
#define NV826F_SEMAPHOREB (0x00000014)
|
||||
#define NV826F_SEMAPHOREB_OFFSET_LOWER 31:00
|
||||
#define NV826F_SEMAPHOREC (0x00000018)
|
||||
#define NV826F_SEMAPHOREC_PAYLOAD 31:0
|
||||
#define NV826F_SEMAPHORED (0x0000001C)
|
||||
#define NV826F_SEMAPHORED_OPERATION 2:0
|
||||
#define NV826F_SEMAPHORED_OPERATION_ACQUIRE 0x00000001
|
||||
#define NV826F_SEMAPHORED_OPERATION_RELEASE 0x00000002
|
||||
#define NV826F_SEMAPHORED_OPERATION_ACQ_GEQ 0x00000004
|
||||
#define NV826F_NON_STALLED_INTERRUPT (0x00000020)
|
||||
#define NV826F_SET_CONTEXT_DMA_SEMAPHORE (0x00000060)
|
||||
#endif /* _cl826f_h_ */
|
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl827c_h_
|
||||
#define _cl827c_h_
|
||||
|
||||
// class methods
|
||||
#define NV827C_SET_PRESENT_CONTROL (0x00000084)
|
||||
#define NV827C_SET_PRESENT_CONTROL_BEGIN_MODE 9:8
|
||||
#define NV827C_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING (0x00000000)
|
||||
#define NV827C_SET_PRESENT_CONTROL_BEGIN_MODE_IMMEDIATE (0x00000001)
|
||||
#define NV827C_SET_PRESENT_CONTROL_BEGIN_MODE_ON_LINE (0x00000002)
|
||||
#define NV827C_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 7:4
|
||||
#define NV827C_SET_PRESENT_CONTROL_BEGIN_LINE 30:16
|
||||
#define NV827C_SET_PRESENT_CONTROL_ON_LINE_MARGIN 15:10
|
||||
#define NV827C_SET_CONTEXT_DMAS_ISO(b) (0x000000C0 + (b)*0x00000004)
|
||||
#define NV827C_SET_CONTEXT_DMAS_ISO_HANDLE 31:0
|
||||
#define NV827C_SET_PROCESSING (0x00000110)
|
||||
#define NV827C_SET_PROCESSING_USE_GAIN_OFS 0:0
|
||||
#define NV827C_SET_PROCESSING_USE_GAIN_OFS_DISABLE (0x00000000)
|
||||
#define NV827C_SET_PROCESSING_USE_GAIN_OFS_ENABLE (0x00000001)
|
||||
#define NV827C_SET_CONVERSION (0x00000114)
|
||||
#define NV827C_SET_CONVERSION_GAIN 15:0
|
||||
#define NV827C_SET_CONVERSION_OFS 31:16
|
||||
|
||||
#define NV827C_SURFACE_SET_OFFSET(a,b) (0x00000800 + (a)*0x00000020 + (b)*0x00000004)
|
||||
#define NV827C_SURFACE_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV827C_SURFACE_SET_SIZE(a) (0x00000808 + (a)*0x00000020)
|
||||
#define NV827C_SURFACE_SET_SIZE_WIDTH 14:0
|
||||
#define NV827C_SURFACE_SET_SIZE_HEIGHT 30:16
|
||||
#define NV827C_SURFACE_SET_STORAGE(a) (0x0000080C + (a)*0x00000020)
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV827C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV827C_SURFACE_SET_STORAGE_PITCH 17:8
|
||||
#define NV827C_SURFACE_SET_STORAGE_MEMORY_LAYOUT 20:20
|
||||
#define NV827C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV827C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV827C_SURFACE_SET_PARAMS(a) (0x00000810 + (a)*0x00000020)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT 15:8
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_VOID16 (0x0000001F)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_VOID32 (0x0000002E)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NV827C_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV827C_SURFACE_SET_PARAMS_SUPER_SAMPLE 1:0
|
||||
#define NV827C_SURFACE_SET_PARAMS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV827C_SURFACE_SET_PARAMS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV827C_SURFACE_SET_PARAMS_GAMMA 2:2
|
||||
#define NV827C_SURFACE_SET_PARAMS_GAMMA_LINEAR (0x00000000)
|
||||
#define NV827C_SURFACE_SET_PARAMS_GAMMA_SRGB (0x00000001)
|
||||
#define NV827C_SURFACE_SET_PARAMS_LAYOUT 5:4
|
||||
#define NV827C_SURFACE_SET_PARAMS_LAYOUT_FRM (0x00000000)
|
||||
#define NV827C_SURFACE_SET_PARAMS_LAYOUT_FLD1 (0x00000001)
|
||||
#define NV827C_SURFACE_SET_PARAMS_LAYOUT_FLD2 (0x00000002)
|
||||
#define NV827C_SURFACE_SET_PARAMS_RESERVED0 22:16
|
||||
#define NV827C_SURFACE_SET_PARAMS_RESERVED1 24:24
|
||||
#endif // _cl827c_h
|
|
@ -0,0 +1,106 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl827d_h_
|
||||
#define _cl827d_h_
|
||||
|
||||
// class methods
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO(a) (0x00000840 + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_ENABLE 31:31
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_ENABLE_DISABLE (0x00000000)
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_ENABLE_ENABLE (0x00000001)
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_MODE 30:30
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_MODE_LORES (0x00000000)
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_MODE_HIRES (0x00000001)
|
||||
#define NV827D_HEAD_SET_BASE_LUT_LO_ORIGIN 7:2
|
||||
#define NV827D_HEAD_SET_BASE_LUT_HI(a) (0x00000844 + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_BASE_LUT_HI_ORIGIN 31:0
|
||||
#define NV827D_HEAD_SET_CONTEXT_DMA_LUT(a) (0x0000085C + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_CONTEXT_DMA_LUT_HANDLE 31:0
|
||||
#define NV827D_HEAD_SET_OFFSET(a,b) (0x00000860 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NV827D_HEAD_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV827D_HEAD_SET_SIZE(a) (0x00000868 + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_SIZE_WIDTH 14:0
|
||||
#define NV827D_HEAD_SET_SIZE_HEIGHT 30:16
|
||||
#define NV827D_HEAD_SET_STORAGE(a) (0x0000086C + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV827D_HEAD_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV827D_HEAD_SET_STORAGE_PITCH 17:8
|
||||
#define NV827D_HEAD_SET_STORAGE_MEMORY_LAYOUT 20:20
|
||||
#define NV827D_HEAD_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV827D_HEAD_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV827D_HEAD_SET_PARAMS(a) (0x00000870 + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT 15:8
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_VOID16 (0x0000001F)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_VOID32 (0x0000002E)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NV827D_HEAD_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV827D_HEAD_SET_PARAMS_SUPER_SAMPLE 1:0
|
||||
#define NV827D_HEAD_SET_PARAMS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV827D_HEAD_SET_PARAMS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV827D_HEAD_SET_PARAMS_GAMMA 2:2
|
||||
#define NV827D_HEAD_SET_PARAMS_GAMMA_LINEAR (0x00000000)
|
||||
#define NV827D_HEAD_SET_PARAMS_GAMMA_SRGB (0x00000001)
|
||||
#define NV827D_HEAD_SET_PARAMS_RESERVED0 22:16
|
||||
#define NV827D_HEAD_SET_PARAMS_RESERVED1 24:24
|
||||
#define NV827D_HEAD_SET_CONTEXT_DMAS_ISO(a,b) (0x00000874 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NV827D_HEAD_SET_CONTEXT_DMAS_ISO_HANDLE 31:0
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR(a) (0x00000880 + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_ENABLE 31:31
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_ENABLE_DISABLE (0x00000000)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_ENABLE_ENABLE (0x00000001)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_FORMAT 25:24
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_FORMAT_A1R5G5B5 (0x00000000)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_FORMAT_A8R8G8B8 (0x00000001)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SIZE 26:26
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32 (0x00000000)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64 (0x00000001)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_X 13:8
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_Y 21:16
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_COMPOSITION 29:28
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_ALPHA_BLEND (0x00000000)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_PREMULT_ALPHA_BLEND (0x00000001)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_XOR (0x00000002)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER 5:4
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV827D_HEAD_SET_CONTROL_CURSOR_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV827D_HEAD_SET_OFFSET_CURSOR(a) (0x00000884 + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_OFFSET_CURSOR_ORIGIN 31:0
|
||||
#define NV827D_HEAD_SET_CONTEXT_DMA_CURSOR(a) (0x0000089C + (a)*0x00000400)
|
||||
#define NV827D_HEAD_SET_CONTEXT_DMA_CURSOR_HANDLE 31:0
|
||||
#define NV827D_HEAD_SET_VIEWPORT_POINT_IN(a,b) (0x000008C0 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NV827D_HEAD_SET_VIEWPORT_POINT_IN_X 14:0
|
||||
#define NV827D_HEAD_SET_VIEWPORT_POINT_IN_Y 30:16
|
||||
#endif // _cl827d_h
|
|
@ -0,0 +1,88 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl827e_h_
|
||||
#define _cl827e_h_
|
||||
|
||||
#define NV_DISP_NOTIFICATION_1 0x00000000
|
||||
#define NV_DISP_NOTIFICATION_1_SIZEOF 0x00000010
|
||||
#define NV_DISP_NOTIFICATION_1_TIME_STAMP_0 0x00000000
|
||||
#define NV_DISP_NOTIFICATION_1_TIME_STAMP_0_NANOSECONDS0 31:0
|
||||
#define NV_DISP_NOTIFICATION_1_TIME_STAMP_1 0x00000001
|
||||
#define NV_DISP_NOTIFICATION_1_TIME_STAMP_1_NANOSECONDS1 31:0
|
||||
#define NV_DISP_NOTIFICATION_1__2 0x00000002
|
||||
#define NV_DISP_NOTIFICATION_1__2_AUDIT_TIMESTAMP 31:0
|
||||
#define NV_DISP_NOTIFICATION_1__3 0x00000003
|
||||
#define NV_DISP_NOTIFICATION_1__3_PRESENT_COUNT 7:0
|
||||
#define NV_DISP_NOTIFICATION_1__3_R0 15:8
|
||||
#define NV_DISP_NOTIFICATION_1__3_STATUS 31:16
|
||||
#define NV_DISP_NOTIFICATION_1__3_STATUS_NOT_BEGUN 0x00008000
|
||||
#define NV_DISP_NOTIFICATION_1__3_STATUS_BEGUN 0x0000FFFF
|
||||
#define NV_DISP_NOTIFICATION_1__3_STATUS_FINISHED 0x00000000
|
||||
|
||||
|
||||
// class methods
|
||||
#define NV827E_SET_PRESENT_CONTROL (0x00000084)
|
||||
#define NV827E_SET_PRESENT_CONTROL_BEGIN_MODE 1:0
|
||||
#define NV827E_SET_PRESENT_CONTROL_BEGIN_MODE_ASAP (0x00000000)
|
||||
#define NV827E_SET_PRESENT_CONTROL_BEGIN_MODE_TIMESTAMP (0x00000003)
|
||||
#define NV827E_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 7:4
|
||||
#define NV827E_SET_CONTEXT_DMA_ISO (0x000000C0)
|
||||
#define NV827E_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NV827E_SET_COMPOSITION_CONTROL (0x00000100)
|
||||
#define NV827E_SET_COMPOSITION_CONTROL_MODE 3:0
|
||||
#define NV827E_SET_COMPOSITION_CONTROL_MODE_SOURCE_COLOR_VALUE_KEYING (0x00000000)
|
||||
#define NV827E_SET_COMPOSITION_CONTROL_MODE_DESTINATION_COLOR_VALUE_KEYING (0x00000001)
|
||||
#define NV827E_SET_COMPOSITION_CONTROL_MODE_OPAQUE_SUSPEND_BASE (0x00000002)
|
||||
|
||||
#define NV827E_SURFACE_SET_OFFSET (0x00000800)
|
||||
#define NV827E_SURFACE_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV827E_SURFACE_SET_SIZE (0x00000808)
|
||||
#define NV827E_SURFACE_SET_SIZE_WIDTH 14:0
|
||||
#define NV827E_SURFACE_SET_SIZE_HEIGHT 30:16
|
||||
#define NV827E_SURFACE_SET_STORAGE (0x0000080C)
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV827E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV827E_SURFACE_SET_STORAGE_PITCH 17:8
|
||||
#define NV827E_SURFACE_SET_STORAGE_MEMORY_LAYOUT 20:20
|
||||
#define NV827E_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV827E_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV827E_SURFACE_SET_PARAMS (0x00000810)
|
||||
#define NV827E_SURFACE_SET_PARAMS_FORMAT 15:8
|
||||
#define NV827E_SURFACE_SET_PARAMS_FORMAT_VE8YO8UE8YE8 (0x00000028)
|
||||
#define NV827E_SURFACE_SET_PARAMS_FORMAT_YO8VE8YE8UE8 (0x00000029)
|
||||
#define NV827E_SURFACE_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV827E_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV827E_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV827E_SURFACE_SET_PARAMS_COLOR_SPACE 1:0
|
||||
#define NV827E_SURFACE_SET_PARAMS_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NV827E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NV827E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NV827E_SURFACE_SET_PARAMS_RESERVED0 22:16
|
||||
#define NV827E_SURFACE_SET_PARAMS_RESERVED1 24:24
|
||||
#endif // _cl827e_h
|
|
@ -0,0 +1,101 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl837d_h_
|
||||
#define _cl837d_h_
|
||||
|
||||
// class methods
|
||||
#define NV837D_SOR_SET_CONTROL(a) (0x00000600 + (a)*0x00000040)
|
||||
#define NV837D_SOR_SET_CONTROL_OWNER 3:0
|
||||
#define NV837D_SOR_SET_CONTROL_OWNER_NONE (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_OWNER_HEAD0 (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_OWNER_HEAD1 (0x00000002)
|
||||
#define NV837D_SOR_SET_CONTROL_SUB_OWNER 5:4
|
||||
#define NV837D_SOR_SET_CONTROL_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV837D_SOR_SET_CONTROL_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B (0x00000002)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_AB (0x00000003)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_DUAL_SINGLE_TMDS (0x00000004)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS (0x00000005)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_DDI_OUT (0x00000007)
|
||||
#define NV837D_SOR_SET_CONTROL_PROTOCOL_CUSTOM (0x0000000F)
|
||||
#define NV837D_SOR_SET_CONTROL_HSYNC_POLARITY 12:12
|
||||
#define NV837D_SOR_SET_CONTROL_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_VSYNC_POLARITY 13:13
|
||||
#define NV837D_SOR_SET_CONTROL_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV837D_SOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH 19:16
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_DEFAULT (0x00000000)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_16_422 (0x00000001)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_18_444 (0x00000002)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_20_422 (0x00000003)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_422 (0x00000004)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_444 (0x00000005)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_30_444 (0x00000006)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_32_422 (0x00000007)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_36_444 (0x00000008)
|
||||
#define NV837D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_48_444 (0x00000009)
|
||||
|
||||
#define NV837D_PIOR_SET_CONTROL(a) (0x00000700 + (a)*0x00000040)
|
||||
#define NV837D_PIOR_SET_CONTROL_OWNER 3:0
|
||||
#define NV837D_PIOR_SET_CONTROL_OWNER_NONE (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_OWNER_HEAD0 (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_OWNER_HEAD1 (0x00000002)
|
||||
#define NV837D_PIOR_SET_CONTROL_SUB_OWNER 5:4
|
||||
#define NV837D_PIOR_SET_CONTROL_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV837D_PIOR_SET_CONTROL_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV837D_PIOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV837D_PIOR_SET_CONTROL_PROTOCOL_EXT_TMDS_ENC (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_PROTOCOL_EXT_TV_ENC (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_HSYNC_POLARITY 12:12
|
||||
#define NV837D_PIOR_SET_CONTROL_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_VSYNC_POLARITY 13:13
|
||||
#define NV837D_PIOR_SET_CONTROL_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV837D_PIOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH 19:16
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_DEFAULT (0x00000000)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_16_422 (0x00000001)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_18_444 (0x00000002)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_20_422 (0x00000003)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_422 (0x00000004)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_444 (0x00000005)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_30_444 (0x00000006)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_32_422 (0x00000007)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_36_444 (0x00000008)
|
||||
#define NV837D_PIOR_SET_CONTROL_PIXEL_DEPTH_BPP_48_444 (0x00000009)
|
||||
#endif // _cl837d_h
|
|
@ -0,0 +1,68 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl887d_h_
|
||||
#define _cl887d_h_
|
||||
|
||||
#define NV887D_SOR_SET_CONTROL(a) (0x00000600 + (a)*0x00000040)
|
||||
#define NV887D_SOR_SET_CONTROL_OWNER 3:0
|
||||
#define NV887D_SOR_SET_CONTROL_OWNER_NONE (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_OWNER_HEAD0 (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_OWNER_HEAD1 (0x00000002)
|
||||
#define NV887D_SOR_SET_CONTROL_SUB_OWNER 5:4
|
||||
#define NV887D_SOR_SET_CONTROL_SUB_OWNER_NONE (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_SUB_OWNER_SUBHEAD0 (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_SUB_OWNER_SUBHEAD1 (0x00000002)
|
||||
#define NV887D_SOR_SET_CONTROL_SUB_OWNER_BOTH (0x00000003)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B (0x00000002)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_AB (0x00000003)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_DUAL_SINGLE_TMDS (0x00000004)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS (0x00000005)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_DDI_OUT (0x00000007)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_DP_A (0x00000008)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_DP_B (0x00000009)
|
||||
#define NV887D_SOR_SET_CONTROL_PROTOCOL_CUSTOM (0x0000000F)
|
||||
#define NV887D_SOR_SET_CONTROL_HSYNC_POLARITY 12:12
|
||||
#define NV887D_SOR_SET_CONTROL_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_VSYNC_POLARITY 13:13
|
||||
#define NV887D_SOR_SET_CONTROL_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV887D_SOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH 19:16
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_DEFAULT (0x00000000)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_16_422 (0x00000001)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_18_444 (0x00000002)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_20_422 (0x00000003)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_422 (0x00000004)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_24_444 (0x00000005)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_30_444 (0x00000006)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_32_422 (0x00000007)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_36_444 (0x00000008)
|
||||
#define NV887D_SOR_SET_CONTROL_PIXEL_DEPTH_BPP_48_444 (0x00000009)
|
||||
#endif // _cl887d_h
|
|
@ -0,0 +1,357 @@
|
|||
/*
|
||||
* Copyright (c) 2003 - 2004, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _cl_fermi_twod_a_h_
|
||||
#define _cl_fermi_twod_a_h_
|
||||
|
||||
#define NV902D_SET_OBJECT 0x0000
|
||||
#define NV902D_SET_OBJECT_CLASS_ID 15:0
|
||||
#define NV902D_SET_OBJECT_ENGINE_ID 20:16
|
||||
|
||||
#define NV902D_WAIT_FOR_IDLE 0x0110
|
||||
#define NV902D_WAIT_FOR_IDLE_V 31:0
|
||||
|
||||
#define NV902D_SET_DST_FORMAT 0x0200
|
||||
#define NV902D_SET_DST_FORMAT_V 7:0
|
||||
#define NV902D_SET_DST_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV902D_SET_DST_FORMAT_V_A8RL8GL8BL8 0x000000D0
|
||||
#define NV902D_SET_DST_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV902D_SET_DST_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV902D_SET_DST_FORMAT_V_A8BL8GL8RL8 0x000000D6
|
||||
#define NV902D_SET_DST_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV902D_SET_DST_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV902D_SET_DST_FORMAT_V_X8RL8GL8BL8 0x000000E7
|
||||
#define NV902D_SET_DST_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV902D_SET_DST_FORMAT_V_X8BL8GL8RL8 0x000000FA
|
||||
#define NV902D_SET_DST_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV902D_SET_DST_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV902D_SET_DST_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV902D_SET_DST_FORMAT_V_Y8 0x000000F3
|
||||
#define NV902D_SET_DST_FORMAT_V_Y16 0x000000EE
|
||||
#define NV902D_SET_DST_FORMAT_V_Y32 0x000000FF
|
||||
#define NV902D_SET_DST_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV902D_SET_DST_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV902D_SET_DST_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV902D_SET_DST_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
#define NV902D_SET_DST_FORMAT_V_Y1_8X8 0x0000001C
|
||||
#define NV902D_SET_DST_FORMAT_V_RF16 0x000000F2
|
||||
#define NV902D_SET_DST_FORMAT_V_RF32 0x000000E5
|
||||
#define NV902D_SET_DST_FORMAT_V_RF32_GF32 0x000000CB
|
||||
#define NV902D_SET_DST_FORMAT_V_RF16_GF16_BF16_AF16 0x000000CA
|
||||
#define NV902D_SET_DST_FORMAT_V_RF16_GF16_BF16_X16 0x000000CE
|
||||
#define NV902D_SET_DST_FORMAT_V_RF32_GF32_BF32_AF32 0x000000C0
|
||||
#define NV902D_SET_DST_FORMAT_V_RF32_GF32_BF32_X32 0x000000C3
|
||||
#define NV902D_SET_DST_FORMAT_V_R16_G16_B16_A16 0x000000C6
|
||||
#define NV902D_SET_DST_FORMAT_V_RN16_GN16_BN16_AN16 0x000000C7
|
||||
#define NV902D_SET_DST_FORMAT_V_BF10GF11RF11 0x000000E0
|
||||
#define NV902D_SET_DST_FORMAT_V_AN8BN8GN8RN8 0x000000D7
|
||||
#define NV902D_SET_DST_FORMAT_V_RF16_GF16 0x000000DE
|
||||
#define NV902D_SET_DST_FORMAT_V_R16_G16 0x000000DA
|
||||
#define NV902D_SET_DST_FORMAT_V_RN16_GN16 0x000000DB
|
||||
#define NV902D_SET_DST_FORMAT_V_G8R8 0x000000EA
|
||||
#define NV902D_SET_DST_FORMAT_V_GN8RN8 0x000000EB
|
||||
#define NV902D_SET_DST_FORMAT_V_RN16 0x000000EF
|
||||
#define NV902D_SET_DST_FORMAT_V_RN8 0x000000F4
|
||||
#define NV902D_SET_DST_FORMAT_V_A8 0x000000F7
|
||||
|
||||
#define NV902D_SET_DST_MEMORY_LAYOUT 0x0204
|
||||
#define NV902D_SET_DST_MEMORY_LAYOUT_V 0:0
|
||||
#define NV902D_SET_DST_MEMORY_LAYOUT_V_BLOCKLINEAR 0x00000000
|
||||
#define NV902D_SET_DST_MEMORY_LAYOUT_V_PITCH 0x00000001
|
||||
|
||||
#define NV902D_SET_DST_PITCH 0x0214
|
||||
#define NV902D_SET_DST_PITCH_V 31:0
|
||||
|
||||
#define NV902D_SET_DST_WIDTH 0x0218
|
||||
#define NV902D_SET_DST_WIDTH_V 31:0
|
||||
|
||||
#define NV902D_SET_DST_HEIGHT 0x021c
|
||||
#define NV902D_SET_DST_HEIGHT_V 31:0
|
||||
|
||||
#define NV902D_SET_DST_OFFSET_UPPER 0x0220
|
||||
#define NV902D_SET_DST_OFFSET_UPPER_V 7:0
|
||||
|
||||
#define NV902D_SET_DST_OFFSET_LOWER 0x0224
|
||||
#define NV902D_SET_DST_OFFSET_LOWER_V 31:0
|
||||
|
||||
#define NV902D_SET_SRC_FORMAT 0x0230
|
||||
#define NV902D_SET_SRC_FORMAT_V 7:0
|
||||
#define NV902D_SET_SRC_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV902D_SET_SRC_FORMAT_V_A8RL8GL8BL8 0x000000D0
|
||||
#define NV902D_SET_SRC_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV902D_SET_SRC_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV902D_SET_SRC_FORMAT_V_A8BL8GL8RL8 0x000000D6
|
||||
#define NV902D_SET_SRC_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV902D_SET_SRC_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV902D_SET_SRC_FORMAT_V_X8RL8GL8BL8 0x000000E7
|
||||
#define NV902D_SET_SRC_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV902D_SET_SRC_FORMAT_V_X8BL8GL8RL8 0x000000FA
|
||||
#define NV902D_SET_SRC_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV902D_SET_SRC_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV902D_SET_SRC_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV902D_SET_SRC_FORMAT_V_Y8 0x000000F3
|
||||
#define NV902D_SET_SRC_FORMAT_V_AY8 0x0000001D
|
||||
#define NV902D_SET_SRC_FORMAT_V_Y16 0x000000EE
|
||||
#define NV902D_SET_SRC_FORMAT_V_Y32 0x000000FF
|
||||
#define NV902D_SET_SRC_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV902D_SET_SRC_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV902D_SET_SRC_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV902D_SET_SRC_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
#define NV902D_SET_SRC_FORMAT_V_Y1_8X8 0x0000001C
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF16 0x000000F2
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF32 0x000000E5
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF32_GF32 0x000000CB
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF16_GF16_BF16_AF16 0x000000CA
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF16_GF16_BF16_X16 0x000000CE
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF32_GF32_BF32_AF32 0x000000C0
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF32_GF32_BF32_X32 0x000000C3
|
||||
#define NV902D_SET_SRC_FORMAT_V_R16_G16_B16_A16 0x000000C6
|
||||
#define NV902D_SET_SRC_FORMAT_V_RN16_GN16_BN16_AN16 0x000000C7
|
||||
#define NV902D_SET_SRC_FORMAT_V_BF10GF11RF11 0x000000E0
|
||||
#define NV902D_SET_SRC_FORMAT_V_AN8BN8GN8RN8 0x000000D7
|
||||
#define NV902D_SET_SRC_FORMAT_V_RF16_GF16 0x000000DE
|
||||
#define NV902D_SET_SRC_FORMAT_V_R16_G16 0x000000DA
|
||||
#define NV902D_SET_SRC_FORMAT_V_RN16_GN16 0x000000DB
|
||||
#define NV902D_SET_SRC_FORMAT_V_G8R8 0x000000EA
|
||||
#define NV902D_SET_SRC_FORMAT_V_GN8RN8 0x000000EB
|
||||
#define NV902D_SET_SRC_FORMAT_V_RN16 0x000000EF
|
||||
#define NV902D_SET_SRC_FORMAT_V_RN8 0x000000F4
|
||||
#define NV902D_SET_SRC_FORMAT_V_A8 0x000000F7
|
||||
|
||||
#define NV902D_SET_SRC_MEMORY_LAYOUT 0x0234
|
||||
#define NV902D_SET_SRC_MEMORY_LAYOUT_V 0:0
|
||||
#define NV902D_SET_SRC_MEMORY_LAYOUT_V_BLOCKLINEAR 0x00000000
|
||||
#define NV902D_SET_SRC_MEMORY_LAYOUT_V_PITCH 0x00000001
|
||||
|
||||
#define NV902D_SET_SRC_PITCH 0x0244
|
||||
#define NV902D_SET_SRC_PITCH_V 31:0
|
||||
|
||||
#define NV902D_SET_SRC_WIDTH 0x0248
|
||||
#define NV902D_SET_SRC_WIDTH_V 31:0
|
||||
|
||||
#define NV902D_SET_SRC_HEIGHT 0x024c
|
||||
#define NV902D_SET_SRC_HEIGHT_V 31:0
|
||||
|
||||
#define NV902D_SET_SRC_OFFSET_UPPER 0x0250
|
||||
#define NV902D_SET_SRC_OFFSET_UPPER_V 7:0
|
||||
|
||||
#define NV902D_SET_SRC_OFFSET_LOWER 0x0254
|
||||
#define NV902D_SET_SRC_OFFSET_LOWER_V 31:0
|
||||
|
||||
#define NV902D_SET_CLIP_ENABLE 0x0290
|
||||
#define NV902D_SET_CLIP_ENABLE_V 0:0
|
||||
#define NV902D_SET_CLIP_ENABLE_V_FALSE 0x00000000
|
||||
#define NV902D_SET_CLIP_ENABLE_V_TRUE 0x00000001
|
||||
|
||||
#define NV902D_SET_ROP 0x02a0
|
||||
#define NV902D_SET_ROP_V 7:0
|
||||
|
||||
#define NV902D_SET_OPERATION 0x02ac
|
||||
#define NV902D_SET_OPERATION_V 2:0
|
||||
#define NV902D_SET_OPERATION_V_SRCCOPY_AND 0x00000000
|
||||
#define NV902D_SET_OPERATION_V_ROP_AND 0x00000001
|
||||
#define NV902D_SET_OPERATION_V_BLEND_AND 0x00000002
|
||||
#define NV902D_SET_OPERATION_V_SRCCOPY 0x00000003
|
||||
#define NV902D_SET_OPERATION_V_ROP 0x00000004
|
||||
#define NV902D_SET_OPERATION_V_SRCCOPY_PREMULT 0x00000005
|
||||
#define NV902D_SET_OPERATION_V_BLEND_PREMULT 0x00000006
|
||||
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT 0x02e8
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V 2:0
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8X8R5G6B5 0x00000000
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A1R5G5B5 0x00000001
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8R8G8B8 0x00000002
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8Y8 0x00000003
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_A8X8Y16 0x00000004
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_Y32 0x00000005
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_COLOR_FORMAT_V_BYTE_EXPAND 0x00000006
|
||||
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_FORMAT 0x02ec
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_FORMAT_V 0:0
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_FORMAT_V_CGA6_M1 0x00000000
|
||||
#define NV902D_SET_MONOCHROME_PATTERN_FORMAT_V_LE_M1 0x00000001
|
||||
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE 0x0580
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE_V 2:0
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE_V_POINTS 0x00000000
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE_V_LINES 0x00000001
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE_V_POLYLINE 0x00000002
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE_V_TRIANGLES 0x00000003
|
||||
#define NV902D_RENDER_SOLID_PRIM_MODE_V_RECTS 0x00000004
|
||||
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT 0x0584
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V 7:0
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_RF32_GF32_BF32_AF32 0x000000C0
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_RF16_GF16_BF16_AF16 0x000000CA
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_RF32_GF32 0x000000CB
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Y8 0x000000F3
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Y16 0x000000EE
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Y32 0x000000FF
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR 0x0588
|
||||
#define NV902D_SET_RENDER_SOLID_PRIM_COLOR_V 31:0
|
||||
|
||||
#define NV902D_RENDER_SOLID_PRIM_POINT_SET_X(j) (0x0600+(j)*8)
|
||||
#define NV902D_RENDER_SOLID_PRIM_POINT_SET_X_V 31:0
|
||||
|
||||
#define NV902D_RENDER_SOLID_PRIM_POINT_Y(j) (0x0604+(j)*8)
|
||||
#define NV902D_RENDER_SOLID_PRIM_POINT_Y_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DATA_TYPE 0x0800
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DATA_TYPE_V 0:0
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DATA_TYPE_V_COLOR 0x00000000
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DATA_TYPE_V_INDEX 0x00000001
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT 0x0804
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V 7:0
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A8R8G8B8 0x000000CF
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A2R10G10B10 0x000000DF
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A8B8G8R8 0x000000D5
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A2B10G10R10 0x000000D1
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_X8R8G8B8 0x000000E6
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_X8B8G8R8 0x000000F9
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_R5G6B5 0x000000E8
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_A1R5G5B5 0x000000E9
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_X1R5G5B5 0x000000F8
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Y8 0x000000F3
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Y16 0x000000EE
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Y32 0x000000FF
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Z1R5G5B5 0x000000FB
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_O1R5G5B5 0x000000FC
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_Z8R8G8B8 0x000000FD
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR_FORMAT_V_O8R8G8B8 0x000000FE
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_INDEX_FORMAT 0x0808
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V 1:0
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V_I1 0x00000000
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V_I4 0x00000001
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_INDEX_FORMAT_V_I8 0x00000002
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_FORMAT 0x080c
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_FORMAT_V 0:0
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_FORMAT_V_CGA6_M1 0x00000000
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_FORMAT_V_LE_M1 0x00000001
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_WRAP 0x0810
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_WRAP_V 1:0
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_WRAP_V_WRAP_PIXEL 0x00000000
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_WRAP_V_WRAP_BYTE 0x00000001
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_WRAP_V_WRAP_DWORD 0x00000002
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR0 0x0814
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR0_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR1 0x0818
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_COLOR1_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_OPACITY 0x081c
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_OPACITY_V 0:0
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_OPACITY_V_TRANSPARENT 0x00000000
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_MONO_OPACITY_V_OPAQUE 0x00000001
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_SRC_WIDTH 0x0838
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_SRC_WIDTH_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_SRC_HEIGHT 0x083c
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_SRC_HEIGHT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DX_DU_FRAC 0x0840
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DX_DU_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DX_DU_INT 0x0844
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DX_DU_INT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DY_DV_FRAC 0x0848
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DY_DV_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DY_DV_INT 0x084c
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DY_DV_INT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_X0_FRAC 0x0850
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_X0_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_X0_INT 0x0854
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_X0_INT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_Y0_FRAC 0x0858
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_Y0_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_Y0_INT 0x085c
|
||||
#define NV902D_SET_PIXELS_FROM_CPU_DST_Y0_INT_V 31:0
|
||||
|
||||
#define NV902D_PIXELS_FROM_CPU_DATA 0x0860
|
||||
#define NV902D_PIXELS_FROM_CPU_DATA_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP 0x0888
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP_V 0:0
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP_V_FALSE 0x00000000
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SAFE_OVERLAP_V_TRUE 0x00000001
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_X0 0x08b0
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_X0_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_Y0 0x08b4
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_Y0_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_WIDTH 0x08b8
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_WIDTH_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_HEIGHT 0x08bc
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DST_HEIGHT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DU_DX_FRAC 0x08c0
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DU_DX_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DU_DX_INT 0x08c4
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DU_DX_INT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DV_DY_FRAC 0x08c8
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DV_DY_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DV_DY_INT 0x08cc
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_DV_DY_INT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SRC_X0_FRAC 0x08d0
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SRC_X0_FRAC_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SRC_X0_INT 0x08d4
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SRC_X0_INT_V 31:0
|
||||
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SRC_Y0_FRAC 0x08d8
|
||||
#define NV902D_SET_PIXELS_FROM_MEMORY_SRC_Y0_FRAC_V 31:0
|
||||
|
||||
#define NV902D_PIXELS_FROM_MEMORY_SRC_Y0_INT 0x08dc
|
||||
#define NV902D_PIXELS_FROM_MEMORY_SRC_Y0_INT_V 31:0
|
||||
#endif /* _cl_fermi_twod_a_h_ */
|
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
* Copyright (c) 2003-2004, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _cl_fermi_memory_to_memory_format_a_h_
|
||||
#define _cl_fermi_memory_to_memory_format_a_h_
|
||||
|
||||
#define NV9039_SET_OBJECT 0x0000
|
||||
#define NV9039_SET_OBJECT_CLASS_ID 15:0
|
||||
#define NV9039_SET_OBJECT_ENGINE_ID 20:16
|
||||
|
||||
#define NV9039_OFFSET_OUT_UPPER 0x0238
|
||||
#define NV9039_OFFSET_OUT_UPPER_VALUE 7:0
|
||||
|
||||
#define NV9039_OFFSET_OUT 0x023c
|
||||
#define NV9039_OFFSET_OUT_VALUE 31:0
|
||||
|
||||
#define NV9039_LAUNCH_DMA 0x0300
|
||||
#define NV9039_LAUNCH_DMA_SRC_INLINE 0:0
|
||||
#define NV9039_LAUNCH_DMA_SRC_INLINE_FALSE 0x00000000
|
||||
#define NV9039_LAUNCH_DMA_SRC_INLINE_TRUE 0x00000001
|
||||
#define NV9039_LAUNCH_DMA_SRC_MEMORY_LAYOUT 4:4
|
||||
#define NV9039_LAUNCH_DMA_SRC_MEMORY_LAYOUT_BLOCKLINEAR 0x00000000
|
||||
#define NV9039_LAUNCH_DMA_SRC_MEMORY_LAYOUT_PITCH 0x00000001
|
||||
#define NV9039_LAUNCH_DMA_DST_MEMORY_LAYOUT 8:8
|
||||
#define NV9039_LAUNCH_DMA_DST_MEMORY_LAYOUT_BLOCKLINEAR 0x00000000
|
||||
#define NV9039_LAUNCH_DMA_DST_MEMORY_LAYOUT_PITCH 0x00000001
|
||||
#define NV9039_LAUNCH_DMA_COMPLETION_TYPE 13:12
|
||||
#define NV9039_LAUNCH_DMA_COMPLETION_TYPE_FLUSH_DISABLE 0x00000000
|
||||
#define NV9039_LAUNCH_DMA_COMPLETION_TYPE_FLUSH_ONLY 0x00000001
|
||||
#define NV9039_LAUNCH_DMA_COMPLETION_TYPE_RELEASE_SEMAPHORE 0x00000002
|
||||
#define NV9039_LAUNCH_DMA_INTERRUPT_TYPE 17:16
|
||||
#define NV9039_LAUNCH_DMA_INTERRUPT_TYPE_NONE 0x00000000
|
||||
#define NV9039_LAUNCH_DMA_INTERRUPT_TYPE_INTERRUPT 0x00000001
|
||||
#define NV9039_LAUNCH_DMA_SEMAPHORE_STRUCT_SIZE 20:20
|
||||
#define NV9039_LAUNCH_DMA_SEMAPHORE_STRUCT_SIZE_FOUR_WORDS 0x00000000
|
||||
#define NV9039_LAUNCH_DMA_SEMAPHORE_STRUCT_SIZE_ONE_WORD 0x00000001
|
||||
|
||||
#define NV9039_OFFSET_IN_UPPER 0x030c
|
||||
#define NV9039_OFFSET_IN_UPPER_VALUE 7:0
|
||||
|
||||
#define NV9039_OFFSET_IN 0x0310
|
||||
#define NV9039_OFFSET_IN_VALUE 31:0
|
||||
|
||||
#define NV9039_PITCH_IN 0x0314
|
||||
#define NV9039_PITCH_IN_VALUE 31:0
|
||||
|
||||
#define NV9039_PITCH_OUT 0x0318
|
||||
#define NV9039_PITCH_OUT_VALUE 31:0
|
||||
|
||||
#define NV9039_LINE_LENGTH_IN 0x031c
|
||||
#define NV9039_LINE_LENGTH_IN_VALUE 31:0
|
||||
|
||||
#define NV9039_LINE_COUNT 0x0320
|
||||
#define NV9039_LINE_COUNT_VALUE 31:0
|
||||
#endif /* _cl_fermi_memory_to_memory_format_a_h_ */
|
|
@ -0,0 +1,74 @@
|
|||
/*******************************************************************************
|
||||
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
*******************************************************************************/
|
||||
#ifndef _cl906f_h_
|
||||
#define _cl906f_h_
|
||||
|
||||
/* fields and values */
|
||||
#define NV906F_SEMAPHOREA (0x00000010)
|
||||
#define NV906F_SEMAPHOREA_OFFSET_UPPER 7:0
|
||||
#define NV906F_SEMAPHOREB (0x00000014)
|
||||
#define NV906F_SEMAPHOREB_OFFSET_LOWER 31:2
|
||||
#define NV906F_SEMAPHOREC (0x00000018)
|
||||
#define NV906F_SEMAPHOREC_PAYLOAD 31:0
|
||||
#define NV906F_SEMAPHORED (0x0000001C)
|
||||
#define NV906F_SEMAPHORED_OPERATION 3:0
|
||||
#define NV906F_SEMAPHORED_OPERATION_ACQUIRE 0x00000001
|
||||
#define NV906F_SEMAPHORED_OPERATION_RELEASE 0x00000002
|
||||
#define NV906F_SEMAPHORED_OPERATION_ACQ_GEQ 0x00000004
|
||||
#define NV906F_SEMAPHORED_OPERATION_ACQ_AND 0x00000008
|
||||
#define NV906F_SEMAPHORED_ACQUIRE_SWITCH 12:12
|
||||
#define NV906F_SEMAPHORED_ACQUIRE_SWITCH_DISABLED 0x00000000
|
||||
#define NV906F_SEMAPHORED_ACQUIRE_SWITCH_ENABLED 0x00000001
|
||||
#define NV906F_SEMAPHORED_RELEASE_WFI 20:20
|
||||
#define NV906F_SEMAPHORED_RELEASE_WFI_EN 0x00000000
|
||||
#define NV906F_SEMAPHORED_RELEASE_WFI_DIS 0x00000001
|
||||
#define NV906F_SEMAPHORED_RELEASE_SIZE 24:24
|
||||
#define NV906F_SEMAPHORED_RELEASE_SIZE_16BYTE 0x00000000
|
||||
#define NV906F_SEMAPHORED_RELEASE_SIZE_4BYTE 0x00000001
|
||||
#define NV906F_NON_STALL_INTERRUPT (0x00000020)
|
||||
#define NV906F_NON_STALL_INTERRUPT_HANDLE 31:0
|
||||
#define NV906F_SET_REFERENCE (0x00000050)
|
||||
#define NV906F_SET_REFERENCE_COUNT 31:0
|
||||
|
||||
/* dma method formats */
|
||||
#define NV906F_DMA_METHOD_ADDRESS 11:0
|
||||
#define NV906F_DMA_SUBDEVICE_MASK 15:4
|
||||
#define NV906F_DMA_METHOD_SUBCHANNEL 15:13
|
||||
#define NV906F_DMA_TERT_OP 17:16
|
||||
#define NV906F_DMA_TERT_OP_GRP0_INC_METHOD (0x00000000)
|
||||
#define NV906F_DMA_TERT_OP_GRP0_SET_SUB_DEV_MASK (0x00000001)
|
||||
#define NV906F_DMA_TERT_OP_GRP0_STORE_SUB_DEV_MASK (0x00000002)
|
||||
#define NV906F_DMA_TERT_OP_GRP0_USE_SUB_DEV_MASK (0x00000003)
|
||||
#define NV906F_DMA_TERT_OP_GRP2_NON_INC_METHOD (0x00000000)
|
||||
#define NV906F_DMA_METHOD_COUNT 28:16
|
||||
#define NV906F_DMA_IMMD_DATA 28:16
|
||||
#define NV906F_DMA_SEC_OP 31:29
|
||||
#define NV906F_DMA_SEC_OP_GRP0_USE_TERT (0x00000000)
|
||||
#define NV906F_DMA_SEC_OP_INC_METHOD (0x00000001)
|
||||
#define NV906F_DMA_SEC_OP_GRP2_USE_TERT (0x00000002)
|
||||
#define NV906F_DMA_SEC_OP_NON_INC_METHOD (0x00000003)
|
||||
#define NV906F_DMA_SEC_OP_IMMD_DATA_METHOD (0x00000004)
|
||||
#define NV906F_DMA_SEC_OP_ONE_INC (0x00000005)
|
||||
#define NV906F_DMA_SEC_OP_RESERVED6 (0x00000006)
|
||||
#define NV906F_DMA_SEC_OP_END_PB_SEGMENT (0x00000007)
|
||||
#endif /* _cl906f_h_ */
|
|
@ -0,0 +1,143 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl907c_h_
|
||||
#define _cl907c_h_
|
||||
|
||||
// class methods
|
||||
#define NV907C_SET_PRESENT_CONTROL (0x00000084)
|
||||
#define NV907C_SET_PRESENT_CONTROL_BEGIN_MODE 9:8
|
||||
#define NV907C_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING (0x00000000)
|
||||
#define NV907C_SET_PRESENT_CONTROL_BEGIN_MODE_IMMEDIATE (0x00000001)
|
||||
#define NV907C_SET_PRESENT_CONTROL_BEGIN_MODE_ON_LINE (0x00000002)
|
||||
#define NV907C_SET_PRESENT_CONTROL_BEGIN_MODE_AT_FRAME (0x00000003)
|
||||
#define NV907C_SET_PRESENT_CONTROL_TIMESTAMP_MODE 2:2
|
||||
#define NV907C_SET_PRESENT_CONTROL_TIMESTAMP_MODE_DISABLE (0x00000000)
|
||||
#define NV907C_SET_PRESENT_CONTROL_TIMESTAMP_MODE_ENABLE (0x00000001)
|
||||
#define NV907C_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 7:4
|
||||
#define NV907C_SET_PRESENT_CONTROL_BEGIN_LINE 30:16
|
||||
#define NV907C_SET_PRESENT_CONTROL_ON_LINE_MARGIN 15:10
|
||||
#define NV907C_SET_CONTEXT_DMAS_ISO(b) (0x000000C0 + (b)*0x00000004)
|
||||
#define NV907C_SET_CONTEXT_DMAS_ISO_HANDLE 31:0
|
||||
#define NV907C_SET_BASE_LUT_LO (0x000000E0)
|
||||
#define NV907C_SET_BASE_LUT_LO_ENABLE 31:30
|
||||
#define NV907C_SET_BASE_LUT_LO_ENABLE_DISABLE (0x00000000)
|
||||
#define NV907C_SET_BASE_LUT_LO_ENABLE_USE_CORE_LUT (0x00000001)
|
||||
#define NV907C_SET_BASE_LUT_LO_ENABLE_ENABLE (0x00000002)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE 27:24
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_LORES (0x00000000)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_HIRES (0x00000001)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_INDEX_1025_UNITY_RANGE (0x00000003)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_1025_UNITY_RANGE (0x00000004)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_1025_XRBIAS_RANGE (0x00000005)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_1025_XVYCC_RANGE (0x00000006)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_257_UNITY_RANGE (0x00000007)
|
||||
#define NV907C_SET_BASE_LUT_LO_MODE_INTERPOLATE_257_LEGACY_RANGE (0x00000008)
|
||||
#define NV907C_SET_BASE_LUT_HI (0x000000E4)
|
||||
#define NV907C_SET_BASE_LUT_HI_ORIGIN 31:0
|
||||
#define NV907C_SET_OUTPUT_LUT_LO (0x000000E8)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_ENABLE 31:30
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_ENABLE_DISABLE (0x00000000)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_ENABLE_USE_CORE_LUT (0x00000001)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_ENABLE_ENABLE (0x00000002)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE 27:24
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_LORES (0x00000000)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_HIRES (0x00000001)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_INDEX_1025_UNITY_RANGE (0x00000003)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_UNITY_RANGE (0x00000004)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_XRBIAS_RANGE (0x00000005)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_XVYCC_RANGE (0x00000006)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_257_UNITY_RANGE (0x00000007)
|
||||
#define NV907C_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_257_LEGACY_RANGE (0x00000008)
|
||||
#define NV907C_SET_CONTEXT_DMA_LUT (0x000000FC)
|
||||
#define NV907C_SET_CONTEXT_DMA_LUT_HANDLE 31:0
|
||||
#define NV907C_SET_CSC_RED2RED (0x00000140)
|
||||
#define NV907C_SET_CSC_RED2RED_OWNER 31:31
|
||||
#define NV907C_SET_CSC_RED2RED_OWNER_CORE (0x00000000)
|
||||
#define NV907C_SET_CSC_RED2RED_OWNER_BASE (0x00000001)
|
||||
#define NV907C_SET_CSC_RED2RED_COEFF 18:0
|
||||
#define NV907C_SET_CSC_GRN2RED (0x00000144)
|
||||
#define NV907C_SET_CSC_GRN2RED_COEFF 18:0
|
||||
#define NV907C_SET_CSC_BLU2RED (0x00000148)
|
||||
#define NV907C_SET_CSC_BLU2RED_COEFF 18:0
|
||||
#define NV907C_SET_CSC_CONSTANT2RED (0x0000014C)
|
||||
#define NV907C_SET_CSC_CONSTANT2RED_COEFF 18:0
|
||||
#define NV907C_SET_CSC_RED2GRN (0x00000150)
|
||||
#define NV907C_SET_CSC_RED2GRN_COEFF 18:0
|
||||
#define NV907C_SET_CSC_GRN2GRN (0x00000154)
|
||||
#define NV907C_SET_CSC_GRN2GRN_COEFF 18:0
|
||||
#define NV907C_SET_CSC_BLU2GRN (0x00000158)
|
||||
#define NV907C_SET_CSC_BLU2GRN_COEFF 18:0
|
||||
#define NV907C_SET_CSC_CONSTANT2GRN (0x0000015C)
|
||||
#define NV907C_SET_CSC_CONSTANT2GRN_COEFF 18:0
|
||||
#define NV907C_SET_CSC_RED2BLU (0x00000160)
|
||||
#define NV907C_SET_CSC_RED2BLU_COEFF 18:0
|
||||
#define NV907C_SET_CSC_GRN2BLU (0x00000164)
|
||||
#define NV907C_SET_CSC_GRN2BLU_COEFF 18:0
|
||||
#define NV907C_SET_CSC_BLU2BLU (0x00000168)
|
||||
#define NV907C_SET_CSC_BLU2BLU_COEFF 18:0
|
||||
#define NV907C_SET_CSC_CONSTANT2BLU (0x0000016C)
|
||||
#define NV907C_SET_CSC_CONSTANT2BLU_COEFF 18:0
|
||||
|
||||
#define NV907C_SURFACE_SET_OFFSET(a,b) (0x00000400 + (a)*0x00000020 + (b)*0x00000004)
|
||||
#define NV907C_SURFACE_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV907C_SURFACE_SET_SIZE(a) (0x00000408 + (a)*0x00000020)
|
||||
#define NV907C_SURFACE_SET_SIZE_WIDTH 15:0
|
||||
#define NV907C_SURFACE_SET_SIZE_HEIGHT 31:16
|
||||
#define NV907C_SURFACE_SET_STORAGE(a) (0x0000040C + (a)*0x00000020)
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV907C_SURFACE_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV907C_SURFACE_SET_STORAGE_PITCH 20:8
|
||||
#define NV907C_SURFACE_SET_STORAGE_MEMORY_LAYOUT 24:24
|
||||
#define NV907C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV907C_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV907C_SURFACE_SET_PARAMS(a) (0x00000410 + (a)*0x00000020)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT 15:8
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_VOID16 (0x0000001F)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_VOID32 (0x0000002E)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_X2BL10GL10RL10_XRBIAS (0x00000022)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_R16_G16_B16_A16 (0x000000C6)
|
||||
#define NV907C_SURFACE_SET_PARAMS_FORMAT_R16_G16_B16_A16_NVBIAS (0x00000023)
|
||||
#define NV907C_SURFACE_SET_PARAMS_SUPER_SAMPLE 1:0
|
||||
#define NV907C_SURFACE_SET_PARAMS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV907C_SURFACE_SET_PARAMS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV907C_SURFACE_SET_PARAMS_GAMMA 2:2
|
||||
#define NV907C_SURFACE_SET_PARAMS_GAMMA_LINEAR (0x00000000)
|
||||
#define NV907C_SURFACE_SET_PARAMS_GAMMA_SRGB (0x00000001)
|
||||
#define NV907C_SURFACE_SET_PARAMS_LAYOUT 5:4
|
||||
#define NV907C_SURFACE_SET_PARAMS_LAYOUT_FRM (0x00000000)
|
||||
#define NV907C_SURFACE_SET_PARAMS_LAYOUT_FLD1 (0x00000001)
|
||||
#define NV907C_SURFACE_SET_PARAMS_LAYOUT_FLD2 (0x00000002)
|
||||
#endif // _cl907c_h
|
|
@ -0,0 +1,429 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl907d_h_
|
||||
#define _cl907d_h_
|
||||
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20 0x00000014
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_LVDS18 0:0
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_LVDS18_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_LVDS18_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_LVDS24 1:1
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_LVDS24_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_LVDS24_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_LVDS18 2:2
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_LVDS18_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_LVDS18_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_LVDS24 3:3
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_LVDS24_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_LVDS24_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R0 7:4
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_TMDS_A 8:8
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_TMDS_A_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_TMDS_A_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_TMDS_B 9:9
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_TMDS_B_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_SINGLE_TMDS_B_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R1 10:10
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_TMDS 11:11
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_TMDS_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DUAL_TMDS_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R2 12:12
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R3 15:14
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R4 19:17
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R5 23:20
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_A 24:24
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_A_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_A_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_B 25:25
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_B_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_B_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_INTERLACE 26:26
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_INTERLACE_FALSE 0x00000000
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_DP_INTERLACE_TRUE 0x00000001
|
||||
#define NV907D_CORE_NOTIFIER_3_CAPABILITIES_CAP_SOR0_20_R6 31:27
|
||||
|
||||
|
||||
// class methods
|
||||
#define NV907D_DAC_SET_CONTROL(a) (0x00000180 + (a)*0x00000020)
|
||||
#define NV907D_DAC_SET_CONTROL_OWNER_MASK 3:0
|
||||
#define NV907D_DAC_SET_CONTROL_OWNER_MASK_NONE (0x00000000)
|
||||
#define NV907D_DAC_SET_CONTROL_OWNER_MASK_HEAD0 (0x00000001)
|
||||
#define NV907D_DAC_SET_CONTROL_OWNER_MASK_HEAD1 (0x00000002)
|
||||
#define NV907D_DAC_SET_CONTROL_OWNER_MASK_HEAD2 (0x00000004)
|
||||
#define NV907D_DAC_SET_CONTROL_OWNER_MASK_HEAD3 (0x00000008)
|
||||
#define NV907D_DAC_SET_CONTROL_PROTOCOL 12:8
|
||||
#define NV907D_DAC_SET_CONTROL_PROTOCOL_RGB_CRT (0x00000000)
|
||||
#define NV907D_DAC_SET_CONTROL_PROTOCOL_YUV_CRT (0x00000013)
|
||||
|
||||
#define NV907D_SOR_SET_CONTROL(a) (0x00000200 + (a)*0x00000020)
|
||||
#define NV907D_SOR_SET_CONTROL_OWNER_MASK 3:0
|
||||
#define NV907D_SOR_SET_CONTROL_OWNER_MASK_NONE (0x00000000)
|
||||
#define NV907D_SOR_SET_CONTROL_OWNER_MASK_HEAD0 (0x00000001)
|
||||
#define NV907D_SOR_SET_CONTROL_OWNER_MASK_HEAD1 (0x00000002)
|
||||
#define NV907D_SOR_SET_CONTROL_OWNER_MASK_HEAD2 (0x00000004)
|
||||
#define NV907D_SOR_SET_CONTROL_OWNER_MASK_HEAD3 (0x00000008)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM (0x00000000)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A (0x00000001)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B (0x00000002)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS (0x00000005)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_DP_A (0x00000008)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_DP_B (0x00000009)
|
||||
#define NV907D_SOR_SET_CONTROL_PROTOCOL_CUSTOM (0x0000000F)
|
||||
#define NV907D_SOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV907D_SOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV907D_SOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV907D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE 21:20
|
||||
#define NV907D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_OFF (0x00000000)
|
||||
#define NV907D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_X2 (0x00000001)
|
||||
#define NV907D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_X4 (0x00000002)
|
||||
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE(a) (0x00000404 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE 1:0
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_ACTIVE_RASTER (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_COMPLETE_RASTER (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_NON_ACTIVE_RASTER (0x00000002)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY 3:3
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY 4:4
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH 9:6
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_DEFAULT (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_16_422 (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_18_444 (0x00000002)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_20_422 (0x00000003)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_24_422 (0x00000004)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_24_444 (0x00000005)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_30_444 (0x00000006)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_32_422 (0x00000007)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_36_444 (0x00000008)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_48_444 (0x00000009)
|
||||
#define NV907D_HEAD_SET_CONTROL(a) (0x00000408 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTROL_STRUCTURE 0:0
|
||||
#define NV907D_HEAD_SET_CONTROL_STRUCTURE_PROGRESSIVE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_STRUCTURE_INTERLACED (0x00000001)
|
||||
#define NV907D_HEAD_SET_OVERSCAN_COLOR(a) (0x00000410 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_OVERSCAN_COLOR_RED 9:0
|
||||
#define NV907D_HEAD_SET_OVERSCAN_COLOR_GRN 19:10
|
||||
#define NV907D_HEAD_SET_OVERSCAN_COLOR_BLU 29:20
|
||||
#define NV907D_HEAD_SET_RASTER_SIZE(a) (0x00000414 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_RASTER_SIZE_WIDTH 14:0
|
||||
#define NV907D_HEAD_SET_RASTER_SIZE_HEIGHT 30:16
|
||||
#define NV907D_HEAD_SET_RASTER_SYNC_END(a) (0x00000418 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_RASTER_SYNC_END_X 14:0
|
||||
#define NV907D_HEAD_SET_RASTER_SYNC_END_Y 30:16
|
||||
#define NV907D_HEAD_SET_RASTER_BLANK_END(a) (0x0000041C + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_RASTER_BLANK_END_X 14:0
|
||||
#define NV907D_HEAD_SET_RASTER_BLANK_END_Y 30:16
|
||||
#define NV907D_HEAD_SET_RASTER_BLANK_START(a) (0x00000420 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_RASTER_BLANK_START_X 14:0
|
||||
#define NV907D_HEAD_SET_RASTER_BLANK_START_Y 30:16
|
||||
#define NV907D_HEAD_SET_RASTER_VERT_BLANK2(a) (0x00000424 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_RASTER_VERT_BLANK2_YSTART 14:0
|
||||
#define NV907D_HEAD_SET_RASTER_VERT_BLANK2_YEND 30:16
|
||||
#define NV907D_HEAD_SET_DEFAULT_BASE_COLOR(a) (0x0000042C + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_DEFAULT_BASE_COLOR_RED 9:0
|
||||
#define NV907D_HEAD_SET_DEFAULT_BASE_COLOR_GREEN 19:10
|
||||
#define NV907D_HEAD_SET_DEFAULT_BASE_COLOR_BLUE 29:20
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL(a) (0x00000430 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CONTROLLING_CHANNEL 1:0
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CONTROLLING_CHANNEL_CORE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CONTROLLING_CHANNEL_BASE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CONTROLLING_CHANNEL_OVERLAY (0x00000002)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_EXPECT_BUFFER_COLLAPSE 2:2
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_EXPECT_BUFFER_COLLAPSE_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_EXPECT_BUFFER_COLLAPSE_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_TIMESTAMP_MODE 3:3
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_TIMESTAMP_MODE_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_TIMESTAMP_MODE_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT 19:8
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_DAC(i) (0x00000FF0 +(i))
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_DAC__SIZE_1 4
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_DAC0 (0x00000FF0)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_DAC1 (0x00000FF1)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_DAC2 (0x00000FF2)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_DAC3 (0x00000FF3)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_RG(i) (0x00000FF8 +(i))
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_RG__SIZE_1 4
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_RG0 (0x00000FF8)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_RG1 (0x00000FF9)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_RG2 (0x00000FFA)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_RG3 (0x00000FFB)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR(i) (0x00000F0F +(i)*16)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR__SIZE_1 8
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR0 (0x00000F0F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR1 (0x00000F1F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR2 (0x00000F2F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR3 (0x00000F3F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR4 (0x00000F4F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR5 (0x00000F5F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR6 (0x00000F6F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SOR7 (0x00000F7F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SF(i) (0x00000F8F +(i)*16)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SF__SIZE_1 4
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SF0 (0x00000F8F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SF1 (0x00000F9F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SF2 (0x00000FAF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_SF3 (0x00000FBF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR(i) (0x000000FF +(i)*256)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR__SIZE_1 8
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR0 (0x000000FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR1 (0x000001FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR2 (0x000002FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR3 (0x000003FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR4 (0x000004FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR5 (0x000005FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR6 (0x000006FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_PIOR7 (0x000007FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_PRIMARY_OUTPUT_NONE (0x00000FFF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT 31:20
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_DAC(i) (0x00000FF0 +(i))
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_DAC__SIZE_1 4
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_DAC0 (0x00000FF0)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_DAC1 (0x00000FF1)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_DAC2 (0x00000FF2)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_DAC3 (0x00000FF3)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_RG(i) (0x00000FF8 +(i))
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_RG__SIZE_1 4
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_RG0 (0x00000FF8)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_RG1 (0x00000FF9)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_RG2 (0x00000FFA)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_RG3 (0x00000FFB)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR(i) (0x00000F0F +(i)*16)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR__SIZE_1 8
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR0 (0x00000F0F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR1 (0x00000F1F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR2 (0x00000F2F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR3 (0x00000F3F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR4 (0x00000F4F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR5 (0x00000F5F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR6 (0x00000F6F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SOR7 (0x00000F7F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SF(i) (0x00000F8F +(i)*16)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SF__SIZE_1 4
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SF0 (0x00000F8F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SF1 (0x00000F9F)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SF2 (0x00000FAF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_SF3 (0x00000FBF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR(i) (0x000000FF +(i)*256)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR__SIZE_1 8
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR0 (0x000000FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR1 (0x000001FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR2 (0x000002FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR3 (0x000003FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR4 (0x000004FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR5 (0x000005FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR6 (0x000006FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_PIOR7 (0x000007FF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_SECONDARY_OUTPUT_NONE (0x00000FFF)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CRC_DURING_SNOOZE 5:5
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CRC_DURING_SNOOZE_DISABLE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CRC_CONTROL_CRC_DURING_SNOOZE_ENABLE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMA_CRC(a) (0x00000438 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMA_CRC_HANDLE 31:0
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO(a) (0x00000448 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_ENABLE 31:31
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_ENABLE_DISABLE (0x00000000)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_ENABLE_ENABLE (0x00000001)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE 27:24
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_LORES (0x00000000)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_HIRES (0x00000001)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INDEX_1025_UNITY_RANGE (0x00000003)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_UNITY_RANGE (0x00000004)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_XRBIAS_RANGE (0x00000005)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_1025_XVYCC_RANGE (0x00000006)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_257_UNITY_RANGE (0x00000007)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_MODE_INTERPOLATE_257_LEGACY_RANGE (0x00000008)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_NEVER_YIELD_TO_BASE 20:20
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_NEVER_YIELD_TO_BASE_DISABLE (0x00000000)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_LO_NEVER_YIELD_TO_BASE_ENABLE (0x00000001)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_HI(a) (0x0000044C + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_OUTPUT_LUT_HI_ORIGIN 31:0
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY(a) (0x00000450 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_HERTZ 30:0
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001 31:31
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION(a) (0x00000454 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_MODE 21:20
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_MODE_CLK_25 (0x00000000)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_MODE_CLK_28 (0x00000001)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_MODE_CLK_CUSTOM (0x00000002)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_NOT_DRIVER 24:24
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_NOT_DRIVER_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_NOT_DRIVER_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_ENABLE_HOPPING 25:25
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_ENABLE_HOPPING_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_ENABLE_HOPPING_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_MODE 26:26
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_MODE_VBLANK (0x00000000)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_MODE_HBLANK (0x00000001)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(a) (0x00000458 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_HERTZ 30:0
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001 31:31
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMA_LUT(a) (0x0000045C + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMA_LUT_HANDLE 31:0
|
||||
#define NV907D_HEAD_SET_OFFSET(a) (0x00000460 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV907D_HEAD_SET_SIZE(a) (0x00000468 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_SIZE_WIDTH 15:0
|
||||
#define NV907D_HEAD_SET_SIZE_HEIGHT 31:16
|
||||
#define NV907D_HEAD_SET_STORAGE(a) (0x0000046C + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV907D_HEAD_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV907D_HEAD_SET_STORAGE_PITCH 20:8
|
||||
#define NV907D_HEAD_SET_STORAGE_MEMORY_LAYOUT 24:24
|
||||
#define NV907D_HEAD_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV907D_HEAD_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV907D_HEAD_SET_PARAMS(a) (0x00000470 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT 15:8
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_VOID16 (0x0000001F)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_VOID32 (0x0000002E)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_X2BL10GL10RL10_XRBIAS (0x00000022)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_R16_G16_B16_A16 (0x000000C6)
|
||||
#define NV907D_HEAD_SET_PARAMS_FORMAT_R16_G16_B16_A16_NVBIAS (0x00000023)
|
||||
#define NV907D_HEAD_SET_PARAMS_SUPER_SAMPLE 1:0
|
||||
#define NV907D_HEAD_SET_PARAMS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV907D_HEAD_SET_PARAMS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV907D_HEAD_SET_PARAMS_GAMMA 2:2
|
||||
#define NV907D_HEAD_SET_PARAMS_GAMMA_LINEAR (0x00000000)
|
||||
#define NV907D_HEAD_SET_PARAMS_GAMMA_SRGB (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMAS_ISO(a) (0x00000474 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMAS_ISO_HANDLE 31:0
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR(a) (0x00000480 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_ENABLE 31:31
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_ENABLE_DISABLE (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_ENABLE_ENABLE (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_FORMAT 25:24
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_FORMAT_A1R5G5B5 (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_FORMAT_A8R8G8B8 (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_SIZE 26:26
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32 (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64 (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_X 13:8
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_Y 21:16
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_COMPOSITION 29:28
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_ALPHA_BLEND (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_PREMULT_ALPHA_BLEND (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_XOR (0x00000002)
|
||||
#define NV907D_HEAD_SET_OFFSET_CURSOR(a) (0x00000484 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_OFFSET_CURSOR_ORIGIN 31:0
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMA_CURSOR(a) (0x0000048C + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTEXT_DMA_CURSOR_HANDLE 31:0
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL(a) (0x00000490 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_ENABLE 0:0
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_ENABLE_DISABLE (0x00000000)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_ENABLE_ENABLE (0x00000001)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_BITS 2:1
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_6_BITS (0x00000000)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_8_BITS (0x00000001)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_10_BITS (0x00000002)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_MODE 6:3
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_ERR_ACC (0x00000000)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_ERR_ACC (0x00000001)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_2X2 (0x00000002)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_2X2 (0x00000003)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_MODE_TEMPORAL (0x00000004)
|
||||
#define NV907D_HEAD_SET_DITHER_CONTROL_PHASE 8:7
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER(a) (0x00000494 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS 2:0
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_1 (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_2 (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_3 (0x00000002)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_3_ADAPTIVE (0x00000003)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VERTICAL_TAPS_TAPS_5 (0x00000004)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS 4:3
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS_TAPS_1 (0x00000000)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS_TAPS_2 (0x00000001)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_HORIZONTAL_TAPS_TAPS_8 (0x00000002)
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_HRESPONSE_BIAS 23:16
|
||||
#define NV907D_HEAD_SET_CONTROL_OUTPUT_SCALER_VRESPONSE_BIAS 31:24
|
||||
#define NV907D_HEAD_SET_PROCAMP(a) (0x00000498 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_PROCAMP_COLOR_SPACE 1:0
|
||||
#define NV907D_HEAD_SET_PROCAMP_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NV907D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NV907D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NV907D_HEAD_SET_PROCAMP_CHROMA_LPF 2:2
|
||||
#define NV907D_HEAD_SET_PROCAMP_CHROMA_LPF_AUTO (0x00000000)
|
||||
#define NV907D_HEAD_SET_PROCAMP_CHROMA_LPF_ON (0x00000001)
|
||||
#define NV907D_HEAD_SET_PROCAMP_SAT_COS 19:8
|
||||
#define NV907D_HEAD_SET_PROCAMP_SAT_SINE 31:20
|
||||
#define NV907D_HEAD_SET_PROCAMP_DYNAMIC_RANGE 5:5
|
||||
#define NV907D_HEAD_SET_PROCAMP_DYNAMIC_RANGE_VESA (0x00000000)
|
||||
#define NV907D_HEAD_SET_PROCAMP_DYNAMIC_RANGE_CEA (0x00000001)
|
||||
#define NV907D_HEAD_SET_PROCAMP_RANGE_COMPRESSION 6:6
|
||||
#define NV907D_HEAD_SET_PROCAMP_RANGE_COMPRESSION_DISABLE (0x00000000)
|
||||
#define NV907D_HEAD_SET_PROCAMP_RANGE_COMPRESSION_ENABLE (0x00000001)
|
||||
#define NV907D_HEAD_SET_VIEWPORT_POINT_IN(a) (0x000004B0 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_VIEWPORT_POINT_IN_X 14:0
|
||||
#define NV907D_HEAD_SET_VIEWPORT_POINT_IN_Y 30:16
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_IN(a) (0x000004B8 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_IN_WIDTH 14:0
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_IN_HEIGHT 30:16
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT(a) (0x000004C0 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_WIDTH 14:0
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_HEIGHT 30:16
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_MIN(a) (0x000004C4 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_MIN_WIDTH 14:0
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_MIN_HEIGHT 30:16
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_MAX(a) (0x000004C8 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_MAX_WIDTH 14:0
|
||||
#define NV907D_HEAD_SET_VIEWPORT_SIZE_OUT_MAX_HEIGHT 30:16
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(a) (0x000004D0 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE 0:0
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH 11:8
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_8 (0x00000000)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_16 (0x00000001)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_32 (0x00000003)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_64 (0x00000005)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE 13:12
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV907D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS(a) (0x000004D4 + (a)*0x00000300)
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_USABLE 0:0
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_USABLE_FALSE (0x00000000)
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_USABLE_TRUE (0x00000001)
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH 11:8
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH_BPP_16 (0x00000001)
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH_BPP_32 (0x00000003)
|
||||
#define NV907D_HEAD_SET_OVERLAY_USAGE_BOUNDS_PIXEL_DEPTH_BPP_64 (0x00000005)
|
||||
#endif // _cl907d_h
|
|
@ -0,0 +1,73 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl907e_h_
|
||||
#define _cl907e_h_
|
||||
|
||||
// class methods
|
||||
#define NV907E_SET_PRESENT_CONTROL (0x00000084)
|
||||
#define NV907E_SET_PRESENT_CONTROL_BEGIN_MODE 1:0
|
||||
#define NV907E_SET_PRESENT_CONTROL_BEGIN_MODE_ASAP (0x00000000)
|
||||
#define NV907E_SET_PRESENT_CONTROL_BEGIN_MODE_TIMESTAMP (0x00000003)
|
||||
#define NV907E_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 7:4
|
||||
#define NV907E_SET_CONTEXT_DMA_ISO (0x000000C0)
|
||||
#define NV907E_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NV907E_SET_COMPOSITION_CONTROL (0x00000100)
|
||||
#define NV907E_SET_COMPOSITION_CONTROL_MODE 3:0
|
||||
#define NV907E_SET_COMPOSITION_CONTROL_MODE_SOURCE_COLOR_VALUE_KEYING (0x00000000)
|
||||
#define NV907E_SET_COMPOSITION_CONTROL_MODE_DESTINATION_COLOR_VALUE_KEYING (0x00000001)
|
||||
#define NV907E_SET_COMPOSITION_CONTROL_MODE_OPAQUE (0x00000002)
|
||||
|
||||
#define NV907E_SURFACE_SET_OFFSET (0x00000400)
|
||||
#define NV907E_SURFACE_SET_OFFSET_ORIGIN 31:0
|
||||
#define NV907E_SURFACE_SET_SIZE (0x00000408)
|
||||
#define NV907E_SURFACE_SET_SIZE_WIDTH 15:0
|
||||
#define NV907E_SURFACE_SET_SIZE_HEIGHT 31:16
|
||||
#define NV907E_SURFACE_SET_STORAGE (0x0000040C)
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NV907E_SURFACE_SET_STORAGE_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NV907E_SURFACE_SET_STORAGE_PITCH 20:8
|
||||
#define NV907E_SURFACE_SET_STORAGE_MEMORY_LAYOUT 24:24
|
||||
#define NV907E_SURFACE_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NV907E_SURFACE_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NV907E_SURFACE_SET_PARAMS (0x00000410)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT 15:8
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_VE8YO8UE8YE8 (0x00000028)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_YO8VE8YE8UE8 (0x00000029)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_X2BL10GL10RL10_XRBIAS (0x00000022)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_R16_G16_B16_A16 (0x000000C6)
|
||||
#define NV907E_SURFACE_SET_PARAMS_FORMAT_R16_G16_B16_A16_NVBIAS (0x00000023)
|
||||
#define NV907E_SURFACE_SET_PARAMS_COLOR_SPACE 1:0
|
||||
#define NV907E_SURFACE_SET_PARAMS_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NV907E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NV907E_SURFACE_SET_PARAMS_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#endif // _cl907e_h
|
|
@ -0,0 +1,104 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2014, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _cl917d_h_
|
||||
#define _cl917d_h_
|
||||
|
||||
// class methods
|
||||
#define NV917D_SOR_SET_CONTROL(a) (0x00000200 + (a)*0x00000020)
|
||||
#define NV917D_SOR_SET_CONTROL_OWNER_MASK 3:0
|
||||
#define NV917D_SOR_SET_CONTROL_OWNER_MASK_NONE (0x00000000)
|
||||
#define NV917D_SOR_SET_CONTROL_OWNER_MASK_HEAD0 (0x00000001)
|
||||
#define NV917D_SOR_SET_CONTROL_OWNER_MASK_HEAD1 (0x00000002)
|
||||
#define NV917D_SOR_SET_CONTROL_OWNER_MASK_HEAD2 (0x00000004)
|
||||
#define NV917D_SOR_SET_CONTROL_OWNER_MASK_HEAD3 (0x00000008)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM (0x00000000)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A (0x00000001)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B (0x00000002)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS (0x00000005)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_DP_A (0x00000008)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_DP_B (0x00000009)
|
||||
#define NV917D_SOR_SET_CONTROL_PROTOCOL_CUSTOM (0x0000000F)
|
||||
#define NV917D_SOR_SET_CONTROL_DE_SYNC_POLARITY 14:14
|
||||
#define NV917D_SOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NV917D_SOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NV917D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE 21:20
|
||||
#define NV917D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_OFF (0x00000000)
|
||||
#define NV917D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_X2 (0x00000001)
|
||||
#define NV917D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_X4 (0x00000002)
|
||||
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR(a) (0x00000480 + (a)*0x00000300)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_ENABLE 31:31
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_ENABLE_DISABLE (0x00000000)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_ENABLE_ENABLE (0x00000001)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_FORMAT 25:24
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_FORMAT_A1R5G5B5 (0x00000000)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_FORMAT_A8R8G8B8 (0x00000001)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_SIZE 27:26
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32 (0x00000000)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64 (0x00000001)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W128_H128 (0x00000002)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_SIZE_W256_H256 (0x00000003)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_X 15:8
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_Y 23:16
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_COMPOSITION 29:28
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_ALPHA_BLEND (0x00000000)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_PREMULT_ALPHA_BLEND (0x00000001)
|
||||
#define NV917D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_XOR (0x00000002)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL(a) (0x000004A0 + (a)*0x00000300)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_ENABLE 0:0
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_ENABLE_DISABLE (0x00000000)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_ENABLE_ENABLE (0x00000001)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_BITS 2:1
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_6_BITS (0x00000000)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_8_BITS (0x00000001)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_BITS_DITHER_TO_10_BITS (0x00000002)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_MODE 6:3
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_ERR_ACC (0x00000000)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_ERR_ACC (0x00000001)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_2X2 (0x00000002)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_2X2 (0x00000003)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_MODE_TEMPORAL (0x00000004)
|
||||
#define NV917D_HEAD_SET_DITHER_CONTROL_PHASE 8:7
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS(a) (0x000004D0 + (a)*0x00000300)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE 0:0
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE_FALSE (0x00000000)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_USABLE_TRUE (0x00000001)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH 11:8
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_8 (0x00000000)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_16 (0x00000001)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_32 (0x00000003)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_PIXEL_DEPTH_BPP_64 (0x00000005)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE 13:12
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE_X1_AA (0x00000000)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_SUPER_SAMPLE_X4_AA (0x00000002)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_BASE_LUT 17:16
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_BASE_LUT_USAGE_NONE (0x00000000)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_BASE_LUT_USAGE_257 (0x00000001)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_BASE_LUT_USAGE_1025 (0x00000002)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_OUTPUT_LUT 21:20
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_OUTPUT_LUT_USAGE_NONE (0x00000000)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_OUTPUT_LUT_USAGE_257 (0x00000001)
|
||||
#define NV917D_HEAD_SET_BASE_CHANNEL_USAGE_BOUNDS_OUTPUT_LUT_USAGE_1025 (0x00000002)
|
||||
#endif // _cl917d_h
|
|
@ -0,0 +1,162 @@
|
|||
/*******************************************************************************
|
||||
Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
DEALINGS IN THE SOFTWARE.
|
||||
|
||||
*******************************************************************************/
|
||||
|
||||
#ifndef _cla0b5_h_
|
||||
#define _cla0b5_h_
|
||||
|
||||
#define NVA0B5_SET_SRC_PHYS_MODE (0x00000260)
|
||||
#define NVA0B5_SET_SRC_PHYS_MODE_TARGET 1:0
|
||||
#define NVA0B5_SET_SRC_PHYS_MODE_TARGET_LOCAL_FB (0x00000000)
|
||||
#define NVA0B5_SET_SRC_PHYS_MODE_TARGET_COHERENT_SYSMEM (0x00000001)
|
||||
#define NVA0B5_SET_SRC_PHYS_MODE_TARGET_NONCOHERENT_SYSMEM (0x00000002)
|
||||
#define NVA0B5_SET_DST_PHYS_MODE (0x00000264)
|
||||
#define NVA0B5_SET_DST_PHYS_MODE_TARGET 1:0
|
||||
#define NVA0B5_SET_DST_PHYS_MODE_TARGET_LOCAL_FB (0x00000000)
|
||||
#define NVA0B5_SET_DST_PHYS_MODE_TARGET_COHERENT_SYSMEM (0x00000001)
|
||||
#define NVA0B5_SET_DST_PHYS_MODE_TARGET_NONCOHERENT_SYSMEM (0x00000002)
|
||||
#define NVA0B5_LAUNCH_DMA (0x00000300)
|
||||
#define NVA0B5_LAUNCH_DMA_DATA_TRANSFER_TYPE 1:0
|
||||
#define NVA0B5_LAUNCH_DMA_DATA_TRANSFER_TYPE_NONE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_DATA_TRANSFER_TYPE_PIPELINED (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_DATA_TRANSFER_TYPE_NON_PIPELINED (0x00000002)
|
||||
#define NVA0B5_LAUNCH_DMA_FLUSH_ENABLE 2:2
|
||||
#define NVA0B5_LAUNCH_DMA_FLUSH_ENABLE_FALSE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_FLUSH_ENABLE_TRUE (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_TYPE 4:3
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_TYPE_NONE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_TYPE_RELEASE_ONE_WORD_SEMAPHORE (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_TYPE_RELEASE_FOUR_WORD_SEMAPHORE (0x00000002)
|
||||
#define NVA0B5_LAUNCH_DMA_INTERRUPT_TYPE 6:5
|
||||
#define NVA0B5_LAUNCH_DMA_INTERRUPT_TYPE_NONE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_INTERRUPT_TYPE_BLOCKING (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_INTERRUPT_TYPE_NON_BLOCKING (0x00000002)
|
||||
#define NVA0B5_LAUNCH_DMA_SRC_MEMORY_LAYOUT 7:7
|
||||
#define NVA0B5_LAUNCH_DMA_SRC_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_SRC_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_DST_MEMORY_LAYOUT 8:8
|
||||
#define NVA0B5_LAUNCH_DMA_DST_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_DST_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_MULTI_LINE_ENABLE 9:9
|
||||
#define NVA0B5_LAUNCH_DMA_MULTI_LINE_ENABLE_FALSE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_MULTI_LINE_ENABLE_TRUE (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_REMAP_ENABLE 10:10
|
||||
#define NVA0B5_LAUNCH_DMA_REMAP_ENABLE_FALSE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_REMAP_ENABLE_TRUE (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_BYPASS_L2 11:11
|
||||
#define NVA0B5_LAUNCH_DMA_BYPASS_L2_USE_PTE_SETTING (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_BYPASS_L2_FORCE_VOLATILE (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_SRC_TYPE 12:12
|
||||
#define NVA0B5_LAUNCH_DMA_SRC_TYPE_VIRTUAL (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_SRC_TYPE_PHYSICAL (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_DST_TYPE 13:13
|
||||
#define NVA0B5_LAUNCH_DMA_DST_TYPE_VIRTUAL (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_DST_TYPE_PHYSICAL (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION 17:14
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IMIN (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IMAX (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IXOR (0x00000002)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IAND (0x00000003)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IOR (0x00000004)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IADD (0x00000005)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_INC (0x00000006)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_DEC (0x00000007)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_FADD (0x0000000A)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_FMIN (0x0000000B)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_FMAX (0x0000000C)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_FMUL (0x0000000D)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_IMUL (0x0000000E)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_SIGN 18:18
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_SIGN_SIGNED (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_SIGN_UNSIGNED (0x00000001)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_ENABLE 19:19
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_ENABLE_FALSE (0x00000000)
|
||||
#define NVA0B5_LAUNCH_DMA_SEMAPHORE_REDUCTION_ENABLE_TRUE (0x00000001)
|
||||
#define NVA0B5_OFFSET_IN_UPPER (0x00000400)
|
||||
#define NVA0B5_OFFSET_IN_UPPER_UPPER 7:0
|
||||
#define NVA0B5_OFFSET_IN_LOWER (0x00000404)
|
||||
#define NVA0B5_OFFSET_IN_LOWER_VALUE 31:0
|
||||
#define NVA0B5_OFFSET_OUT_UPPER (0x00000408)
|
||||
#define NVA0B5_OFFSET_OUT_UPPER_UPPER 7:0
|
||||
#define NVA0B5_OFFSET_OUT_LOWER (0x0000040C)
|
||||
#define NVA0B5_OFFSET_OUT_LOWER_VALUE 31:0
|
||||
#define NVA0B5_PITCH_IN (0x00000410)
|
||||
#define NVA0B5_PITCH_IN_VALUE 31:0
|
||||
#define NVA0B5_PITCH_OUT (0x00000414)
|
||||
#define NVA0B5_PITCH_OUT_VALUE 31:0
|
||||
#define NVA0B5_LINE_LENGTH_IN (0x00000418)
|
||||
#define NVA0B5_LINE_LENGTH_IN_VALUE 31:0
|
||||
#define NVA0B5_LINE_COUNT (0x0000041C)
|
||||
#define NVA0B5_LINE_COUNT_VALUE 31:0
|
||||
#define NVA0B5_SET_REMAP_CONST_A (0x00000700)
|
||||
#define NVA0B5_SET_REMAP_CONST_A_V 31:0
|
||||
#define NVA0B5_SET_REMAP_CONST_B (0x00000704)
|
||||
#define NVA0B5_SET_REMAP_CONST_B_V 31:0
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS (0x00000708)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X 2:0
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_SRC_X (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_SRC_Y (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_SRC_Z (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_SRC_W (0x00000003)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_CONST_A (0x00000004)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_CONST_B (0x00000005)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_X_NO_WRITE (0x00000006)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y 6:4
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_SRC_X (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_SRC_Y (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_SRC_Z (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_SRC_W (0x00000003)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_CONST_A (0x00000004)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_CONST_B (0x00000005)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Y_NO_WRITE (0x00000006)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z 10:8
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_SRC_X (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_SRC_Y (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_SRC_Z (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_SRC_W (0x00000003)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_CONST_A (0x00000004)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_CONST_B (0x00000005)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_Z_NO_WRITE (0x00000006)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W 14:12
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_SRC_X (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_SRC_Y (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_SRC_Z (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_SRC_W (0x00000003)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_CONST_A (0x00000004)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_CONST_B (0x00000005)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_DST_W_NO_WRITE (0x00000006)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_COMPONENT_SIZE 17:16
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_COMPONENT_SIZE_ONE (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_COMPONENT_SIZE_TWO (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_COMPONENT_SIZE_THREE (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_COMPONENT_SIZE_FOUR (0x00000003)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_SRC_COMPONENTS 21:20
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_SRC_COMPONENTS_ONE (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_SRC_COMPONENTS_TWO (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_SRC_COMPONENTS_THREE (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_SRC_COMPONENTS_FOUR (0x00000003)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_DST_COMPONENTS 25:24
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_DST_COMPONENTS_ONE (0x00000000)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_DST_COMPONENTS_TWO (0x00000001)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_DST_COMPONENTS_THREE (0x00000002)
|
||||
#define NVA0B5_SET_REMAP_COMPONENTS_NUM_DST_COMPONENTS_FOUR (0x00000003)
|
||||
#endif // _cla0b5_h
|
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2017, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _clc37a__h_
|
||||
#define _clc37a__h_
|
||||
|
||||
#define NVC37A_UPDATE (0x00000200)
|
||||
#define NVC37A_SET_CURSOR_HOT_SPOT_POINT_OUT(b) (0x00000208 + (b)*0x00000004)
|
||||
#define NVC37A_SET_CURSOR_HOT_SPOT_POINT_OUT_X 15:0
|
||||
#define NVC37A_SET_CURSOR_HOT_SPOT_POINT_OUT_Y 31:16
|
||||
#endif // _clc37a_h
|
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2017, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _clC37b_h_
|
||||
#define _clC37b_h_
|
||||
|
||||
// dma opcode instructions
|
||||
#define NVC37B_DMA
|
||||
#define NVC37B_DMA_OPCODE 31:29
|
||||
#define NVC37B_DMA_OPCODE_METHOD 0x00000000
|
||||
#define NVC37B_DMA_OPCODE_JUMP 0x00000001
|
||||
#define NVC37B_DMA_OPCODE_NONINC_METHOD 0x00000002
|
||||
#define NVC37B_DMA_OPCODE_SET_SUBDEVICE_MASK 0x00000003
|
||||
#define NVC37B_DMA_METHOD_COUNT 27:18
|
||||
#define NVC37B_DMA_METHOD_OFFSET 13:2
|
||||
#define NVC37B_DMA_DATA 31:0
|
||||
#define NVC37B_DMA_DATA_NOP 0x00000000
|
||||
#define NVC37B_DMA_JUMP_OFFSET 11:2
|
||||
#define NVC37B_DMA_SET_SUBDEVICE_MASK_VALUE 11:0
|
||||
|
||||
// class methods
|
||||
#define NVC37B_UPDATE (0x00000200)
|
||||
#define NVC37B_UPDATE_INTERLOCK_WITH_WINDOW 1:1
|
||||
#define NVC37B_UPDATE_INTERLOCK_WITH_WINDOW_DISABLE (0x00000000)
|
||||
#define NVC37B_UPDATE_INTERLOCK_WITH_WINDOW_ENABLE (0x00000001)
|
||||
#define NVC37B_SET_POINT_OUT(b) (0x00000208 + (b)*0x00000004)
|
||||
#define NVC37B_SET_POINT_OUT_X 15:0
|
||||
#define NVC37B_SET_POINT_OUT_Y 31:16
|
||||
#endif // _clC37b_h
|
|
@ -0,0 +1,567 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2017, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _clC37d_h_
|
||||
#define _clC37d_h_
|
||||
|
||||
#define NV_DISP_NOTIFIER 0x00000000
|
||||
#define NV_DISP_NOTIFIER_SIZEOF 0x00000010
|
||||
#define NV_DISP_NOTIFIER__0 0x00000000
|
||||
#define NV_DISP_NOTIFIER__0_PRESENT_COUNT 7:0
|
||||
#define NV_DISP_NOTIFIER__0_FIELD 8:8
|
||||
#define NV_DISP_NOTIFIER__0_FLIP_TYPE 9:9
|
||||
#define NV_DISP_NOTIFIER__0_FLIP_TYPE_NON_TEARING 0x00000000
|
||||
#define NV_DISP_NOTIFIER__0_FLIP_TYPE_IMMEDIATE 0x00000001
|
||||
#define NV_DISP_NOTIFIER__0_R1 15:10
|
||||
#define NV_DISP_NOTIFIER__0_R2 23:16
|
||||
#define NV_DISP_NOTIFIER__0_R3 29:24
|
||||
#define NV_DISP_NOTIFIER__0_STATUS 31:30
|
||||
#define NV_DISP_NOTIFIER__0_STATUS_NOT_BEGUN 0x00000000
|
||||
#define NV_DISP_NOTIFIER__0_STATUS_BEGUN 0x00000001
|
||||
#define NV_DISP_NOTIFIER__0_STATUS_FINISHED 0x00000002
|
||||
#define NV_DISP_NOTIFIER__1 0x00000001
|
||||
#define NV_DISP_NOTIFIER__1_R4 31:0
|
||||
#define NV_DISP_NOTIFIER__2 0x00000002
|
||||
#define NV_DISP_NOTIFIER__2_TIMESTAMP_LO 31:0
|
||||
#define NV_DISP_NOTIFIER__3 0x00000003
|
||||
#define NV_DISP_NOTIFIER__3_TIMESTAMP_HI 31:0
|
||||
|
||||
|
||||
// class methods
|
||||
#define NVC37D_UPDATE (0x00000200)
|
||||
#define NVC37D_UPDATE_SPECIAL_HANDLING 21:20
|
||||
#define NVC37D_UPDATE_SPECIAL_HANDLING_NONE (0x00000000)
|
||||
#define NVC37D_UPDATE_SPECIAL_HANDLING_INTERRUPT_RM (0x00000001)
|
||||
#define NVC37D_UPDATE_SPECIAL_HANDLING_MODE_SWITCH (0x00000002)
|
||||
#define NVC37D_UPDATE_SPECIAL_HANDLING_REASON 19:12
|
||||
#define NVC37D_UPDATE_INHIBIT_INTERRUPTS 24:24
|
||||
#define NVC37D_UPDATE_INHIBIT_INTERRUPTS_FALSE (0x00000000)
|
||||
#define NVC37D_UPDATE_INHIBIT_INTERRUPTS_TRUE (0x00000001)
|
||||
#define NVC37D_SET_CONTEXT_DMA_NOTIFIER (0x00000208)
|
||||
#define NVC37D_SET_CONTEXT_DMA_NOTIFIER_HANDLE 31:0
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL (0x0000020C)
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_MODE 0:0
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_MODE_WRITE (0x00000000)
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_MODE_WRITE_AWAKEN (0x00000001)
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_OFFSET 11:4
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_NOTIFY 12:12
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_NOTIFY_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_NOTIFIER_CONTROL_NOTIFY_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS (0x00000218)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR(i) ((i)+0):((i)+0)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR__SIZE_1 8
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR0 0:0
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR0_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR0_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR1 1:1
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR1_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR1_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR2 2:2
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR2_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR2_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR3 3:3
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR3_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR3_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR4 4:4
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR4_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR4_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR5 5:5
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR5_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR5_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR6 6:6
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR6_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR6_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR7 7:7
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR7_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR7_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CORE 16:16
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CORE_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CORE_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS (0x0000021C)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW(i) ((i)+0):((i)+0)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW__SIZE_1 32
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW0 0:0
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW0_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW0_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW1 1:1
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW1_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW1_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW2 2:2
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW2_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW2_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW3 3:3
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW3_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW3_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW4 4:4
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW4_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW4_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW5 5:5
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW5_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW5_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW6 6:6
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW6_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW6_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW7 7:7
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW7_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW7_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW8 8:8
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW8_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW8_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW9 9:9
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW9_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW9_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW10 10:10
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW10_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW10_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW11 11:11
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW11_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW11_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW12 12:12
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW12_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW12_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW13 13:13
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW13_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW13_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW14 14:14
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW14_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW14_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW15 15:15
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW15_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW15_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW16 16:16
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW16_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW16_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW17 17:17
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW17_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW17_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW18 18:18
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW18_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW18_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW19 19:19
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW19_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW19_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW20 20:20
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW20_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW20_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW21 21:21
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW21_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW21_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW22 22:22
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW22_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW22_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW23 23:23
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW23_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW23_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW24 24:24
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW24_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW24_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW25 25:25
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW25_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW25_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW26 26:26
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW26_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW26_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW27 27:27
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW27_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW27_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW28 28:28
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW28_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW28_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW29 29:29
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW29_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW29_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW30 30:30
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW30_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW30_ENABLE (0x00000001)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW31 31:31
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW31_DISABLE (0x00000000)
|
||||
#define NVC37D_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW31_ENABLE (0x00000001)
|
||||
|
||||
#define NVC37D_SOR_SET_CONTROL(a) (0x00000300 + (a)*0x00000020)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK 7:0
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_NONE (0x00000000)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD0 (0x00000001)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD1 (0x00000002)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD2 (0x00000004)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD3 (0x00000008)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD4 (0x00000010)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD5 (0x00000020)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD6 (0x00000040)
|
||||
#define NVC37D_SOR_SET_CONTROL_OWNER_MASK_HEAD7 (0x00000080)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL 11:8
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_LVDS_CUSTOM (0x00000000)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_A (0x00000001)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_SINGLE_TMDS_B (0x00000002)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_DUAL_TMDS (0x00000005)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_DP_A (0x00000008)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_DP_B (0x00000009)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_DSI (0x0000000A)
|
||||
#define NVC37D_SOR_SET_CONTROL_PROTOCOL_CUSTOM (0x0000000F)
|
||||
#define NVC37D_SOR_SET_CONTROL_DE_SYNC_POLARITY 16:16
|
||||
#define NVC37D_SOR_SET_CONTROL_DE_SYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NVC37D_SOR_SET_CONTROL_DE_SYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NVC37D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE 21:20
|
||||
#define NVC37D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_OFF (0x00000000)
|
||||
#define NVC37D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_X2 (0x00000001)
|
||||
#define NVC37D_SOR_SET_CONTROL_PIXEL_REPLICATE_MODE_X4 (0x00000002)
|
||||
|
||||
#define NVC37D_WINDOW_SET_CONTROL(a) (0x00001000 + (a)*0x00000080)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER 3:0
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD(i) (0x00000000 +(i))
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD__SIZE_1 8
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD0 (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD1 (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD2 (0x00000002)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD3 (0x00000003)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD4 (0x00000004)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD5 (0x00000005)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD6 (0x00000006)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_HEAD7 (0x00000007)
|
||||
#define NVC37D_WINDOW_SET_CONTROL_OWNER_NONE (0x0000000F)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS(a) (0x00001004 + (a)*0x00000080)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP 0:0
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP 1:1
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP 2:2
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP 3:3
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PACKED422 4:4
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PACKED422_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PACKED422_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR420 5:5
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR444 6:6
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420 7:7
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422 8:8
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R 9:9
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444 10:10
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420 11:11
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444 12:12
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420 13:13
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422 14:14
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R 15:15
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444 16:16
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS(a) (0x00001008 + (a)*0x00000080)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP 0:0
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP 1:1
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP 2:2
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP 3:3
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PACKED422 4:4
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PACKED422_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PACKED422_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR420 5:5
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR444 6:6
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420 7:7
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422 8:8
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R 9:9
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444 10:10
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420 11:11
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444 12:12
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420 13:13
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422 14:14
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R 15:15
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444 16:16
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS(a) (0x00001010 + (a)*0x00000080)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_MAX_PIXELS_FETCHED_PER_LINE 14:0
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_LUT 17:16
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_LUT_USAGE_NONE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_LUT_USAGE_257 (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_LUT_USAGE_1025 (0x00000002)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_SCALER_TAPS 22:20
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_SCALER_TAPS_TAPS_2 (0x00000001)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_SCALER_TAPS_TAPS_5 (0x00000004)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_UPSCALING_ALLOWED 24:24
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_UPSCALING_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC37D_WINDOW_SET_WINDOW_USAGE_BOUNDS_UPSCALING_ALLOWED_TRUE (0x00000001)
|
||||
|
||||
#define NVC37D_HEAD_SET_PROCAMP(a) (0x00002000 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_COLOR_SPACE 1:0
|
||||
#define NVC37D_HEAD_SET_PROCAMP_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_2020 (0x00000003)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_CHROMA_LPF 3:3
|
||||
#define NVC37D_HEAD_SET_PROCAMP_CHROMA_LPF_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_CHROMA_LPF_ENABLE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_SAT_COS 15:4
|
||||
#define NVC37D_HEAD_SET_PROCAMP_SAT_SINE 27:16
|
||||
#define NVC37D_HEAD_SET_PROCAMP_DYNAMIC_RANGE 28:28
|
||||
#define NVC37D_HEAD_SET_PROCAMP_DYNAMIC_RANGE_VESA (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_DYNAMIC_RANGE_CEA (0x00000001)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_RANGE_COMPRESSION 29:29
|
||||
#define NVC37D_HEAD_SET_PROCAMP_RANGE_COMPRESSION_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_RANGE_COMPRESSION_ENABLE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_BLACK_LEVEL 31:30
|
||||
#define NVC37D_HEAD_SET_PROCAMP_BLACK_LEVEL_AUTO (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_BLACK_LEVEL_VIDEO (0x00000001)
|
||||
#define NVC37D_HEAD_SET_PROCAMP_BLACK_LEVEL_GRAPHICS (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE(a) (0x00002004 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE 1:0
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_ACTIVE_RASTER (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_COMPLETE_RASTER (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_NON_ACTIVE_RASTER (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY 2:2
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY 3:3
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH 7:4
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_16_422 (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_18_444 (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_20_422 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_24_422 (0x00000003)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_24_444 (0x00000004)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_30_444 (0x00000005)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_32_422 (0x00000006)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_36_444 (0x00000007)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_48_444 (0x00000008)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_OVERRIDE 24:24
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_OVERRIDE_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_OVERRIDE_ENABLE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_FLAG 23:12
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY(a) (0x0000200C + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_HERTZ 30:0
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001 31:31
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL(a) (0x00002018 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_ENABLE 0:0
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_ENABLE_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_ENABLE_ENABLE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_BITS 5:4
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_BITS_TO_6_BITS (0x00000000)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_BITS_TO_8_BITS (0x00000001)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_BITS_TO_10_BITS (0x00000002)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_BITS_TO_12_BITS (0x00000003)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_OFFSET_ENABLE 2:2
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_OFFSET_ENABLE_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_OFFSET_ENABLE_ENABLE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_MODE 10:8
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_ERR_ACC (0x00000000)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_ERR_ACC (0x00000001)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_MODE_DYNAMIC_2X2 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_MODE_STATIC_2X2 (0x00000003)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_MODE_TEMPORAL (0x00000004)
|
||||
#define NVC37D_HEAD_SET_DITHER_CONTROL_PHASE 13:12
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(a) (0x00002028 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_HERTZ 30:0
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001 31:31
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS(a) (0x00002030 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR 2:0
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_NONE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W32_H32 (0x00000001)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W64_H64 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W128_H128 (0x00000003)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W256_H256 (0x00000004)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_LUT 5:4
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_LUT_USAGE_NONE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_LUT_USAGE_257 (0x00000001)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_LUT_USAGE_1025 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_UPSCALING_ALLOWED 8:8
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_UPSCALING_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_HEAD_USAGE_BOUNDS_UPSCALING_ALLOWED_TRUE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_VIEWPORT_SIZE_IN(a) (0x0000204C + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_VIEWPORT_SIZE_IN_WIDTH 14:0
|
||||
#define NVC37D_HEAD_SET_VIEWPORT_SIZE_IN_HEIGHT 30:16
|
||||
#define NVC37D_HEAD_SET_VIEWPORT_SIZE_OUT(a) (0x00002058 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_VIEWPORT_SIZE_OUT_WIDTH 14:0
|
||||
#define NVC37D_HEAD_SET_VIEWPORT_SIZE_OUT_HEIGHT 30:16
|
||||
#define NVC37D_HEAD_SET_RASTER_SIZE(a) (0x00002064 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_RASTER_SIZE_WIDTH 14:0
|
||||
#define NVC37D_HEAD_SET_RASTER_SIZE_HEIGHT 30:16
|
||||
#define NVC37D_HEAD_SET_RASTER_SYNC_END(a) (0x00002068 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_RASTER_SYNC_END_X 14:0
|
||||
#define NVC37D_HEAD_SET_RASTER_SYNC_END_Y 30:16
|
||||
#define NVC37D_HEAD_SET_RASTER_BLANK_END(a) (0x0000206C + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_RASTER_BLANK_END_X 14:0
|
||||
#define NVC37D_HEAD_SET_RASTER_BLANK_END_Y 30:16
|
||||
#define NVC37D_HEAD_SET_RASTER_BLANK_START(a) (0x00002070 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_RASTER_BLANK_START_X 14:0
|
||||
#define NVC37D_HEAD_SET_RASTER_BLANK_START_Y 30:16
|
||||
#define NVC37D_HEAD_SET_CONTEXT_DMA_CURSOR(a,b) (0x00002088 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NVC37D_HEAD_SET_CONTEXT_DMA_CURSOR_HANDLE 31:0
|
||||
#define NVC37D_HEAD_SET_OFFSET_CURSOR(a,b) (0x00002090 + (a)*0x00000400 + (b)*0x00000004)
|
||||
#define NVC37D_HEAD_SET_OFFSET_CURSOR_ORIGIN 31:0
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR(a) (0x0000209C + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_ENABLE 31:31
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_ENABLE_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_ENABLE_ENABLE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_FORMAT 7:0
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_SIZE 9:8
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_SIZE_W32_H32 (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_SIZE_W64_H64 (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_SIZE_W128_H128 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_SIZE_W256_H256 (0x00000003)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_X 19:12
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_HOT_SPOT_Y 27:20
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_DE_GAMMA 29:28
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_DE_GAMMA_NONE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_DE_GAMMA_SRGB (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_DE_GAMMA_YUV8_10 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_DE_GAMMA_YUV12 (0x00000003)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION(a) (0x000020A0 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_K1 7:0
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_CURSOR_COLOR_FACTOR_SELECT 11:8
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_CURSOR_COLOR_FACTOR_SELECT_K1 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_CURSOR_COLOR_FACTOR_SELECT_K1_TIMES_SRC (0x00000005)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_VIEWPORT_COLOR_FACTOR_SELECT 15:12
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_VIEWPORT_COLOR_FACTOR_SELECT_ZERO (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_VIEWPORT_COLOR_FACTOR_SELECT_K1 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_VIEWPORT_COLOR_FACTOR_SELECT_NEG_K1_TIMES_SRC (0x00000007)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_MODE 16:16
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_MODE_BLEND (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_CURSOR_COMPOSITION_MODE_XOR (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT(a) (0x000020A4 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_SIZE 1:0
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_SIZE_SIZE_257 (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_SIZE_SIZE_1025 (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_RANGE 5:4
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_RANGE_UNITY (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_RANGE_XRBIAS (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_RANGE_XVYCC (0x00000002)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_OUTPUT_MODE 9:8
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_OUTPUT_MODE_INDEX (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CONTROL_OUTPUT_LUT_OUTPUT_MODE_INTERPOLATE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_OFFSET_OUTPUT_LUT(a) (0x000020A8 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_OFFSET_OUTPUT_LUT_ORIGIN 31:0
|
||||
#define NVC37D_HEAD_SET_CONTEXT_DMA_OUTPUT_LUT(a) (0x000020AC + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CONTEXT_DMA_OUTPUT_LUT_HANDLE 31:0
|
||||
#define NVC37D_HEAD_SET_CONTEXT_DMA_CRC(a) (0x00002180 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CONTEXT_DMA_CRC_HANDLE 31:0
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL(a) (0x00002184 + (a)*0x00000400)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_CONTROLLING_CHANNEL 4:0
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_EXPECT_BUFFER_COLLAPSE 8:8
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_EXPECT_BUFFER_COLLAPSE_FALSE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_EXPECT_BUFFER_COLLAPSE_TRUE (0x00000001)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC 19:12
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_NONE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SF (0x00000030)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR(i) (0x00000050 +(i))
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR__SIZE_1 8
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR0 (0x00000050)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR1 (0x00000051)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR2 (0x00000052)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR3 (0x00000053)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR4 (0x00000054)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR5 (0x00000055)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR6 (0x00000056)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_SOR7 (0x00000057)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_PIOR(i) (0x00000060 +(i))
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_PIOR__SIZE_1 4
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_PIOR0 (0x00000060)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_PIOR1 (0x00000061)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_PIOR2 (0x00000062)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_PRIMARY_CRC_PIOR3 (0x00000063)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC 27:20
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_NONE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SF (0x00000030)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR(i) (0x00000050 +(i))
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR__SIZE_1 8
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR0 (0x00000050)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR1 (0x00000051)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR2 (0x00000052)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR3 (0x00000053)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR4 (0x00000054)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR5 (0x00000055)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR6 (0x00000056)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_SOR7 (0x00000057)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_PIOR(i) (0x00000060 +(i))
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_PIOR__SIZE_1 4
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_PIOR0 (0x00000060)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_PIOR1 (0x00000061)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_PIOR2 (0x00000062)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_SECONDARY_CRC_PIOR3 (0x00000063)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_CRC_DURING_SNOOZE 9:9
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_CRC_DURING_SNOOZE_DISABLE (0x00000000)
|
||||
#define NVC37D_HEAD_SET_CRC_CONTROL_CRC_DURING_SNOOZE_ENABLE (0x00000001)
|
||||
#endif // _clC37d_h
|
|
@ -0,0 +1,394 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2017, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef _clC37e_h_
|
||||
#define _clC37e_h_
|
||||
|
||||
// class methods
|
||||
#define NVC37E_UPDATE (0x00000200)
|
||||
#define NVC37E_UPDATE_INTERLOCK_WITH_WIN_IMM 12:12
|
||||
#define NVC37E_UPDATE_INTERLOCK_WITH_WIN_IMM_DISABLE (0x00000000)
|
||||
#define NVC37E_UPDATE_INTERLOCK_WITH_WIN_IMM_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_SEMAPHORE_CONTROL (0x0000020C)
|
||||
#define NVC37E_SET_SEMAPHORE_CONTROL_OFFSET 7:0
|
||||
#define NVC37E_SET_SEMAPHORE_ACQUIRE (0x00000210)
|
||||
#define NVC37E_SET_SEMAPHORE_ACQUIRE_VALUE 31:0
|
||||
#define NVC37E_SET_SEMAPHORE_RELEASE (0x00000214)
|
||||
#define NVC37E_SET_SEMAPHORE_RELEASE_VALUE 31:0
|
||||
#define NVC37E_SET_CONTEXT_DMA_SEMAPHORE (0x00000218)
|
||||
#define NVC37E_SET_CONTEXT_DMA_SEMAPHORE_HANDLE 31:0
|
||||
#define NVC37E_SET_CONTEXT_DMA_NOTIFIER (0x0000021C)
|
||||
#define NVC37E_SET_CONTEXT_DMA_NOTIFIER_HANDLE 31:0
|
||||
#define NVC37E_SET_NOTIFIER_CONTROL (0x00000220)
|
||||
#define NVC37E_SET_NOTIFIER_CONTROL_MODE 0:0
|
||||
#define NVC37E_SET_NOTIFIER_CONTROL_MODE_WRITE (0x00000000)
|
||||
#define NVC37E_SET_NOTIFIER_CONTROL_MODE_WRITE_AWAKEN (0x00000001)
|
||||
#define NVC37E_SET_NOTIFIER_CONTROL_OFFSET 11:4
|
||||
#define NVC37E_SET_SIZE (0x00000224)
|
||||
#define NVC37E_SET_SIZE_WIDTH 15:0
|
||||
#define NVC37E_SET_SIZE_HEIGHT 31:16
|
||||
#define NVC37E_SET_STORAGE (0x00000228)
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NVC37E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NVC37E_SET_STORAGE_MEMORY_LAYOUT 4:4
|
||||
#define NVC37E_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NVC37E_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NVC37E_SET_PARAMS (0x0000022C)
|
||||
#define NVC37E_SET_PARAMS_FORMAT 7:0
|
||||
#define NVC37E_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_R4G4B4A4 (0x0000002F)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_R5G5B5A1 (0x0000002E)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_X8R8G8B8 (0x000000E6)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_X8B8G8R8 (0x000000F9)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_A2R10G10B10 (0x000000DF)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_X2BL10GL10RL10_XRBIAS (0x00000022)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_X2BL10GL10RL10_XVYCC (0x00000024)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_R16_G16_B16_A16_NVBIAS (0x00000023)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_R16_G16_B16_A16 (0x000000C6)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8_U8__Y8_V8_N422 (0x00000028)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_U8_Y8__V8_Y8_N422 (0x00000029)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8___U8V8_N444 (0x00000035)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8___U8V8_N422 (0x00000036)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8___U8V8_N422R (0x00000037)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8___V8U8_N420 (0x00000038)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8___U8___V8_N444 (0x0000003A)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y8___U8___V8_N420 (0x0000003B)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y10___U10V10_N444 (0x00000055)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y10___U10V10_N422 (0x00000056)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y10___U10V10_N422R (0x00000057)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y10___V10U10_N420 (0x00000058)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y10___U10___V10_N444 (0x0000005A)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y10___U10___V10_N420 (0x0000005B)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y12___U12V12_N444 (0x00000075)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y12___U12V12_N422 (0x00000076)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y12___U12V12_N422R (0x00000077)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y12___V12U12_N420 (0x00000078)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y12___U12___V12_N444 (0x0000007A)
|
||||
#define NVC37E_SET_PARAMS_FORMAT_Y12___U12___V12_N420 (0x0000007B)
|
||||
#define NVC37E_SET_PARAMS_COLOR_SPACE 9:8
|
||||
#define NVC37E_SET_PARAMS_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NVC37E_SET_PARAMS_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NVC37E_SET_PARAMS_COLOR_SPACE_YUV_2020 (0x00000003)
|
||||
#define NVC37E_SET_PARAMS_INPUT_RANGE 13:12
|
||||
#define NVC37E_SET_PARAMS_INPUT_RANGE_BYPASS (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_INPUT_RANGE_LIMITED (0x00000001)
|
||||
#define NVC37E_SET_PARAMS_INPUT_RANGE_FULL (0x00000002)
|
||||
#define NVC37E_SET_PARAMS_UNDERREPLICATE 16:16
|
||||
#define NVC37E_SET_PARAMS_UNDERREPLICATE_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_UNDERREPLICATE_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_PARAMS_DE_GAMMA 21:20
|
||||
#define NVC37E_SET_PARAMS_DE_GAMMA_NONE (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_DE_GAMMA_SRGB (0x00000001)
|
||||
#define NVC37E_SET_PARAMS_DE_GAMMA_YUV8_10 (0x00000002)
|
||||
#define NVC37E_SET_PARAMS_DE_GAMMA_YUV12 (0x00000003)
|
||||
#define NVC37E_SET_PARAMS_CSC 17:17
|
||||
#define NVC37E_SET_PARAMS_CSC_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_CSC_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_PARAMS_CLAMP_BEFORE_BLEND 18:18
|
||||
#define NVC37E_SET_PARAMS_CLAMP_BEFORE_BLEND_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_CLAMP_BEFORE_BLEND_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_PARAMS_SWAP_UV 19:19
|
||||
#define NVC37E_SET_PARAMS_SWAP_UV_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_PARAMS_SWAP_UV_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_PLANAR_STORAGE(b) (0x00000230 + (b)*0x00000004)
|
||||
#define NVC37E_SET_PLANAR_STORAGE_PITCH 12:0
|
||||
#define NVC37E_SET_CONTEXT_DMA_ISO(b) (0x00000240 + (b)*0x00000004)
|
||||
#define NVC37E_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NVC37E_SET_OFFSET(b) (0x00000260 + (b)*0x00000004)
|
||||
#define NVC37E_SET_OFFSET_ORIGIN 31:0
|
||||
#define NVC37E_SET_POINT_IN(b) (0x00000290 + (b)*0x00000004)
|
||||
#define NVC37E_SET_POINT_IN_X 15:0
|
||||
#define NVC37E_SET_POINT_IN_Y 31:16
|
||||
#define NVC37E_SET_SIZE_IN (0x00000298)
|
||||
#define NVC37E_SET_SIZE_IN_WIDTH 14:0
|
||||
#define NVC37E_SET_SIZE_IN_HEIGHT 30:16
|
||||
#define NVC37E_SET_SIZE_OUT (0x000002A4)
|
||||
#define NVC37E_SET_SIZE_OUT_WIDTH 14:0
|
||||
#define NVC37E_SET_SIZE_OUT_HEIGHT 30:16
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT (0x000002B0)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_SIZE 1:0
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_SIZE_SIZE_257 (0x00000000)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_SIZE_SIZE_1025 (0x00000002)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_RANGE 5:4
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_RANGE_UNITY (0x00000000)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_RANGE_XRBIAS (0x00000001)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_RANGE_XVYCC (0x00000002)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_OUTPUT_MODE 9:8
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_OUTPUT_MODE_INDEX (0x00000000)
|
||||
#define NVC37E_SET_CONTROL_INPUT_LUT_OUTPUT_MODE_INTERPOLATE (0x00000001)
|
||||
#define NVC37E_SET_OFFSET_INPUT_LUT (0x000002B4)
|
||||
#define NVC37E_SET_OFFSET_INPUT_LUT_ORIGIN 31:0
|
||||
#define NVC37E_SET_CONTEXT_DMA_INPUT_LUT (0x000002B8)
|
||||
#define NVC37E_SET_CONTEXT_DMA_INPUT_LUT_HANDLE 31:0
|
||||
#define NVC37E_SET_CSC_RED2RED (0x000002BC)
|
||||
#define NVC37E_SET_CSC_RED2RED_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_GREEN2RED (0x000002C0)
|
||||
#define NVC37E_SET_CSC_GREEN2RED_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_BLUE2RED (0x000002C4)
|
||||
#define NVC37E_SET_CSC_BLUE2RED_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_CONSTANT2RED (0x000002C8)
|
||||
#define NVC37E_SET_CSC_CONSTANT2RED_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_RED2GREEN (0x000002CC)
|
||||
#define NVC37E_SET_CSC_RED2GREEN_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_GREEN2GREEN (0x000002D0)
|
||||
#define NVC37E_SET_CSC_GREEN2GREEN_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_BLUE2GREEN (0x000002D4)
|
||||
#define NVC37E_SET_CSC_BLUE2GREEN_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_CONSTANT2GREEN (0x000002D8)
|
||||
#define NVC37E_SET_CSC_CONSTANT2GREEN_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_RED2BLUE (0x000002DC)
|
||||
#define NVC37E_SET_CSC_RED2BLUE_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_GREEN2BLUE (0x000002E0)
|
||||
#define NVC37E_SET_CSC_GREEN2BLUE_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_BLUE2BLUE (0x000002E4)
|
||||
#define NVC37E_SET_CSC_BLUE2BLUE_COEFF 18:0
|
||||
#define NVC37E_SET_CSC_CONSTANT2BLUE (0x000002E8)
|
||||
#define NVC37E_SET_CSC_CONSTANT2BLUE_COEFF 18:0
|
||||
#define NVC37E_SET_COMPOSITION_CONTROL (0x000002EC)
|
||||
#define NVC37E_SET_COMPOSITION_CONTROL_COLOR_KEY_SELECT 1:0
|
||||
#define NVC37E_SET_COMPOSITION_CONTROL_COLOR_KEY_SELECT_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_CONTROL_COLOR_KEY_SELECT_SRC (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_CONTROL_COLOR_KEY_SELECT_DST (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_CONTROL_DEPTH 11:4
|
||||
#define NVC37E_SET_COMPOSITION_CONSTANT_ALPHA (0x000002F0)
|
||||
#define NVC37E_SET_COMPOSITION_CONSTANT_ALPHA_K1 7:0
|
||||
#define NVC37E_SET_COMPOSITION_CONSTANT_ALPHA_K2 15:8
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT (0x000002F4)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT 3:0
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_ONE (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_K1 (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_K1_TIMES_SRC (0x00000005)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_K1_TIMES_DST (0x00000006)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_MATCH_SELECT_NEG_K1_TIMES_DST (0x00000008)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT 7:4
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT_ONE (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT_K1 (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT_K1_TIMES_SRC (0x00000005)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT_K1_TIMES_DST (0x00000006)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_COLOR_FACTOR_NO_MATCH_SELECT_NEG_K1_TIMES_DST (0x00000008)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT 11:8
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_ONE (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_K1 (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_K2 (0x00000003)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_NEG_K1 (0x00000004)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_K1_TIMES_DST (0x00000006)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_NEG_K1_TIMES_SRC (0x00000007)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_MATCH_SELECT_NEG_K1_TIMES_DST (0x00000008)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT 15:12
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_ONE (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_K1 (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_K2 (0x00000003)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_NEG_K1 (0x00000004)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_K1_TIMES_DST (0x00000006)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_NEG_K1_TIMES_SRC (0x00000007)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_COLOR_FACTOR_NO_MATCH_SELECT_NEG_K1_TIMES_DST (0x00000008)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_MATCH_SELECT 19:16
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_MATCH_SELECT_K1 (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_MATCH_SELECT_K2 (0x00000003)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_MATCH_SELECT_NEG_K1_TIMES_DST (0x00000008)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_NO_MATCH_SELECT 23:20
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_NO_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_NO_MATCH_SELECT_K1 (0x00000002)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_NO_MATCH_SELECT_K2 (0x00000003)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_SRC_ALPHA_FACTOR_NO_MATCH_SELECT_NEG_K1_TIMES_DST (0x00000008)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_MATCH_SELECT 27:24
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_MATCH_SELECT_ONE (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_MATCH_SELECT_K2 (0x00000003)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_MATCH_SELECT_NEG_K1_TIMES_SRC (0x00000007)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_NO_MATCH_SELECT 31:28
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_NO_MATCH_SELECT_ZERO (0x00000000)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_NO_MATCH_SELECT_ONE (0x00000001)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_NO_MATCH_SELECT_K2 (0x00000003)
|
||||
#define NVC37E_SET_COMPOSITION_FACTOR_SELECT_DST_ALPHA_FACTOR_NO_MATCH_SELECT_NEG_K1_TIMES_SRC (0x00000007)
|
||||
#define NVC37E_SET_KEY_ALPHA (0x000002F8)
|
||||
#define NVC37E_SET_KEY_ALPHA_MIN 15:0
|
||||
#define NVC37E_SET_KEY_ALPHA_MAX 31:16
|
||||
#define NVC37E_SET_KEY_RED_CR (0x000002FC)
|
||||
#define NVC37E_SET_KEY_RED_CR_MIN 15:0
|
||||
#define NVC37E_SET_KEY_RED_CR_MAX 31:16
|
||||
#define NVC37E_SET_KEY_GREEN_Y (0x00000300)
|
||||
#define NVC37E_SET_KEY_GREEN_Y_MIN 15:0
|
||||
#define NVC37E_SET_KEY_GREEN_Y_MAX 31:16
|
||||
#define NVC37E_SET_KEY_BLUE_CB (0x00000304)
|
||||
#define NVC37E_SET_KEY_BLUE_CB_MIN 15:0
|
||||
#define NVC37E_SET_KEY_BLUE_CB_MAX 31:16
|
||||
#define NVC37E_SET_PRESENT_CONTROL (0x00000308)
|
||||
#define NVC37E_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 3:0
|
||||
#define NVC37E_SET_PRESENT_CONTROL_BEGIN_MODE 6:4
|
||||
#define NVC37E_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING (0x00000000)
|
||||
#define NVC37E_SET_PRESENT_CONTROL_BEGIN_MODE_IMMEDIATE (0x00000001)
|
||||
#define NVC37E_SET_PRESENT_CONTROL_TIMESTAMP_MODE 8:8
|
||||
#define NVC37E_SET_PRESENT_CONTROL_TIMESTAMP_MODE_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_PRESENT_CONTROL_TIMESTAMP_MODE_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS (0x00000370)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CORE 0:0
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CORE_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CORE_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR(i) ((i)+1):((i)+1)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR__SIZE_1 8
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR0 1:1
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR0_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR0_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR1 2:2
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR1_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR1_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR2 3:3
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR2_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR2_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR3 4:4
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR3_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR3_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR4 5:5
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR4_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR4_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR5 6:6
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR5_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR5_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR6 7:7
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR6_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR6_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR7 8:8
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR7_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_INTERLOCK_FLAGS_INTERLOCK_WITH_CURSOR7_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS (0x00000374)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW(i) ((i)+0):((i)+0)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW__SIZE_1 32
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW0 0:0
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW0_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW0_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW1 1:1
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW1_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW1_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW2 2:2
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW2_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW2_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW3 3:3
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW3_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW3_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW4 4:4
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW4_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW4_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW5 5:5
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW5_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW5_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW6 6:6
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW6_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW6_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW7 7:7
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW7_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW7_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW8 8:8
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW8_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW8_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW9 9:9
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW9_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW9_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW10 10:10
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW10_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW10_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW11 11:11
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW11_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW11_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW12 12:12
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW12_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW12_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW13 13:13
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW13_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW13_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW14 14:14
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW14_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW14_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW15 15:15
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW15_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW15_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW16 16:16
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW16_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW16_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW17 17:17
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW17_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW17_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW18 18:18
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW18_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW18_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW19 19:19
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW19_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW19_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW20 20:20
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW20_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW20_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW21 21:21
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW21_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW21_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW22 22:22
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW22_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW22_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW23 23:23
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW23_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW23_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW24 24:24
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW24_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW24_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW25 25:25
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW25_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW25_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW26 26:26
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW26_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW26_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW27 27:27
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW27_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW27_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW28 28:28
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW28_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW28_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW29 29:29
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW29_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW29_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW30 30:30
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW30_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW30_ENABLE (0x00000001)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW31 31:31
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW31_DISABLE (0x00000000)
|
||||
#define NVC37E_SET_WINDOW_INTERLOCK_FLAGS_INTERLOCK_WITH_WINDOW31_ENABLE (0x00000001)
|
||||
#endif // _clC37e_h
|
|
@ -0,0 +1,286 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2020, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _clC57d_h_
|
||||
#define _clC57d_h_
|
||||
|
||||
// class methods
|
||||
#define NVC57D_SET_CONTEXT_DMA_NOTIFIER (0x00000208)
|
||||
#define NVC57D_SET_CONTEXT_DMA_NOTIFIER_HANDLE 31:0
|
||||
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS(a) (0x00001004 + (a)*0x00000080)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP 0:0
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP 1:1
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP 2:2
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP 3:3
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PACKED422 4:4
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PACKED422_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PACKED422_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR420 5:5
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR444 6:6
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420 7:7
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422 8:8
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R 9:9
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444 10:10
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420 11:11
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444 12:12
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420 13:13
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422 14:14
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R 15:15
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444 16:16
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS(a) (0x00001008 + (a)*0x00000080)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP 0:0
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED1BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP 1:1
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED2BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP 2:2
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED4BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP 3:3
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_RGB_PACKED8BPP_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PACKED422 4:4
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PACKED422_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PACKED422_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR420 5:5
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR444 6:6
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420 7:7
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422 8:8
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R 9:9
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444 10:10
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420 11:11
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444 12:12
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420 13:13
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR420_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422 14:14
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R 15:15
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR422R_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444 16:16
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_ROTATED_FORMAT_USAGE_BOUNDS_EXT_YUV_SEMI_PLANAR444_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS(a) (0x00001010 + (a)*0x00000080)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_MAX_PIXELS_FETCHED_PER_LINE 14:0
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_ILUT_ALLOWED 16:16
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_ILUT_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_ILUT_ALLOWED_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_TMO_LUT_ALLOWED 28:28
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_TMO_LUT_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_TMO_LUT_ALLOWED_TRUE (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_SCALER_TAPS 22:20
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_SCALER_TAPS_TAPS_2 (0x00000001)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_INPUT_SCALER_TAPS_TAPS_5 (0x00000004)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_UPSCALING_ALLOWED 24:24
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_UPSCALING_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC57D_WINDOW_SET_WINDOW_USAGE_BOUNDS_UPSCALING_ALLOWED_TRUE (0x00000001)
|
||||
|
||||
#define NVC57D_HEAD_SET_PROCAMP(a) (0x00002000 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_COLOR_SPACE 1:0
|
||||
#define NVC57D_HEAD_SET_PROCAMP_COLOR_SPACE_RGB (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_601 (0x00000001)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_709 (0x00000002)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_COLOR_SPACE_YUV_2020 (0x00000003)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_CHROMA_LPF 3:3
|
||||
#define NVC57D_HEAD_SET_PROCAMP_CHROMA_LPF_DISABLE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_CHROMA_LPF_ENABLE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_DYNAMIC_RANGE 28:28
|
||||
#define NVC57D_HEAD_SET_PROCAMP_DYNAMIC_RANGE_VESA (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PROCAMP_DYNAMIC_RANGE_CEA (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE(a) (0x00002004 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE 1:0
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_ACTIVE_RASTER (0x00000000)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_COMPLETE_RASTER (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_CRC_MODE_NON_ACTIVE_RASTER (0x00000002)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY 2:2
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_HSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY 3:3
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY_POSITIVE_TRUE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_VSYNC_POLARITY_NEGATIVE_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH 7:4
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_16_422 (0x00000000)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_18_444 (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_20_422 (0x00000002)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_24_422 (0x00000003)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_24_444 (0x00000004)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_30_444 (0x00000005)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_32_422 (0x00000006)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_36_444 (0x00000007)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_PIXEL_DEPTH_BPP_48_444 (0x00000008)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_OVERRIDE 24:24
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_OVERRIDE_DISABLE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_OVERRIDE_ENABLE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_COLOR_SPACE_FLAG 23:12
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN 31:26
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN0 (0x00000000)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN1 (0x00000001)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN2 (0x00000002)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN3 (0x00000003)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN4 (0x00000004)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN5 (0x00000005)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN6 (0x00000006)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN7 (0x00000007)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN8 (0x00000008)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN9 (0x00000009)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN10 (0x0000000A)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN11 (0x0000000B)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN12 (0x0000000C)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN13 (0x0000000D)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN14 (0x0000000E)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN15 (0x0000000F)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN16 (0x00000010)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN17 (0x00000011)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN18 (0x00000012)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN19 (0x00000013)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN20 (0x00000014)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN21 (0x00000015)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN22 (0x00000016)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN23 (0x00000017)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN24 (0x00000018)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN25 (0x00000019)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN26 (0x0000001A)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN27 (0x0000001B)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN28 (0x0000001C)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN29 (0x0000001D)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN30 (0x0000001E)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_WIN31 (0x0000001F)
|
||||
#define NVC57D_HEAD_SET_CONTROL_OUTPUT_RESOURCE_EXT_PACKET_WIN_NONE (0x0000003F)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY(a) (0x0000200C + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_HERTZ 30:0
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001 31:31
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION(a) (0x0000201C + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_NOT_DRIVER 0:0
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_NOT_DRIVER_FALSE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_NOT_DRIVER_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING 4:4
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_DISABLE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_ENABLE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_MODE 9:8
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_MODE_VBLANK (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_CONFIGURATION_HOPPING_MODE_HBLANK (0x00000001)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX(a) (0x00002028 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_HERTZ 30:0
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001 31:31
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001_FALSE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX_ADJ1000DIV1001_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS(a) (0x00002030 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR 2:0
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_NONE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W32_H32 (0x00000001)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W64_H64 (0x00000002)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W128_H128 (0x00000003)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_CURSOR_USAGE_W256_H256 (0x00000004)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_OLUT_ALLOWED 4:4
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_OLUT_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_OLUT_ALLOWED_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_SCALER_TAPS 14:12
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_SCALER_TAPS_TAPS_2 (0x00000001)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_OUTPUT_SCALER_TAPS_TAPS_5 (0x00000004)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_UPSCALING_ALLOWED 8:8
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_UPSCALING_ALLOWED_FALSE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_HEAD_USAGE_BOUNDS_UPSCALING_ALLOWED_TRUE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_RASTER_SIZE(a) (0x00002064 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_RASTER_SIZE_WIDTH 14:0
|
||||
#define NVC57D_HEAD_SET_RASTER_SIZE_HEIGHT 30:16
|
||||
#define NVC57D_HEAD_SET_RASTER_SYNC_END(a) (0x00002068 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_RASTER_SYNC_END_X 14:0
|
||||
#define NVC57D_HEAD_SET_RASTER_SYNC_END_Y 30:16
|
||||
#define NVC57D_HEAD_SET_RASTER_BLANK_END(a) (0x0000206C + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_RASTER_BLANK_END_X 14:0
|
||||
#define NVC57D_HEAD_SET_RASTER_BLANK_END_Y 30:16
|
||||
#define NVC57D_HEAD_SET_RASTER_BLANK_START(a) (0x00002070 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_RASTER_BLANK_START_X 14:0
|
||||
#define NVC57D_HEAD_SET_RASTER_BLANK_START_Y 30:16
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL(a) (0x00002280 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_INTERPOLATE 0:0
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_INTERPOLATE_DISABLE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_INTERPOLATE_ENABLE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MIRROR 1:1
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MIRROR_DISABLE (0x00000000)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MIRROR_ENABLE (0x00000001)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MODE 3:2
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MODE_SEGMENTED (0x00000000)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MODE_DIRECT8 (0x00000001)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_MODE_DIRECT10 (0x00000002)
|
||||
#define NVC57D_HEAD_SET_OLUT_CONTROL_SIZE 18:8
|
||||
#define NVC57D_HEAD_SET_OLUT_FP_NORM_SCALE(a) (0x00002284 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_OLUT_FP_NORM_SCALE_VALUE 31:0
|
||||
#define NVC57D_HEAD_SET_CONTEXT_DMA_OLUT(a) (0x00002288 + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_CONTEXT_DMA_OLUT_HANDLE 31:0
|
||||
#define NVC57D_HEAD_SET_OFFSET_OLUT(a) (0x0000228C + (a)*0x00000400)
|
||||
#define NVC57D_HEAD_SET_OFFSET_OLUT_ORIGIN 31:0
|
||||
#endif // _clC57d_h
|
|
@ -0,0 +1,142 @@
|
|||
/*
|
||||
* Copyright (c) 1993-2020, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _clC57e_h_
|
||||
#define _clC57e_h_
|
||||
|
||||
// class methods
|
||||
#define NVC57E_SET_SIZE (0x00000224)
|
||||
#define NVC57E_SET_SIZE_WIDTH 15:0
|
||||
#define NVC57E_SET_SIZE_HEIGHT 31:16
|
||||
#define NVC57E_SET_STORAGE (0x00000228)
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT 3:0
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_ONE_GOB (0x00000000)
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_TWO_GOBS (0x00000001)
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_FOUR_GOBS (0x00000002)
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_EIGHT_GOBS (0x00000003)
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_SIXTEEN_GOBS (0x00000004)
|
||||
#define NVC57E_SET_STORAGE_BLOCK_HEIGHT_NVD_BLOCK_HEIGHT_THIRTYTWO_GOBS (0x00000005)
|
||||
#define NVC57E_SET_STORAGE_MEMORY_LAYOUT 4:4
|
||||
#define NVC57E_SET_STORAGE_MEMORY_LAYOUT_BLOCKLINEAR (0x00000000)
|
||||
#define NVC57E_SET_STORAGE_MEMORY_LAYOUT_PITCH (0x00000001)
|
||||
#define NVC57E_SET_PARAMS (0x0000022C)
|
||||
#define NVC57E_SET_PARAMS_FORMAT 7:0
|
||||
#define NVC57E_SET_PARAMS_FORMAT_I8 (0x0000001E)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_R4G4B4A4 (0x0000002F)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_R5G6B5 (0x000000E8)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_A1R5G5B5 (0x000000E9)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_R5G5B5A1 (0x0000002E)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_A8R8G8B8 (0x000000CF)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_X8R8G8B8 (0x000000E6)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_A8B8G8R8 (0x000000D5)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_X8B8G8R8 (0x000000F9)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_A2R10G10B10 (0x000000DF)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_A2B10G10R10 (0x000000D1)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_X2BL10GL10RL10_XRBIAS (0x00000022)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_X2BL10GL10RL10_XVYCC (0x00000024)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_R16_G16_B16_A16_NVBIAS (0x00000023)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_R16_G16_B16_A16 (0x000000C6)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_RF16_GF16_BF16_AF16 (0x000000CA)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y8_U8__Y8_V8_N422 (0x00000028)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_U8_Y8__V8_Y8_N422 (0x00000029)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y8___U8V8_N444 (0x00000035)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y8___U8V8_N422 (0x00000036)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y8___V8U8_N420 (0x00000038)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y10___U10V10_N444 (0x00000055)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y10___U10V10_N422 (0x00000056)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y10___V10U10_N420 (0x00000058)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y12___U12V12_N444 (0x00000075)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y12___U12V12_N422 (0x00000076)
|
||||
#define NVC57E_SET_PARAMS_FORMAT_Y12___V12U12_N420 (0x00000078)
|
||||
#define NVC57E_SET_PARAMS_CLAMP_BEFORE_BLEND 18:18
|
||||
#define NVC57E_SET_PARAMS_CLAMP_BEFORE_BLEND_DISABLE (0x00000000)
|
||||
#define NVC57E_SET_PARAMS_CLAMP_BEFORE_BLEND_ENABLE (0x00000001)
|
||||
#define NVC57E_SET_PARAMS_SWAP_UV 19:19
|
||||
#define NVC57E_SET_PARAMS_SWAP_UV_DISABLE (0x00000000)
|
||||
#define NVC57E_SET_PARAMS_SWAP_UV_ENABLE (0x00000001)
|
||||
#define NVC57E_SET_PARAMS_FMT_ROUNDING_MODE 22:22
|
||||
#define NVC57E_SET_PARAMS_FMT_ROUNDING_MODE_ROUND_TO_NEAREST (0x00000000)
|
||||
#define NVC57E_SET_PARAMS_FMT_ROUNDING_MODE_ROUND_DOWN (0x00000001)
|
||||
#define NVC57E_SET_PLANAR_STORAGE(b) (0x00000230 + (b)*0x00000004)
|
||||
#define NVC57E_SET_PLANAR_STORAGE_PITCH 12:0
|
||||
#define NVC57E_SET_CONTEXT_DMA_ISO(b) (0x00000240 + (b)*0x00000004)
|
||||
#define NVC57E_SET_CONTEXT_DMA_ISO_HANDLE 31:0
|
||||
#define NVC57E_SET_OFFSET(b) (0x00000260 + (b)*0x00000004)
|
||||
#define NVC57E_SET_OFFSET_ORIGIN 31:0
|
||||
#define NVC57E_SET_POINT_IN(b) (0x00000290 + (b)*0x00000004)
|
||||
#define NVC57E_SET_POINT_IN_X 15:0
|
||||
#define NVC57E_SET_POINT_IN_Y 31:16
|
||||
#define NVC57E_SET_SIZE_IN (0x00000298)
|
||||
#define NVC57E_SET_SIZE_IN_WIDTH 15:0
|
||||
#define NVC57E_SET_SIZE_IN_HEIGHT 31:16
|
||||
#define NVC57E_SET_SIZE_OUT (0x000002A4)
|
||||
#define NVC57E_SET_SIZE_OUT_WIDTH 15:0
|
||||
#define NVC57E_SET_SIZE_OUT_HEIGHT 31:16
|
||||
#define NVC57E_SET_PRESENT_CONTROL (0x00000308)
|
||||
#define NVC57E_SET_PRESENT_CONTROL_MIN_PRESENT_INTERVAL 3:0
|
||||
#define NVC57E_SET_PRESENT_CONTROL_BEGIN_MODE 6:4
|
||||
#define NVC57E_SET_PRESENT_CONTROL_BEGIN_MODE_NON_TEARING (0x00000000)
|
||||
#define NVC57E_SET_PRESENT_CONTROL_BEGIN_MODE_IMMEDIATE (0x00000001)
|
||||
#define NVC57E_SET_PRESENT_CONTROL_TIMESTAMP_MODE 8:8
|
||||
#define NVC57E_SET_PRESENT_CONTROL_TIMESTAMP_MODE_DISABLE (0x00000000)
|
||||
#define NVC57E_SET_PRESENT_CONTROL_TIMESTAMP_MODE_ENABLE (0x00000001)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C00 (0x00000400)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C00_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C01 (0x00000404)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C01_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C02 (0x00000408)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C02_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C03 (0x0000040C)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C03_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C10 (0x00000410)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C10_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C11 (0x00000414)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C11_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C12 (0x00000418)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C12_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C13 (0x0000041C)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C13_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C20 (0x00000420)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C20_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C21 (0x00000424)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C21_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C22 (0x00000428)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C22_VALUE 20:0
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C23 (0x0000042C)
|
||||
#define NVC57E_SET_FMT_COEFFICIENT_C23_VALUE 20:0
|
||||
#define NVC57E_SET_ILUT_CONTROL (0x00000440)
|
||||
#define NVC57E_SET_ILUT_CONTROL_INTERPOLATE 0:0
|
||||
#define NVC57E_SET_ILUT_CONTROL_INTERPOLATE_DISABLE (0x00000000)
|
||||
#define NVC57E_SET_ILUT_CONTROL_INTERPOLATE_ENABLE (0x00000001)
|
||||
#define NVC57E_SET_ILUT_CONTROL_MIRROR 1:1
|
||||
#define NVC57E_SET_ILUT_CONTROL_MIRROR_DISABLE (0x00000000)
|
||||
#define NVC57E_SET_ILUT_CONTROL_MIRROR_ENABLE (0x00000001)
|
||||
#define NVC57E_SET_ILUT_CONTROL_MODE 3:2
|
||||
#define NVC57E_SET_ILUT_CONTROL_MODE_SEGMENTED (0x00000000)
|
||||
#define NVC57E_SET_ILUT_CONTROL_MODE_DIRECT8 (0x00000001)
|
||||
#define NVC57E_SET_ILUT_CONTROL_MODE_DIRECT10 (0x00000002)
|
||||
#define NVC57E_SET_ILUT_CONTROL_SIZE 18:8
|
||||
#define NVC57E_SET_CONTEXT_DMA_ILUT (0x00000444)
|
||||
#define NVC57E_SET_CONTEXT_DMA_ILUT_HANDLE 31:0
|
||||
#define NVC57E_SET_OFFSET_ILUT (0x00000448)
|
||||
#define NVC57E_SET_OFFSET_ILUT_ORIGIN 31:0
|
||||
#endif // _clC57e_h
|
|
@ -0,0 +1,208 @@
|
|||
/*
|
||||
* Copyright 2019 Red Hat Inc.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
#ifndef __NVHW_DRF_H__
|
||||
#define __NVHW_DRF_H__
|
||||
|
||||
/* Helpers common to all DRF accessors. */
|
||||
#define DRF_LO(drf) (0 ? drf)
|
||||
#define DRF_HI(drf) (1 ? drf)
|
||||
#define DRF_BITS(drf) (DRF_HI(drf) - DRF_LO(drf) + 1)
|
||||
#define DRF_MASK(drf) (~0ULL >> (64 - DRF_BITS(drf)))
|
||||
#define DRF_SMASK(drf) (DRF_MASK(drf) << DRF_LO(drf))
|
||||
|
||||
/* Helpers for DRF-MW accessors. */
|
||||
#define DRF_MX_MW(drf) drf
|
||||
#define DRF_MX(drf) DRF_MX_##drf
|
||||
#define DRF_MW(drf) DRF_MX(drf)
|
||||
#define DRF_MW_SPANS(o,drf) (DRF_LW_IDX((o),drf) != DRF_HW_IDX((o),drf))
|
||||
#define DRF_MW_SIZE(o) (sizeof((o)[0]) * 8)
|
||||
|
||||
#define DRF_LW_IDX(o,drf) (DRF_LO(DRF_MW(drf)) / DRF_MW_SIZE(o))
|
||||
#define DRF_LW_LO(o,drf) (DRF_LO(DRF_MW(drf)) % DRF_MW_SIZE(o))
|
||||
#define DRF_LW_HI(o,drf) (DRF_MW_SPANS((o),drf) ? (DRF_MW_SIZE(o) - 1) : DRF_HW_HI((o),drf))
|
||||
#define DRF_LW_BITS(o,drf) (DRF_LW_HI((o),drf) - DRF_LW_LO((o),drf) + 1)
|
||||
#define DRF_LW_MASK(o,drf) (~0ULL >> (64 - DRF_LW_BITS((o),drf)))
|
||||
#define DRF_LW_SMASK(o,drf) (DRF_LW_MASK((o),drf) << DRF_LW_LO((o),drf))
|
||||
#define DRF_LW_GET(o,drf) (((o)[DRF_LW_IDX((o),drf)] >> DRF_LW_LO((o),drf)) & DRF_LW_MASK((o),drf))
|
||||
#define DRF_LW_VAL(o,drf,v) (((v) & DRF_LW_MASK((o),drf)) << DRF_LW_LO((o),drf))
|
||||
#define DRF_LW_CLR(o,drf) ((o)[DRF_LW_IDX((o),drf)] & ~DRF_LW_SMASK((o),drf))
|
||||
#define DRF_LW_SET(o,drf,v) (DRF_LW_CLR((o),drf) | DRF_LW_VAL((o),drf,(v)))
|
||||
|
||||
#define DRF_HW_IDX(o,drf) (DRF_HI(DRF_MW(drf)) / DRF_MW_SIZE(o))
|
||||
#define DRF_HW_LO(o,drf) 0
|
||||
#define DRF_HW_HI(o,drf) (DRF_HI(DRF_MW(drf)) % DRF_MW_SIZE(o))
|
||||
#define DRF_HW_BITS(o,drf) (DRF_HW_HI((o),drf) - DRF_HW_LO((o),drf) + 1)
|
||||
#define DRF_HW_MASK(o,drf) (~0ULL >> (64 - DRF_HW_BITS((o),drf)))
|
||||
#define DRF_HW_SMASK(o,drf) (DRF_HW_MASK((o),drf) << DRF_HW_LO((o),drf))
|
||||
#define DRF_HW_GET(o,drf) ((o)[DRF_HW_IDX(o,drf)] & DRF_HW_SMASK((o),drf))
|
||||
#define DRF_HW_VAL(o,drf,v) (((long long)(v) >> DRF_LW_BITS((o),drf)) & DRF_HW_SMASK((o),drf))
|
||||
#define DRF_HW_CLR(o,drf) ((o)[DRF_HW_IDX((o),drf)] & ~DRF_HW_SMASK((o),drf))
|
||||
#define DRF_HW_SET(o,drf,v) (DRF_HW_CLR((o),drf) | DRF_HW_VAL((o),drf,(v)))
|
||||
|
||||
/* DRF accessors. */
|
||||
#define NVVAL_X(drf,v) (((v) & DRF_MASK(drf)) << DRF_LO(drf))
|
||||
#define NVVAL_N(X,d,r,f, v) NVVAL_X(d##_##r##_##f, (v))
|
||||
#define NVVAL_I(X,d,r,f,i,v) NVVAL_X(d##_##r##_##f(i), (v))
|
||||
#define NVVAL_(X,_1,_2,_3,_4,_5,IMPL,...) IMPL
|
||||
#define NVVAL(A...) NVVAL_(X, ##A, NVVAL_I, NVVAL_N)(X, ##A)
|
||||
|
||||
#define NVDEF_N(X,d,r,f, v) NVVAL_X(d##_##r##_##f, d##_##r##_##f##_##v)
|
||||
#define NVDEF_I(X,d,r,f,i,v) NVVAL_X(d##_##r##_##f(i), d##_##r##_##f##_##v)
|
||||
#define NVDEF_(X,_1,_2,_3,_4,_5,IMPL,...) IMPL
|
||||
#define NVDEF(A...) NVDEF_(X, ##A, NVDEF_I, NVDEF_N)(X, ##A)
|
||||
|
||||
#define NVVAL_GET_X(o,drf) (((o) >> DRF_LO(drf)) & DRF_MASK(drf))
|
||||
#define NVVAL_GET_N(X,o,d,r,f ) NVVAL_GET_X(o, d##_##r##_##f)
|
||||
#define NVVAL_GET_I(X,o,d,r,f,i) NVVAL_GET_X(o, d##_##r##_##f(i))
|
||||
#define NVVAL_GET_(X,_1,_2,_3,_4,_5,IMPL,...) IMPL
|
||||
#define NVVAL_GET(A...) NVVAL_GET_(X, ##A, NVVAL_GET_I, NVVAL_GET_N)(X, ##A)
|
||||
|
||||
#define NVVAL_TEST_X(o,drf,cmp,drfv) (NVVAL_GET_X((o), drf) cmp drfv)
|
||||
#define NVVAL_TEST_N(X,o,d,r,f, cmp,v) NVVAL_TEST_X(o, d##_##r##_##f , cmp, (v))
|
||||
#define NVVAL_TEST_I(X,o,d,r,f,i,cmp,v) NVVAL_TEST_X(o, d##_##r##_##f(i), cmp, (v))
|
||||
#define NVVAL_TEST_(X,_1,_2,_3,_4,_5,_6,_7,IMPL,...) IMPL
|
||||
#define NVVAL_TEST(A...) NVVAL_TEST_(X, ##A, NVVAL_TEST_I, NVVAL_TEST_N)(X, ##A)
|
||||
|
||||
#define NVDEF_TEST_N(X,o,d,r,f, cmp,v) NVVAL_TEST_X(o, d##_##r##_##f , cmp, d##_##r##_##f##_##v)
|
||||
#define NVDEF_TEST_I(X,o,d,r,f,i,cmp,v) NVVAL_TEST_X(o, d##_##r##_##f(i), cmp, d##_##r##_##f##_##v)
|
||||
#define NVDEF_TEST_(X,_1,_2,_3,_4,_5,_6,_7,IMPL,...) IMPL
|
||||
#define NVDEF_TEST(A...) NVDEF_TEST_(X, ##A, NVDEF_TEST_I, NVDEF_TEST_N)(X, ##A)
|
||||
|
||||
#define NVVAL_SET_X(o,drf,v) (((o) & ~DRF_SMASK(drf)) | NVVAL_X(drf, (v)))
|
||||
#define NVVAL_SET_N(X,o,d,r,f, v) NVVAL_SET_X(o, d##_##r##_##f, (v))
|
||||
#define NVVAL_SET_I(X,o,d,r,f,i,v) NVVAL_SET_X(o, d##_##r##_##f(i), (v))
|
||||
#define NVVAL_SET_(X,_1,_2,_3,_4,_5,_6,IMPL,...) IMPL
|
||||
#define NVVAL_SET(A...) NVVAL_SET_(X, ##A, NVVAL_SET_I, NVVAL_SET_N)(X, ##A)
|
||||
|
||||
#define NVDEF_SET_N(X,o,d,r,f, v) NVVAL_SET_X(o, d##_##r##_##f, d##_##r##_##f##_##v)
|
||||
#define NVDEF_SET_I(X,o,d,r,f,i,v) NVVAL_SET_X(o, d##_##r##_##f(i), d##_##r##_##f##_##v)
|
||||
#define NVDEF_SET_(X,_1,_2,_3,_4,_5,_6,IMPL,...) IMPL
|
||||
#define NVDEF_SET(A...) NVDEF_SET_(X, ##A, NVDEF_SET_I, NVDEF_SET_N)(X, ##A)
|
||||
|
||||
/* DRF-MW accessors. */
|
||||
#define NVVAL_MW_GET_X(o,drf) \
|
||||
((DRF_MW_SPANS((o),drf) ? \
|
||||
(DRF_HW_GET((o),drf) << DRF_LW_BITS((o),drf)) : 0) | DRF_LW_GET((o),drf))
|
||||
#define NVVAL_MW_GET_N(X,o,d,r,f ) NVVAL_MW_GET_X((o), d##_##r##_##f)
|
||||
#define NVVAL_MW_GET_I(X,o,d,r,f,i) NVVAL_MW_GET_X((o), d##_##r##_##f(i))
|
||||
#define NVVAL_MW_GET_(X,_1,_2,_3,_4,_5,IMPL,...) IMPL
|
||||
#define NVVAL_MW_GET(A...) NVVAL_MW_GET_(X, ##A, NVVAL_MW_GET_I, NVVAL_MW_GET_N)(X, ##A)
|
||||
|
||||
#define NVVAL_MW_SET_X(o,drf,v) do { \
|
||||
(o)[DRF_LW_IDX((o),drf)] = DRF_LW_SET((o),drf,(v)); \
|
||||
if (DRF_MW_SPANS((o),drf)) \
|
||||
(o)[DRF_HW_IDX((o),drf)] = DRF_HW_SET((o),drf,(v)); \
|
||||
} while(0)
|
||||
#define NVVAL_MW_SET_N(X,o,d,r,f, v) NVVAL_MW_SET_X((o), d##_##r##_##f, (v))
|
||||
#define NVVAL_MW_SET_I(X,o,d,r,f,i,v) NVVAL_MW_SET_X((o), d##_##r##_##f(i), (v))
|
||||
#define NVVAL_MW_SET_(X,_1,_2,_3,_4,_5,_6,IMPL,...) IMPL
|
||||
#define NVVAL_MW_SET(A...) NVVAL_MW_SET_(X, ##A, NVVAL_MW_SET_I, NVVAL_MW_SET_N)(X, ##A)
|
||||
|
||||
#define NVDEF_MW_SET_N(X,o,d,r,f, v) NVVAL_MW_SET_X(o, d##_##r##_##f, d##_##r##_##f##_##v)
|
||||
#define NVDEF_MW_SET_I(X,o,d,r,f,i,v) NVVAL_MW_SET_X(o, d##_##r##_##f(i), d##_##r##_##f##_##v)
|
||||
#define NVDEF_MW_SET_(X,_1,_2,_3,_4,_5,_6,IMPL,...) IMPL
|
||||
#define NVDEF_MW_SET(A...) NVDEF_MW_SET_(X, ##A, NVDEF_MW_SET_I, NVDEF_MW_SET_N)(X, ##A)
|
||||
|
||||
/* Helper for reading an arbitrary object. */
|
||||
#define DRF_RD_X(e,p,o,dr) e((p), (o), dr)
|
||||
#define DRF_RD_N(X,e,p,o,d,r ) DRF_RD_X(e, (p), (o), d##_##r)
|
||||
#define DRF_RD_I(X,e,p,o,d,r,i) DRF_RD_X(e, (p), (o), d##_##r(i))
|
||||
#define DRF_RD_(X,_1,_2,_3,_4,_5,_6,IMPL,...) IMPL
|
||||
#define DRF_RD(A...) DRF_RD_(X, ##A, DRF_RD_I, DRF_RD_N)(X, ##A)
|
||||
|
||||
/* Helper for writing an arbitrary object. */
|
||||
#define DRF_WR_X(e,p,o,dr,v) e((p), (o), dr, (v))
|
||||
#define DRF_WR_N(X,e,p,o,d,r, v) DRF_WR_X(e, (p), (o), d##_##r , (v))
|
||||
#define DRF_WR_I(X,e,p,o,d,r,i,v) DRF_WR_X(e, (p), (o), d##_##r(i), (v))
|
||||
#define DRF_WR_(X,_1,_2,_3,_4,_5,_6,_7,IMPL,...) IMPL
|
||||
#define DRF_WR(A...) DRF_WR_(X, ##A, DRF_WR_I, DRF_WR_N)(X, ##A)
|
||||
|
||||
/* Helper for modifying an arbitrary object. */
|
||||
#define DRF_MR_X(er,ew,ty,p,o,dr,m,v) ({ \
|
||||
ty _t = DRF_RD_X(er, (p), (o), dr); \
|
||||
DRF_WR_X(ew, (p), (o), dr, (_t & ~(m)) | (v)); \
|
||||
_t; \
|
||||
})
|
||||
#define DRF_MR_N(X,er,ew,ty,p,o,d,r ,m,v) DRF_MR_X(er, ew, ty, (p), (o), d##_##r , (m), (v))
|
||||
#define DRF_MR_I(X,er,ew,ty,p,o,d,r,i,m,v) DRF_MR_X(er, ew, ty, (p), (o), d##_##r(i), (m), (v))
|
||||
#define DRF_MR_(X,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,IMPL,...) IMPL
|
||||
#define DRF_MR(A...) DRF_MR_(X, ##A, DRF_MR_I, DRF_MR_N)(X, ##A)
|
||||
|
||||
/* Helper for extracting a field value from arbitrary object. */
|
||||
#define DRF_RV_X(e,p,o,dr,drf) NVVAL_GET_X(DRF_RD_X(e, (p), (o), dr), drf)
|
||||
#define DRF_RV_N(X,e,p,o,d,r, f) DRF_RV_X(e, (p), (o), d##_##r , d##_##r##_##f)
|
||||
#define DRF_RV_I(X,e,p,o,d,r,i,f) DRF_RV_X(e, (p), (o), d##_##r(i), d##_##r##_##f)
|
||||
#define DRF_RV_(X,_1,_2,_3,_4,_5,_6,_7,IMPL,...) IMPL
|
||||
#define DRF_RV(A...) DRF_RV_(X, ##A, DRF_RV_I, DRF_RV_N)(X, ##A)
|
||||
|
||||
/* Helper for writing field value to arbitrary object (all other bits cleared). */
|
||||
#define DRF_WV_N(X,e,p,o,d,r, f,v) \
|
||||
DRF_WR_X(e, (p), (o), d##_##r , NVVAL_X(d##_##r##_##f, (v)))
|
||||
#define DRF_WV_I(X,e,p,o,d,r,i,f,v) \
|
||||
DRF_WR_X(e, (p), (o), d##_##r(i), NVVAL_X(d##_##r##_##f, (v)))
|
||||
#define DRF_WV_(X,_1,_2,_3,_4,_5,_6,_7,_8,IMPL,...) IMPL
|
||||
#define DRF_WV(A...) DRF_WV_(X, ##A, DRF_WV_I, DRF_WV_N)(X, ##A)
|
||||
|
||||
/* Helper for writing field definition to arbitrary object (all other bits cleared). */
|
||||
#define DRF_WD_N(X,e,p,o,d,r, f,v) \
|
||||
DRF_WR_X(e, (p), (o), d##_##r , NVVAL_X(d##_##r##_##f, d##_##r##_##f##_##v))
|
||||
#define DRF_WD_I(X,e,p,o,d,r,i,f,v) \
|
||||
DRF_WR_X(e, (p), (o), d##_##r(i), NVVAL_X(d##_##r##_##f, d##_##r##_##f##_##v))
|
||||
#define DRF_WD_(X,_1,_2,_3,_4,_5,_6,_7,_8,IMPL,...) IMPL
|
||||
#define DRF_WD(A...) DRF_WD_(X, ##A, DRF_WD_I, DRF_WD_N)(X, ##A)
|
||||
|
||||
/* Helper for modifying field value in arbitrary object. */
|
||||
#define DRF_MV_N(X,er,ew,ty,p,o,d,r, f,v) \
|
||||
NVVAL_GET_X(DRF_MR_X(er, ew, ty, (p), (o), d##_##r , DRF_SMASK(d##_##r##_##f), \
|
||||
NVVAL_X(d##_##r##_##f, (v))), d##_##r##_##f)
|
||||
#define DRF_MV_I(X,er,ew,ty,p,o,d,r,i,f,v) \
|
||||
NVVAL_GET_X(DRF_MR_X(er, ew, ty, (p), (o), d##_##r(i), DRF_SMASK(d##_##r##_##f), \
|
||||
NVVAL_X(d##_##r##_##f, (v))), d##_##r##_##f)
|
||||
#define DRF_MV_(X,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,IMPL,...) IMPL
|
||||
#define DRF_MV(A...) DRF_MV_(X, ##A, DRF_MV_I, DRF_MV_N)(X, ##A)
|
||||
|
||||
/* Helper for modifying field definition in arbitrary object. */
|
||||
#define DRF_MD_N(X,er,ew,ty,p,o,d,r, f,v) \
|
||||
NVVAL_GET_X(DRF_MR_X(er, ew, ty, (p), (o), d##_##r , DRF_SMASK(d##_##r##_##f), \
|
||||
NVVAL_X(d##_##r##_##f, d##_##r##_##f##_##v)), d##_##r##_##f)
|
||||
#define DRF_MD_I(X,er,ew,ty,p,o,d,r,i,f,v) \
|
||||
NVVAL_GET_X(DRF_MR_X(er, ew, ty, (p), (o), d##_##r(i), DRF_SMASK(d##_##r##_##f), \
|
||||
NVVAL_X(d##_##r##_##f, d##_##r##_##f##_##v)), d##_##r##_##f)
|
||||
#define DRF_MD_(X,_1,_2,_3,_4,_5,_6,_7,_8,_9,_10,IMPL,...) IMPL
|
||||
#define DRF_MD(A...) DRF_MD_(X, ##A, DRF_MD_I, DRF_MD_N)(X, ##A)
|
||||
|
||||
/* Helper for testing against field value in aribtrary object */
|
||||
#define DRF_TV_N(X,e,p,o,d,r, f,cmp,v) \
|
||||
NVVAL_TEST_X(DRF_RD_X(e, (p), (o), d##_##r ), d##_##r##_##f, cmp, (v))
|
||||
#define DRF_TV_I(X,e,p,o,d,r,i,f,cmp,v) \
|
||||
NVVAL_TEST_X(DRF_RD_X(e, (p), (o), d##_##r(i)), d##_##r##_##f, cmp, (v))
|
||||
#define DRF_TV_(X,_1,_2,_3,_4,_5,_6,_7,_8,_9,IMPL,...) IMPL
|
||||
#define DRF_TV(A...) DRF_TV_(X, ##A, DRF_TV_I, DRF_TV_N)(X, ##A)
|
||||
|
||||
/* Helper for testing against field definition in aribtrary object */
|
||||
#define DRF_TD_N(X,e,p,o,d,r, f,cmp,v) \
|
||||
NVVAL_TEST_X(DRF_RD_X(e, (p), (o), d##_##r ), d##_##r##_##f, cmp, d##_##r##_##f##_##v)
|
||||
#define DRF_TD_I(X,e,p,o,d,r,i,f,cmp,v) \
|
||||
NVVAL_TEST_X(DRF_RD_X(e, (p), (o), d##_##r(i)), d##_##r##_##f, cmp, d##_##r##_##f##_##v)
|
||||
#define DRF_TD_(X,_1,_2,_3,_4,_5,_6,_7,_8,_9,IMPL,...) IMPL
|
||||
#define DRF_TD(A...) DRF_TD_(X, ##A, DRF_TD_I, DRF_TD_N)(X, ##A)
|
||||
#endif
|
|
@ -12,9 +12,9 @@ struct nvif_client {
|
|||
bool super;
|
||||
};
|
||||
|
||||
int nvif_client_init(struct nvif_client *parent, const char *name, u64 device,
|
||||
int nvif_client_ctor(struct nvif_client *parent, const char *name, u64 device,
|
||||
struct nvif_client *);
|
||||
void nvif_client_fini(struct nvif_client *);
|
||||
void nvif_client_dtor(struct nvif_client *);
|
||||
int nvif_client_ioctl(struct nvif_client *, void *, u32);
|
||||
int nvif_client_suspend(struct nvif_client *);
|
||||
int nvif_client_resume(struct nvif_client *);
|
||||
|
|
|
@ -18,9 +18,9 @@ struct nvif_device {
|
|||
struct nvif_user user;
|
||||
};
|
||||
|
||||
int nvif_device_init(struct nvif_object *, u32 handle, s32 oclass, void *, u32,
|
||||
struct nvif_device *);
|
||||
void nvif_device_fini(struct nvif_device *);
|
||||
int nvif_device_ctor(struct nvif_object *, const char *name, u32 handle,
|
||||
s32 oclass, void *, u32, struct nvif_device *);
|
||||
void nvif_device_dtor(struct nvif_device *);
|
||||
u64 nvif_device_time(struct nvif_device *);
|
||||
|
||||
/*XXX*/
|
||||
|
|
|
@ -7,6 +7,7 @@ struct nvif_disp {
|
|||
struct nvif_object object;
|
||||
};
|
||||
|
||||
int nvif_disp_ctor(struct nvif_device *, s32 oclass, struct nvif_disp *);
|
||||
int nvif_disp_ctor(struct nvif_device *, const char *name, s32 oclass,
|
||||
struct nvif_disp *);
|
||||
void nvif_disp_dtor(struct nvif_disp *);
|
||||
#endif
|
||||
|
|
|
@ -10,11 +10,13 @@ struct nvif_mem {
|
|||
u64 size;
|
||||
};
|
||||
|
||||
int nvif_mem_init_type(struct nvif_mmu *mmu, s32 oclass, int type, u8 page,
|
||||
u64 size, void *argv, u32 argc, struct nvif_mem *);
|
||||
int nvif_mem_init(struct nvif_mmu *mmu, s32 oclass, u8 type, u8 page,
|
||||
u64 size, void *argv, u32 argc, struct nvif_mem *);
|
||||
void nvif_mem_fini(struct nvif_mem *);
|
||||
int nvif_mem_ctor_type(struct nvif_mmu *mmu, const char *name, s32 oclass,
|
||||
int type, u8 page, u64 size, void *argv, u32 argc,
|
||||
struct nvif_mem *);
|
||||
int nvif_mem_ctor(struct nvif_mmu *mmu, const char *name, s32 oclass, u8 type,
|
||||
u8 page, u64 size, void *argv, u32 argc, struct nvif_mem *);
|
||||
void nvif_mem_dtor(struct nvif_mem *);
|
||||
|
||||
int nvif_mem_init_map(struct nvif_mmu *, u8 type, u64 size, struct nvif_mem *);
|
||||
int nvif_mem_ctor_map(struct nvif_mmu *, const char *name, u8 type, u64 size,
|
||||
struct nvif_mem *);
|
||||
#endif
|
||||
|
|
|
@ -31,8 +31,9 @@ struct nvif_mmu {
|
|||
u8 *kind;
|
||||
};
|
||||
|
||||
int nvif_mmu_init(struct nvif_object *, s32 oclass, struct nvif_mmu *);
|
||||
void nvif_mmu_fini(struct nvif_mmu *);
|
||||
int nvif_mmu_ctor(struct nvif_object *, const char *name, s32 oclass,
|
||||
struct nvif_mmu *);
|
||||
void nvif_mmu_dtor(struct nvif_mmu *);
|
||||
|
||||
static inline bool
|
||||
nvif_mmu_kind_valid(struct nvif_mmu *mmu, u8 kind)
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
struct nvif_notify {
|
||||
struct nvif_object *object;
|
||||
const char *name;
|
||||
int index;
|
||||
|
||||
#define NVIF_NOTIFY_USER 0
|
||||
|
@ -24,10 +25,10 @@ struct nvif_notify {
|
|||
struct work_struct work;
|
||||
};
|
||||
|
||||
int nvif_notify_init(struct nvif_object *, int (*func)(struct nvif_notify *),
|
||||
bool work, u8 type, void *data, u32 size, u32 reply,
|
||||
struct nvif_notify *);
|
||||
int nvif_notify_fini(struct nvif_notify *);
|
||||
int nvif_notify_ctor(struct nvif_object *, const char *name,
|
||||
int (*func)(struct nvif_notify *), bool work, u8 type,
|
||||
void *data, u32 size, u32 reply, struct nvif_notify *);
|
||||
int nvif_notify_dtor(struct nvif_notify *);
|
||||
int nvif_notify_get(struct nvif_notify *);
|
||||
int nvif_notify_put(struct nvif_notify *);
|
||||
int nvif_notify(const void *, u32, const void *, u32);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
#ifndef __NVIF_OBJECT_H__
|
||||
#define __NVIF_OBJECT_H__
|
||||
|
||||
#include <nvif/os.h>
|
||||
|
||||
struct nvif_sclass {
|
||||
|
@ -11,7 +10,9 @@ struct nvif_sclass {
|
|||
};
|
||||
|
||||
struct nvif_object {
|
||||
struct nvif_parent *parent;
|
||||
struct nvif_client *client;
|
||||
const char *name;
|
||||
u32 handle;
|
||||
s32 oclass;
|
||||
void *priv; /*XXX: hack */
|
||||
|
@ -21,9 +22,9 @@ struct nvif_object {
|
|||
} map;
|
||||
};
|
||||
|
||||
int nvif_object_init(struct nvif_object *, u32 handle, s32 oclass, void *, u32,
|
||||
struct nvif_object *);
|
||||
void nvif_object_fini(struct nvif_object *);
|
||||
int nvif_object_ctor(struct nvif_object *, const char *name, u32 handle,
|
||||
s32 oclass, void *, u32, struct nvif_object *);
|
||||
void nvif_object_dtor(struct nvif_object *);
|
||||
int nvif_object_ioctl(struct nvif_object *, void *, u32, void **);
|
||||
int nvif_object_sclass_get(struct nvif_object *, struct nvif_sclass **);
|
||||
void nvif_object_sclass_put(struct nvif_sclass **);
|
||||
|
@ -115,6 +116,19 @@ struct nvif_mclass {
|
|||
_cid; \
|
||||
})
|
||||
|
||||
#define NVIF_RD32_(p,o,dr) nvif_rd32((p), (o) + (dr))
|
||||
#define NVIF_WR32_(p,o,dr,f) nvif_wr32((p), (o) + (dr), (f))
|
||||
#define NVIF_RD32(p,A...) DRF_RD(NVIF_RD32_, (p), 0, ##A)
|
||||
#define NVIF_RV32(p,A...) DRF_RV(NVIF_RD32_, (p), 0, ##A)
|
||||
#define NVIF_TV32(p,A...) DRF_TV(NVIF_RD32_, (p), 0, ##A)
|
||||
#define NVIF_TD32(p,A...) DRF_TD(NVIF_RD32_, (p), 0, ##A)
|
||||
#define NVIF_WR32(p,A...) DRF_WR( NVIF_WR32_, (p), 0, ##A)
|
||||
#define NVIF_WV32(p,A...) DRF_WV( NVIF_WR32_, (p), 0, ##A)
|
||||
#define NVIF_WD32(p,A...) DRF_WD( NVIF_WR32_, (p), 0, ##A)
|
||||
#define NVIF_MR32(p,A...) DRF_MR(NVIF_RD32_, NVIF_WR32_, u32, (p), 0, ##A)
|
||||
#define NVIF_MV32(p,A...) DRF_MV(NVIF_RD32_, NVIF_WR32_, u32, (p), 0, ##A)
|
||||
#define NVIF_MD32(p,A...) DRF_MD(NVIF_RD32_, NVIF_WR32_, u32, (p), 0, ##A)
|
||||
|
||||
/*XXX*/
|
||||
#include <core/object.h>
|
||||
#define nvxx_object(a) ({ \
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
#ifndef __NVIF_PARENT_H__
|
||||
#define __NVIF_PARENT_H__
|
||||
#include <nvif/os.h>
|
||||
struct nvif_object;
|
||||
|
||||
struct nvif_parent {
|
||||
const struct nvif_parent_func {
|
||||
void (*debugf)(struct nvif_object *, const char *fmt, ...) __printf(2, 3);
|
||||
void (*errorf)(struct nvif_object *, const char *fmt, ...) __printf(2, 3);
|
||||
} *func;
|
||||
};
|
||||
|
||||
static inline void
|
||||
nvif_parent_dtor(struct nvif_parent *parent)
|
||||
{
|
||||
parent->func = NULL;
|
||||
}
|
||||
|
||||
static inline void
|
||||
nvif_parent_ctor(const struct nvif_parent_func *func, struct nvif_parent *parent)
|
||||
{
|
||||
parent->func = func;
|
||||
}
|
||||
#endif
|
|
@ -0,0 +1,20 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
#ifndef __NVIF_PRINTF_H__
|
||||
#define __NVIF_PRINTF_H__
|
||||
#include <nvif/client.h>
|
||||
#include <nvif/parent.h>
|
||||
|
||||
#define NVIF_PRINT(l,o,f,a...) do { \
|
||||
struct nvif_object *_o = (o); \
|
||||
struct nvif_parent *_p = _o->parent; \
|
||||
_p->func->l(_o, "[%s/%08x:%s] "f"\n", _o->client->object.name, _o->handle, _o->name, ##a); \
|
||||
} while(0)
|
||||
|
||||
#ifndef NVIF_DEBUG_PRINT_DISABLE
|
||||
#define NVIF_DEBUG(o,f,a...) NVIF_PRINT(debugf, (o), f, ##a)
|
||||
#else
|
||||
#define NVIF_DEBUG(o,f,a...)
|
||||
#endif
|
||||
|
||||
#define NVIF_ERROR(o,f,a...) NVIF_PRINT(errorf, (o), f, ##a)
|
||||
#endif
|
|
@ -0,0 +1,359 @@
|
|||
/*
|
||||
* Copyright 2019 Red Hat Inc.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
#ifndef __NVIF_PUSH_H__
|
||||
#define __NVIF_PUSH_H__
|
||||
#include <nvif/mem.h>
|
||||
#include <nvif/printf.h>
|
||||
|
||||
#include <nvhw/drf.h>
|
||||
|
||||
struct nvif_push {
|
||||
int (*wait)(struct nvif_push *push, u32 size);
|
||||
void (*kick)(struct nvif_push *push);
|
||||
|
||||
struct nvif_mem mem;
|
||||
|
||||
u32 *bgn;
|
||||
u32 *cur;
|
||||
u32 *seg;
|
||||
u32 *end;
|
||||
};
|
||||
|
||||
static inline __must_check int
|
||||
PUSH_WAIT(struct nvif_push *push, u32 size)
|
||||
{
|
||||
if (push->cur + size >= push->end) {
|
||||
int ret = push->wait(push, size);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
#ifdef CONFIG_NOUVEAU_DEBUG_PUSH
|
||||
push->seg = push->cur + size;
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline int
|
||||
PUSH_KICK(struct nvif_push *push)
|
||||
{
|
||||
push->kick(push);
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_NOUVEAU_DEBUG_PUSH
|
||||
#define PUSH_PRINTF(p,f,a...) do { \
|
||||
struct nvif_push *_ppp = (p); \
|
||||
u32 __o = _ppp->cur - (u32 *)_ppp->mem.object.map.ptr; \
|
||||
NVIF_DEBUG(&_ppp->mem.object, "%08x: "f, __o * 4, ##a); \
|
||||
(void)__o; \
|
||||
} while(0)
|
||||
#define PUSH_ASSERT_ON(a,b) WARN((a), b)
|
||||
#else
|
||||
#define PUSH_PRINTF(p,f,a...)
|
||||
#define PUSH_ASSERT_ON(a, b)
|
||||
#endif
|
||||
|
||||
#define PUSH_ASSERT(a,b) do { \
|
||||
static_assert( \
|
||||
__builtin_choose_expr(__builtin_constant_p(a), (a), 1), b \
|
||||
); \
|
||||
PUSH_ASSERT_ON(!(a), b); \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_DATA__(p,d,f,a...) do { \
|
||||
struct nvif_push *_p = (p); \
|
||||
u32 _d = (d); \
|
||||
PUSH_ASSERT(_p->cur < _p->seg, "segment overrun"); \
|
||||
PUSH_ASSERT(_p->cur < _p->end, "pushbuf overrun"); \
|
||||
PUSH_PRINTF(_p, "%08x"f, _d, ##a); \
|
||||
*_p->cur++ = _d; \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_DATA_(X,p,m,i0,i1,d,s,f,a...) PUSH_DATA__((p), (d), "-> "#m f, ##a)
|
||||
#define PUSH_DATA(p,d) PUSH_DATA__((p), (d), " data - %s", __func__)
|
||||
|
||||
//XXX: error-check this against *real* pushbuffer end?
|
||||
#define PUSH_RSVD(p,d) do { \
|
||||
struct nvif_push *__p = (p); \
|
||||
__p->seg++; \
|
||||
__p->end++; \
|
||||
d; \
|
||||
} while(0)
|
||||
|
||||
#ifdef CONFIG_NOUVEAU_DEBUG_PUSH
|
||||
#define PUSH_DATAp(X,p,m,i,o,d,s,f,a...) do { \
|
||||
struct nvif_push *_pp = (p); \
|
||||
const u32 *_dd = (d); \
|
||||
u32 _s = (s), _i = (i?PUSH_##o##_INC); \
|
||||
if (_s--) { \
|
||||
PUSH_DATA_(X, _pp, X##m, i0, i1, *_dd++, 1, "+0x%x", 0); \
|
||||
while (_s--) { \
|
||||
PUSH_DATA_(X, _pp, X##m, i0, i1, *_dd++, 1, "+0x%x", _i); \
|
||||
_i += (0?PUSH_##o##_INC); \
|
||||
} \
|
||||
} \
|
||||
} while(0)
|
||||
#else
|
||||
#define PUSH_DATAp(X,p,m,i,o,d,s,f,a...) do { \
|
||||
struct nvif_push *_p = (p); \
|
||||
u32 _s = (s); \
|
||||
PUSH_ASSERT(_p->cur + _s <= _p->seg, "segment overrun"); \
|
||||
PUSH_ASSERT(_p->cur + _s <= _p->end, "pushbuf overrun"); \
|
||||
memcpy(_p->cur, (d), _s << 2); \
|
||||
_p->cur += _s; \
|
||||
} while(0)
|
||||
#endif
|
||||
|
||||
#define PUSH_1(X,f,ds,n,c,o,p,s,mA,dA) do { \
|
||||
PUSH_##o##_HDR((p), s, mA, (c)+(n)); \
|
||||
PUSH_##f(X, (p), X##mA, 1, o, (dA), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_2(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (1?PUSH_##o##_INC), "mthd1"); \
|
||||
PUSH_1(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_3(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd2"); \
|
||||
PUSH_2(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_4(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd3"); \
|
||||
PUSH_3(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_5(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd4"); \
|
||||
PUSH_4(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_6(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd5"); \
|
||||
PUSH_5(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_7(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd6"); \
|
||||
PUSH_6(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_8(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd7"); \
|
||||
PUSH_7(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_9(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd8"); \
|
||||
PUSH_8(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
#define PUSH_10(X,f,ds,n,c,o,p,s,mB,dB,mA,dA,a...) do { \
|
||||
PUSH_ASSERT((mB) - (mA) == (0?PUSH_##o##_INC), "mthd9"); \
|
||||
PUSH_9(X, DATA_, 1, ds, (c)+(n), o, (p), s, X##mA, (dA), ##a); \
|
||||
PUSH_##f(X, (p), X##mB, 0, o, (dB), ds, ""); \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_1D(X,o,p,s,mA,dA) \
|
||||
PUSH_1(X, DATA_, 1, 1, 0, o, (p), s, X##mA, (dA))
|
||||
#define PUSH_2D(X,o,p,s,mA,dA,mB,dB) \
|
||||
PUSH_2(X, DATA_, 1, 1, 0, o, (p), s, X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_3D(X,o,p,s,mA,dA,mB,dB,mC,dC) \
|
||||
PUSH_3(X, DATA_, 1, 1, 0, o, (p), s, X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_4D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD) \
|
||||
PUSH_4(X, DATA_, 1, 1, 0, o, (p), s, X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_5D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE) \
|
||||
PUSH_5(X, DATA_, 1, 1, 0, o, (p), s, X##mE, (dE), \
|
||||
X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_6D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF) \
|
||||
PUSH_6(X, DATA_, 1, 1, 0, o, (p), s, X##mF, (dF), \
|
||||
X##mE, (dE), \
|
||||
X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_7D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG) \
|
||||
PUSH_7(X, DATA_, 1, 1, 0, o, (p), s, X##mG, (dG), \
|
||||
X##mF, (dF), \
|
||||
X##mE, (dE), \
|
||||
X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_8D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG,mH,dH) \
|
||||
PUSH_8(X, DATA_, 1, 1, 0, o, (p), s, X##mH, (dH), \
|
||||
X##mG, (dG), \
|
||||
X##mF, (dF), \
|
||||
X##mE, (dE), \
|
||||
X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_9D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG,mH,dH,mI,dI) \
|
||||
PUSH_9(X, DATA_, 1, 1, 0, o, (p), s, X##mI, (dI), \
|
||||
X##mH, (dH), \
|
||||
X##mG, (dG), \
|
||||
X##mF, (dF), \
|
||||
X##mE, (dE), \
|
||||
X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_10D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG,mH,dH,mI,dI,mJ,dJ) \
|
||||
PUSH_10(X, DATA_, 1, 1, 0, o, (p), s, X##mJ, (dJ), \
|
||||
X##mI, (dI), \
|
||||
X##mH, (dH), \
|
||||
X##mG, (dG), \
|
||||
X##mF, (dF), \
|
||||
X##mE, (dE), \
|
||||
X##mD, (dD), \
|
||||
X##mC, (dC), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
|
||||
#define PUSH_1P(X,o,p,s,mA,dp,ds) \
|
||||
PUSH_1(X, DATAp, ds, ds, 0, o, (p), s, X##mA, (dp))
|
||||
#define PUSH_2P(X,o,p,s,mA,dA,mB,dp,ds) \
|
||||
PUSH_2(X, DATAp, ds, ds, 0, o, (p), s, X##mB, (dp), \
|
||||
X##mA, (dA))
|
||||
#define PUSH_3P(X,o,p,s,mA,dA,mB,dB,mC,dp,ds) \
|
||||
PUSH_3(X, DATAp, ds, ds, 0, o, (p), s, X##mC, (dp), \
|
||||
X##mB, (dB), \
|
||||
X##mA, (dA))
|
||||
|
||||
#define PUSH_(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,IMPL,...) IMPL
|
||||
#define PUSH(A...) PUSH_(A, PUSH_10P, PUSH_10D, \
|
||||
PUSH_9P , PUSH_9D, \
|
||||
PUSH_8P , PUSH_8D, \
|
||||
PUSH_7P , PUSH_7D, \
|
||||
PUSH_6P , PUSH_6D, \
|
||||
PUSH_5P , PUSH_5D, \
|
||||
PUSH_4P , PUSH_4D, \
|
||||
PUSH_3P , PUSH_3D, \
|
||||
PUSH_2P , PUSH_2D, \
|
||||
PUSH_1P , PUSH_1D)(, ##A)
|
||||
|
||||
#define PUSH_NVIM(p,c,m,d) do { \
|
||||
struct nvif_push *__p = (p); \
|
||||
u32 __d = (d); \
|
||||
PUSH_IMMD_HDR(__p, c, m, __d); \
|
||||
__p->cur--; \
|
||||
PUSH_PRINTF(__p, "%08x-> "#m, __d); \
|
||||
__p->cur++; \
|
||||
} while(0)
|
||||
#define PUSH_NVSQ(A...) PUSH(MTHD, ##A)
|
||||
#define PUSH_NV1I(A...) PUSH(1INC, ##A)
|
||||
#define PUSH_NVNI(A...) PUSH(NINC, ##A)
|
||||
|
||||
|
||||
#define PUSH_NV_1(X,o,p,c,mA,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,d)
|
||||
#define PUSH_NV_2(X,o,p,c,mA,dA,mB,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,d)
|
||||
#define PUSH_NV_3(X,o,p,c,mA,dA,mB,dB,mC,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,d)
|
||||
#define PUSH_NV_4(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,d)
|
||||
#define PUSH_NV_5(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,dD,mE,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,dD, \
|
||||
c##_##mE,d)
|
||||
#define PUSH_NV_6(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,dD, \
|
||||
c##_##mE,dE, \
|
||||
c##_##mF,d)
|
||||
#define PUSH_NV_7(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,dD, \
|
||||
c##_##mE,dE, \
|
||||
c##_##mF,dF, \
|
||||
c##_##mG,d)
|
||||
#define PUSH_NV_8(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG,mH,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,dD, \
|
||||
c##_##mE,dE, \
|
||||
c##_##mF,dF, \
|
||||
c##_##mG,dG, \
|
||||
c##_##mH,d)
|
||||
#define PUSH_NV_9(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG,mH,dH,mI,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,dD, \
|
||||
c##_##mE,dE, \
|
||||
c##_##mF,dF, \
|
||||
c##_##mG,dG, \
|
||||
c##_##mH,dH, \
|
||||
c##_##mI,d)
|
||||
#define PUSH_NV_10(X,o,p,c,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE,mF,dF,mG,dG,mH,dH,mI,dI,mJ,d...) \
|
||||
PUSH_##o(p,c,c##_##mA,dA, \
|
||||
c##_##mB,dB, \
|
||||
c##_##mC,dC, \
|
||||
c##_##mD,dD, \
|
||||
c##_##mE,dE, \
|
||||
c##_##mF,dF, \
|
||||
c##_##mG,dG, \
|
||||
c##_##mH,dH, \
|
||||
c##_##mI,dI, \
|
||||
c##_##mJ,d)
|
||||
|
||||
#define PUSH_NV_(A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,IMPL,...) IMPL
|
||||
#define PUSH_NV(A...) PUSH_NV_(A, PUSH_NV_10, PUSH_NV_10, \
|
||||
PUSH_NV_9 , PUSH_NV_9, \
|
||||
PUSH_NV_8 , PUSH_NV_8, \
|
||||
PUSH_NV_7 , PUSH_NV_7, \
|
||||
PUSH_NV_6 , PUSH_NV_6, \
|
||||
PUSH_NV_5 , PUSH_NV_5, \
|
||||
PUSH_NV_4 , PUSH_NV_4, \
|
||||
PUSH_NV_3 , PUSH_NV_3, \
|
||||
PUSH_NV_2 , PUSH_NV_2, \
|
||||
PUSH_NV_1 , PUSH_NV_1)(, ##A)
|
||||
|
||||
#define PUSH_IMMD(A...) PUSH_NV(NVIM, ##A)
|
||||
#define PUSH_MTHD(A...) PUSH_NV(NVSQ, ##A)
|
||||
#define PUSH_1INC(A...) PUSH_NV(NV1I, ##A)
|
||||
#define PUSH_NINC(A...) PUSH_NV(NVNI, ##A)
|
||||
#endif
|
|
@ -0,0 +1,73 @@
|
|||
#ifndef __NVIF_PUSH006C_H__
|
||||
#define __NVIF_PUSH006C_H__
|
||||
#include <nvif/push.h>
|
||||
|
||||
#include <nvhw/class/cl006c.h>
|
||||
|
||||
#ifndef PUSH006C_SUBC
|
||||
// Host methods
|
||||
#define PUSH006C_SUBC_NV06E 0
|
||||
#define PUSH006C_SUBC_NV176E 0
|
||||
#define PUSH006C_SUBC_NV826F 0
|
||||
|
||||
// ContextSurfaces2d
|
||||
#define PUSH006C_SUBC_NV042 0
|
||||
#define PUSH006C_SUBC_NV062 0
|
||||
|
||||
// ContextClipRectangle
|
||||
#define PUSH006C_SUBC_NV019 0
|
||||
|
||||
// ContextRop
|
||||
#define PUSH006C_SUBC_NV043 0
|
||||
|
||||
// ContextPattern
|
||||
#define PUSH006C_SUBC_NV044 0
|
||||
|
||||
// Misc dodginess...
|
||||
#define PUSH006C_SUBC_NV_SW 1
|
||||
|
||||
// ImageBlit
|
||||
#define PUSH006C_SUBC_NV05F 2
|
||||
#define PUSH006C_SUBC_NV09F 2
|
||||
|
||||
// GdiRectangleText
|
||||
#define PUSH006C_SUBC_NV04A 3
|
||||
|
||||
// Twod
|
||||
#define PUSH006C_SUBC_NV502D 3
|
||||
|
||||
// MemoryToMemoryFormat
|
||||
#define PUSH006C_SUBC_NV039 4
|
||||
#define PUSH006C_SUBC_NV5039 4
|
||||
|
||||
// DmaCopy
|
||||
#define PUSH006C_SUBC_NV85B5 4
|
||||
|
||||
// Cipher
|
||||
#define PUSH006C_SUBC_NV74C1 4
|
||||
#endif
|
||||
|
||||
#define PUSH_HDR(p,o,n,s,m,c) do { \
|
||||
PUSH_ASSERT(!((s) & ~DRF_MASK(NV06C_METHOD_SUBCHANNEL)), "subc"); \
|
||||
PUSH_ASSERT(!((m) & ~DRF_SMASK(NV06C_METHOD_ADDRESS)), "mthd"); \
|
||||
PUSH_ASSERT(!((c) & ~DRF_MASK(NV06C_METHOD_COUNT)), "count"); \
|
||||
PUSH_DATA__((p), NVVAL_X(NV06C_METHOD_ADDRESS, (m) >> 2) | \
|
||||
NVVAL_X(NV06C_METHOD_SUBCHANNEL, (s)) | \
|
||||
NVVAL_X(NV06C_METHOD_COUNT, (c)) | \
|
||||
NVVAL_X(NV06C_OPCODE, NV06C_OPCODE_##o), \
|
||||
" "n" subc %d mthd 0x%04x size %d - %s", \
|
||||
(u32)(s), (u32)(m), (u32)(c), __func__); \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_MTHD_HDR(p,c,m,n) PUSH_HDR(p, METHOD, "incr", PUSH006C_SUBC_##c, m, n)
|
||||
#define PUSH_MTHD_INC 4:4
|
||||
#define PUSH_NINC_HDR(p,c,m,n) PUSH_HDR(p, NONINC_METHOD, "ninc", PUSH006C_SUBC_##c, m, n)
|
||||
#define PUSH_NINC_INC 0:0
|
||||
|
||||
#define PUSH_JUMP(p,o) do { \
|
||||
PUSH_ASSERT(!((o) & ~0x1fffffffcULL), "offset"); \
|
||||
PUSH_DATA__((p), NVVAL_X(NV06C_OPCODE, NV06C_OPCODE_JUMP) | \
|
||||
NVVAL_X(NV06C_JUMP_OFFSET, (o) >> 2), \
|
||||
" jump 0x%08x - %s", (u32)(o), __func__); \
|
||||
} while(0)
|
||||
#endif
|
|
@ -0,0 +1,13 @@
|
|||
#ifndef __NVIF_PUSH206E_H__
|
||||
#define __NVIF_PUSH206E_H__
|
||||
#include <nvif/push006c.h>
|
||||
|
||||
#include <nvhw/class/cl206e.h>
|
||||
|
||||
#define PUSH_CALL(p,o) do { \
|
||||
PUSH_ASSERT(!((o) & ~0xffffffffcULL), "offset"); \
|
||||
PUSH_DATA__((p), NVDEF(NV206E, DMA, OPCODE2, CALL) | \
|
||||
NVVAL(NV206E, DMA, CALL_OFFSET, (o) >> 2), \
|
||||
" call 0x%08x - %s", (u32)(o), __func__); \
|
||||
} while(0)
|
||||
#endif
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef __NVIF_PUSH507C_H__
|
||||
#define __NVIF_PUSH507C_H__
|
||||
#include <nvif/push.h>
|
||||
|
||||
#include <nvhw/class/cl507c.h>
|
||||
|
||||
#define PUSH_HDR(p,m,c) do { \
|
||||
PUSH_ASSERT(!((m) & ~DRF_SMASK(NV507C_DMA_METHOD_OFFSET)), "mthd"); \
|
||||
PUSH_ASSERT(!((c) & ~DRF_MASK(NV507C_DMA_METHOD_COUNT)), "size"); \
|
||||
PUSH_DATA__((p), NVDEF(NV507C, DMA, OPCODE, METHOD) | \
|
||||
NVVAL(NV507C, DMA, METHOD_COUNT, (c)) | \
|
||||
NVVAL(NV507C, DMA, METHOD_OFFSET, (m) >> 2), \
|
||||
" mthd 0x%04x size %d - %s", (u32)(m), (u32)(c), __func__); \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_MTHD_HDR(p,s,m,c) PUSH_HDR(p,m,c)
|
||||
#define PUSH_MTHD_INC 4:4
|
||||
|
||||
#define PUSH_JUMP(p,o) do { \
|
||||
PUSH_ASSERT(!((o) & ~DRF_SMASK(NV507C_DMA_JUMP_OFFSET)), "offset"); \
|
||||
PUSH_DATA__((p), NVDEF(NV507C, DMA, OPCODE, JUMP) | \
|
||||
NVVAL(NV507C, DMA, JUMP_OFFSET, (o) >> 2), \
|
||||
"jump 0x%08x - %s", (u32)(o), __func__); \
|
||||
} while(0)
|
||||
#endif
|
|
@ -0,0 +1,48 @@
|
|||
#ifndef __NVIF_PUSH906F_H__
|
||||
#define __NVIF_PUSH906F_H__
|
||||
#include <nvif/push.h>
|
||||
|
||||
#include <nvhw/class/cl906f.h>
|
||||
|
||||
#ifndef PUSH906F_SUBC
|
||||
// Host methods
|
||||
#define PUSH906F_SUBC_NV906F 0
|
||||
|
||||
// Twod
|
||||
#define PUSH906F_SUBC_NV902D 3
|
||||
|
||||
// MemoryToMemoryFormat
|
||||
#define PUSH906F_SUBC_NV9039 4
|
||||
|
||||
// DmaCopy
|
||||
#define PUSH906F_SUBC_NV90B5 4
|
||||
#define PUSH906F_SUBC_NVA0B5 4
|
||||
#endif
|
||||
|
||||
#define PUSH_HDR(p,o,n,f,s,m,c) do { \
|
||||
PUSH_ASSERT(!((s) & ~DRF_MASK(NV906F_DMA_METHOD_SUBCHANNEL)), "subc"); \
|
||||
PUSH_ASSERT(!((m) & ~(DRF_MASK(NV906F_DMA_METHOD_ADDRESS) << 2)), "mthd"); \
|
||||
PUSH_ASSERT(!((c) & ~DRF_MASK(NV906F_DMA_METHOD_COUNT)), "count/immd"); \
|
||||
PUSH_DATA__((p), NVVAL(NV906F, DMA, METHOD_ADDRESS, (m) >> 2) | \
|
||||
NVVAL(NV906F, DMA, METHOD_SUBCHANNEL, (s)) | \
|
||||
NVVAL(NV906F, DMA, METHOD_COUNT, (c)) | \
|
||||
NVDEF(NV906F, DMA, SEC_OP, o), \
|
||||
" "n" subc %d mthd 0x%04x "f" - %s", \
|
||||
(u32)(s), (u32)(m), (u32)(c), __func__); \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_MTHD_INC 4:4
|
||||
#define PUSH_MTHD_HDR(p,c,m,n) \
|
||||
PUSH_HDR(p, INC_METHOD, "incr", "size %d", PUSH906F_SUBC_##c, m, n)
|
||||
|
||||
#define PUSH_NINC_INC 0:0
|
||||
#define PUSH_NINC_HDR(p,c,m,n) \
|
||||
PUSH_HDR(p, NON_INC_METHOD, "ninc", "size %d", PUSH906F_SUBC_##c, m, n)
|
||||
|
||||
#define PUSH_IMMD_HDR(p,c,m,n) \
|
||||
PUSH_HDR(p, IMMD_DATA_METHOD, "immd", "data 0x%04x", PUSH906F_SUBC_##c, m, n)
|
||||
|
||||
#define PUSH_1INC_INC 4:0
|
||||
#define PUSH_1INC_HDR(p,c,m,n) \
|
||||
PUSH_HDR(p, ONE_INC, "oinc", "size %d", PUSH906F_SUBC_##c, m, n)
|
||||
#endif
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef __NVIF_PUSHC37B_H__
|
||||
#define __NVIF_PUSHC37B_H__
|
||||
#include <nvif/push.h>
|
||||
|
||||
#include <nvhw/class/clc37b.h>
|
||||
|
||||
#define PUSH_HDR(p,m,c) do { \
|
||||
PUSH_ASSERT(!((m) & ~DRF_SMASK(NVC37B_DMA_METHOD_OFFSET)), "mthd"); \
|
||||
PUSH_ASSERT(!((c) & ~DRF_MASK(NVC37B_DMA_METHOD_COUNT)), "size"); \
|
||||
PUSH_DATA__((p), NVDEF(NVC37B, DMA, OPCODE, METHOD) | \
|
||||
NVVAL(NVC37B, DMA, METHOD_COUNT, (c)) | \
|
||||
NVVAL(NVC37B, DMA, METHOD_OFFSET, (m) >> 2), \
|
||||
" mthd 0x%04x size %d - %s", (u32)(m), (u32)(c), __func__); \
|
||||
} while(0)
|
||||
|
||||
#define PUSH_MTHD_HDR(p,s,m,c) PUSH_HDR(p,m,c)
|
||||
#define PUSH_MTHD_INC 4:4
|
||||
#endif
|
|
@ -13,8 +13,8 @@ struct nvif_user_func {
|
|||
u64 (*time)(struct nvif_user *);
|
||||
};
|
||||
|
||||
int nvif_user_init(struct nvif_device *);
|
||||
void nvif_user_fini(struct nvif_device *);
|
||||
int nvif_user_ctor(struct nvif_device *, const char *name);
|
||||
void nvif_user_dtor(struct nvif_device *);
|
||||
|
||||
extern const struct nvif_user_func nvif_userc361;
|
||||
#endif
|
||||
|
|
|
@ -30,9 +30,9 @@ struct nvif_vmm {
|
|||
int page_nr;
|
||||
};
|
||||
|
||||
int nvif_vmm_init(struct nvif_mmu *, s32 oclass, bool managed, u64 addr,
|
||||
u64 size, void *argv, u32 argc, struct nvif_vmm *);
|
||||
void nvif_vmm_fini(struct nvif_vmm *);
|
||||
int nvif_vmm_ctor(struct nvif_mmu *, const char *name, s32 oclass, bool managed,
|
||||
u64 addr, u64 size, void *argv, u32 argc, struct nvif_vmm *);
|
||||
void nvif_vmm_dtor(struct nvif_vmm *);
|
||||
int nvif_vmm_get(struct nvif_vmm *, enum nvif_vmm_get, bool sparse,
|
||||
u8 page, u8 align, u64 size, struct nvif_vma *);
|
||||
void nvif_vmm_put(struct nvif_vmm *, struct nvif_vma *);
|
||||
|
|
|
@ -31,21 +31,21 @@ int gp102_sec2_flcn_enable(struct nvkm_falcon *);
|
|||
#define FLCN_ERR(f,fmt,a...) FLCN_PRINTK(error, (f), fmt, ##a)
|
||||
|
||||
/**
|
||||
* struct nv_falcon_msg - header for all messages
|
||||
* struct nvfw_falcon_msg - header for all messages
|
||||
*
|
||||
* @unit_id: id of firmware process that sent the message
|
||||
* @size: total size of message
|
||||
* @ctrl_flags: control flags
|
||||
* @seq_id: used to match a message from its corresponding command
|
||||
*/
|
||||
struct nv_falcon_msg {
|
||||
struct nvfw_falcon_msg {
|
||||
u8 unit_id;
|
||||
u8 size;
|
||||
u8 ctrl_flags;
|
||||
u8 seq_id;
|
||||
};
|
||||
|
||||
#define nv_falcon_cmd nv_falcon_msg
|
||||
#define nvfw_falcon_cmd nvfw_falcon_msg
|
||||
#define NV_FALCON_CMD_UNIT_ID_REWIND 0x00
|
||||
|
||||
struct nvkm_falcon_qmgr;
|
||||
|
@ -53,7 +53,7 @@ int nvkm_falcon_qmgr_new(struct nvkm_falcon *, struct nvkm_falcon_qmgr **);
|
|||
void nvkm_falcon_qmgr_del(struct nvkm_falcon_qmgr **);
|
||||
|
||||
typedef int
|
||||
(*nvkm_falcon_qmgr_callback)(void *priv, struct nv_falcon_msg *);
|
||||
(*nvkm_falcon_qmgr_callback)(void *priv, struct nvfw_falcon_msg *);
|
||||
|
||||
struct nvkm_falcon_cmdq;
|
||||
int nvkm_falcon_cmdq_new(struct nvkm_falcon_qmgr *, const char *name,
|
||||
|
@ -62,7 +62,7 @@ void nvkm_falcon_cmdq_del(struct nvkm_falcon_cmdq **);
|
|||
void nvkm_falcon_cmdq_init(struct nvkm_falcon_cmdq *,
|
||||
u32 index, u32 offset, u32 size);
|
||||
void nvkm_falcon_cmdq_fini(struct nvkm_falcon_cmdq *);
|
||||
int nvkm_falcon_cmdq_send(struct nvkm_falcon_cmdq *, struct nv_falcon_cmd *,
|
||||
int nvkm_falcon_cmdq_send(struct nvkm_falcon_cmdq *, struct nvfw_falcon_cmd *,
|
||||
nvkm_falcon_qmgr_callback, void *priv,
|
||||
unsigned long timeout_jiffies);
|
||||
|
||||
|
|
|
@ -45,11 +45,8 @@ int nvkm_firmware_load_name(const struct nvkm_subdev *subdev, const char *path,
|
|||
} \
|
||||
} \
|
||||
\
|
||||
if (_ret) { \
|
||||
nvkm_error(_s, "failed to load firmware\n"); \
|
||||
if (_ret) \
|
||||
_fwif = ERR_PTR(_ret); \
|
||||
} \
|
||||
\
|
||||
_fwif; \
|
||||
})
|
||||
#endif
|
||||
|
|
|
@ -39,6 +39,8 @@ struct nvkm_acr {
|
|||
struct list_head hsfw, hsf;
|
||||
struct list_head lsfw, lsf;
|
||||
|
||||
u64 managed_falcons;
|
||||
|
||||
struct nvkm_memory *wpr;
|
||||
u64 wpr_start;
|
||||
u64 wpr_end;
|
||||
|
@ -107,6 +109,7 @@ struct nvkm_acr_lsf_func {
|
|||
void (*bld_write)(struct nvkm_acr *, u32 bld, struct nvkm_acr_lsfw *);
|
||||
void (*bld_patch)(struct nvkm_acr *, u32 bld, s64 adjust);
|
||||
int (*boot)(struct nvkm_falcon *);
|
||||
u64 bootstrap_falcons;
|
||||
int (*bootstrap_falcon)(struct nvkm_falcon *, enum nvkm_acr_lsf_id);
|
||||
int (*bootstrap_multiple_falcons)(struct nvkm_falcon *, u32 mask);
|
||||
};
|
||||
|
|
|
@ -47,8 +47,8 @@ int gk110_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
|||
int gk208_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gk20a_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gm107_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gm200_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gm20b_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gp100_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gp102_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
int gp10b_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue