Lines Matching full:strobe
122 #define PP_CMD_STB 0x01 /* Strobe. Inverted. */
126 #define STROBE PP_CMD_STB /* Command strobe. */ macro
143 #define ESTB PP_STAT_POUT /* Echoed strobe. */
218 * set address for TXDatax, Strobe=0 in portman_write_midi()
224 * PP Command Reg. Do not set the Strobe signal yet. in portman_write_midi()
231 * PP Data Reg. This has no effect until Strobe signal is asserted. in portman_write_midi()
242 * Strobe through the PP Command Reg. This will Strobe data into in portman_write_midi()
246 portman_write_command(pm, command | STROBE); in portman_write_midi()
248 /* Wait for strobe line to settle and echo back through hardware. in portman_write_midi()
256 /* Release strobe and immediately re-allow interrupts. */ in portman_write_midi()
287 cmdout = (port << 1) | INT_EN; /* Address + IE + No Strobe. */ in portman_read_midi()
291 cpu_relax(); /* Wait for strobe echo. */ in portman_read_midi()
299 /* Set the Strobe signal to enable the Rx clocking circuitry. */ in portman_read_midi()
300 portman_write_command(pm, cmdout | STROBE); /* Write address+IE+Strobe. */ in portman_read_midi()
303 cpu_relax(); /* Wait for strobe echo. */ in portman_read_midi()
346 /* De-assert Strobe and return data. */ in portman_read_midi()
349 /* Wait for strobe echo. */ in portman_read_midi()
371 /* Write hardware (assumme STROBE=0) */ in portman_data_avail()
408 /* Assert the Strobe and wait for echo back. */ in portman_flush_input()
409 portman_write_command(pm, command | STROBE); in portman_flush_input()
424 /* Deassert the Strobe signal of the port and wait for it to settle. */ in portman_flush_input()
443 * Strobe = 0 in portman_probe()
451 parport_write_control(p, RXDATA0); /* Write Strobe=0 to command reg. */ in portman_probe()
456 return 1; /* CODE 1 - Strobe Failure. */ in portman_probe()
460 parport_write_control(p, RXDATA0 | STROBE); /* Write Strobe=1 to command reg. */ in portman_probe()
464 return 1; /* CODE 1 - Strobe Failure. */ in portman_probe()
467 parport_write_control(p, 0); /* Reset Strobe=0. */ in portman_probe()
473 parport_write_control(p, TXDATA0); /* Tx channel 0, strobe off. */ in portman_probe()