Re: [PATCH] phy: drop of_phy_simple_xlate() stub

2020-05-13 Thread Sascha Hauer
On Tue, May 12, 2020 at 08:45:11PM +0300, Antony Pavlov wrote: > The function of_phy_simple_xlate() is not used. > > Signed-off-by: Antony Pavlov > --- > include/linux/phy/phy.h | 8 > 1 file changed, 8 deletions(-) Applied, thanks Sascha > > diff --git a/include/linux/phy/phy.h

v2020.05.0

2020-05-13 Thread Sascha Hauer
Hi All, Our barebox release for may is out. This release comes with a new architecture supported by barebox: The Kalray Coolidge architecture, see https://www.kalrayinc.com/portfolio/processors/ for more details of this very interesting architecture. Quite some USB patches went into this

[PATCH] mci: core: add device parameter for eMMC boot ack

2020-05-13 Thread Lucas Stach
This adds an easy way to enable the boot acknowledge function of a eMMC device, without the need to frob the EXT_CSD setting via the mmc_extcsd command. A boot ack is required whenever the boot partitions are read via the fast initialization boot protocol. Signed-off-by: Lucas Stach ---

[PATCH] Documentation: boards: stm32mp: document eMMC boot configuration

2020-05-13 Thread Ahmad Fatoum
In order to boot from eMMC on the STM32MP15x, the boot_ack bit in the ext_csd register must be set. Document this and while at it, fix a misformatted code block in the same section. Signed-off-by: Ahmad Fatoum --- Documentation/boards/stm32mp.rst | 10 +- 1 file changed, 9

[PATCH] mci: stm32_sdmmc2: add detect function

2020-05-13 Thread Lucas Stach
This way we can avoid probing for the SD/MMC devices at startup and just detect them when actually needed. Signed-off-by: Lucas Stach --- drivers/mci/stm32_sdmmc2.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/mci/stm32_sdmmc2.c b/drivers/mci/stm32_sdmmc2.c index

Re: [PATCH] mci: stm32_sdmmc2: add detect function

2020-05-13 Thread Ahmad Fatoum
Hello Lucas, On 5/13/20 2:08 PM, Lucas Stach wrote: > This way we can avoid probing for the SD/MMC devices at startup > and just detect them when actually needed. Is there a reason we can't have mci_register do it for every MCI.hw_dev at registration time? Out of 17 MCI drivers, 8 already have