We have upgraded the community system as part of the upgrade a password reset is required for all users before login in.

Max UART baud rate supported



  • Hello,

    Has anyone verified the maximum baud rate supported by Omega2's UARTs? I've verified 230400, but would like to use 460800 or 921600 if possible.

    Thank you for any help.



  • https://community.onion.io/post/18260

    I have been running at mine at 1Mbps for a some months with no problems.

    I wrote a 'devmem' utility to write to registers-
    https://github.com/cv007/Omega2_MP3/blob/master/devmem.c
    executable file-
    https://github.com/cv007/Omega2_MP3/blob/master/devmem
    example script where I use devmem to set baud-
    https://github.com/cv007/Omega2_MP3/blob/master/uart.sh

    In my case, the part to watch for is when the other side cannot do high speed correctly. For example, when my micro is set to 921600 it is actually 1000000 because the precision is lost when its baud rate generator values get too low. Not a big deal when you know about it though, just set the omega to use the actual baud produced by the micro.



  • Hey, thanks for the response!

    So, I'm doing something similar - I have an ARM communicating with the MIPS processor over /dev/ttyS1. I did some more testing, and I found that the MIPS seems to be running about 10% slower than specified baud rate when set to 921600. E.g. when set to 921600 on the MIPS (using stty) I have to set the baud rate to 829440 on the ARM processor for reliable data transmission.

    Your links are helpful, thanks! I'm glad at least the ARM has a very flexible baud rate generator.

    Is 1000000 baud still the max you were able to set? It's not clear to me what valid baud rates are allowed on the MIPS, but I could find 921600 (829440) acceptable.

    Thanks again,



  • I'm not sure when stty started accepting high values, but maybe I was working with an older version at the time. I just tried stty with high values, and it accepts them (I did firmware upgrade recently).

    I think I can explain what is going on (even without reading the source code). The driver (or stty) is accepting the high values, but the high baud values (low divisor values) are inaccurate at these values as they do not appear to be using the high speed feature (I read the high speed register after setting uart to high value using stty- still set to 0 which uses x16).

    If you calculate what the divisor latch should be for 921600, it is 2.7 I think, round up to integer of 3 and you get 833333 baud, which is close to what you are seeing. The opposite effect of what I was going through- you have an accurate micro, and the omega is the one which has a problem.

    The solution is to set the high speed mode to 3 which uses the sample_count and sample_point registers. The x16 is then eliminated and you are dealing with divisor values with more precision.

    In my case, 1000000 baud is the max I can do from my micro (the next value up for my micro is 1200000, which does not work). I don't know why it doesn't work faster, but my micro is running on internal osc w/usb corrections which should make it good, but still not crystal good. I don't know how accurate the omega clock is, but that is another error source. At these higher rates, the sample_count starts getting lower (0x28 for 1000000) and you start losing accuracy there, too.

    I think my uart.sh script is mostly readable, so you can see what I'm doing to get 1000000 baud. If you cannot understand it, I can explain it a little better if needed.


Log in to reply
 

Looks like your connection to Community was lost, please wait while we try to reconnect.