aboutsummaryrefslogtreecommitdiff
path: root/include/linux/jbt6k74.h
blob: f430e5a363aff4f7941b3db07d514abb5d33035f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef __JBT6K74_H__
#define __JBT6K74_H__

#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_NORMAL,
};

extern void jbt6k74_setpower(enum jbt_power_mode new_power);
extern int jbt6k74_setresolution(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
 *  successfully probed.
 *  @enable_pixel_clock: Callback to enable or disable the pixelclock of the
 *  gpu.
 *  @gpio_reset: Reset gpio pin number.
 */
struct jbt6k74_platform_data {
	void (*probe_completed)(struct device *dev);

	int gpio_reset;
};

#endif