aboutsummaryrefslogtreecommitdiff
path: root/include/linux/jbt6k74.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/jbt6k74.h')
-rw-r--r--include/linux/jbt6k74.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/include/linux/jbt6k74.h b/include/linux/jbt6k74.h
index 75488c41136..2010bdcd4f7 100644
--- a/include/linux/jbt6k74.h
+++ b/include/linux/jbt6k74.h
@@ -3,6 +3,22 @@
#include <linux/spi/spi.h>
+enum jbt_resolution {
+ JBT_RESOLUTION_VGA,
+ JBT_RESOLUTION_QVGA,
+};
+
+enum jbt_power_mode {
+ JBT_POWER_MODE_OFF,
+ JBT_POWER_MODE_STANDBY,
+ JBT_POWER_MODE_NORMAL,
+};
+
+extern void jbt6k74_setpower(enum jbt_power_mode new_power);
+extern int jbt6k74_prepare_resolutionchange(enum jbt_resolution new_resolution);
+extern int jbt6k74_finish_resolutionchange(enum jbt_resolution new_resolution);
+
+
/*
* struct jbt6k74_platform_data - Platform data for jbt6k74 driver
* @probe_completed: Callback to be called when the driver has been
@@ -13,7 +29,6 @@
*/
struct jbt6k74_platform_data {
void (*probe_completed)(struct device *dev);
- void (*enable_pixel_clock)(struct device *dev, int enable);
int gpio_reset;
};