benno 2008-05-30 01:57:13 UTC
FreeBSD src repository
Modified files:
sys/dev/uart uart_dev_ns8250.c
Log:
The XScale PXA255 has three generally ns16x50 compatible UARTs. One of the
variations from normal 16x50 behaviour however is the the use of a normally
unused bi
marcel 2007-04-03 01:21:10 UTC
FreeBSD src repository
Modified files:
sys/dev/uart uart_dev_ns8250.c
Log:
Don't use a time-limiting loop that's defined in terms of the baudrate
in the putc() method. Likewise, in the getc() method, don't check for
received characters
marcel 2007-03-28 18:34:59 UTC
FreeBSD src repository
Modified files:
sys/dev/uart uart_dev_ns8250.c
Log:
For embedded UARTs compatible with the ns8250 family it is possible
that the driver clock is identical to the processor or bus clock.
This is the case for the Po
cognet 2007-02-26 23:33:07 UTC
FreeBSD src repository
Modified files:(Branch: RELENG_6)
sys/dev/uart uart_dev_ns8250.c
Log:
Partial MFC of rev 1.22 (the other bits were already MFC'd by marcel).
Additionally, remove the probe for the high 4 bits of IER being 0
benno 2006-05-23 06:04:45 UTC
FreeBSD src repository
Modified files:
sys/dev/uart uart_dev_ns8250.c
Log:
The lcr variable in ns8250_probe is now unused. Remove it.
Missed by: benno
Revision ChangesPath
1.23 +1 -1 src/sys/dev/uart/uart_de
marcel 2006-04-27 05:43:10 UTC
FreeBSD src repository
Modified files:
sys/dev/uart uart_dev_ns8250.c
Log:
Use 115200 and not 9600 as the initial baudrate. This speeds up
detection of the FIFO size. Especially for large FIFOs.
Revision ChangesPath
1.21
marcel 2006-04-23 21:15:08 UTC
FreeBSD src repository
Modified files:
sys/dev/uart uart_dev_ns8250.c
Log:
MFp4: Calculate the divisor before setting the DLAB bit. This
prevents that there's a control flow that leaves the DLAB
bit set.
Revision