]> git.dujemihanovic.xyz Git - u-boot.git/commit
serial: zynqmp: Fetch baudrate from dtb and update
authorAlgapally Santosh Sagar <santoshsagar.algapally@amd.com>
Thu, 21 Sep 2023 11:20:43 +0000 (16:50 +0530)
committerMichal Simek <michal.simek@amd.com>
Tue, 7 Nov 2023 12:47:08 +0000 (13:47 +0100)
commitbd9ff681bdd1893d11ab8d4ea79a9f74d0fffdb7
tree8f568d750fa208e7086c4f3aa83c13370140e675
parent8819892bdbcfe8797bb1ebf45806d9b5ebb86674
serial: zynqmp: Fetch baudrate from dtb and update

The baudrate configured in .config is taken by default by serial. If
change of baudrate is required then the .config needs to changed and
u-boot recompilation is required or the u-boot environment needs to be
updated.

To avoid this, support is added to fetch the baudrate directly from the
device tree file and update.
The serial, prints the log with the configured baudrate in the dtb.
The commit c4df0f6f315c ("arm: mvebu: Espressobin: Set default value for
$fdtfile env variable") is taken as reference for changing the default
environment variable.

The default environment stores the default baudrate value, When default
baudrate and dtb baudrate are not same glitches are seen on the serial.
So, the environment also needs to be updated with the dtb baudrate to
avoid the glitches on the serial.

Also add test to cover this new function.

Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>
Link: https://lore.kernel.org/r/20230921112043.3144726-3-venkatesh.abbarapu@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
arch/sandbox/dts/test.dts
doc/README.serial_dt_baud [new file with mode: 0644]
drivers/core/ofnode.c
drivers/serial/Kconfig
drivers/serial/serial-uclass.c
include/dm/ofnode.h
include/env_default.h
include/serial.h
test/dm/serial.c