aboutsummaryrefslogtreecommitdiff
path: root/libmpio/io.c
blob: c615dbb4c685e716c706678fb1bb52606de10f7a (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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
/* -*- linux-c -*- */

/* 
 *
 * $Id: io.c,v 1.1.1.1 2002/08/28 16:10:50 salmoon Exp $
 *
 * Library for USB MPIO-*
 *
 * Markus Germeier (mager@tzi.de)
 *
 * uses code from mpio_stat.c by
 * Yuji Touya (salmoon@users.sourceforge.net)
 *
 * 
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * */

/* 
 *
 * low level I/O 
 *
 *
 */

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "io.h"
#include "debug.h"
#include "ecc.h"

WORD index2blockaddress(WORD);

WORD index2blockaddress(WORD ba)
{
  WORD addr;
  BYTE p = 0, c = 0;
  BYTE high, low;

  high = 0x10 | ((ba / 0x80) & 0x07);
  low  = (ba * 2) & 0xff;
    
  c = high;
  while (c) {
    if (c & 0x01)
      p ^= 1;
    c /= 2;
  }

  c = low;
  while (c) {
    if (c & 0x01)
      p ^= 0x01;
    c /= 2;
  }  
  
  addr = (high * 0x100) + low + p;

  return addr;
}

/*
 * low-low level functions
 */

/* 
 * Set command packet  
 *
 * parameter:
 *
 * cmd:       commando code
 * mem:       internal/external
 * index:     sector/block
 * small:     FAT with less or equal 32MB
 * wsize:     write size, only for PUT_BLOCK
 *
 *
 */

int
mpio_io_set_cmdpacket(mpio_cmd_t cmd, mpio_mem_t mem, DWORD index,
		      BYTE small, BYTE wsize, BYTE *buffer) 
{

  /* clear cmdpacket*/
  memset(buffer, 0, 0x40);  

  *buffer = cmd;
  *(buffer + 0x01) =   mem;
  *(buffer + 0x03) =   (BYTE) (index & 0x00ff);
  *(buffer + 0x04) =   (BYTE)((index & 0xff00) >> 8);
  /*  SM cards with less or equal 32 MB only need 2 Bytes
   *  to address sectors or blocks.
   *  The highest byte has to be 0xff in that case!
   */
  if (small <= 32) {
    *(buffer + 0x05) = 0xff;
  } else {  
    *(buffer + 0x05) = (BYTE) (index >> 16);
  }  
  *(buffer + 0x06) = wsize;  /* is this always 0x48 in case of a write ?? */

  memcpy((buffer + 0x3b), "jykim", 5);
  

  return (0);
}

/*
 * write chunk of data to MPIO filedescriptor
 *
 * parameter:
 *
 * fd:        filedescriptor
 * block:     data buffer (has to be num_bytes)
 * num_bytes: size of data buffer
 *
 */
int
mpio_io_bulk_write(int fd, BYTE *block, int num_bytes)
{
  BYTE *p;
  int count, bytes_left, bytes_written;

  bytes_left = num_bytes;
  bytes_written = 0;
  p = block;

  do
  {
    count = write (fd, p, bytes_left);
    if (count > 0)
    {
      p += count;
      bytes_written += count;
      bytes_left -= count;
    }
  } while (bytes_left > 0 && count > 0);

  return bytes_written;
}

/*
 * read chunk of data from MPIO filedescriptor
 *
 * parameter:
 *
 * fd:        filedescriptor
 * block:     return buffer (has to be num_bytes)
 * num_bytes: size of return buffer
 *
 */
int
mpio_io_bulk_read (int fd, BYTE *block, int num_bytes)
{
  int total_read, count, bytes_left;
  BYTE *p;

  total_read = 0;
  bytes_left = num_bytes;
  p = block;

  do
  {
    count = read (fd, p, bytes_left);

    if (count > 0)
      {
        total_read += count;
	bytes_left -= count;
	p += count;
      }
  } while (total_read < num_bytes && count > 0);

  return total_read;
}

/*
 * low level functions
 */

/* 
 * read version block from MPIO
 *
 * parameter:
 *
 * m:         mpio context
 * buffer:    return buffer (has to be CMD_SIZE)
 *
 */
int
mpio_io_version_read(mpio_t *m, BYTE *buffer)
{
  int nwrite, nread;
  BYTE cmdpacket[CMD_SIZE], status[CMD_SIZE];

  /*  Send command packet to MPIO  */
  mpio_io_set_cmdpacket (GET_VERSION, 0, 0, 0xff, 0, cmdpacket);

  debugn  (5, ">>> MPIO\n");
  hexdump (cmdpacket, sizeof(cmdpacket));

  nwrite = mpio_io_bulk_write (m->fd, cmdpacket, 0x40);

  if (nwrite != CMD_SIZE) {
    debug ("Failed to send command.\n\n");
    close (m->fd);
    return 0;    
  }

  /*  Receive packet from MPIO  */
  nread = mpio_io_bulk_read (m->fd, status, 0x40);

  if (nread == -1 || nread != 0x40) {
      debug ("Failed to read Sector.\n%x\n",nread);
    close (m->fd);
    return 0;    
  }

  debugn (5, "<<< MPIO\n");
  hexdump (status, 0x40);

  memcpy(buffer, status, 0x40);
  
  return CMD_SIZE;
}

/* 
 * read sector from SmartMedia
 *
 * parameter:
 *
 * m:         mpio context
 * area:      MPIO_{INTERNAL,EXTERNAL}_MEM
 * index:     index number of sector to read
 * small:     size of memory chip to read from
 * wsize:     dummy
 * output:    return buffer (has to be SECTOR_SIZE)
 *
 */
int
mpio_io_sector_read(mpio_t *m, BYTE area, DWORD index, BYTE small,
		    BYTE wsize, BYTE *output)
{
  int nwrite, nread;
  BYTE cmdpacket[CMD_SIZE], recvbuff[SECTOR_TRANS];

  mpio_io_set_cmdpacket (GET_SECTOR, area, index, small, wsize, cmdpacket);

  debugn (5, "\n>>> MPIO\n");
  hexdump (cmdpacket, sizeof(cmdpacket));
    
  nwrite = mpio_io_bulk_write (m->fd, cmdpacket, 0x40);

  if(nwrite != CMD_SIZE) {
    debug ("\nFailed to send command.\n\n");
    close (m->fd);
    return 1;
  }

  /*  Receive packet from MPIO   */
  nread = mpio_io_bulk_read (m->fd, recvbuff, SECTOR_TRANS);

  if(nread != SECTOR_TRANS) {
    debug ("\nFailed to read Sector.\n%x\n", nread);
    close (m->fd);
    return 1;
  }

  /* check ECC Area information */
  if (area==MPIO_EXTERNAL_MEM) {    
    mpio_ecc_256_check (recvbuff,
		  (recvbuff + SECTOR_SIZE + 13));
    mpio_ecc_256_check ((recvbuff + (SECTOR_SIZE / 2)),
		  (recvbuff + SECTOR_SIZE + 8));
  }
  
  debugn (5, "\n<<< MPIO\n");
  hexdump (recvbuff, SECTOR_TRANS);

  memcpy(output, recvbuff, SECTOR_SIZE);  

  return 0;  
}

/* 
 * write sector to SmartMedia
 *
 * parameter:
 *
 * m:         mpio context
 * area:      MPIO_{INTERNAL,EXTERNAL}_MEM
 * index:     index number of sector to read
 * small:     size of memory chip to read from
 * wsize:     dummy
 * input:     data buffer (has to be SECTOR_SIZE)
 *
 */
int  
mpio_io_sector_write(mpio_t *m, BYTE area, DWORD index, BYTE small,
		     BYTE wsize, BYTE *input)
{
  DWORD block_address, ba;
  int nwrite;
  BYTE cmdpacket[CMD_SIZE], sendbuff[SECTOR_TRANS];

  mpio_io_set_cmdpacket(PUT_SECTOR, area, index, small, wsize, cmdpacket);

  debugn (5, "\n>>> MPIO\n");
  hexdump (cmdpacket, sizeof(cmdpacket));
    
  nwrite = mpio_io_bulk_write(m->fd, cmdpacket, 0x40);

  if(nwrite != CMD_SIZE) {
    debug ("\nFailed to send command.\n\n");
    close (m->fd);
    return 1;
  }

  memset(sendbuff, 0, SECTOR_TRANS);
  memset(sendbuff + SECTOR_SIZE, 0xff, 0x10);
  memcpy(sendbuff, input, SECTOR_SIZE);
  
  if (index<0x40) {
    block_address=0;
  } else {  
    ba= (index /0x20) - 2;
    debugn(2, "foobar: %4x\n", ba);
    block_address= index2blockaddress(ba);
    debugn(2, "foobar: %4x\n", block_address);
  }
  
  /* generate ECC information for spare area ! */
  mpio_ecc_256_gen(sendbuff, 
	     sendbuff + SECTOR_SIZE + 0x0d);
  mpio_ecc_256_gen(sendbuff + (SECTOR_SIZE / 2), 
	     sendbuff + SECTOR_SIZE + 0x08);
  
  ba = (block_address / 0x100) & 0xff;
  sendbuff[SECTOR_SIZE + 0x06] = ba;
  sendbuff[SECTOR_SIZE + 0x0b] = ba;
  
  ba = block_address & 0xff;
  sendbuff[SECTOR_SIZE + 0x07] = ba;
  sendbuff[SECTOR_SIZE + 0x0c] = ba;

  debugn (5, "\n>>> MPIO\n");
  hexdump(sendbuff, SECTOR_TRANS);

  /*  write sector MPIO   */
  nwrite = mpio_io_bulk_write(m->fd, sendbuff, SECTOR_TRANS);

  if(nwrite != SECTOR_TRANS) {
    debug ("\nFailed to read Sector.\n%x\n", nwrite);
    close (m->fd);
    return 1;
  }

  return 0;  
}

/*
 * read/write of blocks
 */
int
mpio_io_block_read(mpio_t *m, BYTE area, DWORD index, BYTE small,
		   BYTE wsize, BYTE *output)
{
  int i=0;
  int nwrite, nread;
  DWORD rarea=0;
  BYTE cmdpacket[CMD_SIZE], recvbuff[BLOCK_TRANS];

  if (area == MPIO_INTERNAL_MEM) {
    rarea = index / 0x1000000;    
    index &= 0xffffff;
  }
  if (area == MPIO_EXTERNAL_MEM) {
    rarea = area;
  }

  index *= BLOCK_SECTORS;

  mpio_io_set_cmdpacket(GET_BLOCK, rarea, index, small, wsize, cmdpacket);

  debugn(5, "\n>>> MPIO\n");
  hexdump(cmdpacket, sizeof(cmdpacket));
    
  nwrite = mpio_io_bulk_write(m->fd, cmdpacket, CMD_SIZE);

  if(nwrite != CMD_SIZE) {
    debug ("\nFailed to send command.\n\n");
    close (m->fd);
    return 1;
  }

  /*  Receive packet from MPIO   */
  nread = mpio_io_bulk_read(m->fd, recvbuff, BLOCK_TRANS);

  if(nread != BLOCK_TRANS) {
    debug ("\nFailed to read Block.\n%x\n",nread);
    close (m->fd);
    return 1;
  }

  debugn(5, "\n<<< MPIO\n");
  hexdump(recvbuff, BLOCK_TRANS);

  for (i = 0; i < BLOCK_SECTORS; i++) {
    /* check ECC Area information */
    if (area==MPIO_EXTERNAL_MEM) {      
      mpio_ecc_256_check ((recvbuff + (i * SECTOR_TRANS)),                   
		    ((recvbuff + (i * SECTOR_TRANS) + SECTOR_SIZE + 13)));
      mpio_ecc_256_check ((recvbuff + (i * SECTOR_TRANS) + (SECTOR_SIZE / 2)), 
		    ((recvbuff + (i * SECTOR_TRANS) + SECTOR_SIZE + 8)));
    }
    
    memcpy(output + (i * SECTOR_SIZE), 
	   recvbuff + (i * SECTOR_TRANS), 
	   SECTOR_SIZE);
  }

  return 0;  
}

/* Read spare is only usefull for the internal memory,
 * the FAT lies there.
 * 
 * For external SmartMedia cards we get and write the
 * informatione during {read,write}_{sector,block}
 *
 */

int
mpio_io_spare_read(mpio_t *m, BYTE area, DWORD index, BYTE small,
		   BYTE wsize, BYTE *output, int toread)
{
  int i;
  int nwrite, nread;
  int chip = 0;
  int chips = 0;
  BYTE cmdpacket[CMD_SIZE];

  if (area != MPIO_INTERNAL_MEM) {
    debug("Something fishy happened, aborting!n");
    exit(1);
  }

  chips = m->internal.chips;  
  
  for (chip = 1; chip <= chips; chip++) {    
    mpio_io_set_cmdpacket(GET_SPARE_AREA, chip, index, small, 
			  wsize, cmdpacket);
    debugn(5, "\n>>> MPIO\n");
    hexdump(cmdpacket, sizeof(cmdpacket));
    
    nwrite = mpio_io_bulk_write(m->fd, cmdpacket, CMD_SIZE);
    
    if(nwrite != CMD_SIZE) {
      debug ("\nFailed to send command.\n\n");
      close (m->fd);
      return 1;
    }
    
    /*  Receive packet from MPIO   */
    for (i = 0; i < (toread / chips / CMD_SIZE); i++) {
      
      nread = mpio_io_bulk_read (m->fd,
				 output + (i * CMD_SIZE) +
				 (toread / chips * (chip - 1)),
				 CMD_SIZE);
      
      if(nread != CMD_SIZE) {
	debug ("\nFailed to read Block.\n%x\n",nread);
	close (m->fd);
	return 1;
      }
      debugn(5, "\n<<< MPIO\n");
      hexdump(output + (i * CMD_SIZE) + (toread / chips * (chip - 1)), 
	      CMD_SIZE);
    }
  }

  return 0;  
}

int  
mpio_io_block_delete(mpio_t *m, BYTE mem, DWORD index, BYTE small)
{
  int nwrite, nread;
  BYTE cmdpacket[CMD_SIZE], status[CMD_SIZE];

/*  Send command packet to MPIO  */

  mpio_io_set_cmdpacket(DEL_BLOCK, mem, index, small, 0, cmdpacket);

  debugn  (5, ">>> MPIO\n");
  hexdump (cmdpacket, sizeof(cmdpacket));

  nwrite = mpio_io_bulk_write(m->fd, cmdpacket, 0x40);

  if (nwrite != CMD_SIZE) {
    debug ("Failed to send command.\n\n");
    close (m->fd);
    return 0;
  }

/*  Receive packet from MPIO  */
  nread = mpio_io_bulk_read (m->fd, status, CMD_SIZE);

  if ((nread == -1) || (nread != CMD_SIZE)) {
      debug ("Failed to read Sector.\n%x\n",nread);
    close (m->fd);
    return 0;
  }

  if (status[0] != 0xc0) debug ("error formatting Block %04x\n", index);
  debugn(5, "<<< MPIO\n");
  hexdump(status, CMD_SIZE);
  
  return CMD_SIZE;
}

int  
mpio_io_block_write(mpio_t *m, BYTE area, DWORD index, BYTE small, 
		    BYTE wsize, BYTE *data)
{
  int i = 0;
  int nwrite;
  DWORD block_address, ba;
  DWORD rarea = 0;
  BYTE cmdpacket[CMD_SIZE], sendbuff[BLOCK_TRANS];

  if (area == MPIO_INTERNAL_MEM) {
    rarea = index / 0x1000000;    
    index &= 0xffffff;
  }
  if (area == MPIO_EXTERNAL_MEM) {
    rarea = area;
  }

  index *= BLOCK_SECTORS;  

  /* build block for transfer to MPIO */
  for (i = 0; i < BLOCK_SECTORS; i++) {
    memcpy(sendbuff + (i * SECTOR_TRANS), 
	   data + (i * SECTOR_SIZE),	   
	   SECTOR_SIZE);
    memset(sendbuff + (i * SECTOR_TRANS) + SECTOR_SIZE,
	   0xff, CMD_SIZE);
    /* fill in block information */
    if (index < 0x40) {
      block_address = 0;
    } else {  
      ba = (index / 0x20) - 2;
/*       debugn(2, "foobar: %4x\n", ba); */
      block_address = index2blockaddress(ba);
/*       debugn(2, "foobar: %4x\n", block_address); */
    }

    ba = (block_address / 0x100) & 0xff;
    sendbuff[(i * SECTOR_TRANS) + SECTOR_SIZE + 0x06] = ba;
    sendbuff[(i * SECTOR_TRANS) + SECTOR_SIZE + 0x0b] = ba;
    
    ba = block_address & 0xff;
    sendbuff[(i * SECTOR_TRANS) + SECTOR_SIZE + 0x07] = ba;
    sendbuff[(i * SECTOR_TRANS) + SECTOR_SIZE + 0x0c] = ba;

    /* generate ECC Area information */
    if (area == MPIO_EXTERNAL_MEM) {      
      mpio_ecc_256_gen ((sendbuff + (i * SECTOR_TRANS)),                   
			((sendbuff + (i * SECTOR_TRANS) + SECTOR_SIZE + 13)));
      mpio_ecc_256_gen ((sendbuff + (i * SECTOR_TRANS) + (SECTOR_SIZE / 2)), 
			((sendbuff + (i * SECTOR_TRANS) + SECTOR_SIZE + 8)));
    }
  }

  mpio_io_set_cmdpacket(PUT_BLOCK, rarea, index, small, wsize, cmdpacket);

  debugn(5, "\n>>> MPIO\n");
  hexdump(cmdpacket, sizeof(cmdpacket));
    
  nwrite = mpio_io_bulk_write(m->fd, cmdpacket, CMD_SIZE);

  if(nwrite != CMD_SIZE) {
    debug ("\nFailed to send command.\n\n");
    close (m->fd);
    return 1;
  }

  /*  send packet to MPIO   */
  debugn(5, "\n<<< MPIO\n");
  hexdump(sendbuff, BLOCK_TRANS);
  nwrite = mpio_io_bulk_write (m->fd, sendbuff, BLOCK_TRANS);

  if(nwrite != BLOCK_TRANS) {
    debug ("\nFailed to read Block.\n%x\n",nwrite);
    close (m->fd);
    return 1;
  }

  return 0;
}