Re: [U-Boot] [PATCH v3 5/7] malloc_f: enable SYS_MALLOC_F by default if DM is on

2015-03-23 Thread Robert Baldyga
o use malloc > memory before relocation. As it is board-independent, handle it > globally. > > Signed-off-by: Masahiro Yamada > Acked-by: Stephen Warren Acked-by: Robert Baldyga > --- > > Changes in v2: > - Fix a typo s/not board-indep

Re: [U-Boot] [PATCH v3 4/7] malloc_f: remove redundant defalut values of CONFIG_SYS_MALLOC_F_LEN

2015-03-23 Thread Robert Baldyga
On 03/19/2015 11:42 AM, Masahiro Yamada wrote: > The default value of CONFIG_SYS_MALLOC_F_LEN is defined by ./Kconfig > as 0x400. Each defconfig or Kconfig need not repeat the same value. > > Signed-off-by: Masahiro Yamada > Acked-by: Stephen Warren Acked-by:

Re: [U-Boot] [PATCH v2 04/12] dm: pmic: add implementation of driver model regulator uclass

2015-03-10 Thread Robert Baldyga
Hi, On 03/03/2015 05:24 PM, Przemyslaw Marczak wrote: > This is the implementation of driver model regulator uclass api. > To use it, the CONFIG_DM_PMIC is required with driver implementation, > since it provides pmic devices basic I/O API. > > The regulator framework is based on a 'struct dm_reg

Re: [U-Boot] [PATCH] ext4: goni: Modify dfu_alt_info's file names to have absolute path

2014-11-07 Thread Robert Baldyga
On 11/04/2014 05:21 PM, Lukasz Majewski wrote: > After the clean up performed in the commit 1151b7ac10b81ecbb the DFU > subsystem requires absolute patch for correct operation. s/patch/path > > Signed-off-by: Lukasz Majewski Acked-by: Robert Baldyga > --- > include/conf

Re: [U-Boot] [PATCH v8 08/12] dm: exynos: Move s5p_goni to generic board

2014-10-08 Thread Robert Baldyga
On 10/08/2014 01:36 PM, Minkyu Kang wrote: > Dear Robert Baldyga, > > On 29/09/14 15:06, Robert Baldyga wrote: >> On 09/15/2014 12:29 AM, Simon Glass wrote: >>> The generic board deadline is approaching, and we need this feature to >>> enable driver model. En

[U-Boot] [PATCH] arm: goni: add i2c_init_board()

2014-10-06 Thread Robert Baldyga
Add proper initialization of GPIO pins used by software i2c. Signed-off-by: Robert Baldyga --- Hi Simon, This patch is intended for your gpio-working branch. It seems that this is only thing which is missing to make your changes working on Goni platform (excepting patches changing cache and

Re: [U-Boot] [PATCH v8 08/12] dm: exynos: Move s5p_goni to generic board

2014-09-28 Thread Robert Baldyga
gt; index ec78b6e..b7d9cb7 100644 > --- a/include/configs/s5p_goni.h > +++ b/include/configs/s5p_goni.h > @@ -289,4 +289,6 @@ > #define CONFIG_OF_SEPARATE > #define CONFIG_OF_LIBFDT > > +#define CONFIG_SYS_GENERIC_BOARD > + > #endif /* __CONFIG_H */ > Acked-by: Ro

[U-Boot] [PATCH] armv7: s5pc1xx: improve cache handling

2014-09-19 Thread Robert Baldyga
Move cache handling code to C file, and add enable_caches() and disable_caches() functions. Signed-off-by: Robert Baldyga --- arch/arm/cpu/armv7/s5pc1xx/cache.S | 30 arch/arm/cpu/armv7/s5pc1xx/cache.c | 47 ++ 2 files changed, 47

Re: [U-Boot] [PATCH v2 13/16] samsung: Enable device tree for s5p_goni

2014-09-19 Thread Robert Baldyga
> #include > -#endif > > static char *S5P_NAME = "SAMSUNG SDHCI"; > static void s5p_sdhci_set_control_reg(struct sdhci_host *host) > diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h > index a51215d..b22ac18 100644 > --- a/include/configs/s5

Re: [U-Boot] [PATCH] dm: avoid dev->req_seq overflow

2014-09-18 Thread Robert Baldyga
On 09/18/2014 08:00 PM, Simon Glass wrote: > Hi Robert, > > On 18 September 2014 09:13, Robert Baldyga <mailto:r.bald...@samsung.com>> wrote: > > Since dev->req_seq value is initialized from "reg" property of fdt node, > there is posibility

[U-Boot] [PATCH] dm: avoid dev->req_seq overflow

2014-09-18 Thread Robert Baldyga
positive, unless it's one of errno codes. Signed-off-by: Robert Baldyga --- drivers/core/device.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/core/device.c b/drivers/core/device.c index 166b073..35ffce0 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@

[U-Boot] [PATCH 1/3] arm: goni: make board generic

2014-09-17 Thread Robert Baldyga
Define CONFIG_SYS_GENERIC_BOARD to make board generic. Signed-off-by: Robert Baldyga --- include/configs/s5p_goni.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/s5p_goni.h b/include/configs/s5p_goni.h index a51215d..82bd212 100644 --- a/include/configs/s5p_goni.h +++ b

[U-Boot] [PATCH 3/3] arm: goni: update environmental variables

2014-09-17 Thread Robert Baldyga
currently used by u-boot we have only to change addresses used in default environmental variables to be sure that operations like kernel loading will be done at correct address in memory. Signed-off-by: Robert Baldyga --- include/configs/s5p_goni.h | 14 +++--- 1 file changed, 7 insertions

[U-Boot] [PATCH 0/3] Fixes and updates for goni platform

2014-09-17 Thread Robert Baldyga
described changes helped to reveal bug in memory handling at goni platform, this patch series contains also fix for this bug - now we avoid having gap in used memory area. Detailed description of changes can be found in commit messages. Best regards Robert Baldyga Robert Baldyga (3): arm: goni

[U-Boot] [PATCH 2/3] arm: goni: update SDRAM memory layout

2014-09-17 Thread Robert Baldyga
emory base to 0x4000. It decreases total available memory size from 464 MiB to 384 MiB, but after all we have still more than enough memory for each u-boot feature. Signed-off-by: Robert Baldyga --- board/samsung/goni/goni.c | 3 +-- include/configs/s5p_goni.h | 6 +++--- 2 files chang

Re: [U-Boot] [PATCH] samsung: s5p_goni: fix: Add missing definitions for G_DNL_UMS gadget

2014-08-22 Thread Robert Baldyga
RODUCT_NUM 0xA4A5 > #define CONFIG_G_DNL_MANUFACTURER "Samsung" > > /* Actual modem binary size is 16MiB. Add 2MiB for bad block handling */ > Acked-by: Robert Baldyga ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot