Re: [U-Boot] [PATCH v1 5/6] serial: stm32x7: add STM32F4 support

2017-09-29 Thread Bo Shen
Hi Patrice, On 09/29/2017 04:52 AM, Patrice CHOTARD wrote: diff --git a/drivers/serial/serial_stm32x7.c b/drivers/serial/serial_stm32x7.c index 19697e3..44e8b42 100644 --- a/drivers/serial/serial_stm32x7.c +++ b/drivers/serial/serial_stm32x7.c @@ -127,6 +127,7 @@ static int stm32_serial_probe(st

Re: [U-Boot] [PATCH v1 5/6] serial: stm32x7: add STM32F4 support

2017-09-29 Thread Patrice CHOTARD
Hi Bo On 09/29/2017 08:26 AM, Bo Shen wrote: > Hi Patrice, > > On 09/27/2017 06:44 AM, patrice.chot...@st.com wrote: >> From: Patrice Chotard >> >> stm32f4 doesn't support FIFO and OVERRUN feature. >> The enable bit is not at the same location in CR1 >> register than for STM32F7 and STM32H7. >>

Re: [U-Boot] [PATCH v1 5/6] serial: stm32x7: add STM32F4 support

2017-09-28 Thread Bo Shen
Hi Patrice, On 09/27/2017 06:44 AM, patrice.chot...@st.com wrote: From: Patrice Chotard stm32f4 doesn't support FIFO and OVERRUN feature. The enable bit is not at the same location in CR1 register than for STM32F7 and STM32H7. Signed-off-by: Patrice Chotard --- drivers/serial/Kconfig

[U-Boot] [PATCH v1 5/6] serial: stm32x7: add STM32F4 support

2017-09-27 Thread patrice.chotard
From: Patrice Chotard stm32f4 doesn't support FIFO and OVERRUN feature. The enable bit is not at the same location in CR1 register than for STM32F7 and STM32H7. Signed-off-by: Patrice Chotard --- drivers/serial/Kconfig | 4 ++-- drivers/serial/serial_stm32x7.c | 1 + drivers/serial/se