2016-02-19 21:54:36 +07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Texas Instruments
|
|
|
|
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __OMAP_DRM_DSS_H
|
|
|
|
#define __OMAP_DRM_DSS_H
|
|
|
|
|
|
|
|
#include <video/omapdss.h>
|
|
|
|
|
|
|
|
u32 dispc_read_irqstatus(void);
|
|
|
|
void dispc_clear_irqstatus(u32 mask);
|
|
|
|
u32 dispc_read_irqenable(void);
|
|
|
|
void dispc_write_irqenable(u32 mask);
|
|
|
|
|
|
|
|
int dispc_request_irq(irq_handler_t handler, void *dev_id);
|
|
|
|
void dispc_free_irq(void *dev_id);
|
|
|
|
|
|
|
|
int dispc_runtime_get(void);
|
|
|
|
void dispc_runtime_put(void);
|
|
|
|
|
|
|
|
void dispc_mgr_enable(enum omap_channel channel, bool enable);
|
|
|
|
bool dispc_mgr_is_enabled(enum omap_channel channel);
|
|
|
|
u32 dispc_mgr_get_vsync_irq(enum omap_channel channel);
|
|
|
|
u32 dispc_mgr_get_framedone_irq(enum omap_channel channel);
|
|
|
|
u32 dispc_mgr_get_sync_lost_irq(enum omap_channel channel);
|
|
|
|
bool dispc_mgr_go_busy(enum omap_channel channel);
|
|
|
|
void dispc_mgr_go(enum omap_channel channel);
|
|
|
|
void dispc_mgr_set_lcd_config(enum omap_channel channel,
|
|
|
|
const struct dss_lcd_mgr_config *config);
|
|
|
|
void dispc_mgr_set_timings(enum omap_channel channel,
|
|
|
|
const struct omap_video_timings *timings);
|
|
|
|
void dispc_mgr_setup(enum omap_channel channel,
|
|
|
|
const struct omap_overlay_manager_info *info);
|
|
|
|
|
|
|
|
int dispc_ovl_enable(enum omap_plane plane, bool enable);
|
|
|
|
bool dispc_ovl_enabled(enum omap_plane plane);
|
|
|
|
void dispc_ovl_set_channel_out(enum omap_plane plane,
|
|
|
|
enum omap_channel channel);
|
|
|
|
int dispc_ovl_setup(enum omap_plane plane, const struct omap_overlay_info *oi,
|
|
|
|
bool replication, const struct omap_video_timings *mgr_timings,
|
|
|
|
bool mem_to_mem);
|
|
|
|
|
2015-11-04 20:11:25 +07:00
|
|
|
enum omap_dss_output_id dispc_mgr_get_supported_outputs(enum omap_channel channel);
|
|
|
|
|
2016-02-19 22:19:41 +07:00
|
|
|
struct dss_mgr_ops {
|
2015-11-05 00:36:26 +07:00
|
|
|
int (*connect)(enum omap_channel channel,
|
2016-02-19 22:19:41 +07:00
|
|
|
struct omap_dss_device *dst);
|
2015-11-05 00:36:26 +07:00
|
|
|
void (*disconnect)(enum omap_channel channel,
|
2016-02-19 22:19:41 +07:00
|
|
|
struct omap_dss_device *dst);
|
|
|
|
|
2015-11-05 00:36:26 +07:00
|
|
|
void (*start_update)(enum omap_channel channel);
|
|
|
|
int (*enable)(enum omap_channel channel);
|
|
|
|
void (*disable)(enum omap_channel channel);
|
|
|
|
void (*set_timings)(enum omap_channel channel,
|
2016-02-19 22:19:41 +07:00
|
|
|
const struct omap_video_timings *timings);
|
2015-11-05 00:36:26 +07:00
|
|
|
void (*set_lcd_config)(enum omap_channel channel,
|
2016-02-19 22:19:41 +07:00
|
|
|
const struct dss_lcd_mgr_config *config);
|
2015-11-05 00:36:26 +07:00
|
|
|
int (*register_framedone_handler)(enum omap_channel channel,
|
2016-02-19 22:19:41 +07:00
|
|
|
void (*handler)(void *), void *data);
|
2015-11-05 00:36:26 +07:00
|
|
|
void (*unregister_framedone_handler)(enum omap_channel channel,
|
2016-02-19 22:19:41 +07:00
|
|
|
void (*handler)(void *), void *data);
|
|
|
|
};
|
|
|
|
|
|
|
|
int dss_install_mgr_ops(const struct dss_mgr_ops *mgr_ops);
|
|
|
|
void dss_uninstall_mgr_ops(void);
|
|
|
|
|
2015-11-05 01:21:48 +07:00
|
|
|
int dss_mgr_connect(enum omap_channel channel,
|
2016-02-19 22:37:09 +07:00
|
|
|
struct omap_dss_device *dst);
|
2015-11-05 01:23:37 +07:00
|
|
|
void dss_mgr_disconnect(enum omap_channel channel,
|
2016-02-19 22:37:09 +07:00
|
|
|
struct omap_dss_device *dst);
|
2015-11-05 01:25:05 +07:00
|
|
|
void dss_mgr_set_timings(enum omap_channel channel,
|
2016-02-19 22:37:09 +07:00
|
|
|
const struct omap_video_timings *timings);
|
2015-11-05 01:26:15 +07:00
|
|
|
void dss_mgr_set_lcd_config(enum omap_channel channel,
|
2016-02-19 22:37:09 +07:00
|
|
|
const struct dss_lcd_mgr_config *config);
|
2015-11-05 01:27:31 +07:00
|
|
|
int dss_mgr_enable(enum omap_channel channel);
|
2015-11-05 01:28:45 +07:00
|
|
|
void dss_mgr_disable(enum omap_channel channel);
|
2015-11-05 14:20:46 +07:00
|
|
|
void dss_mgr_start_update(enum omap_channel channel);
|
2015-11-05 14:23:03 +07:00
|
|
|
int dss_mgr_register_framedone_handler(enum omap_channel channel,
|
2016-02-19 22:37:09 +07:00
|
|
|
void (*handler)(void *), void *data);
|
2015-11-05 14:23:47 +07:00
|
|
|
void dss_mgr_unregister_framedone_handler(enum omap_channel channel,
|
2016-02-19 22:37:09 +07:00
|
|
|
void (*handler)(void *), void *data);
|
|
|
|
|
2016-02-19 21:54:36 +07:00
|
|
|
#endif /* __OMAP_DRM_DSS_H */
|