aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/SPFD54124B/gdisp_lld_config.h
blob: 335d4c70ac86e4afd48f46c99733c799ef446cb0 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * This file is subject to the terms of the GFX License. If a copy of
 * the license was not distributed with this file, you can obtain one at:
 *
 *              http://ugfx.org/license.html
 */

/* 
 *	Driver for display from Nokia 1616 phone
 *	based on the work of axillent@gmail.com (http://radiokot.ru/articles/53/)
 *	adapted by shilow@ukr.net with the help of Federico Reds <fede.677387@hotmail.it>
 */

#ifndef _GDISP_LLD_CONFIG_H
#define _GDISP_LLD_CONFIG_H

#if GFX_USE_GDISP 

/*===========================================================================*/
/* Driver hardware support.                                                  */
/*===========================================================================*/

#define GDISP_HARDWARE_CONTROL		GFXON
#define GDISP_HARDWARE_STREAM_WRITE	GFXON

#define GDISP_LLD_PIXELFORMAT		GDISP_PIXELFORMAT_RGB565

#define SPFD54124B_SEND_CMD		0x00
#define SPFD54124B_SEND_DATA		0x100

#define SPFD54124B_CMD_NOP		0x00
#define SPFD54124B_CMD_SLPIN		0x11
#define SPFD54124B_CMD_SLPOUT		0x11
#define SPFD54124B_CMD_NORON		0x13

#define SPFD54124B_CMD_INVOFF		0x20
#define SPFD54124B_CMD_DISPON		0x29
#define SPFD54124B_CMD_CASET		0x2A
#define SPFD54124B_CMD_RASET		0x2B
#define SPFD54124B_CMD_RAMWR		0x2C
#define SPFD54124B_CMD_RGBSET		0x2D
#define SPFD54124B_CMD_PTLAR		0x30

#define SPFD54124B_CMD_MADCTR		0x36
#define SPFD54124B_CMD_VSCSAD		0x37
#define SPFD54124B_CMD_COLMOD		0x3A

// MCU interface 12bit
#define SPFD54124B_CMD_COLMOD_MCU12bit	0x03
// MCU interface 16bit
#define SPFD54124B_CMD_COLMOD_MCU16bit	0x05
// MCU interface 18bit
#define SPFD54124B_CMD_COLMOD_MCU18bit	0x06
// RGB interface 16bit
#define SPFD54124B_CMD_COLMOD_RGB16bit	0x50
// RGB interface 18bit
#define SPFD54124B_CMD_COLMOD_RGB18bit	0x60

// Row Address Order
#define SPFD54124B_CMD_MADCTR_MY	(1 << 7)
// Column Address Order
#define SPFD54124B_CMD_MADCTR_MX	(1 << 6)
// Row/Column Exchange
#define SPFD54124B_CMD_MADCTR_MV	(1 << 5)
// Vertical Refresh Order
#define SPFD54124B_CMD_MADCTR_ML	(1 << 4)
// RGB-BGR ORDER
#define SPFD54124B_CMD_MADCTR_RGB	(1 << 3)

#endif	/* GFX_USE_GDISP */

#endif	/* _GDISP_LLD_CONFIG_H */