2019-10-23 16:43:45 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* boards/arm/cxd56xx/common/src/cxd56_imageproc.c
|
|
|
|
*
|
|
|
|
* Copyright 2018 Sony Semiconductor Solutions Corporation
|
|
|
|
* Copyright 2018 Sony Corporation
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name of Sony Corporation nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <nuttx/arch.h>
|
|
|
|
#include <nuttx/board.h>
|
2020-02-01 08:17:32 +01:00
|
|
|
#include <nuttx/semaphore.h>
|
2019-10-23 16:43:45 +02:00
|
|
|
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <arch/chip/ge2d.h>
|
|
|
|
#include <arch/board/cxd56_imageproc.h>
|
|
|
|
|
|
|
|
#include "chip.h"
|
2020-05-01 03:20:29 +02:00
|
|
|
#include "arm_arch.h"
|
2019-10-23 16:43:45 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_IMAGEPROC_GEDEVNAME
|
|
|
|
#define GEDEVNAME CONFIG_IMAGEPROC_GEDEVNAME
|
|
|
|
#else
|
|
|
|
#define GEDEVNAME "/dev/ge"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CXD56_ROT_BASE (CXD56_ADSP_BASE + 0x02101400)
|
|
|
|
#define ROT_INTR_STATUS (CXD56_ROT_BASE + 0x0000)
|
|
|
|
#define ROT_INTR_ENABLE (CXD56_ROT_BASE + 0x0004)
|
|
|
|
#define ROT_INTR_DISABLE (CXD56_ROT_BASE + 0x0008)
|
|
|
|
#define ROT_INTR_CLEAR (CXD56_ROT_BASE + 0x000C)
|
|
|
|
#define ROT_SET_DIRECTION (CXD56_ROT_BASE + 0x0014)
|
|
|
|
#define ROT_SET_SRC_HSIZE (CXD56_ROT_BASE + 0x0018)
|
|
|
|
#define ROT_SET_SRC_VSIZE (CXD56_ROT_BASE + 0x001C)
|
|
|
|
#define ROT_SET_SRC_ADDRESS (CXD56_ROT_BASE + 0x0020)
|
|
|
|
#define ROT_SET_SRC_PITCH (CXD56_ROT_BASE + 0x0024)
|
|
|
|
#define ROT_SET_DST_ADDRESS (CXD56_ROT_BASE + 0x0028)
|
|
|
|
#define ROT_SET_DST_PITCH (CXD56_ROT_BASE + 0x002C)
|
|
|
|
#define ROT_CONV_CTRL (CXD56_ROT_BASE + 0x0034)
|
|
|
|
#define ROT_RGB_ALIGNMENT (CXD56_ROT_BASE + 0x0038)
|
|
|
|
#define ROT_COMMAND (CXD56_ROT_BASE + 0x0010)
|
|
|
|
|
|
|
|
#define MSEL 1
|
|
|
|
|
|
|
|
/* limit size */
|
|
|
|
|
|
|
|
#define HSIZE_MIN (12)
|
|
|
|
#define VSIZE_MIN (12)
|
|
|
|
#define HSIZE_MAX (4096) /* Not used scaler(ISE) */
|
|
|
|
#define VSIZE_MAX (4096) /* Not used scaler(ISE) */
|
|
|
|
#define ISE_SRC_HSIZE_MAX (2880)
|
|
|
|
#define ISE_SRC_VSIZE_MAX (2160)
|
|
|
|
#define ISE_DST_HSIZE_MAX (768)
|
|
|
|
#define ISE_DST_VSIZE_MAX (1024)
|
|
|
|
#define MAX_RATIO (64)
|
|
|
|
|
|
|
|
/* Command code */
|
|
|
|
|
|
|
|
#define COPYCMD 0x4
|
|
|
|
#define ROPCMD 0x8
|
|
|
|
#define ABCMD 0xa
|
|
|
|
|
|
|
|
/* Command options */
|
|
|
|
|
|
|
|
#define SRC16BPP (1 << 10)
|
|
|
|
#define SCALING (1 << 12)
|
|
|
|
#define PATMONO (1 << 15)
|
|
|
|
|
|
|
|
/* Raster operation code */
|
|
|
|
|
|
|
|
#define SRCCOPY 0xcc
|
|
|
|
#define SRCPAINT 0xee
|
|
|
|
#define SRCAND 0x88
|
|
|
|
#define SRCINVERT 0x66
|
|
|
|
#define SRCERASE 0x44
|
|
|
|
#define NOTSRCCOPY 0x33
|
|
|
|
#define NOTSRCERASE 0x11
|
|
|
|
#define MARGECOPY 0xc0
|
|
|
|
#define MERGEPAINT 0xbb
|
|
|
|
#define PATCOPY 0xf0
|
|
|
|
#define PATPAINT 0xfb
|
|
|
|
#define PATINVERT 0x5a
|
|
|
|
#define DSTINVERT 0x55
|
|
|
|
|
|
|
|
/* Raster operation options */
|
|
|
|
|
|
|
|
#define CONV8BPP (1 << 7)
|
|
|
|
#define FIXEDCOLOR (1 << 3)
|
|
|
|
#define CMPDST (3 << 1)
|
|
|
|
#define CMPSRC (2 << 1)
|
|
|
|
#define CMPPAT (1 << 1)
|
|
|
|
#define WBUNMATCHED (1 << 0)
|
|
|
|
|
|
|
|
/* Alpha blending options */
|
|
|
|
|
|
|
|
#define ALPHA1BPP (1 << 15)
|
|
|
|
#define FIXEDSRC (1 << 14)
|
|
|
|
#define MSBFIRST (1 << 13)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Copy command (32 bytes) */
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
struct __attribute__ ((aligned(16))) ge2d_copycmd_s
|
|
|
|
{
|
|
|
|
uint32_t cmd; /* 0x00 */
|
|
|
|
uint16_t srch; /* 0x04 */
|
|
|
|
uint16_t srcv; /* 0x06 */
|
|
|
|
uint32_t saddr; /* 0x08 */
|
|
|
|
uint32_t daddr; /* 0x0c */
|
|
|
|
uint16_t spitch; /* 0x10 */
|
|
|
|
uint16_t dpitch; /* 0x12 */
|
|
|
|
uint32_t reserved[3];
|
|
|
|
};
|
2019-10-23 16:43:45 +02:00
|
|
|
|
|
|
|
/* Raster operation (ROP) command (48 bytes) */
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
struct __attribute__ ((aligned(16))) ge2d_ropcmd_s
|
|
|
|
{
|
|
|
|
uint16_t cmd; /* 0x00 */
|
|
|
|
uint8_t rop; /* 0x02 */
|
|
|
|
uint8_t options; /* 0x03 */
|
|
|
|
uint16_t srch; /* 0x04 */
|
|
|
|
uint16_t srcv; /* 0x06 */
|
|
|
|
uint32_t saddr; /* 0x08 */
|
|
|
|
uint32_t daddr; /* 0x0c */
|
|
|
|
uint16_t spitch; /* 0x10 */
|
|
|
|
uint16_t dpitch; /* 0x12 */
|
|
|
|
|
|
|
|
uint32_t fixedcolor; /* 0x14 */
|
|
|
|
uint32_t pataddr; /* 0x18 */
|
|
|
|
uint16_t patpitch; /* 0x1c */
|
|
|
|
uint8_t pathoffset; /* 0x1e */
|
|
|
|
uint8_t patvoffset; /* 0x1f */
|
|
|
|
|
|
|
|
uint16_t desth; /* 0x20 */
|
|
|
|
uint16_t destv; /* 0x22 */
|
|
|
|
uint16_t ratioh; /* 0x24 */
|
|
|
|
uint16_t ratiov; /* 0x26 */
|
|
|
|
|
|
|
|
uint8_t hphaseinit; /* 0x28 */
|
|
|
|
uint8_t hphaseoffset; /* 0x29: must be 0 */
|
|
|
|
uint8_t vphaseinit; /* 0x2a */
|
|
|
|
uint8_t vphaseoffset; /* 0x2b: must be 0 */
|
|
|
|
|
|
|
|
uint32_t intpmode; /* 0x2c: interpolation mode */
|
|
|
|
};
|
2019-10-23 16:43:45 +02:00
|
|
|
|
|
|
|
/* Alpha blending (AB) command (32 bytes) */
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
struct __attribute__ ((aligned(16))) ge2d_abcmd_s
|
|
|
|
{
|
|
|
|
uint16_t cmd; /* 0x00 */
|
|
|
|
uint16_t mode; /* 0x02 */
|
|
|
|
uint16_t srch; /* 0x04 */
|
|
|
|
uint16_t srcv; /* 0x06 */
|
|
|
|
uint32_t saddr; /* 0x08 */
|
|
|
|
uint32_t daddr; /* 0x0c */
|
|
|
|
uint16_t spitch; /* 0x10 */
|
|
|
|
uint16_t dpitch; /* 0x12 */
|
|
|
|
|
|
|
|
uint32_t fixedsrc; /* 0x14 */
|
|
|
|
uint32_t aaddr; /* 0x18 */
|
|
|
|
uint16_t apitch; /* 0x1c */
|
|
|
|
uint16_t reserved;
|
|
|
|
};
|
2019-10-23 16:43:45 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static sem_t g_rotwait;
|
|
|
|
static sem_t g_rotexc;
|
|
|
|
static sem_t g_geexc;
|
|
|
|
|
|
|
|
static int g_gfd = -1;
|
|
|
|
static char g_gcmdbuf[256] __attribute__ ((aligned(16)));
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static int ip_semtake(sem_t * id)
|
|
|
|
{
|
2020-01-02 17:49:34 +01:00
|
|
|
return nxsem_wait_uninterruptible(id);
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ip_semgive(sem_t * id)
|
|
|
|
{
|
2020-01-02 17:49:34 +01:00
|
|
|
nxsem_post(id);
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
static int intr_handler_rot(int irq, FAR void *context, FAR void *arg)
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
putreg32(1, ROT_INTR_CLEAR);
|
|
|
|
putreg32(0, ROT_INTR_ENABLE);
|
|
|
|
putreg32(1, ROT_INTR_DISABLE);
|
|
|
|
|
|
|
|
ip_semgive(&g_rotwait);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ratio_check(uint16_t src, uint16_t dest)
|
|
|
|
{
|
|
|
|
uint16_t ratio = 1;
|
|
|
|
|
|
|
|
if (src > dest)
|
|
|
|
{
|
|
|
|
ratio = src / dest;
|
|
|
|
}
|
|
|
|
else if (src < dest)
|
|
|
|
{
|
|
|
|
ratio = dest / src;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ratio > MAX_RATIO)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t calc_ratio(uint16_t src, uint16_t dest)
|
|
|
|
{
|
|
|
|
uint16_t r;
|
|
|
|
|
|
|
|
if (src > dest)
|
|
|
|
{
|
|
|
|
r = src / dest;
|
|
|
|
if (r == 2 || r == 4 || r == 8 || r == 16 || r == 32 || r == 64)
|
|
|
|
{
|
|
|
|
return 256 * r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (src < dest)
|
|
|
|
{
|
|
|
|
r = dest / src;
|
|
|
|
if (r == 2 || r == 4 || r == 8 || r == 16 || r == 32 || r == 64)
|
|
|
|
{
|
|
|
|
return 256 / r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 256;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
static void *set_rop_cmd(void *cmdbuf,
|
|
|
|
void *srcaddr,
|
|
|
|
void *destaddr,
|
|
|
|
uint16_t srcwidth,
|
|
|
|
uint16_t srcheight,
|
|
|
|
uint16_t srcpitch,
|
|
|
|
uint16_t destwidth,
|
|
|
|
uint16_t destheight,
|
|
|
|
uint16_t destpitch,
|
|
|
|
uint8_t bpp,
|
|
|
|
uint8_t rop,
|
|
|
|
uint8_t options,
|
|
|
|
uint16_t patcolor)
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
struct ge2d_ropcmd_s *rc = (struct ge2d_ropcmd_s *)cmdbuf;
|
|
|
|
uint16_t rv;
|
|
|
|
uint16_t rh;
|
|
|
|
uint16_t cmd = ROPCMD;
|
|
|
|
|
|
|
|
if (((uintptr_t) srcaddr & 1) || ((uintptr_t) destaddr & 1))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (srcwidth & 1 || destwidth & 1)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = calc_ratio(srcheight, destheight);
|
|
|
|
if (rv == 0)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2020-04-17 12:00:02 +02:00
|
|
|
|
2019-10-23 16:43:45 +02:00
|
|
|
rh = calc_ratio(srcwidth, destwidth);
|
|
|
|
if (rh == 0)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If ratio is not 256 (x1), then set scaling bit. */
|
|
|
|
|
|
|
|
if (rv != 256 || rh != 256 || options & CONV8BPP)
|
|
|
|
{
|
|
|
|
cmd |= SCALING;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(rc, 0, sizeof(struct ge2d_ropcmd_s));
|
|
|
|
|
|
|
|
if (bpp == 16)
|
|
|
|
{
|
|
|
|
cmd |= SRC16BPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc->cmd = cmd;
|
|
|
|
rc->rop = rop;
|
|
|
|
rc->options = options;
|
|
|
|
rc->fixedcolor = patcolor;
|
|
|
|
rc->srch = srcwidth - 1;
|
|
|
|
rc->srcv = srcheight - 1;
|
|
|
|
rc->saddr = (uint32_t) (uintptr_t) srcaddr | MSEL;
|
|
|
|
rc->daddr = (uint32_t) (uintptr_t) destaddr | MSEL;
|
|
|
|
rc->spitch = srcpitch - 1;
|
|
|
|
rc->dpitch = destpitch - 1;
|
|
|
|
rc->desth = destwidth - 1;
|
|
|
|
rc->destv = destheight - 1;
|
|
|
|
rc->ratiov = rv - 1;
|
|
|
|
rc->ratioh = rh - 1;
|
|
|
|
rc->hphaseinit = 1;
|
|
|
|
rc->vphaseinit = 1;
|
|
|
|
rc->intpmode = 0; /* XXX: HV Linear interpolation */
|
|
|
|
|
|
|
|
/* return next command area */
|
|
|
|
|
|
|
|
return (void *)((uintptr_t) cmdbuf + sizeof(struct ge2d_ropcmd_s));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *set_halt_cmd(void *cmdbuf)
|
|
|
|
{
|
|
|
|
memset(cmdbuf, 0, 16);
|
|
|
|
return (void *)((uintptr_t) cmdbuf + 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void imageproc_initialize(void)
|
|
|
|
{
|
2020-01-02 17:49:34 +01:00
|
|
|
nxsem_init(&g_rotexc, 0, 1);
|
|
|
|
nxsem_init(&g_rotwait, 0, 0);
|
|
|
|
nxsem_init(&g_geexc, 0, 1);
|
2020-05-17 15:56:21 +02:00
|
|
|
nxsem_set_protocol(&g_rotwait, SEM_PRIO_NONE);
|
2019-10-23 16:43:45 +02:00
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
cxd56_ge2dinitialize(GEDEVNAME);
|
2019-10-23 16:43:45 +02:00
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
g_gfd = open(GEDEVNAME, O_RDWR);
|
2019-10-23 16:43:45 +02:00
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
putreg32(1, ROT_INTR_CLEAR);
|
|
|
|
putreg32(0, ROT_INTR_ENABLE);
|
|
|
|
putreg32(1, ROT_INTR_DISABLE);
|
2019-10-23 16:43:45 +02:00
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
irq_attach(CXD56_IRQ_ROT, intr_handler_rot, NULL);
|
2020-01-02 17:49:34 +01:00
|
|
|
up_enable_irq(CXD56_IRQ_ROT);
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void imageproc_finalize(void)
|
|
|
|
{
|
|
|
|
up_disable_irq(CXD56_IRQ_ROT);
|
|
|
|
irq_detach(CXD56_IRQ_ROT);
|
|
|
|
|
|
|
|
if (g_gfd > 0)
|
|
|
|
{
|
|
|
|
close(g_gfd);
|
|
|
|
g_gfd = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cxd56_ge2duninitialize(GEDEVNAME);
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
nxsem_destroy(&g_rotwait);
|
|
|
|
nxsem_destroy(&g_rotexc);
|
|
|
|
nxsem_destroy(&g_geexc);
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
void imageproc_convert_yuv2rgb(uint8_t * ibuf,
|
|
|
|
uint32_t hsize,
|
|
|
|
uint32_t vsize)
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if ((hsize & 1) || (vsize & 1))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ip_semtake(&g_rotexc);
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Image processing hardware want to be set horizontal/vertical size
|
|
|
|
* to actual size - 1.
|
|
|
|
*/
|
|
|
|
|
|
|
|
--hsize;
|
|
|
|
--vsize;
|
|
|
|
|
|
|
|
putreg32(1, ROT_INTR_ENABLE);
|
|
|
|
putreg32(0, ROT_INTR_DISABLE);
|
|
|
|
putreg32(0, ROT_SET_DIRECTION);
|
|
|
|
|
|
|
|
putreg32(hsize, ROT_SET_SRC_HSIZE);
|
|
|
|
putreg32(vsize, ROT_SET_SRC_VSIZE);
|
|
|
|
putreg32((uint32_t) (uintptr_t) ibuf, ROT_SET_SRC_ADDRESS);
|
|
|
|
|
|
|
|
putreg32(hsize, ROT_SET_SRC_PITCH);
|
|
|
|
putreg32((uint32_t) (uintptr_t) ibuf, ROT_SET_DST_ADDRESS);
|
|
|
|
|
|
|
|
putreg32(hsize, ROT_SET_DST_PITCH);
|
|
|
|
|
|
|
|
putreg32(1, ROT_CONV_CTRL);
|
|
|
|
putreg32(0, ROT_RGB_ALIGNMENT);
|
|
|
|
putreg32(1, ROT_COMMAND);
|
|
|
|
|
|
|
|
ip_semtake(&g_rotwait);
|
|
|
|
|
|
|
|
ip_semgive(&g_rotexc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void imageproc_convert_yuv2gray(uint8_t * ibuf, uint8_t * obuf, size_t hsize,
|
|
|
|
size_t vsize)
|
|
|
|
{
|
|
|
|
uint16_t *p_src = (uint16_t *) ibuf;
|
|
|
|
size_t ix;
|
|
|
|
size_t iy;
|
|
|
|
|
|
|
|
for (iy = 0; iy < vsize; iy++)
|
|
|
|
{
|
|
|
|
for (ix = 0; ix < hsize; ix++)
|
|
|
|
{
|
|
|
|
*obuf++ = (uint8_t) ((*p_src++ & 0xff00) >> 8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
int imageproc_resize(uint8_t * ibuf,
|
|
|
|
uint16_t ihsize,
|
|
|
|
uint16_t ivsize,
|
|
|
|
uint8_t * obuf,
|
|
|
|
uint16_t ohsize,
|
|
|
|
uint16_t ovsize,
|
|
|
|
int bpp)
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
void *cmd = g_gcmdbuf;
|
|
|
|
size_t len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (g_gfd <= 0)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bpp != 8 && bpp != 16)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ihsize > ISE_SRC_HSIZE_MAX || ihsize < HSIZE_MIN) ||
|
|
|
|
(ivsize > ISE_SRC_VSIZE_MAX || ihsize < VSIZE_MIN) ||
|
|
|
|
(ohsize > ISE_DST_HSIZE_MAX || ohsize < HSIZE_MIN) ||
|
|
|
|
(ovsize > ISE_DST_VSIZE_MAX || ovsize < VSIZE_MIN))
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
if ((ratio_check(ihsize, ohsize) != 0) ||
|
|
|
|
(ratio_check(ivsize, ovsize) != 0))
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ip_semtake(&g_geexc);
|
|
|
|
if (ret)
|
|
|
|
{
|
2020-01-02 17:49:34 +01:00
|
|
|
return ret;
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create descriptor to graphics engine */
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
cmd = set_rop_cmd(cmd,
|
|
|
|
ibuf,
|
|
|
|
obuf,
|
|
|
|
ihsize,
|
|
|
|
ivsize,
|
|
|
|
ihsize,
|
|
|
|
ohsize,
|
|
|
|
ovsize,
|
|
|
|
ohsize,
|
|
|
|
bpp,
|
|
|
|
SRCCOPY,
|
|
|
|
FIXEDCOLOR,
|
|
|
|
0x0080);
|
2019-10-23 16:43:45 +02:00
|
|
|
if (cmd == NULL)
|
|
|
|
{
|
|
|
|
ip_semgive(&g_geexc);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Terminate command */
|
|
|
|
|
|
|
|
cmd = set_halt_cmd(cmd);
|
|
|
|
|
|
|
|
/* Process resize */
|
|
|
|
|
|
|
|
len = (uintptr_t) cmd - (uintptr_t) g_gcmdbuf;
|
|
|
|
ret = write(g_gfd, g_gcmdbuf, len);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
ip_semgive(&g_geexc);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
ip_semgive(&g_geexc);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
int imageproc_clip_and_resize(uint8_t * ibuf,
|
|
|
|
uint16_t ihsize,
|
|
|
|
uint16_t ivsize,
|
|
|
|
uint8_t * obuf,
|
|
|
|
uint16_t ohsize,
|
|
|
|
uint16_t ovsize,
|
|
|
|
int bpp,
|
|
|
|
imageproc_rect_t * clip_rect)
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
void *cmd = g_gcmdbuf;
|
|
|
|
size_t len;
|
|
|
|
int ret;
|
|
|
|
uint8_t pix_bytes;
|
|
|
|
uint16_t clip_width = 0;
|
|
|
|
uint16_t clip_height = 0;
|
|
|
|
|
|
|
|
if (g_gfd <= 0)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bpp != 8 && bpp != 16)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((ihsize > ISE_SRC_HSIZE_MAX || ihsize < HSIZE_MIN) ||
|
|
|
|
(ivsize > ISE_SRC_VSIZE_MAX || ihsize < VSIZE_MIN) ||
|
|
|
|
(ohsize > ISE_DST_HSIZE_MAX || ohsize < HSIZE_MIN) ||
|
|
|
|
(ovsize > ISE_DST_VSIZE_MAX || ovsize < VSIZE_MIN))
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clip_rect != NULL)
|
|
|
|
{
|
2020-04-17 12:00:02 +02:00
|
|
|
if ((clip_rect->x2 < clip_rect->x1) ||
|
|
|
|
(clip_rect->y2 < clip_rect->y1))
|
2019-10-23 16:43:45 +02:00
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((clip_rect->x2 > ihsize) || (clip_rect->y2 > ivsize))
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
clip_width = clip_rect->x2 - clip_rect->x1 + 1;
|
|
|
|
clip_height = clip_rect->y2 - clip_rect->y1 + 1;
|
|
|
|
|
|
|
|
if ((ratio_check(clip_width, ohsize) != 0) ||
|
|
|
|
(ratio_check(clip_height, ovsize) != 0))
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pix_bytes = bpp >> 3;
|
2020-04-17 12:00:02 +02:00
|
|
|
ibuf = ibuf + (clip_rect->x1 * pix_bytes +
|
|
|
|
clip_rect->y1 * ihsize * pix_bytes);
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((ratio_check(ihsize, ohsize) != 0) ||
|
|
|
|
(ratio_check(ivsize, ovsize) != 0))
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2020-04-17 12:00:02 +02:00
|
|
|
|
2019-10-23 16:43:45 +02:00
|
|
|
clip_width = ihsize;
|
|
|
|
clip_height = ivsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = ip_semtake(&g_geexc);
|
|
|
|
if (ret)
|
|
|
|
{
|
2020-01-02 17:49:34 +01:00
|
|
|
return ret;
|
2019-10-23 16:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create descriptor to graphics engine */
|
|
|
|
|
2020-04-17 12:00:02 +02:00
|
|
|
cmd = set_rop_cmd(cmd,
|
|
|
|
ibuf,
|
|
|
|
obuf,
|
|
|
|
clip_width,
|
|
|
|
clip_height,
|
|
|
|
ihsize,
|
|
|
|
ohsize,
|
|
|
|
ovsize,
|
|
|
|
ohsize,
|
|
|
|
bpp,
|
|
|
|
SRCCOPY,
|
|
|
|
FIXEDCOLOR,
|
|
|
|
0x0080);
|
2019-10-23 16:43:45 +02:00
|
|
|
|
|
|
|
if (cmd == NULL)
|
|
|
|
{
|
|
|
|
ip_semgive(&g_geexc);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Terminate command */
|
|
|
|
|
|
|
|
cmd = set_halt_cmd(cmd);
|
|
|
|
|
|
|
|
/* Process resize */
|
|
|
|
|
|
|
|
len = (uintptr_t) cmd - (uintptr_t) g_gcmdbuf;
|
|
|
|
ret = write(g_gfd, g_gcmdbuf, len);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
ip_semgive(&g_geexc);
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
ip_semgive(&g_geexc);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|