[media] media: ti-vpe: Make colorspace converter library into its own module
In preparation to add colorspace conversion support to VIP, we need to turn csc.c into its own kernel module. Signed-off-by: Benoit Parrot <bparrot@ti.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
ee1c02949d
commit
51b56c3941
@@ -14,6 +14,7 @@
|
||||
|
||||
#include <linux/err.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/videodev2.h>
|
||||
@@ -105,11 +106,13 @@ void csc_dump_regs(struct csc_data *csc)
|
||||
|
||||
#undef DUMPREG
|
||||
}
|
||||
EXPORT_SYMBOL(csc_dump_regs);
|
||||
|
||||
void csc_set_coeff_bypass(struct csc_data *csc, u32 *csc_reg5)
|
||||
{
|
||||
*csc_reg5 |= CSC_BYPASS;
|
||||
}
|
||||
EXPORT_SYMBOL(csc_set_coeff_bypass);
|
||||
|
||||
/*
|
||||
* set the color space converter coefficient shadow register values
|
||||
@@ -160,8 +163,9 @@ void csc_set_coeff(struct csc_data *csc, u32 *csc_reg0,
|
||||
for (; coeff < end_coeff; coeff += 2)
|
||||
*shadow_csc++ = (*(coeff + 1) << 16) | *coeff;
|
||||
}
|
||||
EXPORT_SYMBOL(csc_set_coeff);
|
||||
|
||||
struct csc_data *csc_create(struct platform_device *pdev)
|
||||
struct csc_data *csc_create(struct platform_device *pdev, const char *res_name)
|
||||
{
|
||||
struct csc_data *csc;
|
||||
|
||||
@@ -176,9 +180,10 @@ struct csc_data *csc_create(struct platform_device *pdev)
|
||||
csc->pdev = pdev;
|
||||
|
||||
csc->res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
||||
"csc");
|
||||
res_name);
|
||||
if (csc->res == NULL) {
|
||||
dev_err(&pdev->dev, "missing platform resources data\n");
|
||||
dev_err(&pdev->dev, "missing '%s' platform resources data\n",
|
||||
res_name);
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
@@ -190,3 +195,8 @@ struct csc_data *csc_create(struct platform_device *pdev)
|
||||
|
||||
return csc;
|
||||
}
|
||||
EXPORT_SYMBOL(csc_create);
|
||||
|
||||
MODULE_DESCRIPTION("TI VIP/VPE Color Space Converter");
|
||||
MODULE_AUTHOR("Texas Instruments Inc.");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
Reference in New Issue
Block a user