summaryrefslogtreecommitdiffstats
path: root/bsps/shared/dev/serial/zynq-uart.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* arm/xilinx: Fix zynq-uart interrupt receiveChris Johns2021-09-161-35/+43
| | | | | | | | - Trigger on a single character entering the RX FIFO - Disable the RX timeout - Send up to a FIFO full of data
* bsps/zynq-uart: Make post baud change kick globalKinsey Moore2021-06-291-0/+8
| | | | | | | | The existing fix for the ZynqMP UART hardware bug only caught the vast majority of instances where it could occur. To fully fix the data corruption, this fix must be applied after every baud rate change. This makes the logic reset and kick apply in any locations where the baud rate could be changed.
* bsps/shared: Allow setting baud rate for zynq uartJan Sommer2021-03-051-5/+16
|
* zynq-uart: Fix set_attributes implementationKinsey Moore2020-12-031-5/+51
| | | | | | | | | The zynq-uart set_attributes implementation was configured to always return false which causes spconsole01 to fail. This restores the disabled implementation which sets the baud rate registers appropriately and allows spconsole01 to pass. This also expands the set_attributes functionality to allow setting of the stop bits, character width, and parity.
* bsps: Move zynq-uart to bsps/sharedKinsey Moore2020-12-021-0/+177
This moves the zynq-uart driver from bsps/arm/shared to bsps/shared to accomodate use by AArch64 BSPs.