File: dev_lcd_pxa.c

package info (click to toggle)
skyeye 1.2.5-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,236 kB
  • ctags: 19,345
  • sloc: ansic: 90,379; sh: 5,188; python: 707; cpp: 417; makefile: 322; exp: 38
file content (221 lines) | stat: -rw-r--r-- 5,037 bytes parent folder | download | duplicates (4)
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
213
214
215
216
217
218
219
220
221
/*
	dev_lcd_pxa.c - skyeye PXA25x serial lcd controllor simulation
	Copyright (C) 2003 - 2005 Skyeye Develop Group
	for help please send mail to <skyeye-developer@lists.gro.clinux.org>
	
	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
 
*/
/*
 * 06/17/2005   initial verion for pxa
 */

#include "armdefs.h"
#include "skyeye_device.h"
#include "dev_lcd_pxa.h"

static struct device_default_value pxa_lcd_def[] = {
	/* name         base        size   interrupt array */
	{"pxa_lubbock", 0x44000000, 0x220, {0, 0, 0, 0}},
	{"pxa_mainstone", 0x44000000, 0x220, {0, 0, 0, 0}},
	{NULL},
};



static void
pxa_changed (struct device_desc *dev)
{
	struct lcd_device *lcd_dev = (struct lcd_device *) dev->dev;
	struct lcd_pxa_io *io = (struct lcd_pxa_io *) dev->data;
	struct machine_config *mc = (struct machine_config *) dev->mach;

	lcd_dev->state = mc->state;


	//width  = (pxa_io.lccr1 & LCCR1_PPL) + 1;
	//height = ((pxa_io.lccr2 & LCCR2_LPP) + 1)*2;
	//depth  = 1 << ((pxa_io.lccr3 & LCCR3_BPP)>>24);
	//printf("io->fdadr0:%x, io->fdadr1:%x\n", io->fdadr0, io->fdadr1);
	lcd_dev->lcd_addr_begin = ((io->fdadr0 + 0x1000) & 0xffff1000);
	lcd_dev->depth = 1 << ((io->lccr3 & LCCR3_BPP) >> 24);
	lcd_dev->width = (io->lccr1 & LCCR1_PPL) + 1;
	lcd_dev->height = ((io->lccr2 & LCCR2_LPP) + 1) * 2;
	lcd_dev->lcd_open (lcd_dev);
}

static void
lcd_pxa_fini (struct device_desc *dev)
{
	struct lcd_pxa_io *io = (struct lcd_pxa_io *) dev->data;
	if (!dev->dev)
		free (dev->dev);
	if (!io)
		free (io);
}

static void
lcd_pxa_reset (struct device_desc *dev)
{
	struct lcd_device *lcd_dev = (struct lcd_device *) dev->dev;
	struct lcd_pxa_io *io = (struct lcd_pxa_io *) dev->data;

//      lcd_dev->lcd_addr_begin = 0xc0e01000;
	//       lcd_dev->lcd_addr_end = 0xc0e01000;
}

static void
lcd_pxa_update (struct device_desc *dev)
{
	struct device_interrupt *intr = &dev->intr;
	struct lcd_device *lcd_dev = (struct lcd_device *) dev->dev;
	struct lcd_pxa_io *io = (struct lcd_pxa_io *) dev->data;
	struct machine_config *mc = (struct machine_config *) dev->mach;

	lcd_dev->lcd_update (lcd_dev);
}


int
lcd_pxa_read_word (struct device_desc *dev, u32 addr, u32 * data)
{
	struct lcd_device *lcd_dev = (struct lcd_device *) dev->dev;
	struct lcd_pxa_io *io = (struct lcd_pxa_io *) dev->data;

	int offset = (addr - dev->base);
	int ret = ADDR_HIT;

	//printf("%s:addr %x, %x\n", __FUNCTION__, addr, MACON);
	*data = 0;
	switch (offset) {
	case LCCR0:
		*data = io->lccr0;
		break;
	case LCCR1:
		*data = io->lccr1;
		break;
	case LCCR2:
		*data = io->lccr2;
		break;
	case LCCR3:
		*data = io->lccr3;
		break;
	case FDADR0:
		*data = io->fdadr0;
		break;
	case FDADR1:
		*data = io->fdadr1;
		break;
	case FSADR0:
		*data = io->fsadr0;
		break;
	case FSADR1:
		*data = io->fsadr1;
		break;
	default:
		break;
	}
	return ret;

}

int
lcd_pxa_write_word (struct device_desc *dev, u32 addr, u32 data)
{
	struct lcd_device *lcd_dev = (struct lcd_device *) dev->dev;
	struct lcd_pxa_io *io = (struct lcd_pxa_io *) dev->data;

	int offset = (addr - dev->base);
	int ret = ADDR_HIT;

	static int once = 0;

	//printf("%s:mach:%x\n", __FUNCTION__, dev->mach);
	switch (offset) {
	case LCCR0:
		if ((!(io->lccr0 & LCCR0_ENB)) && (data & LCCR0_ENB)) {
			if (!once) {
				once++;
				pxa_changed (dev);
			}
		}
		io->lccr0 = data;
		break;
	case LCCR1:
		io->lccr1 = data;
		break;
	case LCCR2:
		io->lccr2 = data;
		break;
	case LCCR3:
		io->lccr3 = data;
		break;
	case FDADR0:
		io->fdadr0 = data;
		break;
	case FDADR1:
		io->fdadr1 = data;
		break;
	case FSADR0:
		io->fsadr0 = data;
		break;
	case FSADR1:
		io->fsadr1 = data;
		break;
	default:
		ret = ADDR_NOHIT;
		break;
	}

	return ret;
}

static int
lcd_pxa_setup (struct device_desc *dev)
{
	int i;
	struct lcd_pxa_io *io;
	struct device_interrupt *intr = &dev->intr;

	dev->fini = lcd_pxa_fini;
	dev->reset = lcd_pxa_reset;
	dev->update = lcd_pxa_update;
	dev->read_word = lcd_pxa_read_word;
	dev->write_word = lcd_pxa_write_word;

	io = (struct lcd_pxa_io *) malloc (sizeof (struct lcd_pxa_io));
	memset (io, 0, sizeof (struct lcd_pxa_io));
	if (io == NULL)
		return 1;
	dev->data = (void *) io;

	lcd_pxa_reset (dev);


	/* see if we need to set default values.
	 * */
	set_device_default (dev, pxa_lcd_def);


	return 0;
}

void
lcd_pxa_init (struct device_module_set *mod_set)
{
	int i;
	register_device_module ("pxa", mod_set, &lcd_pxa_setup);

}