forked from Minki/linux
657bf0bd06
This patch adds a ->start_transfer() callback to the KFR2R09 lcd handling code. The callback is used to notify the lcd controller that a new frame of data is about to be transferred. The callback is only used in combination with deferred io, but the code has been tested both with and without deferred io enabled. Without this patch the display data on the KFR2R09 lcd panel becomes corrupted over time. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
28 lines
873 B
C
28 lines
873 B
C
#ifndef __ASM_SH_KFR2R09_H
|
|
#define __ASM_SH_KFR2R09_H
|
|
|
|
#include <video/sh_mobile_lcdc.h>
|
|
|
|
#ifdef CONFIG_FB_SH_MOBILE_LCDC
|
|
void kfr2r09_lcd_on(void *board_data);
|
|
void kfr2r09_lcd_off(void *board_data);
|
|
int kfr2r09_lcd_setup(void *board_data, void *sys_ops_handle,
|
|
struct sh_mobile_lcdc_sys_bus_ops *sys_ops);
|
|
void kfr2r09_lcd_start(void *board_data, void *sys_ops_handle,
|
|
struct sh_mobile_lcdc_sys_bus_ops *sys_ops);
|
|
#else
|
|
static inline void kfr2r09_lcd_on(void *board_data) {}
|
|
static inline void kfr2r09_lcd_off(void *board_data) {}
|
|
static inline int kfr2r09_lcd_setup(void *board_data, void *sys_ops_handle,
|
|
struct sh_mobile_lcdc_sys_bus_ops *sys_ops)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
static inline void kfr2r09_lcd_start(void *board_data, void *sys_ops_handle,
|
|
struct sh_mobile_lcdc_sys_bus_ops *sys_ops)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif /* __ASM_SH_KFR2R09_H */
|