[PATCH 0/6] serial: msm-geni: fix UART baudrate on modern platforms

2023-03-30 Thread Vladimir Zapolskiy
dts files. Vladimir Zapolskiy (6): misc: add Qualcomm GENI SE QUP device driver serial: msm-geni: remove redundant includes serial: msm-geni: remove invalid se-clk clock name serial: msm-geni: fix code indentation serial: msm-geni: fix a compile time warning from msm_serial_setbrg

[PATCH 1/6] misc: add Qualcomm GENI SE QUP device driver

2023-03-30 Thread Vladimir Zapolskiy
UART driver to set up a proper clock divider and provide the actually asked baud rate. Signed-off-by: Vladimir Zapolskiy --- drivers/misc/Kconfig| 6 ++ drivers/misc/Makefile | 1 + drivers/misc/qcom-geni-se.c | 42 + 3 files changed, 49

[PATCH 3/6] serial: msm-geni: remove invalid se-clk clock name

2023-03-30 Thread Vladimir Zapolskiy
" value like it's already described in Linux device tree documentation. Signed-off-by: Vladimir Zapolskiy --- drivers/serial/serial_msm_geni.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/serial/serial_msm_geni.c b/drivers/serial/serial_msm_geni.c index df61

[PATCH 5/6] serial: msm-geni: fix a compile time warning from msm_serial_setbrg()

2023-03-30 Thread Vladimir Zapolskiy
A compiler warns about a missing function prototype, which is valid and fixed by converting the function into static one, also fix interleaved local variable declarations and assignments. Signed-off-by: Vladimir Zapolskiy --- drivers/serial/serial_msm_geni.c | 6 +++--- 1 file changed, 3

[PATCH 4/6] serial: msm-geni: fix code indentation

2023-03-30 Thread Vladimir Zapolskiy
This a cosmetic change, which corrects code indentation in a few places. Signed-off-by: Vladimir Zapolskiy --- drivers/serial/serial_msm_geni.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/serial/serial_msm_geni.c b/drivers/serial/serial_msm_geni.c

[PATCH 2/6] serial: msm-geni: remove redundant includes

2023-03-30 Thread Vladimir Zapolskiy
For whatever reason, likely a driver stub was copied from another driver, the driver contains a bunch of unnecessary and confusing includes like watchdog.h etc., the change reduces the list. Signed-off-by: Vladimir Zapolskiy --- drivers/serial/serial_msm_geni.c | 6 -- 1 file changed, 6

[PATCH 6/6] serial: msm-geni: correct oversampling value based on QUP hardware revision

2023-03-30 Thread Vladimir Zapolskiy
new Qualcomm GENI SE QUP driver to get its hardware version and update the oversampling value. Deliberately the code under CONFIG_DEBUG_UART_MSM_GENI is not touched, since a wanted baudrate can be controlled by setting a modified CONFIG_DEBUG_UART_CLOCK build time variable. Signed-off-by: Vladimir

Re: [PATCH 6/6] serial: msm-geni: correct oversampling value based on QUP hardware revision

2023-04-12 Thread Vladimir Zapolskiy
Hi Konrad, On 3/31/23 04:36, Konrad Dybcio wrote: On 30.03.2023 21:47, Vladimir Zapolskiy wrote: Starting from QUP v2.5 the value of oversampling is changed from 32 to 16, keeping the old value on newer platforms results on wrong set UART IP clock divider, thus the asked baudrate does not

Re: [PATCH 1/6] misc: add Qualcomm GENI SE QUP device driver

2023-04-12 Thread Vladimir Zapolskiy
On 3/31/23 04:23, Konrad Dybcio wrote: On 30.03.2023 21:47, Vladimir Zapolskiy wrote: This change adds a Qualcomm GENI SE QUP device driver as a wrapper for actually enabled and used serial devices found on a board. At the moment the driver is pretty simple, its intention is to populate

[PATCH v2 0/9] serial: msm-geni: fix UART baudrate on modern platforms

2023-04-12 Thread Vladimir Zapolskiy
boards by adding GENI SE wrapper. Konrad Dybcio (2): serial: msm-geni: Always bind before relocation serial: msm-geni: Use upstream Linux bindings Vladimir Zapolskiy (7): misc: add Qualcomm GENI SE QUP device driver serial: msm-geni: remove redundant includes serial: msm-geni: remove

[PATCH v2 1/9] misc: add Qualcomm GENI SE QUP device driver

2023-04-12 Thread Vladimir Zapolskiy
UART driver to set up a proper clock divider and provide the actually asked baud rate. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/misc/Kconfig| 7 +++ drivers/misc/Makefile | 1 + drivers/misc/qcom-geni-se.c | 41

[PATCH v2 3/9] serial: msm-geni: Always bind before relocation

2023-04-12 Thread Vladimir Zapolskiy
From: Konrad Dybcio In preparation for supporting upstream Linux device trees on Qualcomm platforms, make this the default behavior. [vzapolskiy: extracted the driver change from a combination with dts changes] Signed-off-by: Konrad Dybcio Signed-off-by: Vladimir Zapolskiy --- drivers/serial

[PATCH v2 2/9] serial: msm-geni: remove redundant includes

2023-04-12 Thread Vladimir Zapolskiy
For whatever reason, likely a driver stub was copied from another driver, the driver contains a bunch of unnecessary and confusing includes like watchdog.h etc., the change reduces the list. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/serial/serial_msm_geni.c | 6

[PATCH v2 4/9] serial: msm-geni: remove invalid se-clk clock name

2023-04-12 Thread Vladimir Zapolskiy
" value like it's already described in Linux device tree documentation. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/serial/serial_msm_geni.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/serial/serial_msm_geni.c b/dri

[PATCH v2 5/9] serial: msm-geni: fix code indentation

2023-04-12 Thread Vladimir Zapolskiy
This a cosmetic change, which corrects code indentation in a few places. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/serial/serial_msm_geni.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/serial/serial_msm_geni.c b/drivers

[PATCH v2 6/9] serial: msm-geni: fix a compile time warning from msm_serial_setbrg()

2023-04-12 Thread Vladimir Zapolskiy
A compiler warns about a missing function prototype, which is valid and fixed by converting the function into static one, also fix interleaved local variable declarations and assignments. Signed-off-by: Vladimir Zapolskiy Fixes: 324df15a292e ("serial: qcom: add support for GENI serial d

[PATCH v2 8/9] serial: msm-geni: correct oversampling value based on QUP hardware revision

2023-04-12 Thread Vladimir Zapolskiy
new Qualcomm GENI SE QUP driver to get its hardware version and update the oversampling value. Deliberately the code under CONFIG_DEBUG_UART_MSM_GENI is not touched, since a wanted baudrate can be controlled by setting a modified CONFIG_DEBUG_UART_CLOCK build time variable. Signed-off-by: Vladimir

[PATCH v2 7/9] serial: msm-geni: Use upstream Linux bindings

2023-04-12 Thread Vladimir Zapolskiy
ned-off-by: Vladimir Zapolskiy --- arch/arm/dts/sdm845.dtsi| 4 ++-- doc/device-tree-bindings/serial/msm-geni-serial.txt | 2 +- drivers/serial/serial_msm_geni.c| 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/arch/arm/dts/sdm845.d

[PATCH v2 9/9] arm: dts: sdm845: add GENI SE QUP device tree node

2023-04-12 Thread Vladimir Zapolskiy
starqltechn board device tree source files, a device tree node label to "debug" UART is renamed to 'uart9' according to the naming found in Linux. Signed-off-by: Vladimir Zapolskiy --- arch/arm/dts/dragonboard845c.dts | 2 +- arch/arm/dts/sdm845.dtsi | 25 +++

Re: [PATCH 1/6] misc: add Qualcomm GENI SE QUP device driver

2023-04-19 Thread Vladimir Zapolskiy
Hi Simon, On 4/19/23 04:45, Simon Glass wrote: Hi Vladimir, On Wed, 12 Apr 2023 at 06:45, Vladimir Zapolskiy wrote: On 3/31/23 04:23, Konrad Dybcio wrote: On 30.03.2023 21:47, Vladimir Zapolskiy wrote: This change adds a Qualcomm GENI SE QUP device driver as a wrapper for actually

[PATCH v3 0/9] serial: msm-geni: fix UART baudrate on modern platforms

2023-04-21 Thread Vladimir Zapolskiy
GENI SE wrapper driver, * minor fix in MSM GENI serial driver Kconfig to match the new changes, * changed dts files of SDM845 powered boards by adding GENI SE wrapper. Konrad Dybcio (2): serial: msm-geni: Always bind before relocation serial: msm-geni: Use upstream Linux bindings Vladimir

[PATCH v3 1/9] misc: add Qualcomm GENI SE QUP device driver

2023-04-21 Thread Vladimir Zapolskiy
UART driver to set up a proper clock divider and provide the actually asked baud rate. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/misc/Kconfig| 7 +++ drivers/misc/Makefile | 1 + drivers/misc/qcom-geni-se.c | 41

[PATCH v3 2/9] serial: msm-geni: remove redundant includes

2023-04-21 Thread Vladimir Zapolskiy
For whatever reason, likely a driver stub was copied from another driver, the driver contains a bunch of unnecessary and confusing includes like watchdog.h etc., the change reduces the list. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/serial/serial_msm_geni.c | 6

[PATCH v3 3/9] serial: msm-geni: Always bind before relocation

2023-04-21 Thread Vladimir Zapolskiy
From: Konrad Dybcio In preparation for supporting upstream Linux device trees on Qualcomm platforms, make this the default behavior. [vzapolskiy: extracted the driver change from a combination with dts changes] Signed-off-by: Konrad Dybcio Signed-off-by: Vladimir Zapolskiy --- drivers/serial

[PATCH v3 4/9] serial: msm-geni: remove invalid se-clk clock name

2023-04-21 Thread Vladimir Zapolskiy
" value like it's already described in Linux device tree documentation. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/serial/serial_msm_geni.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/serial/serial_msm_geni.c b/dri

[PATCH v3 5/9] serial: msm-geni: fix code indentation

2023-04-21 Thread Vladimir Zapolskiy
This a cosmetic change, which corrects code indentation in a few places. Signed-off-by: Vladimir Zapolskiy Reviewed-by: Konrad Dybcio --- drivers/serial/serial_msm_geni.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/serial/serial_msm_geni.c b/drivers

[PATCH v3 6/9] serial: msm-geni: fix a compile time warning from msm_serial_setbrg()

2023-04-21 Thread Vladimir Zapolskiy
A compiler warns about a missing function prototype, which is valid and fixed by converting the function into static one, also fix interleaved local variable declarations and assignments. Signed-off-by: Vladimir Zapolskiy Fixes: 324df15a292e ("serial: qcom: add support for GENI serial d

[PATCH v3 7/9] serial: msm-geni: Use upstream Linux bindings

2023-04-21 Thread Vladimir Zapolskiy
ned-off-by: Vladimir Zapolskiy --- arch/arm/dts/sdm845.dtsi| 4 ++-- doc/device-tree-bindings/serial/msm-geni-serial.txt | 2 +- drivers/serial/serial_msm_geni.c| 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/arch/arm/dts/sdm845.d

[PATCH v3 8/9] serial: msm-geni: correct oversampling value based on QUP hardware revision

2023-04-21 Thread Vladimir Zapolskiy
new Qualcomm GENI SE QUP driver to get its hardware version and update the oversampling value. Deliberately the code under CONFIG_DEBUG_UART_MSM_GENI is not touched, since a wanted baudrate can be controlled by setting a modified CONFIG_DEBUG_UART_CLOCK build time variable. Signed-off-by: Vladimir

[PATCH v3 9/9] arm: dts: msm: add GENI SE QUP device tree node

2023-04-21 Thread Vladimir Zapolskiy
starqltechn board device tree source files, a device tree node label to "debug" UART is renamed to 'uart9' according to the naming found in Linux. Signed-off-by: Vladimir Zapolskiy --- arch/arm/dts/dragonboard845c.dts | 2 +- arch/arm/dts/sdm845.dtsi | 25 +++

[U-Boot] [PATCH 0/3 v4] devkit3250: add Timll DevKit3250 board initial support

2012-04-19 Thread Vladimir Zapolskiy
Changes from v1 to v2: * setbits_le32() and similar helpers are used * added general arch_cpu_init() routine Vladimir Zapolskiy (3): arm926ejs: add NXP LPC32x0 cpu series support serial: add LPC32X0 high-speed UART devices support devkit3250: add Timll DevKit3250 board initial support

[U-Boot] [PATCH 2/3 v3] serial: add LPC32X0 high-speed UART devices support

2012-04-19 Thread Vladimir Zapolskiy
This change adds an implementation of high-speed UART found on NXP LPC32X0 SoCs. Such UARTs are enumerated as UART1, UART2 and UART7. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Acked-by: Marek Vasut --- Changes from v2 to v3: * renamed struct hsuart_t to hsuart_regs Changes from v1

[U-Boot] [PATCH 1/3 v9] arm926ejs: add NXP LPC32x0 cpu series support

2012-04-19 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Acked-by: Marek Vasut --- Changes from v8 to v9: * add get_ticks() function Changes from v7 to v8: * renamed register structures from *_t to *_regs * renamed clkpwr.c file to

[U-Boot] [PATCH 3/3 v6] devkit3250: add Timll DevKit3250 board initial support

2012-04-19 Thread Vladimir Zapolskiy
nfigs/devkit3250.h diff --git a/MAINTAINERS b/MAINTAINERS index 708ded7..35d0a9a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -932,6 +932,10 @@ Sughosh Ganu hawkboard ARM926EJS (OMAP-L138) +Vladimir Zapolskiy + + devkit3250 lp

Re: [U-Boot] [PATCH 0/3 v4] devkit3250: add Timll DevKit3250 board initial support

2012-04-19 Thread Vladimir Zapolskiy
Hi, On 19.04.2012 20:17, Albert ARIBAUD wrote: Hi Vladimir, Le 19/04/2012 16:33, Vladimir Zapolskiy a écrit : This patchset adds generic NXP LPC32XX SoC support and basic support for Embest/Timll DevKit3250 board, which powered by this SoC. The patchset is done on top of u-boot/master branch

Re: [U-Boot] [PATCH v2 0/10] ARM: remove non-generic boards

2015-02-10 Thread Vladimir Zapolskiy
Hello Masahiro, On 10.02.2015 09:00, Masahiro Yamada wrote: > > Based on Tom's announce mail > (http://lists.denx.de/pipermail/u-boot/2015-February/203606.html), > let's start removing non-generic ARM boards. > > No conversion patches have been posted for these boards. > > > Changes in v2: >

Re: [U-Boot] [PATCH v2 05/10] ARM: remove devkit3250 board support

2015-02-10 Thread Vladimir Zapolskiy
Hello Masahiro, On 10.02.2015 09:00, Masahiro Yamada wrote: > This is still a non-generic board. > > Signed-off-by: Masahiro Yamada > Cc: Vladimir Zapolskiy > --- please excuse my ignorance, what do you call a generic board? I don't think that the current state of LPC

Re: [U-Boot] [PATCH v2 05/10] ARM: remove devkit3250 board support

2015-02-10 Thread Vladimir Zapolskiy
On 11.02.2015 00:06, Vladimir Zapolskiy wrote: > Hello Masahiro, > > On 10.02.2015 09:00, Masahiro Yamada wrote: >> This is still a non-generic board. >> >> Signed-off-by: Masahiro Yamada >> Cc: Vladimir Zapolskiy >> --- > > please excuse my ignora

[U-Boot] [PATCH] ARM: lpc3250: config: add generic board support

2015-02-11 Thread Vladimir Zapolskiy
The only LPC3250 board works fine with enabled generic board support, add CONFIG_SYS_GENERIC_BOARD right into the arch config header. Signed-off-by: Vladimir Zapolskiy --- arch/arm/include/asm/arch-lpc32xx/config.h |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/arch

Re: [U-Boot] [PATCH v2 05/10] ARM: remove devkit3250 board support

2015-02-11 Thread Vladimir Zapolskiy
Hello Masahiro, On 11.02.2015 00:48, Vladimir Zapolskiy wrote: > On 11.02.2015 00:06, Vladimir Zapolskiy wrote: >> Hello Masahiro, >> >> On 10.02.2015 09:00, Masahiro Yamada wrote: >>> This is still a non-generic board. >>> >>> Signed-off

[U-Boot] [PATCH 0/3] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
support. Vladimir Zapolskiy (3): arm926ejs: add NXP LPC32x0 cpu series support serial: add LPC32X0 high-speed UART devices support devkit3250: add Timll DevKit3250 board initial support MAINTAINERS |4 + arch/arm/cpu/arm926ejs/lpc32xx/Makefile

[U-Boot] [PATCH 1/3 v6] arm926ejs: add NXP LPC32x0 cpu series support

2012-01-11 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy --- Changes from v5 to v6: * replaced some spaces with tabs in macro declarations * more rules separating 14-clock and ns16650 UARTs in config.h Changes from v4 to v5: * corrected address in GPLv2

[U-Boot] [PATCH 2/3] serial: add LPC32X0 high-speed UART devices support

2012-01-11 Thread Vladimir Zapolskiy
This change adds an implementation of high-speed UART found on NXP LPC32X0 SoCs. Such UARTs are enumerated as UART1, UART2 and UART7. Signed-off-by: Vladimir Zapolskiy --- arch/arm/cpu/arm926ejs/lpc32xx/devices.c |8 ++ arch/arm/include/asm/arch-lpc32xx/uart.h | 60

[U-Boot] [PATCH 3/3 v3] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
diff --git a/MAINTAINERS b/MAINTAINERS index 4bf12b5..68dedae 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -914,6 +914,10 @@ Sughosh Ganu hawkboard ARM926EJS (OMAP-L138) +Vladimir Zapolskiy + + devkit3250 lp

[U-Boot] [PATCH] skat91: add support for SK-AT91SAM9/SIM508 board

2012-01-11 Thread Vladimir Zapolskiy
This change adds complete support for Starterkit SK-AT91SAM9/SIM508 board. Signed-off-by: Vladimir Zapolskiy --- MAINTAINERS|4 + board/starterkit/skat91_sim508/Makefile| 44 ++ board/starterkit/skat91_sim508/partition.c | 39

Re: [U-Boot] [PATCH] skat91: add support for SK-AT91SAM9/SIM508 board

2012-01-11 Thread Vladimir Zapolskiy
On 11.01.2012 22:53, Marek Vasut wrote: This change adds complete support for Starterkit SK-AT91SAM9/SIM508 board. Signed-off-by: Vladimir Zapolskiy --- MAINTAINERS|4 + board/starterkit/skat91_sim508/Makefile| 44 ++ board/starterkit

Re: [U-Boot] [PATCH 3/3 v3] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
start bootloader execution. Signed-off-by: Vladimir Zapolskiy --- Changes from v2 to v3: * updated a relocation address * combined a record in maintainers file into the patch * use high speed UART2 by default Changes from v1 to v2: * corrected address in GPLv2+ licence header in files * removed clea

Re: [U-Boot] [PATCH 3/3 v3] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
GPIO configuration is performed during kickstart bootloader execution. Signed-off-by: Vladimir Zapolskiy --- Changes from v2 to v3: * updated a relocation address * combined a record in maintainers file into the patch * use high speed UART2 by default Changes from v1 to v2: * corrected address in

[U-Boot] [PATCH v2] skat91: add support for SK-AT91SAM9/SIM508 board

2012-01-11 Thread Vladimir Zapolskiy
This change adds complete support for Starterkit SK-AT91SAM9/SIM508 board. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v1 to v2: * make use of setbits_le32() and similar helpers * phy address is defined explicitly * removed CONFIG_EXTRA_ENV_SETTINGS

[U-Boot] [PATCH 0/3 v2] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
support. Changes in v2: * setbits_le32() and similar helpers are used * added general arch_cpu_init() routine Vladimir Zapolskiy (3): arm926ejs: add NXP LPC32x0 cpu series support serial: add LPC32X0 high-speed UART devices support devkit3250: add Timll DevKit3250 board initial support

[U-Boot] [PATCH 1/3 v7] arm926ejs: add NXP LPC32x0 cpu series support

2012-01-11 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v6 to v7: * get use of setbits_le32() and friends * add arch_cpu_init() routine Changes from v5 to v6: * replaced some spaces with tabs in macro

[U-Boot] [PATCH 2/3 v2] serial: add LPC32X0 high-speed UART devices support

2012-01-11 Thread Vladimir Zapolskiy
This change adds an implementation of high-speed UART found on NXP LPC32X0 SoCs. Such UARTs are enumerated as UART1, UART2 and UART7. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v1 to v2: * simplified lpc32xx_hsuart_init() a little * put SoC specific

[U-Boot] [PATCH 3/3 v4] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
Ganu hawkboard ARM926EJS (OMAP-L138) +Vladimir Zapolskiy + + devkit3250 lpc32xx + - Unknown / orphaned boards: diff --git a/board/timll/devkit3250/Makefile b/board/timll/devkit3250/Makefile new file mode 1

Re: [U-Boot] [PATCH 2/3 v2] serial: add LPC32X0 high-speed UART devices support

2012-01-11 Thread Vladimir Zapolskiy
On 12.01.2012 01:52, Marek Vasut wrote: This change adds an implementation of high-speed UART found on NXP LPC32X0 SoCs. Such UARTs are enumerated as UART1, UART2 and UART7. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v1 to v2: * simplified

Re: [U-Boot] [PATCH 3/3 v4] devkit3250: add Timll DevKit3250 board initial support

2012-01-11 Thread Vladimir Zapolskiy
start bootloader execution. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v3 to v4: * removed dcache flushing from board_init() * tabs instead of spaces in board config file Changes from v2 to v3: * updated a relocation address * combined a record in maintainers

Re: [U-Boot] [PATCH 1/3 v7] arm926ejs: add NXP LPC32x0 cpu series support

2012-01-11 Thread Vladimir Zapolskiy
On 12.01.2012 01:51, Marek Vasut wrote: This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v6 to v7: * get use of setbits_le32() and friends * add arch_cpu_init() routine Changes from v5 to v6

[U-Boot] [PATCH 2/3 v3] serial: add LPC32X0 high-speed UART devices support

2012-01-12 Thread Vladimir Zapolskiy
This change adds an implementation of high-speed UART found on NXP LPC32X0 SoCs. Such UARTs are enumerated as UART1, UART2 and UART7. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v2 to v3: * renamed struct hsuart_t to hsuart_regs Changes from v1 to

[U-Boot] [PATCH 0/3 v3] devkit3250: add Timll DevKit3250 board initial support

2012-01-12 Thread Vladimir Zapolskiy
Vladimir Zapolskiy (3): arm926ejs: add NXP LPC32x0 cpu series support serial: add LPC32X0 high-speed UART devices support devkit3250: add Timll DevKit3250 board initial support MAINTAINERS |4 + arch/arm/cpu/arm926ejs/lpc32xx/Makefile | 45

[U-Boot] [PATCH 3/3 v5] devkit3250: add Timll DevKit3250 board initial support

2012-01-12 Thread Vladimir Zapolskiy
index 4bf12b5..68dedae 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -914,6 +914,10 @@ Sughosh Ganu hawkboard ARM926EJS (OMAP-L138) +Vladimir Zapolskiy + + devkit3250 lpc32xx + - Unknown / orp

[U-Boot] [PATCH 1/3 v8] arm926ejs: add NXP LPC32x0 cpu series support

2012-01-12 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy Cc: Albert ARIBAUD Cc: Wolfgang Denk --- Changes from v7 to v8: * renamed register structures from *_t to *_regs * renamed clkpwr.c file to clk.c * fixed several macro definitions * various cosmetic

Re: [U-Boot] [PATCH 1/3 v8] arm926ejs: add NXP LPC32x0 cpu series support

2012-02-10 Thread Vladimir Zapolskiy
Hi Albert, On 10.02.2012 20:00, Albert ARIBAUD wrote: Hi Vladimir, Le 13/01/2012 01:42, Vladimir Zapolskiy a écrit : diff --git a/arch/arm/cpu/arm926ejs/lpc32xx/cpu.c b/arch/arm/cpu/arm926ejs/lpc32xx/cpu.c new file mode 100644 index 000..e29e130 --- /dev/null +++ b/arch/arm/cpu/arm926ejs

[U-Boot] [PATCH] phy: add Micrel KS8721BL phy definition

2011-12-06 Thread Vladimir Zapolskiy
This adds support for the Micrel KS8721BL/SL PHY. The definition is taken from the correspondent datasheet. Signed-off-by: Vladimir Zapolskiy --- drivers/net/phy/micrel.c | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/drivers/net/phy/micrel.c b/drivers/net

[U-Boot] [PATCH] skat91: add support for SK-AT91SAM9/SIM508 board

2011-12-06 Thread Vladimir Zapolskiy
This change adds complete support for Starterkit SK-AT91SAM9/SIM508 board. Signed-off-by: Vladimir Zapolskiy --- MAINTAINERS|4 + board/starterkit/skat91_sim508/Makefile| 44 ++ board/starterkit/skat91_sim508/partition.c | 39

Re: [U-Boot] [STATUS] Getting ready for -rc1

2011-12-06 Thread Vladimir Zapolskiy
Hi Wolfgang, On 06.12.2011 13:12, Wolfgang Denk wrote: Hi all, first I would like to thank everybody who helped me to reduce the backlog of patches and pushed stuff through the u-boot-staging repo: thanks: Anatolij, Heiko, Marek, Stefan, and Stefano. Hm... nobody outside DENX in this list :-(

[U-Boot] [PATCH v2] skat91: add support for SK-AT91SAM9/SIM508 board

2011-12-06 Thread Vladimir Zapolskiy
This change adds complete support for Starterkit SK-AT91SAM9/SIM508 board. Signed-off-by: Vladimir Zapolskiy Cc: Reinhard Meyer --- Changes from v1 to v2: * Removed CONFIG_EXTRA_ENV_SETTINGS from board config MAINTAINERS|4 + board/starterkit

Re: [U-Boot] [PATCH] skat91: add support for SK-AT91SAM9/SIM508 board

2011-12-06 Thread Vladimir Zapolskiy
Hi Wolfgang, On 06.12.2011 15:31, Wolfgang Denk wrote: Dear Vladimir Zapolskiy, In message<1323176650-8339-1-git-send-email...@mleia.com> (sfid-20111206_130449_572868_43286534) you wrote: This change adds complete support for Starterkit SK-AT91SAM9/SIM508 board. Signed-off-by: Vl

[U-Boot] LPC32XX / DevKit3250 support

2011-12-06 Thread Vladimir Zapolskiy
Hi Albert, I would like to ask you to upmerge NXP LPC32XX and DevKit3250 support. I didn't receive any response from you and I can't detect, if something is still missing, or you're willing to include the changes into the next merge window. I tend to think that there are no stoppers anymore

Re: [U-Boot] [PATCH] NAND: remove remaining NAND_MAX_CHIPS definitions

2011-12-06 Thread Vladimir Zapolskiy
Hi Scott, On 20.11.2011 16:10, Vladimir Zapolskiy wrote: This change follows the change by Wolfgang Grandegger (commit 6c869637fef), which allows to remove useless NAND_MAX_CHIPS definitions in board config files. The change is based on u-boot.git/master, this branch contains 3 new boards with

Re: [U-Boot] [STATUS] Getting ready for -rc1

2011-12-06 Thread Vladimir Zapolskiy
Hi Wolfgang, On 06.12.2011 15:35, Wolfgang Denk wrote: Dear Vladimir Zapolskiy, In message<4ede1729.9040...@mleia.com> (sfid-20111206_132335_868182_7BD58FAF) you wrote: would it be possible to upmerge my realisation for NXP LPC32XX support and DevKit3250 board during the merge

Re: [U-Boot] [PATCH] NAND: remove remaining NAND_MAX_CHIPS definitions

2011-12-06 Thread Vladimir Zapolskiy
On 06.12.2011 19:27, Scott Wood wrote: On 12/06/2011 07:58 AM, Vladimir Zapolskiy wrote: Hi Scott, On 20.11.2011 16:10, Vladimir Zapolskiy wrote: This change follows the change by Wolfgang Grandegger (commit 6c869637fef), which allows to remove useless NAND_MAX_CHIPS definitions in board

Re: [U-Boot] [PATCH] NAND: remove remaining NAND_MAX_CHIPS definitions

2011-12-06 Thread Vladimir Zapolskiy
On 06.12.2011 20:56, Scott Wood wrote: On 12/06/2011 12:34 PM, Vladimir Zapolskiy wrote: On 06.12.2011 19:27, Scott Wood wrote: On 12/06/2011 07:58 AM, Vladimir Zapolskiy wrote: Hi Scott, is there any problem with this pending change? No, looks good. Being a NAND Flash custodian, would

Re: [U-Boot] [STATUS] Getting ready for -rc1

2011-12-06 Thread Vladimir Zapolskiy
Hi Albert, thank you for response. On 06.12.2011 23:46, Albert ARIBAUD wrote: Le 06/12/2011 16:17, Wolfgang Denk a écrit : Dear Vladimir, In message<4ede21c1.6010...@mleia.com> (sfid-20111206_140838_823869_D329B307) you wrote: You should not ask me, but the responsible custodian. please

Re: [U-Boot] [STATUS] Getting ready for -rc1

2011-12-06 Thread Vladimir Zapolskiy
On 07.12.2011 00:15, Albert ARIBAUD wrote: Le 06/12/2011 22:56, Vladimir Zapolskiy a écrit : Surely I don't insist in inclusion of the SoC support into this release, but I have a hope to get it in the next, and the next merge window start is expected to be on the next week or so, if I&

[U-Boot] [PATCH] phy: add phy_smsc_init() declaration

2011-12-29 Thread Vladimir Zapolskiy
This trivial change removes a compilation warning: 8< phy.c: In function 'phy_init': phy.c:448:2: warning: implicit declaration of function 'phy_smsc_init' 8<---- Signed-off-by: Vladimir Zapolskiy Cc: Nobuhiro Iwamatsu --- include/phy.h |

Re: [U-Boot] [PATCH 1/1] net: phy: micrel: make ksz9021 phy accessible

2012-06-21 Thread Vladimir Zapolskiy
quot;, .uid = 0x221610, @@ -44,7 +50,9 @@ static struct phy_driver KS8721_driver = { .startup =&genphy_startup, .shutdown =&genphy_shutdown, }; +#endif Acked-by: Vladimir Zapolskiy +#ifdef CONFIG_PHY_MICREL_KSZ9021 /* ksz9021 PHY Registers */ #define MII_KSZ

[U-Boot] [PATCH] doc: provide a correct board_init_r definition path

2011-09-05 Thread Vladimir Zapolskiy
This is a trivial fix in the documentation, which corrects board_init_r() source reference. Signed-off-by: Vladimir Zapolskiy --- doc/README.console |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/README.console b/doc/README.console index 25c4f1d..b353f9f 100644

[U-Boot] [PATCH 0/2] phylib: a couple of minor fixes in generic phy library

2011-09-05 Thread Vladimir Zapolskiy
change. Vladimir Zapolskiy (2): phylib: reset mii bus only if reset handler is registered phylib: remove a couple of redundant code lines drivers/net/phy/phy.c | 10 -- 1 files changed, 4 insertions(+), 6 deletions(-) -- 1.7.5.4 ___ U

[U-Boot] [PATCH 1/2] phylib: reset mii bus only if reset handler is registered

2011-09-05 Thread Vladimir Zapolskiy
This change allows to cope with a mii bus device registered using miiphy_register(), which doesn't assign a default reset handler. Signed-off-by: Vladimir Zapolskiy --- drivers/net/phy/phy.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/net/phy/ph

[U-Boot] [PATCH 2/2] phylib: remove a couple of redundant code lines

2011-09-05 Thread Vladimir Zapolskiy
This change slightly improves readability of the phydev speed/duplex assignment logic. Signed-off-by: Vladimir Zapolskiy --- drivers/net/phy/phy.c |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c index 8da7688..833a051

Re: [U-Boot] [PATCH 42/71] serial: arm: Implement CONFIG_SERIAL_MULTI into lpc32xx serial driver

2012-09-17 Thread Vladimir Zapolskiy
a weak implementation of default_serial_console() returning this driver. Signed-off-by: Marek Vasut Cc: Marek Vasut Cc: Tom Rini Cc: Vladimir Zapolskiy Acked-by: Vladimir Zapolskiy Thanks, Vladimir --- common/serial.c |2 ++ drivers/serial/lpc32xx_hsuart.c | 71

Re: [U-Boot] Patchwork housekeeping

2012-03-26 Thread Vladimir Zapolskiy
Hi Graeme, On 22.03.2012 04:58, Graeme Russ wrote: Hello Custodians and Mailing List Aficionados, I don't know if anyone has noticed, but patchwork is starting to collect a rather large amount of cruft. I occasionally jump onto patchwork and do a little housekeeping by marking updated patches

Re: [U-Boot] Patchwork housekeeping

2012-03-26 Thread Vladimir Zapolskiy
On 26.03.2012 20:36, Andy Fleming wrote: On Mar 26, 2012, at 12:30 PM, Vladimir Zapolskiy wrote: Hi Graeme, On 22.03.2012 04:58, Graeme Russ wrote: Hello Custodians and Mailing List Aficionados, I don't know if anyone has noticed, but patchwork is starting to collect a rather large a

Re: [U-Boot] [PATCH v3] arm926ejs: add NXP LPC32x0 cpu series support

2011-10-23 Thread Vladimir Zapolskiy
Hi Albert, On 22.10.2011 02:31, Albert ARIBAUD wrote: > Hi Vladimir, > > Le 18/10/2011 17:55, Vladimir Zapolskiy a écrit : >> This change adds initial support for NXP LPC32x0 SoC series. >> >> Signed-off-by: Vladimir Zapolskiy >> --- >> Changes from v2

[U-Boot] [PATCH v4 1/2] arm926ejs: add NXP LPC32x0 cpu series support

2011-10-25 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy --- Changes from v3 to v4: * extended memory controller definitions are introduced * added print_cpuinfo() function Changes from v2 to v3: * checkpatch.pl reports zero errors and warnings Changes

[U-Boot] [PATCH 0/2] add Timll DevKit3250 board initial support

2011-10-25 Thread Vladimir Zapolskiy
This patchset adds generic NXP LPC32XX SoC support and basic support for Embest/Timll DevKit3250 board, which powered by this SoC. Vladimir Zapolskiy (2): arm926ejs: add NXP LPC32x0 cpu series support devkit3250: add Timll DevKit3250 board initial support arch/arm/cpu/arm926ejs/lpc32xx

[U-Boot] [PATCH 2/2] devkit3250: add Timll DevKit3250 board initial support

2011-10-25 Thread Vladimir Zapolskiy
cb16f --- /dev/null +++ b/board/timll/devkit3250/Makefile @@ -0,0 +1,50 @@ +# +# Copyright (C) 2011 by Vladimir Zapolskiy +# Copyright (C) 2008, Guennadi Liakhovetski +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistr

[U-Boot] [PATCH] devkit3250: add DevKit3250 board maintainer

2011-10-25 Thread Vladimir Zapolskiy
Add Vladimir Zapolskiy as a board maintainer in Das U-Boot. Signed-off-by: Vladimir Zapolskiy --- MAINTAINERS |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index cd0dd91..eeb3d32 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -891,6 +891,10

Re: [U-Boot] [PATCH 0/2] add Timll DevKit3250 board initial support

2011-10-31 Thread Vladimir Zapolskiy
Hello Albert and Wolfgang, On 25.10.2011 19:27, Vladimir Zapolskiy wrote: > This patchset adds generic NXP LPC32XX SoC support and basic support > for Embest/Timll DevKit3250 board, which powered by this SoC. > > Vladimir Zapolskiy (2): >arm926ejs: add NXP LPC32x0 cpu

Re: [U-Boot] [PATCH v3] arm926ejs: add NXP LPC32x0 cpu series support

2011-10-31 Thread Vladimir Zapolskiy
Hi Albert, On 31.10.2011 19:42, Albert ARIBAUD wrote: > Hi Vladimir, > > Le 24/10/2011 01:04, Vladimir Zapolskiy a écrit : >> Hi Albert, >> >> On 22.10.2011 02:31, Albert ARIBAUD wrote: >>> Hi Vladimir, >>> >>> Le 18/10/2011 17:55, Vlad

[U-Boot] [PATCH 2/3 RESEND] devkit3250: add Timll DevKit3250 board initial support

2011-11-07 Thread Vladimir Zapolskiy
cb16f --- /dev/null +++ b/board/timll/devkit3250/Makefile @@ -0,0 +1,50 @@ +# +# Copyright (C) 2011 by Vladimir Zapolskiy +# Copyright (C) 2008, Guennadi Liakhovetski +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistr

[U-Boot] [PATCH 1/3 RESEND v4] arm926ejs: add NXP LPC32x0 cpu series support

2011-11-07 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy --- Changes from v3 to v4: * extended memory controller definitions are introduced * added print_cpuinfo() function Changes from v2 to v3: * checkpatch.pl reports zero errors and warnings Changes

[U-Boot] [PATCH 3/3 RESEND] devkit3250: add DevKit3250 board maintainer

2011-11-07 Thread Vladimir Zapolskiy
Add Vladimir Zapolskiyf as a DevKit3250 board maintainer in Das U-boot. Signed-off-by: Vladimir Zapolskiy --- MAINTAINERS |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 030fe4a..3da5650 100644 --- a/MAINTAINERS +++ b/MAINTAINERS

[U-Boot] [PATCH 0/3 RESEND] devkit3250: add Timll DevKit3250 board initial support

2011-11-07 Thread Vladimir Zapolskiy
This patchset adds generic NXP LPC32XX SoC support and basic support for Embest/Timll DevKit3250 board, which powered by this SoC. Vladimir Zapolskiy (3): arm926ejs: add NXP LPC32x0 cpu series support devkit3250: add Timll DevKit3250 board initial support devkit3250: add DevKit3250 board

Re: [U-Boot] [PATCH 2/3 RESEND] devkit3250: add Timll DevKit3250 board initial support

2011-11-14 Thread Vladimir Zapolskiy
Hi Igor, thank you for your review, especially because it's a sole one. On 08.11.2011 10:16, Igor Grinberg wrote: > Hi Vladimir, > > On 11/07/11 23:58, Vladimir Zapolskiy wrote: >> This change adds a basic support for Embest/Timll DevKit3250 board, >> NOR and U

[U-Boot] [PATCH 0/3] devkit3250: add Timll DevKit3250 board initial support

2011-11-14 Thread Vladimir Zapolskiy
This patchset adds generic NXP LPC32XX SoC support and basic support for Embest/Timll DevKit3250 board, which powered by this SoC. The patchset is done on top of u-boot-arm/next branch. Vladimir Zapolskiy (3): arm926ejs: add NXP LPC32x0 cpu series support devkit3250: add Timll DevKit3250

[U-Boot] [PATCH 2/3 v2] devkit3250: add Timll DevKit3250 board initial support

2011-11-14 Thread Vladimir Zapolskiy
+1,44 @@ +# +# Copyright (C) 2011 by Vladimir Zapolskiy +# Copyright (C) 2008, Guennadi Liakhovetski +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General P

[U-Boot] [PATCH 3/3] devkit3250: add DevKit3250 board maintainer

2011-11-14 Thread Vladimir Zapolskiy
Add myself as a board maintainer in U-boot. Signed-off-by: Vladimir Zapolskiy --- MAINTAINERS |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 6b5ca89..2daa6c8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -901,6 +901,10 @@ Sughosh Ganu

[U-Boot] [PATCH 1/3 v5] arm926ejs: add NXP LPC32x0 cpu series support

2011-11-14 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy --- Changes from v4 to v5: * corrected address in GPLv2+ licence header in files Changes from v3 to v4: * extended memory controller definitions are introduced * added print_cpuinfo() function

Re: [U-Boot] [PATCH 2/3 v2] devkit3250: add Timll DevKit3250 board initial support

2011-11-14 Thread Vladimir Zapolskiy
Hi Igor, On 15.11.2011 08:42, Igor Grinberg wrote: > Hi Vladimir, > > On 11/14/11 19:43, Vladimir Zapolskiy wrote: >> This change adds a basic support for Embest/Timll DevKit3250 board, >> NOR and UART are the only supported peripherals for a moment. The board >> doe

Re: [U-Boot] [PATCH 2/3 v2] devkit3250: add Timll DevKit3250 board initial support

2011-11-15 Thread Vladimir Zapolskiy
On 15.11.2011 09:48, Igor Grinberg wrote: > On 11/15/11 09:25, Vladimir Zapolskiy wrote: >> Hi Igor, >> >> On 15.11.2011 08:42, Igor Grinberg wrote: >>> Hi Vladimir, >>> >>> On 11/14/11 19:43, Vladimir Zapolskiy wrote: >>>> This c

  1   2   3   >