1351e6e093
Separate out the Sharp Zaurus c7x0 series specific code from the Corgi backlight driver. Abstract model/machine specific functions to corgi_lcd.c via sharpsl.h This enables the driver to be used by the Zaurus cxx00 series. Signed-Off-by: Richard Purdie <rpurdie@rpsys.net> Cc: Vojtech Pavlik <vojtech@suse.cz> Cc: Russell King <rmk@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
32 lines
682 B
C
32 lines
682 B
C
/*
|
|
* SharpSL SSP Driver
|
|
*/
|
|
|
|
unsigned long corgi_ssp_ads7846_putget(unsigned long);
|
|
unsigned long corgi_ssp_ads7846_get(void);
|
|
void corgi_ssp_ads7846_put(unsigned long data);
|
|
void corgi_ssp_ads7846_lock(void);
|
|
void corgi_ssp_ads7846_unlock(void);
|
|
void corgi_ssp_lcdtg_send (unsigned char adrs, unsigned char data);
|
|
void corgi_ssp_blduty_set(int duty);
|
|
int corgi_ssp_max1111_get(unsigned long data);
|
|
|
|
/*
|
|
* SharpSL Touchscreen Driver
|
|
*/
|
|
|
|
struct corgits_machinfo {
|
|
unsigned long (*get_hsync_len)(void);
|
|
void (*put_hsync)(void);
|
|
void (*wait_hsync)(void);
|
|
};
|
|
|
|
/*
|
|
* SharpSL Backlight
|
|
*/
|
|
|
|
struct corgibl_machinfo {
|
|
int max_intensity;
|
|
void (*set_bl_intensity)(int intensity);
|
|
};
|
|
|