Lines Matching full:strobe
121 #define PP_CMD_STB 0x01 /* Strobe. Inverted. */
125 #define STROBE PP_CMD_STB /* Command strobe. */ macro
142 #define ESTB PP_STAT_POUT /* Echoed strobe. */
217 * set address for TXDatax, Strobe=0 in portman_write_midi()
223 * PP Command Reg. Do not set the Strobe signal yet. in portman_write_midi()
230 * PP Data Reg. This has no effect until Strobe signal is asserted. in portman_write_midi()
241 * Strobe through the PP Command Reg. This will Strobe data into in portman_write_midi()
245 portman_write_command(pm, command | STROBE); in portman_write_midi()
247 /* Wait for strobe line to settle and echo back through hardware. in portman_write_midi()
255 /* Release strobe and immediately re-allow interrupts. */ in portman_write_midi()
286 cmdout = (port << 1) | INT_EN; /* Address + IE + No Strobe. */ in portman_read_midi()
290 cpu_relax(); /* Wait for strobe echo. */ in portman_read_midi()
298 /* Set the Strobe signal to enable the Rx clocking circuitry. */ in portman_read_midi()
299 portman_write_command(pm, cmdout | STROBE); /* Write address+IE+Strobe. */ in portman_read_midi()
302 cpu_relax(); /* Wait for strobe echo. */ in portman_read_midi()
345 /* De-assert Strobe and return data. */ in portman_read_midi()
348 /* Wait for strobe echo. */ in portman_read_midi()
370 /* Write hardware (assumme STROBE=0) */ in portman_data_avail()
407 /* Assert the Strobe and wait for echo back. */ in portman_flush_input()
408 portman_write_command(pm, command | STROBE); in portman_flush_input()
423 /* Deassert the Strobe signal of the port and wait for it to settle. */ in portman_flush_input()
442 * Strobe = 0 in portman_probe()
450 parport_write_control(p, RXDATA0); /* Write Strobe=0 to command reg. */ in portman_probe()
455 return 1; /* CODE 1 - Strobe Failure. */ in portman_probe()
459 parport_write_control(p, RXDATA0 | STROBE); /* Write Strobe=1 to command reg. */ in portman_probe()
463 return 1; /* CODE 1 - Strobe Failure. */ in portman_probe()
466 parport_write_control(p, 0); /* Reset Strobe=0. */ in portman_probe()
472 parport_write_control(p, TXDATA0); /* Tx channel 0, strobe off. */ in portman_probe()