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
|
Speed up HPLIP's parallel port I/O
HPLIP should stop emulating IEE1284 ECP in userspace; that requires so many
ioctls that it's uncomfortably (and sometimes unusably) slow, even on fast
systems. Instead, it should use ppdev read/write calls, working around ppdev
quirks/bugs as necessary.
Until now, we avoided this because we feared that using ppdev would make us
susceptible to variations in PC parallel port hardware. However, it turns out
that the kernel already addresses that problem: on PCs, the kernel defaults to
software-emulated ECP, which is exactly what the current HPLIP code does.
Using the kernel code avoids the massive ioctl overhead, and it makes it
possible to use hardware-accelerated ECP in those cases where it works.
To apply this patch, 'cd' into the unpacked hplip source directory and run:
$ patch -p1 <../hplip-fast-pp-v2.patch
$ libtoolize --force
$ AUTOMAKE="automake --foreign" autoreconf
(Remember to use the --enable-pp-build option with ./configure)
Patch by Daniel Gnoutcheff <daniel@gnoutcheff.name>
Thanks to Daniel Pielmeir for figuring out the autotools bits
diff -ur hplip-3.12.2/configure.in hplip-3.12.2-fast-pp/configure.in
--- hplip-3.12.2/configure.in 2012-02-01 06:56:29.000000000 -0500
+++ hplip-3.12.2-fast-pp/configure.in 2012-02-20 21:09:45.850744922 -0500
@@ -222,6 +222,7 @@
else
AC_MSG_RESULT(no)
fi
+AM_CONDITIONAL(PP_BUILD, test x$pp_build = xyes)
AC_MSG_CHECKING([for scanner build])
AC_ARG_ENABLE(scan_build,
diff -ur hplip-3.12.2/io/hpmud/pp.c hplip-3.12.2-fast-pp/io/hpmud/pp.c
--- hplip-3.12.2/io/hpmud/pp.c 2012-02-01 06:53:52.000000000 -0500
+++ hplip-3.12.2-fast-pp/io/hpmud/pp.c 2012-02-20 19:28:27.990747569 -0500
@@ -28,6 +28,8 @@
#include "hpmud.h"
#include "hpmudi.h"
+#include <signal.h>
+#include <time.h>
mud_device_vf __attribute__ ((visibility ("hidden"))) pp_mud_device_vf =
{
@@ -67,17 +69,6 @@
.channel_read = musb_dot4_channel_read
};
-static int frob_control(int fd, unsigned char mask, unsigned char val)
-{
- struct ppdev_frob_struct frob;
-
- /* Convert ieee1284 control values to PC-style (invert Strobe, AutoFd and Select) . */
- frob.val = val ^ (mask & (PARPORT_CONTROL_STROBE | PARPORT_CONTROL_AUTOFD | PARPORT_CONTROL_SELECT));
-
- frob.mask = mask;
- return ioctl(fd, PPFCONTROL, &frob);
-}
-
static unsigned char read_status(int fd)
{
unsigned char status;
@@ -88,493 +79,6 @@
return (status ^ PARPORT_STATUS_BUSY);
}
-static int wait_status(int fd, unsigned char mask, unsigned char val, int usec)
-{
- struct timeval tmo, now;
- struct timespec min;
- unsigned char status;
- int cnt=0;
-
- gettimeofday (&tmo, NULL);
- tmo.tv_usec += usec;
- tmo.tv_sec += tmo.tv_usec / 1000000;
- tmo.tv_usec %= 1000000;
-
- min.tv_sec = 0;
- min.tv_nsec = 5000000; /* 5ms */
-
- while (1)
- {
- status = read_status(fd);
- if ((status & mask) == val)
- {
- // bug("found status=%x mask=%x val=%x cnt=%d: %s %d\n", status, mask, val, cnt, __FILE__, __LINE__);
- return 0;
- }
- cnt++;
- // nanosleep(&min, NULL);
- gettimeofday(&now, NULL);
- if ((now.tv_sec > tmo.tv_sec) || (now.tv_sec == tmo.tv_sec && now.tv_usec > tmo.tv_usec))
- {
- DBG("wait_status timeout status=%x mask=%x val=%x us=%d\n", status, mask, val, usec);
- return -1; /* timeout */
- }
- }
-}
-
-static int wait(int usec)
-{
- struct timeval tmo, now;
- int cnt=0;
-
- gettimeofday (&tmo, NULL);
- tmo.tv_usec += usec;
- tmo.tv_sec += tmo.tv_usec / 1000000;
- tmo.tv_usec %= 1000000;
-
- while (1)
- {
- cnt++;
- gettimeofday(&now, NULL);
- if ((now.tv_sec > tmo.tv_sec) || (now.tv_sec == tmo.tv_sec && now.tv_usec > tmo.tv_usec))
- {
- return 0; /* timeout */
- }
- }
-}
-
-static int ecp_is_fwd(int fd)
-{
- unsigned char status;
-
- status = read_status(fd);
- if ((status & PARPORT_STATUS_PAPEROUT) == PARPORT_STATUS_PAPEROUT)
- return 1;
- return 0;
-}
-
-static int ecp_is_rev(int fd)
-{
- unsigned char status;
-
- status = read_status(fd);
- if ((status & PARPORT_STATUS_PAPEROUT) == 0)
- return 1;
- return 0;
-}
-
-static int ecp_rev_to_fwd(int fd)
-{
- int dir=0;
-
- if (ecp_is_fwd(fd))
- return 0;
-
- /* Event 47: write NReverseRequest/nInit=1 */
- frob_control(fd, PARPORT_CONTROL_INIT, PARPORT_CONTROL_INIT);
-
- /* Event 48: wait PeriphClk/nAck=1, PeriphAck/Busy=0 */
- // wait_status(fd, PARPORT_STATUS_PAPEROUT | PARPORT_STATUS_BUSY, PARPORT_STATUS_PAPEROUT, SIGNAL_TIMEOUT);
-
- /* Event 49: wait nAckReverse/PError=1 */
- wait_status(fd, PARPORT_STATUS_PAPEROUT, PARPORT_STATUS_PAPEROUT, PP_SIGNAL_TIMEOUT);
-
- ioctl(fd, PPDATADIR, &dir);
-
- return 0;
-}
-
-static int ecp_fwd_to_rev(int fd)
-{
- int dir=1;
-
- if (ecp_is_rev(fd))
- return 0;
-
- /* Event 33: NPeriphRequest/nFault=0, PeriphAck/Busy=0 */
- wait_status(fd, PARPORT_STATUS_BUSY | PARPORT_STATUS_ERROR, 0, PP_DEVICE_TIMEOUT);
-
- /* Event 38: write HostAck/nAutoFd=0 */
- ioctl(fd, PPDATADIR, &dir);
- frob_control(fd, PARPORT_CONTROL_AUTOFD, 0);
- wait(PP_SETUP_TIMEOUT);
-
- /* Event 39: write NReverseRequest/nInit=0 (start bus reversal) */
- frob_control(fd, PARPORT_CONTROL_INIT, 0);
-
- /* Event 40: wait nAckReverse/PError=0 */
- wait_status(fd, PARPORT_STATUS_PAPEROUT, 0, PP_SIGNAL_TIMEOUT);
-
- return 0;
-}
-
-static int ecp_write_addr(int fd, unsigned char data)
-{
- int cnt=0, len=0;
- unsigned d=(data | 0x80); /* set channel address bit */
-
- ecp_rev_to_fwd(fd);
-
- /* Event 33: PeriphAck/Busy=0 */
- if (wait_status(fd, PARPORT_STATUS_BUSY, 0, PP_SIGNAL_TIMEOUT))
- {
- BUG("ecp_write_addr transfer stalled\n");
- goto bugout;
- }
-
- while (1)
- {
- /* Event 34: write HostAck/nAutoFD=0 (channel command), data */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, 0);
- ioctl(fd, PPWDATA, &d);
-
- /* Event 35: write HostClk/NStrobe=0 */
- frob_control(fd, PARPORT_CONTROL_STROBE, 0);
-
- /* Event 36: wait PeriphAck/Busy=1 */
- if (wait_status(fd, PARPORT_STATUS_BUSY, PARPORT_STATUS_BUSY, PP_SIGNAL_TIMEOUT))
- {
-
- /* Event 72: write NReverseRequest/nInit=0 (Host Transfer Recovery) */
- frob_control(fd, PARPORT_CONTROL_INIT, 0);
-
- /* Event 73: wait nAckReverse/PError=0 */
- wait_status(fd, PARPORT_STATUS_PAPEROUT, 0, PP_SIGNAL_TIMEOUT);
-
- /* Event 74: write NReverseRequest/nInit=1 */
- frob_control(fd, PARPORT_CONTROL_INIT, PARPORT_CONTROL_INIT);
-
- /* Event 75: wait nAckReverse/PError=1 */
- wait_status(fd, PARPORT_STATUS_PAPEROUT, PARPORT_STATUS_PAPEROUT, PP_SIGNAL_TIMEOUT);
-
- cnt++;
- if (cnt > 4)
- {
- BUG("ecp_write_addr transfer stalled\n");
- goto bugout;
- }
- BUG("ecp_write_addr host transfer recovery cnt=%d\n", cnt);
- continue; /* retry */
- }
- break; /* done */
- } /* while (1) */
-
- len = 1;
-
-bugout:
-
- /* Event 37: write HostClk/NStrobe=1 */
- frob_control(fd, PARPORT_CONTROL_STROBE, PARPORT_CONTROL_STROBE);
-
- return len;
-}
-
-static int ecp_write_data(int fd, unsigned char data)
-{
- int cnt=0, len=0;
-
- // ecp_rev_to_fwd(fd);
-
- /* Event 33: check PeriphAck/Busy=0 */
- if (wait_status(fd, PARPORT_STATUS_BUSY, 0, PP_SIGNAL_TIMEOUT))
- {
- BUG("ecp_write_data transfer stalled\n");
- goto bugout;
- }
-
- while (1)
- {
- /* Event 34: write HostAck/nAutoFD=1 (channel data), data */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, PARPORT_CONTROL_AUTOFD);
- ioctl(fd, PPWDATA, &data);
-
- /* Event 35: write HostClk/NStrobe=0 */
- frob_control(fd, PARPORT_CONTROL_STROBE, 0);
-
- /* Event 36: wait PeriphAck/Busy=1 */
- if (wait_status(fd, PARPORT_STATUS_BUSY, PARPORT_STATUS_BUSY, PP_SIGNAL_TIMEOUT))
- {
-
- /* Event 72: write NReverseRequest/nInit=0 (Host Transfer Recovery) */
- frob_control(fd, PARPORT_CONTROL_INIT, 0);
-
- /* Event 73: wait nAckReverse/PError=0 */
- wait_status(fd, PARPORT_STATUS_PAPEROUT, 0, PP_SIGNAL_TIMEOUT);
-
- /* Event 74: write NReverseRequest/nInit=1 */
- frob_control(fd, PARPORT_CONTROL_INIT, PARPORT_CONTROL_INIT);
-
- /* Event 75: wait nAckReverse/PError=1 */
- wait_status(fd, PARPORT_STATUS_PAPEROUT, PARPORT_STATUS_PAPEROUT, PP_SIGNAL_TIMEOUT);
-
- cnt++;
- if (cnt > 4)
- {
- BUG("ecp_write_data transfer stalled\n");
- goto bugout;
- }
- BUG("ecp_write_data host transfer recovery cnt=%d\n", cnt);
- continue; /* retry */
- }
- break; /* done */
- } /* while (1) */
-
- len = 1;
-
-bugout:
-
- /* Event 37: write HostClk/NStrobe=1 */
- frob_control(fd, PARPORT_CONTROL_STROBE, PARPORT_CONTROL_STROBE);
-
- return len;
-}
-
-static int ecp_read_data(int fd, unsigned char *data)
-{
- int len=0;
-
- // ecp_fwd_to_rev(fd);
-
- /* Event 43: wait PeriphClk/NAck=0 */
- if (wait_status(fd, PARPORT_STATUS_ACK, 0, PP_SIGNAL_TIMEOUT))
- {
- len = -1;
- goto bugout;
- }
- ioctl(fd, PPRDATA, data);
-
- /* Event 44: write HostAck/nAutoFd=1 */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, PARPORT_CONTROL_AUTOFD);
-
- /* Event 45: wait PeriphClk/NAck=1 */
- wait_status(fd, PARPORT_STATUS_ACK, PARPORT_STATUS_ACK, PP_SIGNAL_TIMEOUT);
-
- /* Event 46: write HostAck/nAutoFd=0 */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, 0);
-
- len = 1;
-
-bugout:
-
- return len;
-}
-
-static int ecp_read(int fd, void *buffer, int size, int usec)
-{
- int i=0;
- unsigned char *p = (unsigned char *)buffer;
-
- ecp_fwd_to_rev(fd);
-
- while (i < size)
- {
- if (ecp_read_data(fd, p+i) != 1)
- {
- usec-=PP_SIGNAL_TIMEOUT;
- if (usec > 0)
- continue;
-
-// return -1;
- return -ETIMEDOUT; /* timeout */
- }
- i++;
- }
- return i;
-}
-
-static int ecp_write(int fd, const void *buffer, int size)
-{
- int i;
- unsigned char *p = (unsigned char *)buffer;
- static int timeout=0;
-
- if (timeout)
- {
- timeout=0;
- return -1; /* report timeout */
- }
-
- ecp_rev_to_fwd(fd);
-
- for (i=0; i < size; i++)
- {
- if (ecp_write_data(fd, p[i]) != 1)
- {
- if (i)
- timeout=1; /* save timeout, report bytes written */
- else
- i=-1; /* report timeout */
- break;
- }
- }
- return i;
-}
-
-static int nibble_read_data(int fd, unsigned char *data)
-{
- int len=0;
- unsigned char nibble;
-
- /* Event 7: write HostBusy/nAutoFd=0 */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, 0);
-
- /* Event 8: peripheral sets low-order nibble. */
-
- /* Event 9: wait PtrClk/NAck=0 */
- if (wait_status(fd, PARPORT_STATUS_ACK, 0, PP_SIGNAL_TIMEOUT))
- {
- len = -1;
- goto bugout;
- }
- nibble = read_status(fd) >> 3;
- nibble = ((nibble & 0x10) >> 1) | (nibble & 0x7);
- *data = nibble;
-
- /* Event 10: write HostBusy/nAutoFd=1 */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, PARPORT_CONTROL_AUTOFD);
-
- /* Event 11: wait PtrClk/NAck=1 */
- wait_status(fd, PARPORT_STATUS_ACK, PARPORT_STATUS_ACK, PP_SIGNAL_TIMEOUT);
-
- /* Event 7: write HostBusy/nAutoFd=0 */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, 0);
-
- /* Event 8: peripheral sets high-order nibble. */
-
- /* Event 9: wait PtrClk/NAck=0 */
- if (wait_status(fd, PARPORT_STATUS_ACK, 0, PP_SIGNAL_TIMEOUT))
- {
- len = -1;
- goto bugout;
- }
- nibble = read_status(fd) >> 3;
- nibble = ((nibble & 0x10) >> 1) | (nibble & 0x7);
- *data |= (nibble<<4);
-
- /* Event 10: write HostBusy/nAutoFd=1 */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, PARPORT_CONTROL_AUTOFD);
-
- /* Event 11: wait PtrClk/NAck=1 */
- wait_status(fd, PARPORT_STATUS_ACK, PARPORT_STATUS_ACK, PP_SIGNAL_TIMEOUT);
-
- len = 1;
-
-bugout:
-
- return len;
-}
-
-static int nibble_read(int fd, int flag, void *buffer, int size, int usec)
-{
- int i=0;
- unsigned char *p = (unsigned char *)buffer;
- int m = IEEE1284_MODE_NIBBLE | flag;
- int mc = IEEE1284_MODE_COMPAT;
- unsigned char status;
-
- ioctl (fd, PPNEGOT, &mc);
- if (ioctl (fd, PPNEGOT, &m))
- {
- DBG("nibble_read negotiation failed: %m\n");
- return -1;
- }
-
- while (i < size)
- {
- if (nibble_read_data(fd, p+i) != 1)
- {
- usec-=PP_SIGNAL_TIMEOUT;
- if (usec > 0)
- continue;
-
-// return -1;
- return -ETIMEDOUT; /* timeout */
- }
-
- i++;
-
- /* More data? */
- status = read_status(fd);
- if (status & PARPORT_STATUS_ERROR)
- {
- /* Event 7: write HostBusy/nAutoFd=0, idle phase */
- frob_control(fd, PARPORT_CONTROL_AUTOFD, 0);
-
- break; /* done */
- }
- }
-
- return i;
-}
-
-static int compat_write_data(int fd, unsigned char data)
-{
- int len=0;
-
- /* wait Busy=0 */
- if (wait_status(fd, PARPORT_STATUS_BUSY, 0, PP_DEVICE_TIMEOUT))
- {
- BUG("compat_write_data transfer stalled\n");
- goto bugout;
- }
-
- ioctl(fd, PPWDATA, &data);
- wait(PP_SETUP_TIMEOUT);
-
- /* write NStrobe=0 */
- frob_control(fd, PARPORT_CONTROL_STROBE, 0);
-
- /* wait Busy=1 */
- if (wait_status(fd, PARPORT_STATUS_BUSY, PARPORT_STATUS_BUSY, PP_SIGNAL_TIMEOUT))
- {
- BUG("compat_write_data transfer stalled\n");
- goto bugout;
- }
-
- /* write nStrobe=1 */
- frob_control(fd, PARPORT_CONTROL_STROBE, PARPORT_CONTROL_STROBE);
-
- len = 1;
-
-bugout:
- return len;
-}
-
-static int compat_write(int fd, const void *buffer, int size)
-{
- int i=0;
- unsigned char *p = (unsigned char *)buffer;
- int m = IEEE1284_MODE_COMPAT;
- static int timeout=0;
-
- if (timeout)
- {
- timeout=0;
- return -1; /* report timeout */
- }
-
- if (ioctl(fd, PPNEGOT, &m))
- {
- BUG("compat_write failed: %m\n");
- goto bugout;
- }
-
- for (i=0; i < size; i++)
- {
- if (compat_write_data(fd, p[i]) != 1)
- {
- if (i)
- timeout=1; /* save timeout, report bytes written */
- else
- i=-1; /* report timeout */
- break;
- }
- }
-
-bugout:
- return i;
-}
-
static int claim_pp(int fd)
{
int stat=1;
@@ -617,11 +121,23 @@
static int device_id(int fd, char *buffer, int size)
{
- int len=0, maxSize;
+ int len=0, maxSize, mode;
maxSize = (size > 1024) ? 1024 : size; /* RH8 has a size limit for device id */
- len = nibble_read(fd, IEEE1284_DEVICEID, buffer, maxSize, 0);
+ /* reset (in case someone else stopped in the middle of reading the device
+ * ID) */
+ mode = IEEE1284_MODE_COMPAT;
+ ioctl(fd, PPNEGOT, &mode);
+
+ mode = IEEE1284_MODE_NIBBLE | IEEE1284_DEVICEID;
+ ioctl(fd, PPNEGOT, &mode);
+ len = read(fd, buffer, maxSize);
+
+ /* Reset (for safety) */
+ mode = IEEE1284_MODE_COMPAT;
+ ioctl(fd, PPNEGOT, &mode);
+
if (len < 0)
{
BUG("unable to read device-id ret=%d\n", len);
@@ -720,24 +236,134 @@
return 0;
}
+static int ecp_write_addr(int fd, unsigned char addr)
+{
+ /* Currently, PPSETMODE always resets the kernel's idea of the current phase
+ * to equal that of the inital phase of the given mode (i.e.
+ * IEEE1284_PH_FWD_IDLE for ECP). However, we're not actually changing the
+ * mode, we're just modifying the "send command bytes" flag; thus, we do
+ * *not* want the phase to change. We workaround the kernel's bad behavor by
+ * forcibly refreshing its phase setting whenever we call PPSETMODE.
+ */
+ int mode, phase, cmdmode, len, retval;
+
+ /* To send an address, we send an ECP command byte with the high bit set
+ * and the address in the other 7 bits. */
+ unsigned char command = addr | 0x80;
+
+ /* Enable command mode */
+ ioctl(fd, PPGETMODE, &mode);
+ cmdmode = mode | IEEE1284_ADDR;
+ ioctl(fd, PPGETPHASE, &phase);
+ ioctl(fd, PPSETMODE, &cmdmode);
+ ioctl(fd, PPSETPHASE, &phase);
+
+ len = write(fd, &command, 1);
+
+ /* Restore original mode */
+ ioctl(fd, PPGETPHASE, &phase);
+ ioctl(fd, PPSETMODE, &mode);
+ ioctl(fd, PPSETPHASE, &phase);
+
+ if (len == 1)
+ retval = len;
+ else
+ {
+ BUG("ecp_write_addr transfer failed\n");
+ retval = -errno;
+ }
+
+ return retval;
+}
+
+static void setup_timeout(int timeout_usec, timer_t *timeout_timer)
+{
+ struct sigevent timeout_sigevent =
+ {
+ .sigev_notify = SIGEV_NONE
+ };
+ struct itimerspec timeout =
+ {
+ .it_value =
+ {
+ .tv_sec = timeout_usec / 1000000,
+ .tv_nsec = (timeout_usec % 1000000) * 1000
+ },
+ .it_interval =
+ {
+ .tv_sec = 0,
+ .tv_nsec = 0
+ }
+ };
+
+ timer_create(CLOCK_MONOTONIC, &timeout_sigevent, timeout_timer);
+ timer_settime(*timeout_timer, 0, &timeout, NULL);
+}
+
+static int timeout_not_expired(timer_t *timer)
+{
+ struct itimerspec timeout;
+ timer_gettime(*timer, &timeout);
+ return timeout.it_value.tv_sec > 0 || timeout.it_value.tv_nsec > 0;
+}
+
+enum io_operation
+{
+ IO_READ,
+ IO_WRITE
+};
+
+static int ppdev_io_with_timeout(enum io_operation operation,
+ int fd, void *buf, int buf_size, int timeout_usec)
+{
+ /* As of Linux 2.6.39, ppdev's read and write implementations do not honor
+ * the timeout values given by PPSETTIME ioctls. Furthermore, when using
+ * blocking IO, ppdev reads and writes will block forever until at least one
+ * byte is transfered, which is a problem if, say, the peripheral has lost
+ * power and will never respond. To avoid these issues, we use non-blocking
+ * IO and we implement the timeout ourselves. */
+
+ int offset = 0, retval = 0, error = 0;
+ timer_t timeout_timer;
+
+ setup_timeout(timeout_usec, &timeout_timer);
+
+ do {
+ switch (operation)
+ {
+ case IO_READ:
+ retval = read(fd, buf + offset, buf_size - offset);
+ break;
+ case IO_WRITE:
+ retval = write(fd, buf + offset, buf_size - offset);
+ break;
+ }
+
+ if (retval >= 0)
+ offset += retval;
+ else if (errno != EAGAIN)
+ error = errno;
+ } while (!error && offset < buf_size && timeout_not_expired(&timeout_timer));
+
+ timer_delete(timeout_timer);
+
+ if (error)
+ return -error;
+ else if (offset == 0)
+ return -ETIMEDOUT;
+ else
+ return offset;
+}
+
/*********************************************************************************************************************************
* Parallel port mud_device functions.
*/
int __attribute__ ((visibility ("hidden"))) pp_write(int fd, const void *buf, int size, int usec)
{
- int len=0, m;
+ int len;
- ioctl(fd, PPGETMODE, &m);
-
- if (m & (IEEE1284_MODE_ECPSWE | IEEE1284_MODE_ECP))
- {
- len = ecp_write(fd, buf, size);
- }
- else
- {
- len = compat_write(fd, buf, size);
- }
+ len = ppdev_io_with_timeout(IO_WRITE, fd, (void *)buf, size, usec);
DBG("write fd=%d len=%d size=%d\n", fd, len, size);
DBG_DUMP(buf, len < 32 ? len : 32);
@@ -747,19 +373,9 @@
int __attribute__ ((visibility ("hidden"))) pp_read(int fd, void *buf, int size, int usec)
{
- int len=0, m;
-// int sec = usec/1000000;
-
- ioctl(fd, PPGETMODE, &m);
+ int len;
- if (m & (IEEE1284_MODE_ECPSWE | IEEE1284_MODE_ECP))
- {
- len = ecp_read(fd, buf, size, usec);
- }
- else
- {
- len = nibble_read(fd, 0, buf, size, usec);
- }
+ len = ppdev_io_with_timeout(IO_READ, fd, buf, size, usec);
DBG("read fd=%d len=%d size=%d usec=%d\n", fd, len, size, usec);
DBG_DUMP(buf, len < 32 ? len : 32);
@@ -779,9 +395,11 @@
if (pd->id[0] == 0)
{
- /* First client, open actual kernal device, use blocking i/o. */
+ /* First client, open actual kernal device, use non-blocking i/o. See
+ * comment in ppdev_io_with_timeout() for why we use non-blocking i/o.
+ */
hpmud_get_uri_datalink(pd->uri, dev, sizeof(dev));
- if ((fd = open(dev, O_RDWR | O_NOCTTY)) < 0)
+ if ((fd = open(dev, O_RDWR | O_NOCTTY | O_NONBLOCK)) < 0)
{
BUG("unable to open %s: %m\n", pd->uri);
goto bugout;
@@ -1037,7 +655,7 @@
goto bugout;
/* Negotiate ECP mode. */
- m = IEEE1284_MODE_ECPSWE;
+ m = IEEE1284_MODE_ECP;
if (ioctl(pd->open_fd, PPNEGOT, &m))
{
BUG("unable to negotiate %s ECP mode: %m\n", pd->uri);
@@ -1046,7 +664,7 @@
/* Enable MLC mode with ECP channel-77. */
ecp_write_addr(pd->open_fd, 78);
- ecp_write(pd->open_fd, "\0", 1);
+ write(pd->open_fd, "\0", 1);
ecp_write_addr(pd->open_fd, 77);
/* MLC initialize */
@@ -1099,7 +717,7 @@
pd->mlc_up=0;
ecp_write_addr(pd->mlc_fd, 78); /* disable MLC mode with ECP channel-78 */
- ecp_write(pd->mlc_fd, "\0", 1);
+ write(pd->mlc_fd, "\0", 1);
m = IEEE1284_MODE_NIBBLE;
ioctl(pd->mlc_fd, PPNEGOT, &m);
@@ -1129,7 +747,7 @@
goto bugout;
/* Negotiate ECP mode. */
- m = IEEE1284_MODE_ECPSWE;
+ m = IEEE1284_MODE_ECP;
if (ioctl(pd->open_fd, PPNEGOT, &m))
{
BUG("unable to negotiate %s ECP mode: %m\n", pd->uri);
@@ -1138,7 +756,7 @@
/* Enable MLC mode with ECP channel-77. */
ecp_write_addr(pd->open_fd, 78);
- ecp_write(pd->open_fd, "\0", 1);
+ write(pd->open_fd, "\0", 1);
ecp_write_addr(pd->open_fd, 77);
/* DOT4 initialize */
@@ -1191,7 +809,7 @@
pd->mlc_up=0;
ecp_write_addr(pd->mlc_fd, 78); /* disable MLC mode with ECP channel-78 */
- ecp_write(pd->mlc_fd, "\0", 1);
+ write(pd->mlc_fd, "\0", 1);
m = IEEE1284_MODE_NIBBLE;
ioctl(pd->mlc_fd, PPNEGOT, &m);
diff -ur hplip-3.12.2/io/hpmud/pp.h hplip-3.12.2-fast-pp/io/hpmud/pp.h
--- hplip-3.12.2/io/hpmud/pp.h 2012-02-01 06:53:52.000000000 -0500
+++ hplip-3.12.2-fast-pp/io/hpmud/pp.h 2012-02-20 19:28:27.990747569 -0500
@@ -60,18 +60,11 @@
* 0 - Strobe *
*
* * inverted
- *
- * Notes:
- * For ECP mode use low-level parport ioctl instead of high-level parport read/writes because its more reliable. High-level support
- * for Compatible and Nibble modes are probably ok, but for consistency low-level parport ioctl is used.
- *
*/
-#define PP_DEVICE_TIMEOUT 30000000 /* device timeout (us) */
//#define PP_SIGNAL_TIMEOUT 1000000 /* signal timeout (us), too long for 1ms timeout, DES 8/18/08 */
//#define PP_SIGNAL_TIMEOUT 1000 /* signal timeout (us), too short for DJ540, DES 8/18/08 */
#define PP_SIGNAL_TIMEOUT 100000 /* signal timeout (us), DES 8/18/08 */
-#define PP_SETUP_TIMEOUT 10 /* setup timeout (us) */
struct _mud_device;
struct _mud_channel;
diff -ur hplip-3.12.2/Makefile.am hplip-3.12.2-fast-pp/Makefile.am
--- hplip-3.12.2/Makefile.am 2012-02-01 06:53:57.000000000 -0500
+++ hplip-3.12.2-fast-pp/Makefile.am 2012-02-20 21:26:21.210745149 -0500
@@ -73,6 +73,9 @@
libhpmud_la_LDFLAGS = -version-info 0:6:0 -lusb -lpthread
endif
libhpmud_la_CFLAGS = -DMUDNAME=\"$(MUDNAME)\" -DCONFDIR=\"$(hplip_confdir)\"
+if PP_BUILD
+libhpmud_la_LDFLAGS += -lrt
+endif
# ip library
lib_LTLIBRARIES += libhpip.la
|