| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- /*
- * Copyright © 2018 NVIDIA Corporation
- *
- * 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.
- */
- #include <errno.h>
- #include <string.h>
- #include "private.h"
- #include "tegra.h"
- #include "vic.h"
- #include "vic42.h"
- struct vic42 {
- struct vic base;
- struct {
- struct drm_tegra_mapping *map;
- struct drm_tegra_bo *bo;
- } config;
- struct {
- struct drm_tegra_mapping *map;
- struct drm_tegra_bo *bo;
- } filter;
- };
- static int vic42_fill(struct vic *v, struct vic_image *output,
- unsigned int left, unsigned int top,
- unsigned int right, unsigned int bottom,
- unsigned int alpha, unsigned int red,
- unsigned int green, unsigned int blue)
- {
- struct vic42 *vic = container_of(v, struct vic42, base);
- ConfigStruct *c;
- int err;
- err = drm_tegra_bo_map(vic->config.bo, (void **)&c);
- if (err < 0) {
- fprintf(stderr, "failed to map configuration structure: %s\n",
- strerror(-err));
- return err;
- }
- memset(c, 0, sizeof(*c));
- c->outputConfig.TargetRectTop = top;
- c->outputConfig.TargetRectLeft = left;
- c->outputConfig.TargetRectRight = right;
- c->outputConfig.TargetRectBottom = bottom;
- c->outputConfig.BackgroundAlpha = alpha;
- c->outputConfig.BackgroundR = red;
- c->outputConfig.BackgroundG = green;
- c->outputConfig.BackgroundB = blue;
- c->outputSurfaceConfig.OutPixelFormat = output->format;
- c->outputSurfaceConfig.OutBlkKind = output->kind;
- c->outputSurfaceConfig.OutBlkHeight = 0;
- c->outputSurfaceConfig.OutSurfaceWidth = output->width - 1;
- c->outputSurfaceConfig.OutSurfaceHeight = output->height - 1;
- c->outputSurfaceConfig.OutLumaWidth = output->stride - 1;
- c->outputSurfaceConfig.OutLumaHeight = output->height - 1;
- c->outputSurfaceConfig.OutChromaWidth = 16383;
- c->outputSurfaceConfig.OutChromaHeight = 16383;
- drm_tegra_bo_unmap(vic->config.bo);
- return 0;
- }
- static int vic42_blit(struct vic *v, struct vic_image *output,
- struct vic_image *input)
- {
- struct vic42 *vic = container_of(v, struct vic42, base);
- SlotSurfaceConfig *surface;
- SlotConfig *slot;
- ConfigStruct *c;
- int err;
- err = drm_tegra_bo_map(vic->config.bo, (void **)&c);
- if (err < 0) {
- fprintf(stderr, "failed to map configuration structure: %s\n",
- strerror(-err));
- return err;
- }
- memset(c, 0, sizeof(*c));
- c->outputConfig.TargetRectTop = 0;
- c->outputConfig.TargetRectLeft = 0;
- c->outputConfig.TargetRectRight = output->width - 1;
- c->outputConfig.TargetRectBottom = output->height - 1;
- c->outputConfig.BackgroundAlpha = 255;
- c->outputConfig.BackgroundR = 1023;
- c->outputConfig.BackgroundG = 1023;
- c->outputConfig.BackgroundB = 1023;
- c->outputSurfaceConfig.OutPixelFormat = output->format;
- c->outputSurfaceConfig.OutBlkKind = output->kind;
- c->outputSurfaceConfig.OutBlkHeight = 0;
- c->outputSurfaceConfig.OutSurfaceWidth = output->width - 1;
- c->outputSurfaceConfig.OutSurfaceHeight = output->height - 1;
- c->outputSurfaceConfig.OutLumaWidth = output->stride - 1;
- c->outputSurfaceConfig.OutLumaHeight = output->height - 1;
- c->outputSurfaceConfig.OutChromaWidth = 16383;
- c->outputSurfaceConfig.OutChromaHeight = 16383;
- slot = &c->slotStruct[0].slotConfig;
- slot->SlotEnable = 1;
- slot->CurrentFieldEnable = 1;
- slot->PlanarAlpha = 255;
- slot->ConstantAlpha = 1;
- slot->SourceRectLeft = 0 << 16;
- slot->SourceRectRight = (input->width - 1) << 16;
- slot->SourceRectTop = 0 << 16;
- slot->SourceRectBottom = (input->height - 1) << 16;
- slot->DestRectLeft = 0;
- slot->DestRectRight = output->width - 1;
- slot->DestRectTop = 0;
- slot->DestRectBottom = output->height - 1;
- slot->SoftClampHigh = 1023;
- surface = &c->slotStruct[0].slotSurfaceConfig;
- surface->SlotPixelFormat = input->format;
- surface->SlotBlkKind = input->kind;
- surface->SlotBlkHeight = 0; /* XXX */
- surface->SlotCacheWidth = VIC_CACHE_WIDTH_64Bx4; /* XXX */
- surface->SlotSurfaceWidth = input->width - 1;
- surface->SlotSurfaceHeight = input->height - 1;
- surface->SlotLumaWidth = input->stride - 1;
- surface->SlotLumaHeight = input->height - 1;
- surface->SlotChromaWidth = 16383;
- surface->SlotChromaHeight = 16383;
- drm_tegra_bo_unmap(vic->config.bo);
- return 0;
- }
- static int vic42_flip(struct vic *v, struct vic_image *output,
- struct vic_image *input)
- {
- struct vic42 *vic = container_of(v, struct vic42, base);
- SlotSurfaceConfig *surface;
- SlotConfig *slot;
- ConfigStruct *c;
- int err;
- err = drm_tegra_bo_map(vic->config.bo, (void **)&c);
- if (err < 0) {
- fprintf(stderr, "failed to map configuration structure: %s\n",
- strerror(-err));
- return err;
- }
- memset(c, 0, sizeof(*c));
- c->outputConfig.TargetRectTop = 0;
- c->outputConfig.TargetRectLeft = 0;
- c->outputConfig.TargetRectRight = output->width - 1;
- c->outputConfig.TargetRectBottom = output->height - 1;
- c->outputConfig.BackgroundAlpha = 255;
- c->outputConfig.BackgroundR = 1023;
- c->outputConfig.BackgroundG = 1023;
- c->outputConfig.BackgroundB = 1023;
- c->outputConfig.OutputFlipY = 1;
- c->outputSurfaceConfig.OutPixelFormat = output->format;
- c->outputSurfaceConfig.OutBlkKind = output->kind;
- c->outputSurfaceConfig.OutBlkHeight = 0;
- c->outputSurfaceConfig.OutSurfaceWidth = output->width - 1;
- c->outputSurfaceConfig.OutSurfaceHeight = output->height - 1;
- c->outputSurfaceConfig.OutLumaWidth = output->stride - 1;
- c->outputSurfaceConfig.OutLumaHeight = output->height - 1;
- c->outputSurfaceConfig.OutChromaWidth = 16383;
- c->outputSurfaceConfig.OutChromaHeight = 16383;
- slot = &c->slotStruct[0].slotConfig;
- slot->SlotEnable = 1;
- slot->CurrentFieldEnable = 1;
- slot->PlanarAlpha = 255;
- slot->ConstantAlpha = 1;
- slot->SourceRectLeft = 0 << 16;
- slot->SourceRectRight = (input->width - 1) << 16;
- slot->SourceRectTop = 0 << 16;
- slot->SourceRectBottom = (input->height - 1) << 16;
- slot->DestRectLeft = 0;
- slot->DestRectRight = output->width - 1;
- slot->DestRectTop = 0;
- slot->DestRectBottom = output->height - 1;
- slot->SoftClampHigh = 1023;
- surface = &c->slotStruct[0].slotSurfaceConfig;
- surface->SlotPixelFormat = input->format;
- surface->SlotBlkKind = input->kind;
- surface->SlotBlkHeight = 0; /* XXX */
- surface->SlotCacheWidth = VIC_CACHE_WIDTH_64Bx4; /* XXX */
- surface->SlotSurfaceWidth = input->width - 1;
- surface->SlotSurfaceHeight = input->height - 1;
- surface->SlotLumaWidth = input->stride - 1;
- surface->SlotLumaHeight = input->height - 1;
- surface->SlotChromaWidth = 16383;
- surface->SlotChromaHeight = 16383;
- drm_tegra_bo_unmap(vic->config.bo);
- return 0;
- }
- static int vic42_execute(struct vic *v, struct drm_tegra_pushbuf *pushbuf,
- uint32_t **ptrp, struct vic_image *output,
- struct vic_image **inputs, unsigned int num_inputs)
- {
- struct vic42 *vic = container_of(v, struct vic42, base);
- unsigned int i;
- if (num_inputs > 1)
- return -EINVAL;
- VIC_PUSH_METHOD(pushbuf, ptrp, NVC5B6_VIDEO_COMPOSITOR_SET_APPLICATION_ID, 1);
- VIC_PUSH_METHOD(pushbuf, ptrp, NVC5B6_VIDEO_COMPOSITOR_SET_CONTROL_PARAMS, (sizeof(ConfigStruct) / 16) << 16);
- VIC_PUSH_BUFFER(pushbuf, ptrp, NVC5B6_VIDEO_COMPOSITOR_SET_CONFIG_STRUCT_OFFSET, vic->config.map, 0, 0);
- VIC_PUSH_BUFFER(pushbuf, ptrp, NVC5B6_VIDEO_COMPOSITOR_SET_FILTER_STRUCT_OFFSET, vic->filter.map, 0, 0);
- VIC_PUSH_BUFFER(pushbuf, ptrp, NVC5B6_VIDEO_COMPOSITOR_SET_OUTPUT_SURFACE_LUMA_OFFSET, output->map, 0, 0);
- for (i = 0; i < num_inputs; i++) {
- uint32_t method = NVC5B6_VIDEO_COMPOSITOR_SET_SURFACE0_LUMA_OFFSET(0) + (i * 3) * 4;
- VIC_PUSH_BUFFER(pushbuf, ptrp, method, inputs[i]->map, 0, 0);
- }
- VIC_PUSH_METHOD(pushbuf, ptrp, NVC5B6_VIDEO_COMPOSITOR_EXECUTE, 1 << 8);
- return 0;
- }
- static void vic42_free(struct vic *v)
- {
- struct vic42 *vic = container_of(v, struct vic42, base);
- drm_tegra_channel_unmap(vic->filter.map);
- drm_tegra_bo_unref(vic->filter.bo);
- drm_tegra_channel_unmap(vic->config.map);
- drm_tegra_bo_unref(vic->config.bo);
- drm_tegra_syncpoint_free(v->syncpt);
- free(vic);
- }
- static const struct vic_ops vic42_ops = {
- .fill = vic42_fill,
- .blit = vic42_blit,
- .flip = vic42_flip,
- .execute = vic42_execute,
- .free = vic42_free,
- };
- int vic42_new(struct drm_tegra *drm, struct drm_tegra_channel *channel,
- struct vic **vicp)
- {
- struct vic42 *vic;
- void *ptr;
- int err;
- vic = calloc(1, sizeof(*vic));
- if (!vic)
- return -ENOMEM;
- vic->base.drm = drm;
- vic->base.channel = channel;
- vic->base.ops = &vic42_ops;
- vic->base.version = 0x19;
- err = drm_tegra_syncpoint_new(drm, &vic->base.syncpt);
- if (err < 0) {
- fprintf(stderr, "failed to allocate syncpoint: %s\n", strerror(-err));
- return err;
- }
- err = drm_tegra_bo_new(drm, 0, 16384, &vic->config.bo);
- if (err < 0) {
- fprintf(stderr, "failed to allocate configuration structurer: %s\n",
- strerror(-err));
- return err;
- }
- err = drm_tegra_channel_map(channel, vic->config.bo, DRM_TEGRA_CHANNEL_MAP_READ,
- &vic->config.map);
- if (err < 0) {
- fprintf(stderr, "failed to map configuration structure: %s\n",
- strerror(-err));
- return err;
- }
- err = drm_tegra_bo_new(drm, 0, 16384, &vic->filter.bo);
- if (err < 0) {
- fprintf(stderr, "failed to allocate filter buffer: %s\n",
- strerror(-err));
- return err;
- }
- err = drm_tegra_bo_map(vic->filter.bo, &ptr);
- if (err < 0) {
- fprintf(stderr, "failed to map filter buffer: %s\n", strerror(-err));
- return err;
- }
- memset(ptr, 0, 16384);
- drm_tegra_bo_unmap(vic->filter.bo);
- err = drm_tegra_channel_map(channel, vic->filter.bo, DRM_TEGRA_CHANNEL_MAP_READ,
- &vic->filter.map);
- if (err < 0) {
- fprintf(stderr, "failed to map filter buffer: %s\n",
- strerror(-err));
- return err;
- }
- if (vicp)
- *vicp = &vic->base;
- return 0;
- }
|