deinterface: add afbc support on g12a and txlx [1/1]

PD#SWPL-1618

Problem:
Add afbc support on g12a and txlx

Solution:
add afbc support on g12a and txlx

Verify:
T962X-R311, U200(G12A)

Change-Id: Ia0cce8516a98653b01c3bc628e812c3a81b1df59
Signed-off-by: huaihao.guo <huaihao.guo@amlogic.com>

Conflicts:
	drivers/amlogic/media/deinterlace/deinterlace.c
	drivers/amlogic/media/deinterlace/deinterlace_hw.c
This commit is contained in:
huaihao.guo
2018-11-02 19:10:19 +08:00
committed by Dongjin Kim
parent 3a03ee7c2e
commit e3701d133e
2 changed files with 4 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ static di_dev_t *de_devp;
static dev_t di_devno;
static struct class *di_clsp;
static const char version_s[] = "2019-03-18a";
static const char version_s[] = "2018-11-06a";
static int bypass_state = 1;
static int bypass_all;

View File

@@ -1007,9 +1007,9 @@ bool afbc_is_supported(void)
/*currently support txlx and g12a*/
if (is_meson_txlx_cpu()
|| is_meson_g12a_cpu()
/*|| is_meson_tl1_cpu()*/)
ret = false;
|| cpu_after_eq(MESON_CPU_MAJOR_ID_G12A))
ret = true;
return ret;
}