[U-Boot] [PATCH] AT91SAM9263-pm9263-support

2008-10-20 Thread Ilko Iliev
This patch adds support for the PM9263 board of Ronetix GmbH (www.ronetix.at) Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> --- MAKEALL |1 + Makefile |3 + board/ronetix/pm9263/Makefile| 60 + board/ronetix/

[U-Boot] [PATCH] improved strmhz()

2008-10-21 Thread Ilko Iliev
This patch prevents the displaying of results like this: hz = 199917 buf = "200.-83" Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> index 342cf2b..981a75a 100644 --- a/lib_generic/strmhz.c +++ b/lib_generic/strmhz.c @@ -28,10 +28,15 @@ char *strmhz (char *buf, long hz

[U-Boot] [PATCH] lcd: print custom strings after the logo

2008-10-21 Thread Ilko Iliev
This patch allows to print custom strings on the LCD after the logo. Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> index d104b26..a94a4da 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -827,11 +827,19 @@ static void *lcd_logo (void) sprintf (info, "%s"

[U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-21 Thread Ilko Iliev
This patch allows to have an at91 board specific lowlevel_init.S Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> index ec6ad5d..7882e89 100644 --- a/cpu/arm926ejs/at91/lowlevel_init.S +++ b/cpu/arm926ejs/at91/lowlevel_init.S @@ -27,7 +27,7 @@ #include #include -#

Re: [U-Boot] [PATCH] improved strmhz()

2008-10-21 Thread Ilko Iliev
Wolfgang Denk wrote: > Dear Ilko Iliev, > > In message <[EMAIL PROTECTED]> you wrote: > >> This patch prevents the displaying of results like this: >> hz = 199917 >> buf = "200.-83" >> > > I think you got one '0'

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-21 Thread Ilko Iliev
Wolfgang Denk wrote: > Dear Ilko Iliev, > > In message <[EMAIL PROTECTED]> you wrote: > >> This patch allows to have an at91 board specific lowlevel_init.S >> >> Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> >> >> index ec6ad5d..7882

Re: [U-Boot] [PATCH] lcd: print custom strings after the logo

2008-10-21 Thread Ilko Iliev
Hello Stelian, Stelian Pop wrote: > Le mardi 21 octobre 2008 à 15:10 +0200, Ilko Iliev a écrit : > >> This patch allows to print custom strings on the LCD after the logo. >> > > Hi Ilko, > > >> Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> &g

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-22 Thread Ilko Iliev
Dear Mr. Denk, > Dear Ilko Iliev, > > In message <[EMAIL PROTECTED]> you wrote: > >>> Maybe instead of adding mor #ifdef'ery here, we can turn >>> lowlevel_init() into a "weak" function that can be redefined by board >>> specific code

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-22 Thread Ilko Iliev
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 13:12 Wed 22 Oct , Ilko Iliev wrote: > >> Dear Mr. Denk, >> >> >>> Dear Ilko Iliev, >>> >>> In message <[EMAIL PROTECTED]> you wrote: >>> >>> >>>&g

[U-Boot] [PATCH] mtd/dataflash.c: fix a problem with the last partition

2008-10-22 Thread Ilko Iliev
This patch fix the problem that only the [NB_DATAFLASH_AREA -1] dataflash partition can be defined to use the area to the end of dataflash size. Now it is possible to have only one dataflash partition from 0 to the end of of dataflash size. Signed-off-by: Ilko Iliev <[EMAIL PROTEC

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-22 Thread Ilko Iliev
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 15:07 Wed 22 Oct , Ilko Iliev wrote: > >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 13:12 Wed 22 Oct , Ilko Iliev wrote: >>> >>> >>>> Dear Mr. Denk, >>&

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-22 Thread Ilko Iliev
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 16:01 Wed 22 Oct , Ilko Iliev wrote: > >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 15:07 Wed 22 Oct , Ilko Iliev wrote: >>> >>> >>>> Jean-Christophe PLAGNIOL-VIL

[U-Boot] [U-BOOT][Patch] DM9000 init for pm9261

2009-09-04 Thread Ilko Iliev
diff --git a/board/ronetix/pm9261/pm9261.c b/board/ronetix/pm9261/pm9261.c index 4694854..6915b9b 100644 --- a/board/ronetix/pm9261/pm9261.c +++ b/board/ronetix/pm9261/pm9261.c @@ -250,6 +250,13 @@ int board_init(void) return 0; } +#ifdef CONFIG_DRIVER_DM9000 +int board_eth_init(bd_t *bi

[U-Boot] [PATCH] - fix "nand erase clean" problem

2008-10-26 Thread Ilko Iliev
With this patch "nand erase clean" writes correctly the cleanmarkers. Without this patch "nand erase clean" fills the OOB with zeros which marks all blocks as bad. Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> --- drivers/mtd/nand/nand_util.c | 27 ++

Re: [U-Boot] [PATCH] mtd/dataflash.c: fix a problem with the last partition

2008-10-27 Thread Ilko Iliev
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 15:11 Wed 22 Oct , Ilko Iliev wrote: > >> This patch fix the problem that only the [NB_DATAFLASH_AREA -1] >> dataflash partition can be defined to use the area to the end of >> dataflash size.

[U-Boot] [PATCH] dataflash: fix a problem with the last partition

2008-10-27 Thread Ilko Iliev
This patch fix the problem that only the [NB_DATAFLASH_AREA -1] dataflash partition can be defined to use the area to the end of dataflash size. Now it is possible to have only one dataflash partition from 0 to the end of of dataflash size. Signed-off-by: Ilko Iliev <[EMAIL PROTEC

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-27 Thread Ilko Iliev
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 16:01 Wed 22 Oct , Ilko Iliev wrote: > >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 15:07 Wed 22 Oct , Ilko Iliev wrote: >>> >>>

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-27 Thread Ilko Iliev
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 09:27 Mon 27 Oct , Ben Warren wrote: > >> Hi Ilko, >> >> Ilko Iliev wrote: >> >> >>> I tried several variants to make the function lowlevel_init() weak but >>>

Re: [U-Boot] [PATCH] - fix "nand erase clean" problem

2008-10-27 Thread Ilko Iliev
Dear Scott, Scott Wood wrote: > On Sun, Oct 26, 2008 at 05:48:47PM +0100, Ilko Iliev wrote: > >> With this patch "nand erase clean" writes correctly the cleanmarkers. >> Without this patch "nand erase clean" fills the OOB with zeros which >> marks

Re: [U-Boot] [PATCH] - fix "nand erase clean" problem

2008-10-28 Thread Ilko Iliev
Dear Scott, Scott Wood wrote: > Ilko Iliev wrote: >>> Why must the cleanmarker fit in the first free segment? >>> >> The Linux NAND driver looks for the cleanmarkers at this place. > > AFAICT, it does a read using MTD_OOB_AUTO, which can span multiple > f

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-10-28 Thread Ilko Iliev
lowlevel_init +.weak lowlevel_init +.set lowlevel_init,function lowlevel_init: /* I think that this part is not good, but I don't know how to make it better: - $(MAKE) -C cpu/$(CPU) $(if $(REMOTE_BUILD),$@,$(notdir $@)) + $(MAKE) -C cpu/$(CPU) +#

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-11-05 Thread Ilko Iliev
Dear Jean, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 12:45 Tue 28 Oct , Ilko Iliev wrote: > >> Dear Jean-Christophe, >> >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 22:20 Mon 27 Oct , Wolfgang Denk wrote: >>> >&

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-11-06 Thread Ilko Iliev
Dear Jean, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 18:29 Wed 05 Nov , Ilko Iliev wrote: > >> Dear Jean, >> >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 12:45 Tue 28 Oct , Ilko Iliev wrote: >>> >>> >

Re: [U-Boot] [PATCH] at91: board specific lowlevel_init.S

2008-11-06 Thread Ilko Iliev
Dear Jean, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 18:29 Wed 05 Nov , Ilko Iliev wrote: > >> Dear Jean, >> >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 12:45 Tue 28 Oct , Ilko Iliev wrote: >>> >>> >

[U-Boot] [PATCH] at91: add support for PM9263 board

2008-11-06 Thread Ilko Iliev
This patch adds support for the PM9263 board of Ronetix GmbH (www.ronetix.at) Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> --- MAKEALL |1 + Makefile|3 + board/ronetix/pm9263/Makefile

[U-Boot] [PATCH] at91: add support for PM9261 board

2008-11-07 Thread Ilko Iliev
This patch adds support for the PM9261 board of Ronetix GmbH (www.ronetix.at) Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> --- MAKEALL |1 + Makefile|3 + board/ronetix/pm9261/Makefile

[U-Boot] broken lib_arm/boom.c/do_bootm_linux()

2008-11-07 Thread Ilko Iliev
ased. Maybe it should be corrected to: if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) return 1; -- With best regards, Ilko Iliev Ronetix Development Tools GmbH CPU Modules, JTAG/BDM Emulators and Flash Programmers Waidhausenstrasse 13/5, 1140 Vienna, Austria E-Mail:

[U-Boot] [PATCH] lib_arm: do_bootm_linux() - correct a small mistake

2008-11-08 Thread Ilko Iliev
Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> --- lib_arm/bootm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib_arm/bootm.c b/lib_arm/bootm.c index 8e264ce..7dbde7d 100644 --- a/lib_arm/bootm.c +++ b/lib_arm/bootm.c @@ -67,7 +67,7 @@ int do_bootm_linux(in

[U-Boot] [PATCH] lib_arm: do_bootm_linux() - correct a small mistake

2008-11-09 Thread Ilko Iliev
This patch corrects a small bug in the "if" condition: the parameter "flag" is 0 and the "if" condition is always true. The result is - the boom command doesn't start the kernel. Affected targets: all arm based. Signed-off-by: Ilko Iliev <[EMAIL PROTECT

[U-Boot] [PATCH] fix some coding style violations.

2008-12-02 Thread Ilko Iliev
This patch fix some coding style violations. Signed-off-by: Ilko Iliev <[EMAIL PROTECTED]> --- drivers/mtd/dataflash.c | 25 - 1 files changed, 12 insertions(+), 13 deletions(-) diff --git a/drivers/mtd/dataflash.c b/drivers/mtd/dataflash.c index 201e518..5

[U-Boot] [PATCH] mtd/dataflash.c: fix a problem with the last partition

2008-12-02 Thread Ilko Iliev
This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash partition can be defined to use the area to the end of dataflash size. Now it is possible to have only one dataflash partition from 0 to the end of of dataflash size. Signed-off-by: Ilko Iliev <[EMAIL PROTEC

[PATCH] arm: dts: imx7: Fix error in coresight TPIU graph connection

2020-07-13 Thread Ilko Iliev
27; is not bidirectional arch/arm/dts/imx7d-sdb.dtb: Warning (graph_endpoint): /soc/tpiu@30087000/port/endpoint: graph connection to node '/replicator/ports/port@1/endpoint' is not bidirectional Signed-off-by: Ilko Iliev --- arch/arm/dts/imx7s.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 del

[PATCH v2] imx: Add support for Ronetix's i.MX7-CM board.

2020-07-13 Thread Ilko Iliev
-off-by: Ilko Iliev Changes for v2: - support for i.MX7-CM v2.0 - applicable to the current master branch --- arch/arm/dts/Makefile | 3 +- arch/arm/dts/imx7-cm.dts | 674 + arch/arm/mach-imx/mx7/Kconfig | 10 +- board

[U-Boot] [PATCH] pm9g45: Migrate to CONFIG_DM

2019-03-07 Thread Ilko Iliev
Migrate the following options to CONFIG_DM: CONFIG_DM_GPIO CONFIG_DM_MMC CONFIG_DM_ETH CONFIG_DM_SERIAL CONFIG_DM_USB Signed-off-by: Ilko Iliev --- board/ronetix/pm9g45/pm9g45.c | 8 +- configs/pm9g45_defconfig | 44 +++-- include/configs/pm9g45.h | 173

[U-Boot] [PATCH 1/2] board: pm9261: Convert to CONFIG_DM_USB and CONFIG_DM_VIDEO

2019-03-11 Thread Ilko Iliev
Convert the board to support the USB and video driver model and remove the unnecessary code. --- board/ronetix/pm9261/pm9261.c | 105 -- configs/pm9261_defconfig | 3 + 2 files changed, 3 insertions(+), 105 deletions(-) diff --git a/board/ronetix/pm9261/pm92

[U-Boot] [PATCH 2/2] board: pm9263: Convert to CONFIG_DM_USB and CONFIG_DM_VIDEO

2019-03-11 Thread Ilko Iliev
Convert the board to support the USB and video driver model and remove the unnecessary code. --- board/ronetix/pm9263/pm9263.c | 93 --- configs/pm9263_defconfig | 3 ++ 2 files changed, 3 insertions(+), 93 deletions(-) diff --git a/board/ronetix/pm9263/pm926

[U-Boot] [PATCH v2] board: pm9g45: Migrate to CONFIG_DM

2019-04-03 Thread Ilko Iliev
Migrate the following options to CONFIG_DM: CONFIG_DM_GPIO CONFIG_DM_MMC CONFIG_DM_ETH CONFIG_DM_SERIAL CONFIG_DM_USB Signed-off-by: Ilko Iliev --- Changes for v2: - fix undeclared 'PHYS_SDRAM' in pm9g45.c - add missing .dtb arch/arm/dts/Makefile

[U-Boot] [PATCH] i.mx7: board: Add support for the Ronetix's i.MX7-CM board

2019-07-05 Thread Ilko Iliev
: serial Net: eth0: ethernet@30be Signed-off-by: Ilko Iliev --- arch/arm/dts/Makefile | 3 +- arch/arm/dts/imx7-cm.dts | 540 + arch/arm/mach-imx/mx7/Kconfig | 8 + board/ronetix/imx7-cm/Kconfig | 12 + board/ronetix/imx7-cm

[PATCH] imx: Add support for Ronetix's iMX8MM-CM board

2021-04-14 Thread Ilko Iliev
MAC address - 4a:f6:bf:8d:d8:a9 eth0: ethernet@30be Hit any key to stop autoboot: 0 Signed-off-by: Ilko Iliev --- arch/arm/dts/Makefile |1 + arch/arm/dts/imx8mm-cm-u-boot.dtsi| 253 +++ arch/arm/dts/imx8mm-cm.dts| 558

[PATCH v3] imx: Add support for Ronetix's iMX7-CM board

2021-04-16 Thread Ilko Iliev
- fe:be:37:01:5a:3f eth0: ethernet@30be Hit any key to stop autoboot: 0 Signed-off-by: Ilko Iliev --- arch/arm/dts/Makefile | 1 + arch/arm/dts/imx7-cm-u-boot.dtsi | 17 ++ arch/arm/dts/imx7-cm.dts | 432 ++ arch/arm/mach-imx/mx7/Kconfig

[PATCH] board:pm9261 - Enable DM_ETH

2021-04-19 Thread Ilko Iliev
This patch remove the network support for PM9261 because currently there is no DM suport for Davicom D9000. --- board/ronetix/pm9261/pm9261.c | 54 --- configs/pm9261_defconfig | 1 + include/configs/pm9261.h | 9 -- 3 files changed, 1 insertion(+),

[PATCH v2] board:pm9261 - Enable DM_ETH

2021-04-19 Thread Ilko Iliev
This patch remove the network support for PM9261 because currently there is no DM suport for Davicom D9000. Signed-off-by: Ilko Iliev --- Changes for v2: - add Signed-off-by board/ronetix/pm9261/pm9261.c | 54 --- configs/pm9261_defconfig | 1 + include

[PATCH] board:pm9263 - Enable DM_ETH

2021-04-19 Thread Ilko Iliev
Signed-off-by: Ilko Iliev --- board/ronetix/pm9263/pm9263.c | 57 --- configs/pm9263_defconfig | 2 ++ include/configs/pm9263.h | 6 3 files changed, 2 insertions(+), 63 deletions(-) diff --git a/board/ronetix/pm9263/pm9263.c b/board/ronetix

[PATCH] ARM:imx:imx8mq-cm: Add support for Ronetix iMX8MQ-CM

2021-04-23 Thread Ilko Iliev
any key to stop autoboot: 0 u-boot=> Signed-off-by: Ilko Iliev --- arch/arm/dts/Makefile |1 + arch/arm/dts/imx8mq-cm-u-boot.dtsi| 111 + arch/arm/dts/imx8mq-cm.dts| 535 + arch/arm/mach-imx/imx8m/Kconfig |

Re: [PATCH v2] board:pm9261 - Enable DM_ETH

2021-04-23 Thread Ilko Iliev
On 21.04.21 08:50, eugen.hris...@microchip.com wrote: On 4/19/21 4:37 PM, Ilko Iliev wrote: This patch remove the network support for PM9261 because currently there is no DM suport for Davicom D9000. Signed-off-by: Ilko Iliev --- Hi, If I look at the commit message, I would expect

[PATCH v3] board:pm9261 - Remove network support

2021-04-23 Thread Ilko Iliev
The network support is removed because there is no DM for Davicom DM9000. Signed-off-by: Ilko Iliev --- board/ronetix/pm9261/pm9261.c | 54 --- configs/pm9261_defconfig | 4 +-- include/configs/pm9261.h | 9 -- 3 files changed, 2 insertions(+), 65

[PATCH v2 1/2] board:pm9263 - Switch to use DM_ETH

2021-04-23 Thread Ilko Iliev
- Enable CONFIG_DM_ETH in configs/pm9263_defconfig - Drop legacy initialization in board/ronetix/pm9263.c - Remove network related setting from include/configs/pm9263.h Signed-off-by: Ilko Iliev --- Changes to v2: - improve commit message --- board/ronetix/pm9263/pm9263.c | 57

[PATCH v2 2/2] board:pm9263 - Fix some typos in comments

2021-04-23 Thread Ilko Iliev
Signed-off-by: Ilko Iliev --- board/ronetix/pm9263/pm9263.c | 10 +- include/configs/pm9263.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/board/ronetix/pm9263/pm9263.c b/board/ronetix/pm9263/pm9263.c index 46494b043f..6dc080ac2c 100644 --- a/board/ronetix

[PATCH 1/2] configs:pm9g45_defconfig:Fix boot arguments and boot command

2023-02-20 Thread Ilko Iliev
This patch modify boot arguments and boot command to load 512KB DTB and 8MB Linux Kernel Signed-off-by: Ilko Iliev --- configs/pm9g45_defconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/pm9g45_defconfig b/configs/pm9g45_defconfig index e7b4d967f2

[PATCH 2/2] configs:pm9g45_deconfig:Modify to use standard ECC layout

2023-02-20 Thread Ilko Iliev
This patch removes CONFIG_SYS_NAND_DRIVER_ECC_LAYOUT because the board uses standard ECC layout Signed-off-by: Ilko Iliev --- configs/pm9g45_defconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/configs/pm9g45_defconfig b/configs/pm9g45_defconfig index 9b22d4aa9b..0afdd0abcf 100644

[PATCH] board:pm9g45:add missing gpio_request()

2023-06-13 Thread Ilko Iliev
This fixes the following run time error message: set_dir_flags: error: gpio PIOD3 not reserved set_dir_flags: error: gpio PIOC14 not reserved Signed-off-by: Ilko Iliev --- board/ronetix/pm9g45/pm9g45.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/ronetix/pm9g45/pm9g45.c b/board

[U-Boot] at91: fix a USB problem for AT91SAM9261

2009-05-02 Thread RONETIX - Ilko Iliev
This patch corrects the missing PLLB initialization in usb_cpu_init() for AT91SAM9261. Because of the missing PLLB initialization, the USB support for all AT91SAM9261 based boards doesn't work. Signed-off-by: Ilko Iliev diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-a

[U-Boot] at91: fix a USB problem for AT91SAM9261

2009-06-05 Thread RONETIX - Ilko Iliev
This patch corrects the missing PLLB initialization in usb_cpu_init() for AT91SAM9261. Because of the missing PLLB initialization, the USB support for all AT91SAM9261 based boards will work only if the PLLB is configured by a precedent bootloader. Signed-off-by: Ilko Iliev diff --git a

[U-Boot] [PATCH 1/1] at91: add support for the PM9263 board of Ronetix

2009-03-31 Thread RONETIX - Ilko Iliev
The PM9263 board is based on the AT91SAM9263-EK board. Here is the page on Ronetix website: http://www.ronetix.at/starter_kit_9263.html Signed-off-by: Ilko Iliev Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- MAINTAINERS|4 + MAKEALL