search for: com_port

Displaying 3 results from an estimated 3 matches for "com_port".

2013 Jul 12
0
[PATCH 001/001] core/serial: Add support for serial output functions.
...jnz 2b \n" + "3: dec %0 \n" + + : /* we don't need output */ + :"a" (loops) + ); +} + +/* + * Try to initialize serial port. + * Default settings: 9600 baud, 8 data bits, 1 stop bit and parity off. + */ +static int serial_init(uint16_t com_port) +{ + /* Turn off the FIFO */ + outb(0x00, com_port + COM_FIFO_CTRL_REG); + /* Disable all interrupts */ + outb(0x00, com_port + COM_INTR_ENABLE_REG); + + /* Enable DLAB (Divisor Latch Access Bit) */ + outb(COM_DLAB_BIT, com_port + COM_LINE_CTRL_REG); + /* + * When COM_DLAB...
2013 Jul 12
2
[PATCH 001/001] core/serial: Add support for serial output functions.
...ot; jnz 2b \n" + "3: dec %0 \n" + + : /* we don't need output */ + :"a" (loops) + ); +} + +/* + * Try to initialize serial port. + * Default settings: 9600 baud, 8 data bits, 1 stop bit and parity off. + */ +static int serial_init(uint16_t com_port) +{ + /* Turn off the FIFO */ + outb(0x00, com_port + COM_FIFO_CTRL_REG); + /* Disable all interrupts */ + outb(0x00, com_port + COM_INTR_ENABLE_REG); + + /* Enable DLAB (Divisor Latch Access Bit) */ + outb(COM_DLAB_BIT, com_port + COM_LINE_CTRL_REG); + /* + * When COM_DLAB...
2020 Feb 05
19
Call for testing: OpenSSH 8.2
Hi, OpenSSH 8.2p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This is a feature release. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is also available via git using the instructions at