mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 14:02:10 +00:00
OMAPDSS: public omapdss_register_output()
In order to allow multiple display block in a video pipeline, we need to give the drivers way to register themselves. For now we have the omapdss_register_display() which is used to register panels, and dss_register_output() which is used to register DSS encoders. This patch makes dss_register_output() public (with the name of omapdss_register_output), which can be used to register also external encoders. The distinction between register_output and register_display is that a "display" is an entity at the end of the videopipeline, and "output" is something inside the pipeline. The registration and naming will be made saner in the future, but the current names and functions are kept to minimize changes during the dss device model transition. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
595470a785
commit
5d47dbc852
@ -689,14 +689,14 @@ static void dpi_init_output(struct platform_device *pdev)
|
|||||||
out->dispc_channel = dpi_get_channel();
|
out->dispc_channel = dpi_get_channel();
|
||||||
out->owner = THIS_MODULE;
|
out->owner = THIS_MODULE;
|
||||||
|
|
||||||
dss_register_output(out);
|
omapdss_register_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit dpi_uninit_output(struct platform_device *pdev)
|
static void __exit dpi_uninit_output(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct omap_dss_device *out = &dpi.output;
|
struct omap_dss_device *out = &dpi.output;
|
||||||
|
|
||||||
dss_unregister_output(out);
|
omapdss_unregister_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int omap_dpi_probe(struct platform_device *pdev)
|
static int omap_dpi_probe(struct platform_device *pdev)
|
||||||
|
@ -5426,7 +5426,7 @@ static void dsi_init_output(struct platform_device *dsidev)
|
|||||||
out->dispc_channel = dsi_get_channel(dsi->module_id);
|
out->dispc_channel = dsi_get_channel(dsi->module_id);
|
||||||
out->owner = THIS_MODULE;
|
out->owner = THIS_MODULE;
|
||||||
|
|
||||||
dss_register_output(out);
|
omapdss_register_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dsi_uninit_output(struct platform_device *dsidev)
|
static void dsi_uninit_output(struct platform_device *dsidev)
|
||||||
@ -5434,7 +5434,7 @@ static void dsi_uninit_output(struct platform_device *dsidev)
|
|||||||
struct dsi_data *dsi = dsi_get_dsidrv_data(dsidev);
|
struct dsi_data *dsi = dsi_get_dsidrv_data(dsidev);
|
||||||
struct omap_dss_device *out = &dsi->output;
|
struct omap_dss_device *out = &dsi->output;
|
||||||
|
|
||||||
dss_unregister_output(out);
|
omapdss_unregister_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* DSI1 HW IP initialisation */
|
/* DSI1 HW IP initialisation */
|
||||||
|
@ -179,10 +179,6 @@ void dss_put_device(struct omap_dss_device *dssdev);
|
|||||||
void dss_copy_device_pdata(struct omap_dss_device *dst,
|
void dss_copy_device_pdata(struct omap_dss_device *dst,
|
||||||
const struct omap_dss_device *src);
|
const struct omap_dss_device *src);
|
||||||
|
|
||||||
/* output */
|
|
||||||
void dss_register_output(struct omap_dss_device *out);
|
|
||||||
void dss_unregister_output(struct omap_dss_device *out);
|
|
||||||
|
|
||||||
/* display */
|
/* display */
|
||||||
int dss_suspend_all_devices(void);
|
int dss_suspend_all_devices(void);
|
||||||
int dss_resume_all_devices(void);
|
int dss_resume_all_devices(void);
|
||||||
|
@ -1036,14 +1036,14 @@ static void hdmi_init_output(struct platform_device *pdev)
|
|||||||
out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
|
out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
|
||||||
out->owner = THIS_MODULE;
|
out->owner = THIS_MODULE;
|
||||||
|
|
||||||
dss_register_output(out);
|
omapdss_register_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit hdmi_uninit_output(struct platform_device *pdev)
|
static void __exit hdmi_uninit_output(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct omap_dss_device *out = &hdmi.output;
|
struct omap_dss_device *out = &hdmi.output;
|
||||||
|
|
||||||
dss_unregister_output(out);
|
omapdss_unregister_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* HDMI HW IP initialisation */
|
/* HDMI HW IP initialisation */
|
||||||
|
@ -92,15 +92,18 @@ err:
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(omapdss_output_unset_device);
|
EXPORT_SYMBOL(omapdss_output_unset_device);
|
||||||
|
|
||||||
void dss_register_output(struct omap_dss_device *out)
|
int omapdss_register_output(struct omap_dss_device *out)
|
||||||
{
|
{
|
||||||
list_add_tail(&out->list, &output_list);
|
list_add_tail(&out->list, &output_list);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(omapdss_register_output);
|
||||||
|
|
||||||
void dss_unregister_output(struct omap_dss_device *out)
|
void omapdss_unregister_output(struct omap_dss_device *out)
|
||||||
{
|
{
|
||||||
list_del(&out->list);
|
list_del(&out->list);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(omapdss_unregister_output);
|
||||||
|
|
||||||
struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id)
|
struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id)
|
||||||
{
|
{
|
||||||
|
@ -1022,14 +1022,14 @@ static void rfbi_init_output(struct platform_device *pdev)
|
|||||||
out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
|
out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
|
||||||
out->owner = THIS_MODULE;
|
out->owner = THIS_MODULE;
|
||||||
|
|
||||||
dss_register_output(out);
|
omapdss_register_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit rfbi_uninit_output(struct platform_device *pdev)
|
static void __exit rfbi_uninit_output(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct omap_dss_device *out = &rfbi.output;
|
struct omap_dss_device *out = &rfbi.output;
|
||||||
|
|
||||||
dss_unregister_output(out);
|
omapdss_unregister_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* RFBI HW IP initialisation */
|
/* RFBI HW IP initialisation */
|
||||||
|
@ -344,14 +344,14 @@ static void sdi_init_output(struct platform_device *pdev)
|
|||||||
out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
|
out->dispc_channel = OMAP_DSS_CHANNEL_LCD;
|
||||||
out->owner = THIS_MODULE;
|
out->owner = THIS_MODULE;
|
||||||
|
|
||||||
dss_register_output(out);
|
omapdss_register_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit sdi_uninit_output(struct platform_device *pdev)
|
static void __exit sdi_uninit_output(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct omap_dss_device *out = &sdi.output;
|
struct omap_dss_device *out = &sdi.output;
|
||||||
|
|
||||||
dss_unregister_output(out);
|
omapdss_unregister_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int omap_sdi_probe(struct platform_device *pdev)
|
static int omap_sdi_probe(struct platform_device *pdev)
|
||||||
|
@ -790,14 +790,14 @@ static void venc_init_output(struct platform_device *pdev)
|
|||||||
out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
|
out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
|
||||||
out->owner = THIS_MODULE;
|
out->owner = THIS_MODULE;
|
||||||
|
|
||||||
dss_register_output(out);
|
omapdss_register_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit venc_uninit_output(struct platform_device *pdev)
|
static void __exit venc_uninit_output(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct omap_dss_device *out = &venc.output;
|
struct omap_dss_device *out = &venc.output;
|
||||||
|
|
||||||
dss_unregister_output(out);
|
omapdss_unregister_output(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* VENC HW IP initialisation */
|
/* VENC HW IP initialisation */
|
||||||
|
@ -780,6 +780,8 @@ struct omap_overlay_manager *omap_dss_get_overlay_manager(int num);
|
|||||||
int omap_dss_get_num_overlays(void);
|
int omap_dss_get_num_overlays(void);
|
||||||
struct omap_overlay *omap_dss_get_overlay(int num);
|
struct omap_overlay *omap_dss_get_overlay(int num);
|
||||||
|
|
||||||
|
int omapdss_register_output(struct omap_dss_device *output);
|
||||||
|
void omapdss_unregister_output(struct omap_dss_device *output);
|
||||||
struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id);
|
struct omap_dss_device *omap_dss_get_output(enum omap_dss_output_id id);
|
||||||
struct omap_dss_device *omap_dss_find_output(const char *name);
|
struct omap_dss_device *omap_dss_find_output(const char *name);
|
||||||
struct omap_dss_device *omap_dss_find_output_by_node(struct device_node *node);
|
struct omap_dss_device *omap_dss_find_output_by_node(struct device_node *node);
|
||||||
|
Loading…
Reference in New Issue
Block a user