mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
arm: mvebu: a38x: Fix 5200000 baudrate
Fix baudrate value 5150000 which was added in commitead4864fa6
("arm: mvebu: a38x: Define supported UART baudrates"). Exact value for divisor 3 with 250 MHz TCLK is 5208333 baudrate. In above commit I incorrectly rounded it to 5150000 value due to testing with USB-UART hw which incorrectly reported exact value and divisor configured on other other end of UART link. Fix this value to 520000 baudrate which is more close to the exact hardware value and also has less fraction parts. Signed-off-by: Pali Rohár <pali@kernel.org> Fixes:ead4864fa6
("arm: mvebu: a38x: Define supported UART baudrates") Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
5a8bd463a6
commit
a4a06a180d
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@
|
|||
230400, 460800, 500000, 576000, \
|
||||
921600, 1000000, 1152000, 1500000, \
|
||||
2000000, 2500000, 3125000, 4000000, \
|
||||
5150000 }
|
||||
5200000 }
|
||||
#endif
|
||||
|
||||
/* auto boot */
|
||||
|
|
Loading…
Reference in a new issue