summaryrefslogtreecommitdiffstats
path: root/u-boot/board/goldelico/gta04/jbt6k74.h
blob: 170873fcd6f64de06b735aaf18fe7bd0a28dbd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _JBT6K74_H
#define _JBT6K74_H

#include <video_fb.h>
#include "TD028TTEC1.h"
#include "backlight.h"

enum jbt_state {
	JBT_STATE_DEEP_STANDBY,
	JBT_STATE_SLEEP,
	JBT_STATE_NORMAL,
};

int jbt6k74_display_onoff(int on);
int jbt6k74_enter_state(enum jbt_state new_state);
const char *jbt_state(void);
int board_video_init(GraphicDevice *pGD);

#endif