aboutsummaryrefslogtreecommitdiffstats
path: root/boards/addons/gdisp/board_ILI9320_olimex_pic32mx_lcd.h
blob: 349967edd901b78f06265ad9d3dab50497d4ed9f (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 * 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.io/license.html
 */

/**
 * @file    boards/addons/gdisp/board_ILI9320_olimex_pic32mx_lcd.h
 * @brief   GDISP Graphic Driver subsystem board SPI interface for the ILI9325 display.
 *
 * @note	This file contains a mix of hardware specific and operating system specific
 *			code. You will need to change it for your CPU and/or operating system.
 */

#ifndef GDISP_LLD_BOARD_H
#define GDISP_LLD_BOARD_H

#ifndef noinline
#define noinline __attribute__((noinline))
#endif

static void init_board(GDisplay *g) {

	// As we are not using multiple displays we set g->board to NULL as we don't use it.
	g->board = 0;

	switch(g->controllerdisplay) {
	case 0:											// Set up for Display 0
		// RST
		palSetPadMode(IOPORTA, 7, PAL_MODE_OUTPUT);
		palClearPad(IOPORTA, 7);

		// RS
		palSetPadMode(IOPORTA, 10, PAL_MODE_OUTPUT);
		palSetPad(IOPORTA, 10);

		// CS
		palSetPadMode(IOPORTA, 9, PAL_MODE_OUTPUT);
		palClearPad(IOPORTA, 9);

		// Backlight
		palSetPadMode(IOPORTD, 3, PAL_MODE_OUTPUT);
		palSetPad(IOPORTD, 3);

		// PMP setup
		PMMODE = 0;
		PMAEN = 0;
		PMCON = 0;
		PMMODEbits.MODE = 2;
		PMMODEbits.WAITB = 0;
		PMMODEbits.WAITM = 1;
		PMMODEbits.WAITE = 0;
		PMCONbits.CSF = 0;
		PMCONbits.PTRDEN = 1;
		PMCONbits.PTWREN = 1;
		PMMODEbits.MODE16 = 1;
		PMCONbits.PMPEN = 1;

		palClearPad(IOPORTA, 9);
		break;
	}
}

#define PmpWaitBusy()   do {} while (PMMODEbits.BUSY)

static GFXINLINE void post_init_board(GDisplay *g) {
	(void) g;
}

static noinline void setpin_reset(GDisplay *g, gBool state) {
	(void) g;
	if (state)
		palClearPad(IOPORTA, 7);
	else
		palSetPad(IOPORTA, 7);
}

static void set_backlight(GDisplay *g, uint8_t percent) {
	(void) g;
	if (percentage)
		palClearPad(IOPORTD, 3);
	else
		palSetPad(IOPORTD, 3);
}

static GFXINLINE void acquire_bus(GDisplay *g) {
	(void) g;
}

static GFXINLINE void release_bus(GDisplay *g) {
	(void) g;
}

static noinline void write_index(GDisplay *g, uint16_t index) {
	volatile uint16_t dummy;
	(void) g;

	PmpWaitBusy();
	palClearPad(IOPORTA, 10);
	PMDIN = index;
	PmpWaitBusy();
	palSetPad(IOPORTA, 10);

	dummy = PMDIN;
	(void)dummy;
}

static noinline void write_data(GDisplay *g, uint16_t data) {
	(void) g;
	PMDIN = data;
	PmpWaitBusy();
}

static GFXINLINE void setreadmode(GDisplay *g) {
	(void) g;
}

static GFXINLINE void setwritemode(GDisplay *g) {
	(void) g;
}

static noinline uint16_t read_data(GDisplay *g) {
	(void) g;
	PmpWaitBusy();
	return PMDIN;
}

#endif /* GDISP_LLD_BOARD_H */