]> git.baikalelectronics.ru Git - uboot.git/commit
dm: pinctrl: Prevent (re-)configuring pins when already done before relocation
authorLukasz Majewski <lukma@denx.de>
Tue, 18 Dec 2018 11:30:50 +0000 (12:30 +0100)
committerTom Rini <trini@konsulko.com>
Thu, 27 Dec 2018 02:21:07 +0000 (21:21 -0500)
commite3778c39311283edec4bc7c6843d8a13174db8df
tree4fdf691e0f332c17ff2bd22e7e6f2bf9a43e8046
parent4634bd53479748e0564179886e4b188e695fc8e5
dm: pinctrl: Prevent (re-)configuring pins when already done before relocation

This commit prevents from re-configuring pins if those were configured
before relocation.

Some pins - like UART or DDR must be setup before relocation
(as they have 'u-boot,dm-pre-reloc' property set in DTS). Without this
change, those pins are re-configured after relocation (pre_reloc_only = 0,
so we do not "continue").
Such behavior may be a problem for DDR PAD configuration, as they might
be already leveled/tuned with original setup).

Signed-off-by: Lukasz Majewski <lukma@denx.de>
drivers/pinctrl/pinctrl-uclass.c