summaryrefslogtreecommitdiff
path: root/common/wmt_display/devices/lcd-setup.c
blob: 6653fdc5ab0a73afdc458d74bbd78cb99c5baae4 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
 * ==========================================================================
 *
 *       Filename:  lcd-spi.c
 *
 *    Description:
 *
 *        Version:  0.01
 *        Created:  Thursday, December 27, 2012 02:50:05 HKT
 *
 *         Author:  Sam Mei (),
 *        Company:
 *
 * ==========================================================================
 */

#include <common.h>
#include <command.h>
#include <asm/types.h>
#include <asm/errno.h>
#include <asm/byteorder.h>

#include "../../../board/wmt/include/wmt_spi.h"
#include "../../../board/wmt/include/wmt_iomux.h"

#include "../lcd.h"

#define CHIPSELECT	0

#ifndef SPI_GPIO
static void spi_ctrl_9bit_tx(u8 val, int cmd_data)
{
	uint8_t buf[2],rbuf[2];

	if (cmd_data)
		buf[0] = (val >> 1) | BIT7;
	else
		buf[0] = (val >> 1) & 0x7f;

	buf[1] = (val << 7);

	spi_write_then_read_data(buf, rbuf, sizeof(buf), SPI_MODE_1, CHIPSELECT);
}

#else

#define CLK	WMT_PIN_GP12_SPI0CLK
#define MOSI	WMT_PIN_GP12_SPI0MOSI
#define MISO	WMT_PIN_GP12_SPI0MISO
#define SS	WMT_PIN_GP12_SPI0SS0

static void spi_gpio_9bit_tx(u8 val, int cmd_data)
{
	int i;

	// CS
	gpio_direction_output(SS, 1);
	gpio_direction_output(SS, 0);

	// D/C
	gpio_direction_output(MOSI, cmd_data);
	gpio_direction_output(CLK, 0);
	gpio_direction_output(CLK, 1);

	// 8-bit value
	for (i = 7; i >= 0; i--) {
		gpio_direction_output(MOSI, !!(val & (1 << i)));
		gpio_direction_output(CLK, 0);
		gpio_direction_output(CLK, 1);
	}

	// CS
	gpio_direction_output(SS, 1);
}
#endif

static inline void spi_9bit_tx(u8 val, int cmd_data)
{
#ifdef SPI_GPIO
	spi_gpio_9bit_tx(val, cmd_data);
#else
	spi_ctrl_9bit_tx(val, cmd_data);
#endif
}

static int ts8224b_cmd(u8 cmd)
{
	spi_9bit_tx(cmd, 0);
	return 0;
}

static int ts8224b_data(u8 data)
{
	spi_9bit_tx(data, 1);
	return 0;
}

/*
 * setenv wmt.lcd.setup 0
 * setenv wmt.display.param 2:0:24:1024:600:60
 * setenv wmt.display.tmr 30000:0:78:78:480:78:4:60:800:60
 */
static int ts8224b_init(void)
{

	static uint16_t settings[] = {
		#include "ts8224b.h"
	};
	int i;

	printf(" ## %s \n", __FUNCTION__);
	for (i = 0; i < ARRAY_SIZE(settings); i += 2) {
		ts8224b_cmd(settings[i] >> 8);
		ts8224b_data(settings[i+1]);
	}

	ts8224b_cmd(0x11);
	mdelay(120);

	ts8224b_cmd(0x29);
	mdelay(50);
	ts8224b_cmd(0x2c);
	return 0;
}

static int i2c_write(int i2c_idx, uint8_t reg, uint8_t value)
{
	unsigned char data[2] = { reg, value };
	struct i2c_msg_s msg[1] = {
		{
		.addr = 0xE0 >> 1,
		.flags = I2C_M_WR,
		.len = 2,
		.buf = data,
		},
	};

	if (wmt_i2c_transfer(&msg[0], 1, i2c_idx) > 0)
		return 0;

	printf(" ## lcd i2c1 write error %s, %d\n", __func__, __LINE__);
	return -1;
}

static uint8_t init_data[] = {
	0x4b, 0x01,
	0x0c, 0x01,
	0x05, 0x03,
	0x41, 0x03,
	0x10, 0x06,
	0x11, 0xE0,
	0x12, 0x00,
	0x13, 0x3C,
	0x14, 0x06,
	0x15, 0x40,
	0x16, 0x03,
	0x17, 0x9E,
	0x18, 0x00,
	0x19, 0x10,
	0x1a, 0x03,
	0x1b, 0x84,
	0x1c, 0x80,
	0x1d, 0x0A,
	0x1e, 0x80,
	0x1f, 0x06,
	0x3c, 0x17,
	0x3e, 0x16,
	0x36, 0x00,
	0x31, 0x00,
	0x35, 0x41,
	0x30, 0xB0,
	0x30, 0xB1,
	0x00, 0x0B,
};

static int chunghwa_init(void)
{
	int i;

	printf(" ## %s, %d\n", __FUNCTION__, __LINE__);
	for (i = 0; i < ARRAY_SIZE(init_data); i += 2) {
		i2c_write(1, init_data[i], init_data[i+1]);
	}

	return 0;
}

enum {
	LCD_SETUP_TS8224B,
	LCD_SETUP_CHUNGHWA,
	LCD_SETUP_MAX,
};

int lcd_spi_setup(void)
{
	int id;
	char *s = getenv("wmt.lcd.setup");

	if (!s)
		return -ENODEV;

	id = simple_strtoul(s, NULL, 10);
	switch (id) {
	case LCD_SETUP_TS8224B:
		return ts8224b_init();
	case LCD_SETUP_CHUNGHWA:
		return chunghwa_init();
	default:
		return -EINVAL;
	}
}