aboutsummaryrefslogtreecommitdiff
path: root/libmpio/src/io.c
blob: 6c1f1ebb8cbec7e86bc76e8c1ca7999dd06c399a (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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
/*
 * $Id: io.c,v 1.11 2004/04/23 18:17:56 germeier Exp $
 *
 *  libmpio - a library for accessing Digit@lways MPIO players
 *  Copyright (C) 2002-2004 Markus Germeier
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc.,g 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

/*
 * uses code from mpio_stat.c by
 * Yuji Touya (salmoon@users.sourceforge.net)
 */

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

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>

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

BYTE model2externalmem(mpio_model_t);
DWORD blockaddress_encode(DWORD);
DWORD blockaddress_decode(BYTE *);
void fatentry2hw(mpio_fatentry_t *, BYTE *, DWORD *);

/* small hack to handle external addressing on different MPIO models */
BYTE 
model2externalmem(mpio_model_t model)
{
  BYTE m;

  switch(model) 
    {
    case MPIO_MODEL_DMG:
    case MPIO_MODEL_DMG_PLUS:
    case MPIO_MODEL_FD100:
    case MPIO_MODEL_FY100:
    case MPIO_MODEL_FY200:
    case MPIO_MODEL_VP_01:
      m = 0x80;
      break;
    default:
      m = 0x10;
    }

  return m;
}      

/* encoding and decoding of blockaddresses */

DWORD 
blockaddress_encode(DWORD 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;
}


DWORD 
blockaddress_decode(BYTE *entry)
{
  WORD ba;
  WORD value;
  BYTE p=0, high, low;
  int i, t;

  /* check for "easy" defect block */
  t=1;
  for(i=0; i<0x10; i++)
    if (entry[i] != 0)
      t=0;
  if (t)
    return MPIO_BLOCK_DEFECT;

  /* check for "easy" defect block */
  t=1;
  for(i=0; i<0x10; i++)
    if (entry[i] != 0xff)
      t=0;
  if (t)
    return MPIO_BLOCK_FREE;

  /* check for "strange" errors */
  if ((entry[6] != entry[11]) ||
      (entry[7] != entry[12]))
    {	  
      debug("error: different block addresses found:\n");
      hexdumpn(1, entry, 0x10);
      return MPIO_BLOCK_DEFECT;
    } 
  
  ba = entry[6] * 0x100 + entry[7];
  
  /* special values */
  if (ba == 0xffff)
    return MPIO_BLOCK_DEFECT;
  if (ba == 0x0000)
    return MPIO_BLOCK_CIS;

  /* check parity */
  value = ba;
  while (value)
    {
      if (value & 0x01)
	p ^= 0x01;
      
      value /= 2;
    }
  if (p) 
    {
      debug("error: parity error found in block address: %2x\n", ba);
      return MPIO_BLOCK_DEFECT;      
    }
  
  high = ((ba / 0x100) & 0x07);
  low  = ((ba & 0x0ff) / 2);
  
  return (high * 0x80 + low);
}

/* foobar  */

void 
fatentry2hw(mpio_fatentry_t *f, BYTE *chip, DWORD *address)
{
  mpio_smartmedia_t *sm;
  
  if (f->mem == MPIO_INTERNAL_MEM) 
    {
      sm       = &f->m->internal;
      /*       hexdump((char *)&f->entry, 4); */
      /*       hexdump((char *)&f->hw_address, 4); */
      *chip    = f->hw_address / 0x1000000;    
      *address = f->hw_address & 0x0ffffff;
    }
  if (f->mem == MPIO_EXTERNAL_MEM) 
    {
      sm        = &f->m->external;
      *chip     = MPIO_EXTERNAL_MEM;
      *address  = mpio_zone_block_find_log(f->m, f->mem, f->entry);
      debugn(3, "%06x (logical: %04x)\n", *address, f->entry);
    }
  return;
}

/*
 * zone management
 */

int   
mpio_zone_init(mpio_t *m, mpio_cmd_t mem)
{
  mpio_smartmedia_t *sm;
  int i;
  int zone, block, e;
  
  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return -1;
    }
  sm = &m->external;

  for(i=0; i<sm->max_blocks; i++)
    {
      zone = i / MPIO_ZONE_PBLOCKS;
      block= i % MPIO_ZONE_PBLOCKS;

      e = i * 0x10;

      sm->zonetable[zone][block]=blockaddress_decode(sm->spare+e);
      
      hexdumpn(4, sm->spare+e, 0x10);
      debugn(2, "decoded: %04x\n", sm->zonetable[zone][block]);
    }
  return MPIO_OK;
}

DWORD 
mpio_zone_block_find_log(mpio_t *m, mpio_cmd_t mem, DWORD lblock)
{
  mpio_smartmedia_t *sm;
  int v;

  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return -1;
    }
  sm = &m->external;
  
  /* OK, I can't explain this right now, but it does work,
   * see Software Driver v3.0, page 31
   */
  v = lblock + (sm->size/64);
  
  return (mpio_zone_block_find_seq(m, mem, v));
}

DWORD 
mpio_zone_block_find_seq(mpio_t *m, mpio_cmd_t mem, DWORD lblock)
{
  mpio_smartmedia_t *sm;
  int i, f, v;
  DWORD zone, block;
  
  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return -1;
    }
  sm = &m->external;

  if ((lblock>=MPIO_BLOCK_CIS) && (lblock<(MPIO_BLOCK_CIS + BLOCK_SECTORS)))
    {
      zone  = 0;
      block = MPIO_BLOCK_CIS;
    } else {  
      zone  = lblock / MPIO_ZONE_LBLOCKS;
      block = lblock % MPIO_ZONE_LBLOCKS;
    }
  
  f=0;
  for (i=(MPIO_ZONE_PBLOCKS-1); i >=0; i--)
    {

      if (sm->zonetable[zone][i]==block)
	{
	  f++;
	  v=i;
	}
    }

  if (f>1)
    debug("found more than one block, using first one\n");
  
  if (!f) 
    {      
      debugn(2, "block not found\n");
      return MPIO_BLOCK_NOT_FOUND;
    }
  
  return ((zone * BLOCK_SECTORS * MPIO_ZONE_PBLOCKS ) + v * BLOCK_SECTORS);
}

DWORD
mpio_zone_block_set_free(mpio_t *m, mpio_cmd_t mem, DWORD lblock)
{
  DWORD value;
  mpio_smartmedia_t *sm;

  if (mem != MPIO_EXTERNAL_MEM)
    {
      debug("called function with wrong memory selection!\n");
      return -1;
    }
  sm = &m->external;

  value = mpio_zone_block_find_log(m, mem, lblock);

  mpio_zone_block_set_free_phys(m, mem, value);
  
  return value;
}

void
mpio_zone_block_set_free_phys(mpio_t *m, mpio_cmd_t mem, DWORD value)
{
  int zone, block;
  mpio_smartmedia_t *sm;

  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return;
    }
  sm = &m->external;

  zone  = value / BLOCK_SECTORS;
  block = zone  % MPIO_ZONE_PBLOCKS;
  zone  = zone  / MPIO_ZONE_PBLOCKS;

  sm->zonetable[zone][block] = MPIO_BLOCK_FREE;

  return;
}

void
mpio_zone_block_set_defect_phys(mpio_t *m, mpio_cmd_t mem, DWORD value)
{
  int zone, block;
  mpio_smartmedia_t *sm;

  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return;
    }
  sm = &m->external;

  zone  = value / BLOCK_SECTORS;
  block = zone  % MPIO_ZONE_PBLOCKS;
  zone  = zone  / MPIO_ZONE_PBLOCKS;

  sm->zonetable[zone][block] = MPIO_BLOCK_DEFECT;

  return;
}

void
mpio_zone_block_set(mpio_t *m, mpio_cmd_t mem, DWORD pblock)
{
  int zone, block, pb;

  UNUSED(mem);
  
  pb    = pblock / BLOCK_SECTORS;
  zone  = pb / MPIO_ZONE_PBLOCKS;
  block = pb % MPIO_ZONE_PBLOCKS;

  m->external.zonetable[zone][block] = MPIO_BLOCK_FREE ;

}

DWORD 
mpio_zone_block_find_free_log(mpio_t *m, mpio_cmd_t mem, DWORD lblock)
{
  mpio_smartmedia_t *sm;
  int v;

  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return -1;
    }
  sm = &m->external;
  
  /* OK, I can't explain this right now, but it does work,
   * see Software Driver v3.0, page 31
   */
  v = lblock + (sm->size/64);
  
  return (mpio_zone_block_find_free_seq(m, mem, v));
}

DWORD 
mpio_zone_block_find_free_seq(mpio_t *m, mpio_cmd_t mem, DWORD lblock)
{
  DWORD value;
  int zone, block, i;
  mpio_smartmedia_t *sm;

  if (mem != MPIO_EXTERNAL_MEM) 
    {
      debug("called function with wrong memory selection!\n");
      return -1;
    }
  sm = &m->external;
  
  value = mpio_zone_block_find_seq(m, mem, lblock);

  if (value != MPIO_BLOCK_NOT_FOUND)
    {
      debug("logical block numbers is already assigned! (lblock=0x%04x)\n", lblock);
      exit (-1);
    }

  if ((lblock>=MPIO_BLOCK_CIS) && (lblock<(MPIO_BLOCK_CIS + BLOCK_SECTORS)))
    {
      zone  = 0;
      block = MPIO_BLOCK_CIS;
    } else {  
      zone  = lblock / MPIO_ZONE_LBLOCKS;
      block = lblock % MPIO_ZONE_LBLOCKS;
    }
  
  i=0;
  while ((sm->zonetable[zone][i]!=MPIO_BLOCK_FREE) && (i<MPIO_ZONE_PBLOCKS))
    i++;

  if (i==MPIO_ZONE_PBLOCKS)
    {
      debug("could not find free pysical block\n");
      return MPIO_BLOCK_NOT_FOUND;
    }

  debugn(2, "set new sector in zonetable, [%d][%d] = 0x%04x\n", zone, i, block);
  
  sm->zonetable[zone][i] = block;

  return ((zone * BLOCK_SECTORS * MPIO_ZONE_PBLOCKS ) + i * BLOCK_SECTORS);
}


WORD 
mpio_zone_block_get_logical(mpio_t *m, mpio_cmd_t mem, DWORD pblock)
{
  int zone, block, pb;

  UNUSED(mem);
  
  pb    = pblock / BLOCK_SECTORS;
  zone  = pb / MPIO_ZONE_PBLOCKS;
  block = pb % MPIO_ZONE_PBLOCKS;
  
  return m->external.zonetable[zone][block];
}


/*
 * report sizes of selected memory
 */

int
mpio_block_get_sectors(mpio_t *m, mpio_mem_t mem){
  mpio_smartmedia_t *sm=0;
  int sectors;
  
  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;
  if (!sm)
    {
      debug("error in memory selection, aborting\n");      
      exit (-1);
    }

  sectors = BLOCK_SECTORS;
  if (sm->version)
    sectors = MEGABLOCK_SECTORS;

  return sectors;
}

int
mpio_block_get_blocksize(mpio_t *m, mpio_mem_t mem) {
  mpio_smartmedia_t *sm=0;
  int size;
  
  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;
  if (!sm)
    {
      debug("error in memory selection, aborting\n");      
      exit (-1);
    }

  size = BLOCK_SIZE;
  if (sm->version)
    size = MEGABLOCK_SIZE;

  return size;
}

/* 
 * open/closes the device 
 */
int 
mpio_device_open(mpio_t *m){
  struct usb_device *dev;
  struct usb_interface_descriptor *interface;
  struct usb_endpoint_descriptor *ep;
  int ret, i;
  m->use_libusb=1;

#ifdef USE_KMODULE
  debugn(2, "trying kernel module\n");
  m->fd = open(MPIO_DEVICE, O_RDWR);
  if (m->fd > 0) {
    debugn(2, "using kernel module\n");
    m->use_libusb=0;
    return MPIO_OK;
  }
#endif

  debugn(2, "trying libusb\n");
  usb_init();
  usb_find_busses();
  usb_find_devices();
  
  m->usb_busses = usb_get_busses();
  
  for (m->usb_bus = m->usb_busses; 
       m->usb_bus; 
       m->usb_bus = m->usb_bus->next) {

    for (dev = m->usb_bus->devices; dev; dev = dev->next) {
      if (dev->descriptor.idVendor == 0x2735) {
	if ((dev->descriptor.idProduct != 0x01)  &&
	    (dev->descriptor.idProduct != 0x71))
	  debugn(2, "Found Product ID %02x, which is unknown. Proceeding anyway.\n",
		dev->descriptor.idProduct);
	m->usb_handle = usb_open(dev);
	if (m->usb_handle) {
	  /* found and opened the device,
	     now find the communication endpoints */
	  m->usb_in_ep = m->usb_out_ep = 0;
	  
	  ret = usb_claim_interface (m->usb_handle, 0);
	  
	  if (ret < 0)
	    {
	      debugn(2, "Error claiming device: %d  \"%s\"\n", ret, usb_strerror());
	      return MPIO_ERR_PERMISSION_DENIED;
	    } else {
	      debugn(2, "claimed interface 0\n");
	    }
	  
	  
	  interface = dev->config->interface->altsetting;

	  for (i = 0 ; i < interface->bNumEndpoints; i++) {
	    ep = &interface->endpoint[i];
	    debugn(2, "USB endpoint #%d (Addr=0x%02x, Attr=0x%02x)\n", i, 
		 ep->bEndpointAddress, ep->bmAttributes);
	    if (ep->bmAttributes == 2) {
	      if (ep->bEndpointAddress & USB_ENDPOINT_IN) {
		debugn(2, "FOUND incoming USB endpoint (0x%02x)\n", ep->bEndpointAddress);
		m->usb_in_ep = ep->bEndpointAddress & ~(USB_ENDPOINT_IN);
	      } else {
		debugn(2, "FOUND outgoing USB endpoint (0x%02x)\n", ep->bEndpointAddress);
		m->usb_out_ep = ep->bEndpointAddress;
	      }
	    }
	  }
	  
	  if (!(m->usb_in_ep && m->usb_out_ep)) {
	    debugn(2, "Did not find USB bulk endpoints.\n");
	    return MPIO_ERR_PERMISSION_DENIED;	    
	  }	  
	  
	  debugn(2, "using libusb\n");
	  return MPIO_OK;
	}      
      }
    }
  }

  return MPIO_ERR_PERMISSION_DENIED;
}

int 
mpio_device_close(mpio_t *m) {
  if(m->use_libusb) {
    debugn(2, "closing libusb\n");
    usb_close(m->usb_handle);
    m->fd=0;
  } 
#ifdef USE_KMODULE
  else {
    debugn(2, "closing kernel module\n");
    close(m->fd);
    m->fd=0;
  }
#endif
  
  return MPIO_OK;
}

/*
 * low-low level functions
 */

/* 
 * Set command packet  
 *
 * parameter:
 *
 * cmd:       commando code
 * mem:       internal/external
 * index:     sector/block
 * size:      size of used memory chip
 * wsize:     write size, only for PUT_BLOCK
 * buffer:    output buffer of command packet
 *
 */

int
mpio_io_set_cmdpacket(mpio_t *m, mpio_cmd_t cmd, mpio_mem_t mem, DWORD index,
		      WORD size, BYTE wsize, BYTE *buffer) 
{
  BYTE memory;

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

  *buffer = cmd;
  memory = mem;
  if (mem == MPIO_EXTERNAL_MEM)
    memory = model2externalmem(m->model);
  
  *(buffer + 0x01) =   memory;
  *(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 (size <= 32) 
    {
      *(buffer + 0x05) = 0xff;
    } else {  
      *(buffer + 0x05) = (BYTE) (index >> 16);
    }  
  /* is this always 0x48 in case of a block write ?? */
  *(buffer + 0x06) = wsize;  

  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;
}

int
mpio_io_write(mpio_t *m, BYTE *block, int num_bytes)
{
  if (m->use_libusb) {
    int r;  
    r = usb_bulk_write(m->usb_handle, m->usb_out_ep, block, num_bytes, MPIO_USB_TIMEOUT);
    if (r < 0)
      debug("libusb returned error: (%08x) \"%s\"\n", r, usb_strerror());
    return r;
  } 
#ifdef USE_KMODULE
  else {     
    return mpio_io_bulk_write(m->fd, block, num_bytes);
  }  
#endif
}


/*
 * 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;
}

int
mpio_io_read (mpio_t *m, BYTE *block, int num_bytes)
{
  if (m->use_libusb) {
    int r;
    r = usb_bulk_read(m->usb_handle, m->usb_in_ep, block, num_bytes, MPIO_USB_TIMEOUT);
    if (r < 0)
      debug("libusb returned error: (%08x) \"%s\"\n", r, usb_strerror());
    return r;
  }
#ifdef USE_KMODULE
  else {    
    return mpio_io_bulk_read(m->fd, block, num_bytes);
  }
#endif
}


/*
 * 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 (m, GET_VERSION, 0, 0, 0xff, 0, cmdpacket);

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

  nwrite = mpio_io_write(m, cmdpacket, 0x40);

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

  /*  Receive packet from MPIO  */
  nread = mpio_io_read(m, status, 0x40);

  if (nread == -1 || nread != 0x40) 
    {
      debug ("Failed to read Sector.(nread=0x%04x)\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
 * mem:       MPIO_{INTERNAL,EXTERNAL}_MEM
 * index:     index number of sector to read
 * output:    return buffer (has to be SECTOR_SIZE)
 *
 */

/* right now we assume we only want to read single sectors from 
 * the _first_ internal memory chip 
 */

int
mpio_io_sector_read(mpio_t *m, BYTE mem, DWORD index, BYTE *output)
{
  mpio_smartmedia_t *sm=0;
  DWORD sector;
  int nwrite, nread;
  BYTE cmdpacket[CMD_SIZE], recvbuff[SECTOR_TRANS];

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;
  if (!sm)
    {
      debug("error in memory selection, aborting\n");      
      exit (-1);
    }

  if (mem == MPIO_INTERNAL_MEM)
    {
      sector = index;
    } else {      
      /* find the correct physical block first! */
      if ((index>=MPIO_BLOCK_CIS) && (index<(MPIO_BLOCK_CIS + BLOCK_SECTORS)))
	{
	  sector = mpio_zone_block_find_seq(m, mem, MPIO_BLOCK_CIS);
	  sector+= (index % MPIO_BLOCK_CIS);
	} else {
	  sector = mpio_zone_block_find_seq(m, mem, (index / 0x20));
	  sector+= (index % 0x20);
	}
    }

  debugn (2, "sector: (index=0x%8x sector=0x%06x)\n", index, sector);

  mpio_io_set_cmdpacket (m, GET_SECTOR, mem, sector, sm->size, 0, cmdpacket);

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

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

  /*  Receive packet from MPIO   */
  nread = mpio_io_read(m, recvbuff, SECTOR_TRANS);

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

  /* check ECC Area information */
  if (mem==MPIO_EXTERNAL_MEM) 
    {    
      if (mpio_ecc_256_check (recvbuff,
			      (recvbuff + SECTOR_SIZE + 13)) ||
          mpio_ecc_256_check ((recvbuff + (SECTOR_SIZE / 2)),
			      (recvbuff + SECTOR_SIZE + 8))    )
      	debug ("ECC error @ (mem=0x%02x index=0x%06x)\n", mem, index);
    }

  /* This should not be needed:
     * we don't have ECC information for the internal memory
     * we only read the directory through this function
   */
  /*   if (mem==MPIO_INTERNAL_MEM)  */
  /*     { */
  /*       debugn(2, "WARNING, code for internal FAT entry (in ECC area)" */
  /* 	    " not yet in place!!\n"); */
  /*     } */
  
  debugn (5, "\n<<< MPIO\n");
  hexdump (recvbuff, SECTOR_TRANS);

  memcpy(output, recvbuff, SECTOR_SIZE);  

  return 0;  
}

/* 
 * write sector to SmartMedia
 *
 * parameter:
 *
 * m:         mpio context
 * mem:       MPIO_{INTERNAL,EXTERNAL}_MEM
 * index:     index number of sector to read
 * input:     data buffer (has to be SECTOR_SIZE)
 *
 */

/* right now we assume we only want to write single sectors from 
 * the _first_ internal memory chip 
 */

int  
mpio_io_sector_write(mpio_t *m, BYTE mem, DWORD index, BYTE *input)
{
  int nwrite;
  mpio_smartmedia_t *sm;
  DWORD pvalue;
  DWORD block_address, ba;
  BYTE cmdpacket[CMD_SIZE], sendbuff[SECTOR_TRANS];

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;
  if (!sm)
    {
      debug("error in memory selection, aborting\n");      
      exit (-1);
    }

  /* we have to:
   * - find the physical block (or allocate a new one)
   * - calculate the logical block for zone management
   */

  if (mem == MPIO_EXTERNAL_MEM) 
    {      
      if (index==MPIO_BLOCK_DEFECT) 
	{
	  block_address = 0;
	  pvalue = 0;
	} else {
	  if ((index>=MPIO_BLOCK_CIS) && 
	      (index<(MPIO_BLOCK_CIS + BLOCK_SECTORS)))
	    {
	      block_address = 0;
	      if (index==MPIO_BLOCK_CIS)
		{
		  pvalue=mpio_zone_block_find_free_seq(m, mem, index);  
		} else {
		  /* find the block from the block list! */
		  pvalue=mpio_zone_block_find_seq(m, mem, MPIO_BLOCK_CIS);
		}
	      if (pvalue != MPIO_BLOCK_NOT_FOUND)
		pvalue = pvalue + index - MPIO_BLOCK_CIS;
	      
	    } else {      
	      block_address = blockaddress_encode(index / BLOCK_SECTORS); 
	      if ((index % BLOCK_SECTORS) == 0)
		{
		  /* this is the first write to the block: allocate a new one */
		  /* ... and mark it with the block_address */
		  pvalue=mpio_zone_block_find_free_seq(m, mem, 
						       (index / BLOCK_SECTORS));      
		} else {
		  /* find the block from the block list! */
		  pvalue=mpio_zone_block_find_seq(m, mem, (index / BLOCK_SECTORS));
		}
	      if (pvalue != MPIO_BLOCK_NOT_FOUND)
		pvalue = pvalue + (index % BLOCK_SECTORS);
	      
	    }
	  
	  if (pvalue == MPIO_BLOCK_NOT_FOUND)
	    {
	      debug ("Oops, this should never happen! (index=0x%06x block_address=0x%06x)\n", 
		     index, block_address);
	      exit (-1);
	    }      
	}
    } else {
      pvalue = index;
    }

  mpio_io_set_cmdpacket(m, PUT_SECTOR, mem, pvalue, sm->size, 0, cmdpacket);

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

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

  memset(sendbuff, 0, SECTOR_TRANS);
  memset(sendbuff + SECTOR_SIZE, 0xff, 0x10);
  memcpy(sendbuff, input, SECTOR_SIZE);
  
  if (mem==MPIO_EXTERNAL_MEM)    
    {    
      if (index == MPIO_BLOCK_DEFECT) {
	memset(sendbuff + SECTOR_SIZE, 0, 0x10);
	mpio_zone_block_set_defect_phys(m, mem, pvalue);
      } else {
	
	/* 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);
	if (index == MPIO_BLOCK_DEFECT) {
	  memset(sendbuff + SECTOR_SIZE, 0, 0x10);
	} else {	  
	  if (index == MPIO_BLOCK_CIS) {
	    memset(sendbuff + SECTOR_SIZE + 0x06, 0, 2);
	    memset(sendbuff + SECTOR_SIZE + 0x0b, 0, 2);
	  } else {	  
	    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;
	  }
	}
	
      }
    }
  
  /* easy but working, we write back the FAT info we read before */
  if (mem==MPIO_INTERNAL_MEM) 
      memcpy((sendbuff+SECTOR_SIZE), sm->fat, 0x10);

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

  /*  write sector MPIO   */
  nwrite = mpio_io_write(m, sendbuff, SECTOR_TRANS);

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

  return 0;  
}

/*
 * read/write of megablocks
 */
int
mpio_io_megablock_read(mpio_t *m, mpio_mem_t mem, mpio_fatentry_t *f, BYTE *output)
{
  int i=0;
  int j=0;
  int nwrite, nread;
  mpio_smartmedia_t *sm;
  BYTE  chip;
  DWORD address;
  BYTE cmdpacket[CMD_SIZE], recvbuff[BLOCK_TRANS];

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  fatentry2hw(f, &chip, &address);

  mpio_io_set_cmdpacket(m, GET_BLOCK, chip, address, sm->size, 0, cmdpacket);

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

/*   hexdumpn(0, cmdpacket, 16); */

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

  /*  Receive packets from MPIO   */
  for (i = 0; i < 8; i++) 
    {      
      nread = mpio_io_read(m, recvbuff, BLOCK_TRANS);
      
      if(nread != BLOCK_TRANS) 
	{
	  debug ("\nFailed to read (sub-)block.(nread=0x%04x)\n",nread);
	  close (m->fd);
	  return 1;
	}
      
      debugn(5, "\n<<< MPIO (%d)\n", i);
      hexdump(recvbuff, BLOCK_TRANS);

      for (j = 0; j < BLOCK_SECTORS; j++) {
	memcpy(output + (j * SECTOR_SIZE) + (i * BLOCK_SIZE), 
	       recvbuff + (j * SECTOR_TRANS), 
	       SECTOR_SIZE);
      }
    }

  return 0;  
}

/*
 * read/write of blocks
 */
int
mpio_io_block_read(mpio_t *m, mpio_mem_t mem, mpio_fatentry_t *f, BYTE *output)
{
  int i=0;
  int nwrite, nread;
  mpio_smartmedia_t *sm;
  BYTE  chip;
  DWORD address;
  BYTE cmdpacket[CMD_SIZE], recvbuff[BLOCK_TRANS];

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  if (sm->version)
    return mpio_io_megablock_read(m, mem, f, output);

  fatentry2hw(f, &chip, &address);

  mpio_io_set_cmdpacket(m, GET_BLOCK, chip, address, sm->size, 0, cmdpacket);

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

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

  /*  Receive packet from MPIO   */
  nread = mpio_io_read(m, recvbuff, BLOCK_TRANS);

  if(nread != BLOCK_TRANS) 
    {
      debug ("\nFailed to read Block.(nread=0x%04x)\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 (mem==MPIO_EXTERNAL_MEM) {      
	if (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))))
	  debug ("ECC error @ (chip=0x%02x address=0x%06x)\n", chip, address);
      }
      
      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. It is updated during the
 * mpio_io_{sector,block}_{read,write} operations.
 *
 * For external SmartMedia cards we have a "seperate" FAT
 * which is read and updated just like on a regular floppy
 * disc or hard drive.
 *
 */

int
mpio_io_spare_read(mpio_t *m, BYTE mem, DWORD index, WORD size,
		   BYTE wsize, BYTE *output, int toread,
		   mpio_callback_init_t progress_callback)
{
  mpio_smartmedia_t *sm;
  int i;
  int nwrite, nread;
  int chip = 0;
  int chips = 0;
  BYTE cmdpacket[CMD_SIZE];

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;  
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  chips = sm->chips;  
  
  for (chip = 1; chip <= chips; chip++) 
    {
      if (mem == MPIO_INTERNAL_MEM) 
	mpio_io_set_cmdpacket(m, GET_SPARE_AREA, (1 << (chip-1)), 
			      index, (size / sm->chips), 
			      wsize, cmdpacket);
      if (mem == MPIO_EXTERNAL_MEM) 
	mpio_io_set_cmdpacket(m, GET_SPARE_AREA, mem, index, size, 
			      wsize, cmdpacket);
      debugn(5, "\n>>> MPIO\n");
      hexdump(cmdpacket, sizeof(cmdpacket));
      
      nwrite = mpio_io_write(m, cmdpacket, CMD_SIZE);
      
      if(nwrite != CMD_SIZE) {
	debug ("\nFailed to send command.\n");
	close (m->fd);
	return 1;
      }
      
      /*  Receive packet from MPIO   */
      for (i = 0; i < (toread / chips / CMD_SIZE); i++) 
	{	  
	  nread = mpio_io_read(m,
			       output + (i * CMD_SIZE) +
			       (toread / chips * (chip - 1)),
			       CMD_SIZE);

	  if ((progress_callback) && (i % 256))
	    (*progress_callback)(mem, 
				 (i*CMD_SIZE+(toread/chips*(chip-1))),
				 toread );
      
	  if(nread != CMD_SIZE) 
	    {
	      debug ("\nFailed to read Block.(nread=0x%04x)\n",nread);
	      close (m->fd);
	      return 1;
	    }
	  debugn(5, "\n<<< MPIO\n");
	  hexdump(output + (i * CMD_SIZE) + (toread / chips * (chip - 1)), 
		  CMD_SIZE);
	}
    }
  if (progress_callback)
    (*progress_callback)(mem, toread, toread);
  
  return 0;  
}

int  
mpio_io_block_delete(mpio_t *m, mpio_mem_t mem, mpio_fatentry_t *f)
{
  BYTE  chip=0;
  DWORD address;
  mpio_smartmedia_t *sm;

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  fatentry2hw(f, &chip, &address);

  if (address == MPIO_BLOCK_NOT_FOUND)
    {
      debug("hmm, what happened here? (%4x)\n", f->entry);
      return 0;
    }

  return (mpio_io_block_delete_phys(m, chip, address));
}

int
mpio_io_block_delete_phys(mpio_t *m, BYTE chip, DWORD address)
{
  mpio_smartmedia_t *sm;
  int nwrite, nread;
  BYTE cmdpacket[CMD_SIZE], status[CMD_SIZE];
  BYTE CMD_OK, CMD_ERROR;
  
  /*  Send command packet to MPIO  */
  
  if (chip == MPIO_INTERNAL_MEM) sm = &m->internal;
  /* hack to support 2+4 internal chips
   * who ever allowed me to write code??? -mager
   */
  if (chip == (MPIO_INTERNAL_MEM+1)) sm = &m->internal;
  if (chip == (MPIO_INTERNAL_MEM+3)) sm = &m->internal;
  if (chip == (MPIO_INTERNAL_MEM+7)) sm = &m->internal;
  if (chip == MPIO_EXTERNAL_MEM) 
    {
      sm = &m->external;
      mpio_zone_block_set_free_phys(m, chip, address);
    }

  if (sm->version) {
    CMD_OK    = 0xe0;
    CMD_ERROR = 0xe1; 
  } else {
    CMD_OK    = 0xc0;
    CMD_ERROR = 0xc1; 
  }

  mpio_io_set_cmdpacket(m, DEL_BLOCK, chip, address, sm->size, 0, cmdpacket);

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

  nwrite = mpio_io_write(m, cmdpacket, 0x40);

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

/*  Receive packet from MPIO  */
  nread = mpio_io_read(m, status, CMD_SIZE);

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

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

  if (status[0] != CMD_OK) 
    {
      if (status[0] == CMD_ERROR) {
	debugn (0, "error formatting Block (chip=0x%02x address=0x%06x\n", 
		chip, address);
      } else {
	debugn (0,"UNKNOWN error (code: %02x) formatting Block (chip=0x%02x address=0x%06x)\n", 
		status[0], chip, address);
      }
      
      if (chip == MPIO_EXTERNAL_MEM) 
	{
	  sm = &m->external;
	  mpio_zone_block_set_defect_phys(m, chip, address);
	}      
      return 0;
    }
  
  return CMD_SIZE;
}

int  
mpio_io_megablock_write(mpio_t *m, mpio_mem_t mem, mpio_fatentry_t *f, BYTE *data)
{
  mpio_smartmedia_t *sm;
  int nwrite;
  int i, j, k;
  DWORD block_address, ba;
  BYTE cmdpacket[CMD_SIZE], sendbuff[MEGABLOCK_TRANS_WRITE];
  BYTE  chip=0;
  DWORD address;

  if (mem == MPIO_INTERNAL_MEM) 
    {
      sm = &m->internal;
      fatentry2hw(f, &chip, &address);
    }
	
  if (mem == MPIO_EXTERNAL_MEM) 
    {
      printf ("This should never happen!");
      exit(1);      
    }

  /* build and send cmd packet */
  mpio_io_set_cmdpacket(m, PUT_MEGABLOCK, chip, address, sm->size, 0x10, cmdpacket);
  cmdpacket[8] = 0x02; /* el yuck'o */  

  debugn(5, "\n>>> MPIO\n");
  hexdump(cmdpacket, sizeof(cmdpacket));
  hexdump(f->i_fat, 0x10);

  nwrite = mpio_io_write(m, cmdpacket, CMD_SIZE);

  if(nwrite != CMD_SIZE) 
    {
      debug ("\nFailed to send command.\n");
      close (m->fd);
      return 1;
    }
  
  for (i = 0; i < 8 ; i++) {
    /* build block for transfer to MPIO */
    for (j = 0; j < 8; j++) 
      {
	memcpy(sendbuff + (j * 0x840), 
	       data + (j * 0x800) + (i * BLOCK_SIZE),	   
	       0x800);
	for (k = 0; k < 4; k++) {
	  memcpy((sendbuff + (j * 0x840) + 0x800 + (k * 0x10)), 
		 f->i_fat, 0x10);
	  if (k) 
	    memset((sendbuff + (j * 0x840) + 0x800 + (k * 0x10)), 0xee, 1);
	}	
      }
    
    /*  send packet to MPIO   */
    debugn(5, "\n<<< MPIO (%d)\n", i);
    hexdump(sendbuff, MEGABLOCK_TRANS_WRITE);
      
    nwrite = mpio_io_write(m, sendbuff, MEGABLOCK_TRANS_WRITE);
    
    if(nwrite != MEGABLOCK_TRANS_WRITE) 
      {
	debug ("\nFailed to write block (i=%d nwrite=0x%04x)\n", i, nwrite);
	close (m->fd);
	return 1;
      }    
    
  }

  return 0;
}

int  
mpio_io_block_write(mpio_t *m, mpio_mem_t mem, mpio_fatentry_t *f, BYTE *data)
{
  mpio_smartmedia_t *sm;
  int nwrite;
  int i;
  DWORD block_address, ba;
  BYTE cmdpacket[CMD_SIZE], sendbuff[BLOCK_TRANS];
  BYTE  chip=0;
  DWORD address;

  if (mem == MPIO_INTERNAL_MEM) 
    {
      sm = &m->internal;
      if (sm->version)
	return mpio_io_megablock_write(m, mem, f, data);
      fatentry2hw(f, &chip, &address);
    }
	
  if (mem == MPIO_EXTERNAL_MEM) 
    {
      sm = &m->external;
      if (sm->version) {
	printf ("This should never happen!");
	exit(1);
      }
	
      /* find free physical block */
      chip = MPIO_EXTERNAL_MEM;
      address = mpio_zone_block_find_free_log(m, mem, f->entry);
    }

  /* 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);

      if (mem == MPIO_INTERNAL_MEM) 
	{	  
	  if (i == 0)
	    {	      
	      memcpy((sendbuff+SECTOR_SIZE+(i * SECTOR_TRANS)), 
		     f->i_fat, 0x10);
/* 	      debug("address %02x:%06x\n", chip, address); */
/* 	      hexdumpn(0, f->i_fat, 0x10); */
	    }	  
	}      

      /* fill in block information */
      if (mem == MPIO_EXTERNAL_MEM) 
	{      
	  block_address = mpio_zone_block_get_logical(m, mem, address);
	  block_address = blockaddress_encode(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 */
	  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(m, PUT_BLOCK, chip, address, sm->size, 0x48 , cmdpacket);

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

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

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

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

  return 0;
}