aboutsummaryrefslogtreecommitdiffstats
path: root/T6963.c
blob: 690a62820e4fad3ed36de6c24082e04afedf438a (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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/* $Id: T6963.c,v 1.2 2002/08/17 12:54:08 reinelt Exp $
 *
 * driver for display modules based on the Toshiba T6963 chip
 *
 * Copyright 1999, 2000 by Michael Reinelt (reinelt@eunet.at)
 *
 * 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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 * $Log: T6963.c,v $
 * Revision 1.2  2002/08/17 12:54:08  reinelt
 * minor T6963 changes
 *
 * Revision 1.1  2002/04/29 11:00:26  reinelt
 *
 * added Toshiba T6963 driver
 * added ndelay() with nanosecond resolution
 *
 *
 */

/* 
 *
 * exported fuctions:
 *
 * struct LCD T6963[]
 *
 */

#include "config.h"

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
#include <errno.h>
#include <sys/ioctl.h>

#if defined (HAVE_LINUX_PARPORT_H) && defined (HAVE_LINUX_PPDEV_H)
#define WITH_PPDEV
#include <linux/parport.h>
#include <linux/ppdev.h>
#else
#error The T6963 driver needs ppdev
#error cannot compile T6963 driver
#endif

#include "debug.h"
#include "cfg.h"
#include "display.h"
#include "udelay.h"
#include "pixmap.h"


/*
 * /CE (Chip Enable)  <==>  /Strobe
 * C/D (Command/Data) <==>  /Select
 * /RD (Read)         <==>  /AutoFeed
 * /WR (Write)        <==>  Init
 *
 */

#define CE_L PARPORT_CONTROL_STROBE
#define CE_H 0

#define CD_L PARPORT_CONTROL_SELECT
#define CD_H 0

#define RD_L PARPORT_CONTROL_AUTOFD
#define RD_H 0

#define WR_L 0
#define WR_H PARPORT_CONTROL_INIT


#define XRES 6
#define YRES 8
#define BARS ( BAR_L | BAR_R | BAR_U | BAR_D | BAR_H2 | BAR_V2 | BAR_T)

static LCD Lcd;

static char *PPdev=NULL;
static int PPfd=-1;

unsigned char *Buffer1, *Buffer2;

// perform normal status check
void T6_status1 (void)
{
  int direction;
  int n;
  unsigned char ctrl, data;

  // turn off data line drivers
  direction=1;
  ioctl (PPfd, PPDATADIR, &direction);
  
  // lower RD and CE
  ctrl = RD_L | WR_H | CE_L | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(150); // Access Time: 150 ns 

  // wait for STA0=1 and STA1=1
  n=0;
  do {
    rep_nop();
    if (++n>1000) {
      debug("hang in status1");
      break;
    }
    ioctl (PPfd, PPRDATA, &data);
  } while ((data & 0x03) != 0x03);
  
  // rise RD and CE
  ctrl = RD_H | WR_H | CE_H | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  // turn on data line drivers
  direction=0;
  ioctl (PPfd, PPDATADIR, &direction);

}
// Fixme:
static int bug=0;

// perform status check in "auto mode"
void T6_status2 (void)
{
  int direction;
  int n;
  unsigned char ctrl, data;

  // turn off data line drivers
  direction=1;
  ioctl (PPfd, PPDATADIR, &direction);

  // lower RD and CE
  ctrl = RD_L | WR_H | CE_L | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(150); // Access Time: 150 ns 

  // wait for STA3=1
  n=0;
  do {
    rep_nop();
    if (++n>1000) {
      debug("hang in status2");
      bug=1;
      break;
    }
    ioctl (PPfd, PPRDATA, &data);
    // } while ((data & 0x08) == 0);
  } while ((data & 0x08) != 0x08);

  // rise RD and CE
  ctrl = RD_H | WR_H | CE_H | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);

  // turn on data line drivers
  direction=0;
  ioctl (PPfd, PPDATADIR, &direction);
}


static void T6_write_cmd (unsigned char cmd)
{
  unsigned char ctrl;

  // wait until the T6963 is idle
  T6_status1();

  // put data on DB1..DB8
  ioctl(PPfd, PPWDATA, &cmd);

  // lower WR and CE
  ctrl = RD_H | WR_L | CE_L | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(80); // Pulse width

  // rise WR and CE
  ctrl = RD_H | WR_H | CE_H | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);

  ndelay(40); // Data Hold Time
}

static void T6_write_data (unsigned char data)
{
  unsigned char ctrl;
    
  // wait until the T6963 is idle
  T6_status1();

  // put data on DB1..DB8
  ioctl(PPfd, PPWDATA, &data);

  // lower C/D
  ctrl = RD_H | WR_H | CE_H | CD_L;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(20); // C/D Setup Time

  // lower WR and CE
  ctrl = RD_H | WR_L | CE_L | CD_L;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(80); // Pulse Width
  
  // rise WR and CE
  ctrl = RD_H | WR_H | CE_H | CD_L;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(40); // Data Hold Time

  // rise CD
  ctrl = RD_H | WR_H | CE_H | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);
}

static void T6_write_auto (unsigned char data)
{
  unsigned char ctrl;
    
  // wait until the T6963 is idle
  T6_status2();

  // put data on DB1..DB8
  ioctl(PPfd, PPWDATA, &data);

  // lower C/D
  ctrl = RD_H | WR_H | CE_H | CD_L;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(20); // C/D Setup Time

  // lower WR and CE
  ctrl = RD_H | WR_L | CE_L | CD_L;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(80); // Pulse Width
  
  // rise WR and CE
  ctrl = RD_H | WR_H | CE_H | CD_L;
  ioctl (PPfd, PPWCONTROL, &ctrl);
  
  ndelay(40); // Data Hold Time

  // rise CD
  ctrl = RD_H | WR_H | CE_H | CD_H;
  ioctl (PPfd, PPWCONTROL, &ctrl);
}

static void T6_send_byte (unsigned char cmd, unsigned char data)
{
  T6_write_data(data);
  T6_write_cmd(cmd);
}

static void T6_send_word (unsigned char cmd, unsigned short data)
{
  T6_write_data(data&0xff);
  T6_write_data(data>>8);
  T6_write_cmd(cmd);
}

static void T6_memset(unsigned short addr, unsigned char data, int len)
{
  int i;

  T6_send_word (0x24, addr);      // Set Adress Pointer
  T6_write_cmd(0xb0);             // Set Data Auto Write
  for (i=0; i<len; i++) {
    T6_write_auto(data);
    if (bug) {
      debug("bug occured at byte %d of %d", i, len);
      bug=0;
    }
  }
  T6_status2();
  T6_write_cmd(0xb2);             // Auto Reset
}


static void T6_memcpy(unsigned short addr, unsigned char *data, int len)
{
  int i;

  T6_send_word (0x24, 0x0200+addr);  // Set Adress Pointer
  T6_write_cmd(0xb0);                // Set Data Auto Write
  for (i=0; i<len; i++) {
    T6_write_auto(*(data++));
    if (bug) {
      debug("bug occured at byte %d of %d, addr=%d", i, len, addr);
      bug=0;
    }
  }
  T6_status2();
  T6_write_cmd(0xb2);                // Auto Reset
}


static int T6_open (void)
{
  debug ("using ppdev %s", PPdev);
  PPfd=open(PPdev, O_RDWR);
  if (PPfd==-1) {
    error ("open(%s) failed: %s", PPdev, strerror(errno));
    return -1;
  }

#if 0
  if (ioctl(PPfd, PPEXCL)) {
    debug ("ioctl(%s, PPEXCL) failed: %s", PPdev, strerror(errno));
  } else {
    debug ("ioctl(%s, PPEXCL) succeded.");
  }
#endif

  if (ioctl(PPfd, PPCLAIM)) {
    error ("ioctl(%s, PPCLAIM) failed: %d %s", PPdev, errno, strerror(errno));
    return -1;
  }

  return 0;
}

int T6_clear (void)
{
  int rows;
  
  rows=(Lcd.rows>8 ? 8 : Lcd.rows);

  T6_memset(0x0000, 0, Lcd.cols*rows);    // clear text area 
  T6_memset(0x0200, 0, Lcd.cols*rows*8);  // clear graphic area

  if (Lcd.rows>8) {
    T6_memset(0x8000, 0, Lcd.cols*(Lcd.rows-rows));    // clear text area #2
    T6_memset(0x8200, 0, Lcd.cols*(Lcd.rows-rows)*8);  // clear graphic area #2
  }

  memset(Buffer1,0,Lcd.cols*Lcd.rows*Lcd.yres*sizeof(*Buffer1));
  memset(Buffer2,0,Lcd.cols*Lcd.rows*Lcd.yres*sizeof(*Buffer2));

  return pix_clear();
}

int T6_init (LCD *Self)
{
  char *port;

  Lcd=*Self;

  if (PPdev) {
    free (PPdev);
    PPdev=NULL;
  }

  port=cfg_get ("Port");
  if (port==NULL || *port=='\0') {
    error ("T6963: no 'Port' entry in %s", cfg_file());
    return -1;
  }
  PPdev=strdup(port);
  
  if (pix_init (Lcd.rows, Lcd.cols, Lcd.xres, Lcd.yres)!=0) {
    error ("T6963: pix_init(%d, %d, %d, %d) failed", Lcd.rows, Lcd.cols, Lcd.xres, Lcd.yres);
    return -1;
  }
  
  Buffer1=malloc(Lcd.cols*Lcd.rows*Lcd.yres);
  if (Buffer1==NULL) {
    error ("T6963: malloc(%d) failed: %s", Lcd.cols*Lcd.rows*Lcd.yres, strerror(errno));
    return -1;
  }

  Buffer2=malloc(Lcd.cols*Lcd.rows*Lcd.yres);
  if (Buffer2==NULL) {
    error ("T6963: malloc(%d) failed: %s", Lcd.cols*Lcd.rows*Lcd.yres, strerror(errno));
    return -1;
  }

  udelay_init();

  if (T6_open()!=0)
    return -1;
  
  debug ("setting %d columns", Lcd.cols);

  T6_send_word (0x40, 0x0000);    // Set Text Home Address
  T6_send_word (0x41, 40);        // Set Text Area

  T6_send_word (0x42, 0x0200);    // Set Graphic Home Address
  T6_send_word (0x43, 40);        // Set Graphic Area

  T6_write_cmd (0x80);            // Mode Set: OR mode, Internal CG RAM mode
  T6_send_word (0x22, 0x0002);    // Set Offset Register
  T6_write_cmd (0x98);            // Set Display Mode: Curser off, Text off, Graphics on
  T6_write_cmd (0xa0);            // Set Cursor Pattern: 1 line cursor
  T6_send_word (0x21, 0x0000);    // Set Cursor Pointer to (0,0)

  T6_clear();
  
  return 0;
}

int T6_put (int row, int col, char *text)
{
  return pix_put(row,col,text);
}

int T6_bar (int type, int row, int col, int max, int len1, int len2)
{
  return pix_bar(type,row,col,max,len1,len2);
}

int T6_flush (void)
{
  int i, j, e;
  
  memset(Buffer1,0,Lcd.cols*Lcd.rows*Lcd.yres*sizeof(*Buffer1));
  
  for (i=0; i<Lcd.cols*Lcd.rows*Lcd.yres; i++) {
    for (j=0; j<Lcd.xres; j++) {
      Buffer1[i]<<=1;
      if (LCDpixmap[i*Lcd.xres+j]) Buffer1[i]|=1;
    }
  }
  
  for (i=0; i<Lcd.cols*Lcd.rows*Lcd.yres; i++) {
    if (Buffer1[i]==Buffer2[i]) continue;
    for (j=i, e=0; i<Lcd.cols*Lcd.rows*Lcd.yres; i++) {
      if (Buffer1[i]==Buffer2[i]) {
	if (++e>4) break;
      } else {
	e=0;
      }
    }
    T6_memcpy (j, Buffer1+j, i-j-e+1);
  }

  memcpy(Buffer2,Buffer1,Lcd.cols*Lcd.rows*Lcd.yres*sizeof(*Buffer1));
  
  return 0;
}

int T6_quit (void)
{
  debug ("closing ppdev %s", PPdev);
  if (ioctl(PPfd, PPRELEASE)) {
    error ("ioctl(%s, PPRELEASE) failed: %s", PPdev, strerror(errno));
  }
  if (close(PPfd)==-1) {
    error ("close(%s) failed: %s", PPdev, strerror(errno));
    return -1;
  }
  return 0;
}

LCD T6963[] = {
  { "TLC1091", 16,40,XRES,YRES,BARS,0,T6_init,T6_clear,T6_put,T6_bar,NULL,T6_flush,T6_quit },
  { "DMF5002N",14,40,XRES,YRES,BARS,0,T6_init,T6_clear,T6_put,T6_bar,NULL,T6_flush,T6_quit },
  { NULL }
};