Re: [U-Boot] [PATCH 08/11] omap3: cm-t3517: add basic board support

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:24AM +0200, Igor Grinberg wrote: > CompuLab cm-t3517 is Computer on Module (CoM) based on AM3517 SoC. > Features: up to 256MB DDR2, up to 512MB NAND, USB hub, mUSB, WiFi, BT, > Analog audio codec, touch screen controller, LED. > > Add basic support including: > LED,

Re: [U-Boot] [PATCH 2/2] ARM: TI: omap3: remove raw initrd support in omap3_igep00x0 config file since it is now in ti_armv7_common.h

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 02:26:18PM +0100, Guillaume GARDET wrote: > Signed-off-by: Guillaume GARDET > Cc: Tom Rini Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists

Re: [U-Boot] [PATCH 07/11] omap: hsmmc: assume cd gpio is active low

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:23AM +0200, Igor Grinberg wrote: > Switch the default CD GPIO polarity to active low. > > The current hsmmc driver assumption that the CD GPIO is active high, but > in the real hardware, usually the opposite holds. > The usual SD card socket has a mechanical switch w

Re: [U-Boot] [PATCH 06/11] omap3: cm-t35: move get_board_serial() fallback

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:22AM +0200, Igor Grinberg wrote: > The fallback is used for cases when CONFIG_SERIAL_TAG defined, but the > eeprom is not used. > The fallback is useful for more than one CompuLab board, so move it to a > common location. > > Signed-off-by: Igor Grinberg Reviewed-b

Re: [U-Boot] [PATCH 09/11] omap3: cm-t3517: add USB support

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:25AM +0200, Igor Grinberg wrote: > Add both host and mUSB support. > Currently, the selection between host USB and mUSB is done through the > config file. > > Signed-off-by: Igor Grinberg Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signatur

Re: [U-Boot] [PATCH 04/11] omap3: cm-t35: extract the splash code from board

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:20AM +0200, Igor Grinberg wrote: > The splash screen loading code can be reused by other compulab boards. > For now extract it to a common location for further reuse. > > This also switches the splash code dependency from CONFIG_LCD to > CONFIG_SPLASH_SCREEN as it sh

Re: [U-Boot] [PATCH 02/11] compulab: refactor board revision handling

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:18AM +0200, Igor Grinberg wrote: > Move board revision handling code to a common location > for further reuse. > > Signed-off-by: Igor Grinberg Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] [PATCH 05/11] omap3: cm-t35: move the SMC911x code

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:21AM +0200, Igor Grinberg wrote: > Extract the SMC911x initialization code to a common location where it > can be reused by other compulab omap3 based boards. > > Signed-off-by: Igor Grinberg Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital sign

Re: [U-Boot] [PATCH 01/11] am335x: make get_board_rev() function weak

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:17AM +0200, Igor Grinberg wrote: > Current get_board_rev() function returns a hard coded value which is > obviously incorrect for the majority of boards. > Allow boards to provide a correct implementation by making this > function weak. > > Signed-off-by: Igor Grinbe

Re: [U-Boot] [PATCH 03/11] omap3: cm-t35: move the USB hub reset code

2014-11-04 Thread Tom Rini
On Mon, Nov 03, 2014 at 11:32:19AM +0200, Igor Grinberg wrote: > Extract the USB hub reset code to a common location where it can be > reused by other compulab boards. > > Signed-off-by: Igor Grinberg Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] Query on the ci_udc driver for USB client implementation

2014-11-04 Thread Lukasz Majewski
Hi Sanchayan, > On Tuesday 04 November 2014 10:25 AM, Marek Vasut wrote: > > On Monday, November 03, 2014 at 04:46:48 PM, Fabio Estevam wrote: > >> On Mon, Nov 3, 2014 at 3:33 AM, Sanchayan Maity > >> > >> wrote: > >>> Hello, > >>> > >>> Any pointers? > >> > >> Adding Marek and Stefan on Cc in ca

[U-Boot] [PATCH] dfu: thor: fix: Modify dfu_get_alt() function to support absolute paths

2014-11-04 Thread Lukasz Majewski
Recently the ext4 file system imposed passing absolute path with its file name parameter. As a result dfu_alt_info env variable has been modified to provide absolute path when ext4 file system is accessed (e.g. /uImage ext4 0 2;). Unfortunately, lthor flashing program provides plain file name (lik

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

2014-11-04 Thread Lukasz Majewski
After the clean up performed in the commit 1151b7ac10b81ecbb the DFU subsystem requires absolute patch for correct operation. Signed-off-by: Lukasz Majewski --- include/configs/s5p_goni.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/s5p_goni.h b/include

[U-Boot] [PATCH 1/2] ubi: enable error reporting in initialization

2014-11-04 Thread Andrew Ruder
The UBI layer will disable much of its error reporting when it is compiled into the linux kernel to avoid stopping boot. We want this error reporting in U-Boot since we don't initialize the UBI layer until it is used and want the error reporting. We force this by telling the UBI layer we are buil

[U-Boot] [PATCH 2/2] mtd: nor: initialize writebufsize field

2014-11-04 Thread Andrew Ruder
UBI drivers error out if writebufsize is not filled in correctly. Grab this information from the CFI flash_info struct. Signed-off-by: Andrew Ruder Cc: Wolfgang Denk Cc: Heiko Schocher Cc: Stefan Roese --- drivers/mtd/cfi_mtd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/

[U-Boot] [U-boot] [Patch v2] ks2_evm: config: enable fatload command

2014-11-04 Thread Ivan Khoronzhuk
The keystone2 evm can boot from USB partition with FAT32 FS, so enable generic load command and fatload command usage. Acked-by: Murali Karicheri Signed-off-by: Ivan Khoronzhuk --- v2..v1: - enabled generic load command include/configs/ks2_evm.h | 2 ++ 1 file changed, 2 insertions(+)

[U-Boot] [RFC PATCH] tricorder: rewrite tricordereeprom command

2014-11-04 Thread Andreas Bießmann
This rewrite uses lately promoted eeprom_init(int) function to choose the right I2C bus when writing data to the EEPROM. Signed-off-by: Andreas Bießmann Cc: Marek Vasut --- Hi Marek, works this for you? I can't kill the i2c_read() cause eeprom_read() will blow up my SPL size. While you are on

Re: [U-Boot] Building fw_printenv (e.g. make env) failing

2014-11-04 Thread Tom Rini
On Sun, Nov 02, 2014 at 11:05:04AM +0100, Jeroen Hofstee wrote: > Hello Marcel, > > On 02-11-14 02:46, Marcel Ziswiler wrote: > >Quick question: How does one actually go about building fw_printenv > >nowadays? At lest just doing 'make env' fails for me: > > > >[user@host u-boot.git]$ make env > >

Re: [U-Boot] [PATCH] power: LP8720 regulator support

2014-11-04 Thread Tom Rini
On Sat, Nov 01, 2014 at 12:01:37PM +0100, Paul Kocialkowski wrote: > Le mardi 28 octobre 2014 à 18:32 +0100, Paul Kocialkowski a écrit : > > This adds support for the LP8720 i2c regulator, as found in e.g. the LG > > Optimus Black (P970), codename sniper. This code supports setting up and > > enabl

Re: [U-Boot] [PATCH 4/4] imx: mx6: Set Pfuze mode to decrease power number for DSM

2014-11-04 Thread Przemyslaw Marczak
Hello Ye Li, On 09/10/2014 11:08 AM, Ye.Li wrote: Set all switches APS mode in normal and PFM mode in standby. So when mx6 entering DSM mode, the power number can be decreased. There is no impact for mx6 in run mode. Changes for boards: -mx6 sabreauto -mx6 sabresd -mx6slevk -mx6sxsabresd Signe

Re: [U-Boot] [PATCH 2/4] imx: mx6slevk: Add PMIC Pfuze support

2014-11-04 Thread Przemyslaw Marczak
Hello Ye Li, On 09/10/2014 11:08 AM, Ye.Li wrote: Initialize the Pfuze on I2C1 at board late init. The mx6slevk board has Pfuze100 or Pfuze200, print the chip type by parsing the ID. Signed-off-by: Ye.Li --- board/freescale/mx6slevk/mx6slevk.c | 57 +++ inc

Re: [U-Boot] [PATCH v2 1/2] mmc: Board-specific MMC power initializations

2014-11-04 Thread Tom Rini
On Sat, Nov 01, 2014 at 11:35:43AM +0100, Paul Kocialkowski wrote: > Some devices may use non-standard combinations of regulators to power MMC: > this allows these devices to provide a board-specific MMC power init function > to set everything up in their own way. > > Signed-off-by: Paul Kocialko

Re: [U-Boot] [PATCH v2 2/2] omap_hsmmc: Board-specific TWL4030 MMC power initializations

2014-11-04 Thread Tom Rini
On Sat, Nov 01, 2014 at 11:35:44AM +0100, Paul Kocialkowski wrote: > Boards using the TWL4030 regulator may not all use the LDOs the same way > (e.g. MMC2 power can be controlled by another LDO than VMMC2). > This delegates TWL4030 MMC power initializations to board-specific functions, > that may

Re: [U-Boot] Inconsistency between $filesize and commands which accept numeric params

2014-11-04 Thread Ian Campbell
On Tue, 2014-11-04 at 10:44 -0500, Tom Rini wrote: > On Thu, Oct 30, 2014 at 03:32:58PM +, Ian Campbell wrote: > > On Thu, 2014-10-30 at 16:21 +0100, Wolfgang Denk wrote: > > > Dear Ian, > > > > > > In message <1414677435.2064.34.ca...@hellion.org.uk> you wrote: > > > > It seems there is some

Re: [U-Boot] [PATCH 1/4] imx: mx6: Add support for MX6 plugin images

2014-11-04 Thread Fabio Estevam
Hi Ye Li, On Tue, Nov 4, 2014 at 6:27 AM, Ye.Li wrote: > Plugin image is a firmware which can be executed by boot ROM to do > device initialization, custom settings, delay assertion, etc. Could you please elaborate a bit mode about the usage of the 'plugin image'? When does it become useful? Wh

Re: [U-Boot] Inconsistency between $filesize and commands which accept numeric params

2014-11-04 Thread Tom Rini
On Thu, Oct 30, 2014 at 03:32:58PM +, Ian Campbell wrote: > On Thu, 2014-10-30 at 16:21 +0100, Wolfgang Denk wrote: > > Dear Ian, > > > > In message <1414677435.2064.34.ca...@hellion.org.uk> you wrote: > > > It seems there is some inconsistency wrt number base between commands > > > which set

Re: [U-Boot] [RFC] Removal of CREDITS

2014-11-04 Thread Tom Rini
On Thu, Oct 30, 2014 at 06:58:16AM +0100, Wolfgang Denk wrote: > Dear Masahiro, > > In message <20141030125733.259b.aa925...@jp.panasonic.com> you wrote: > > > > The "CREDITS" file at the top directory does not seem > > to be used these days. > > Agreed. Actually it has never been systematicall

Re: [U-Boot] [PATCH 0/6] kbuild, kconfig: sync with Linux 3.18-rc1

2014-11-04 Thread Tom Rini
On Thu, Oct 30, 2014 at 10:50:45AM +0900, Masahiro Yamada wrote: > Masahiro Yamada (5): > kbuild: bug fixes and cleanups of Makefile.host > kbuild: improve multi-objs dependency and cleanups > kbuild: sync top Makefile with Linux 3.18-rc1 > kconfig: sync kconfig files with Linux 3.18-rc1 >

Re: [U-Boot] [PATCH v6 0/6] fs: fat/ext4/sandbox - Deal with files greater than 2GB

2014-11-04 Thread Suriyan Ramasami
Hello Simon, On Mon, Nov 3, 2014 at 10:26 PM, Simon Glass wrote: > (trimming the CC list a bit) > > Hi Suriyan, > > On 3 November 2014 19:49, Suriyan Ramasami wrote: >> >> The commands fatls/ext4ls give negative values when dealing with files >> greater than 2GB. >> The commands fatsize/ext4size

[U-Boot] [U-boot] [Patch 1/2] keystone2: config: restructure handling of default env settings

2014-11-04 Thread Ivan Khoronzhuk
From: Murali Karicheri Currently to customize env for various ks2 boards, individual variables such as NAME_FS etc are defined and included in the common config.h to define CONFIG_EXTRA_ENV_SETTINGS. This doesn't scale well if a variable is not applicable on a specific board. Using this scheme, w

[U-Boot] [PATCH 4/4] x86: Save TSC frequency in the global data

2014-11-04 Thread Bin Meng
Return the saved TSC frequency in get_tbclk_mhz(). Signed-off-by: Bin Meng --- arch/x86/include/asm/global_data.h | 1 + arch/x86/lib/tsc_timer.c | 4 2 files changed, 5 insertions(+) diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index 721e

[U-Boot] [PATCH 3/4] x86: Add quick TSC calibration via PIT

2014-11-04 Thread Bin Meng
Use the same way that Linux does for quick TSC calibration via PIT when calibration via MSR fails. Signed-off-by: Bin Meng --- arch/x86/include/asm/i8254.h | 3 + arch/x86/lib/tsc_timer.c | 155 +++ 2 files changed, 158 insertions(+) diff --git a/ar

[U-Boot] [PATCH 2/4] x86: Do TSC MSR calibration only for known/supported CPUs

2014-11-04 Thread Bin Meng
Using MSR_PLATFORM_INFO (0xCE) to calibrate TSR will cause #GP on processors which do not have this MSR. Instead only doing the MSR calibration for known/supported CPUs. Signed-off-by: Bin Meng --- arch/x86/lib/tsc_timer.c | 116 --- 1 file changed, 10

[U-Boot] [PATCH 1/4] x86: Display more detailed CPU information on boot

2014-11-04 Thread Bin Meng
Currently only basic CPU information (x86 or x86_64) is displayed on boot. This commit adds more detailed information output including CPU vendor name, device id, family, model and stepping as well as the CPU brand string, all of which are extracted from CPUID result. The CPU identification happen

Re: [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command

2014-11-04 Thread Ivan Khoronzhuk
On 11/04/2014 04:54 PM, Tom Rini wrote: On Wed, Oct 29, 2014 at 04:28:56PM +0200, Ivan Khoronzhuk wrote: The keystone2 evm can boot from USB partition with FAT32 FS, so enable fatload command usage. Acked-by: Murali Karicheri Signed-off-by: Ivan Khoronzhuk --- include/configs/ks2_evm.h | 1

Re: [U-Boot] [U-boot] [Patch] ks2_evm: config: enable fatload command

2014-11-04 Thread Tom Rini
On Wed, Oct 29, 2014 at 04:28:56PM +0200, Ivan Khoronzhuk wrote: > The keystone2 evm can boot from USB partition with FAT32 FS, so > enable fatload command usage. > > Acked-by: Murali Karicheri > Signed-off-by: Ivan Khoronzhuk > --- > include/configs/ks2_evm.h | 1 + > 1 file changed, 1 insert

[U-Boot] [U-boot] [Patch 2/2] keystone2: config: align names of images with MCSDK

2014-11-04 Thread Ivan Khoronzhuk
The Multicore Software Development Kit (MCSDK) provides foundational software for TI KeyStone II device platforms. It's supposed to be used with uboot, and it's convenient to have the same names for images, so correct environment image names according to the last MCSDK3. Signed-off-by: Ivan Khoron

[U-Boot] [U-boot] [Patch 0/2] keystone2: config: customize uboot environment

2014-11-04 Thread Ivan Khoronzhuk
Customize default uboot environment in order to simplify it's support and to align with current MCSDK. Based on "[U-boot] [Patch 0/2] keystone2: change default boot mode to ubi" https://www.mail-archive.com/u-boot@lists.denx.de/msg152442.html Ivan Khoronzhuk (1): keystone2: config: align names

Re: [U-Boot] [PATCH 2/4] imx: mx6slevk: Add PMIC Pfuze support

2014-11-04 Thread Przemyslaw Marczak
Hello Ye Li, On 11/04/2014 10:37 AM, Li Ye-B37916 wrote: Hi Przemyslaw, On 11/4/2014 5:24 PM, Li Ye-B37916 wrote: Hi Przemyslaw, On 10/30/2014 6:36 PM, Stefano Babic wrote: Hi Ye, On 10/09/2014 11:08, Ye.Li wrote: Initialize the Pfuze on I2C1 at board late init. The mx6slevk board has Pf

Re: [U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-04 Thread Peng Fan
Hi Jeroen, 在 11/4/2014 7:40 PM, Jeroen Hofstee 写道: Hello Peng, On 04-11-14 08:50, Peng Fan wrote: Include a weak function board_ehci_usb_mode to gives board code a choice. If the board want the otg port work in host mode but not device mode, this should be handled. Signed-off-by: Peng Fan S

Re: [U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-04 Thread Peng Fan
Hi Marek, 在 11/4/2014 7:01 PM, Marek Vasut 写道: On Tuesday, November 04, 2014 at 11:50:29 AM, Peng Fan wrote: 在 11/4/2014 6:33 PM, Marek Vasut 写道: On Tuesday, November 04, 2014 at 08:50:00 AM, Peng Fan wrote: Include a weak function board_ehci_usb_mode to gives board code a choice. What cho

Re: [U-Boot] [RFC PATCH v1 2/2] arm:kgdb add KGDB support for arm platform

2014-11-04 Thread Peng Fan
Hi Simon, 在 11/4/2014 2:58 PM, Simon Glass 写道: HI Peng, On 31 October 2014 23:12, Peng Fan wrote: The register save/restore: Use get_bad_stack and bad_save_user_regs to save regs. Introduce und_restore_regs to restore the previous regs before trigger a breakpoint. Signed-off-by: Peng Fan

Re: [U-Boot] [RFC PATCH v1 1/2] kgdb: add breakpoint support

2014-11-04 Thread Peng Fan
Hi Simon, 在 11/4/2014 2:46 PM, Simon Glass 写道: Hi Peng, On 31 October 2014 23:12, Peng Fan wrote: Add Z/z protocal support for breakpoint set/remove. Signed-off-by: Peng Fan This looks good to me - I just have a few bits below. --- common/kgdb.c | 273

[U-Boot] [PATCH] powerpc/P5040DS: enable SATA support

2014-11-04 Thread shh.xie
From: Shaohui Xie The define CONFIG_FSL_SATA_V2 is missing, so SATA is not available in U-boot. Signed-off-by: Shaohui Xie --- include/configs/P5040DS.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/P5040DS.h b/include/configs/P5040DS.h index 371485f..e4a031a 100644 --- a

Re: [U-Boot] [PATCH v2 0/3] imx:mx6 add usb support

2014-11-04 Thread Marek Vasut
On Tuesday, November 04, 2014 at 01:05:44 PM, Peng Fan wrote: > 在 11/4/2014 6:31 PM, Marek Vasut 写道: > > On Tuesday, November 04, 2014 at 08:49:59 AM, Peng Fan wrote: > > > > So uh, what exactly does this patchset do ? It's not clear at all from > > the subject and any description is completely mi

Re: [U-Boot] [PATCH v2 0/3] imx:mx6 add usb support

2014-11-04 Thread Peng Fan
在 11/4/2014 6:31 PM, Marek Vasut 写道: On Tuesday, November 04, 2014 at 08:49:59 AM, Peng Fan wrote: So uh, what exactly does this patchset do ? It's not clear at all from the subject and any description is completely missing. To my knowledge, i.MX6 already does have USB support in U-Boot, so t

Re: [U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-04 Thread Jeroen Hofstee
Hello Peng, On 04-11-14 08:50, Peng Fan wrote: Include a weak function board_ehci_usb_mode to gives board code a choice. If the board want the otg port work in host mode but not device mode, this should be handled. Signed-off-by: Peng Fan Signed-off-by: Ye Li --- Changes v2: Introduce a ne

Re: [U-Boot] [PATCH 2/4] imx: mx6q/dlarm2: Add support for building plugin image

2014-11-04 Thread Otavio Salvador
On Tue, Nov 4, 2014 at 6:27 AM, Ye.Li wrote: > Update "cfg" script to build for plugin image. This default plugin > image supports the boot devices as DCD image. > > To enable the plugin, must define the CONFIG_USE_PLUGIN in "mx6qarm2.h" > > Signed-off-by: Ye.Li I'd prefer: CONFIG_IMX_BOOTROM_P

[U-Boot] [PATCH 1/6] replace DIV_ROUND with DIV_ROUND_CLOSEST

2014-11-04 Thread Masahiro Yamada
The Linux-compatible macro DIV_ROUND_CLOSEST is a bit more flexible and safer than DIV_ROUND. For example, foo = DIV_ROUND_CLOSEST(x, y++) works expectedly, but foo = DIV_ROUND(x, y++) does not. (y is incremented twice.) Signed-off-by: Masahiro Yamada --- arch/arm/cpu/arm926ejs/mxs/spl_pow

[U-Boot] [PATCH 5/6] linux/kernel.h: add typechecking to roundup macro

2014-11-04 Thread Masahiro Yamada
This commit replaces roundup macro with the one from Linux Kernel. DEFINE_ALIGN_BUFFER must be fixed because typechecking can not be used in this context. Signed-off-by: Masahiro Yamada --- include/common.h | 2 +- include/linux/kernel.h | 9 +++-- 2 files changed, 8 insertions(+), 3

[U-Boot] [PATCH 4/6] linux/kernel.h: import more macros

2014-11-04 Thread Masahiro Yamada
These macros seem to be useful for U-Boot too (or at least harmless). Imported from Linux 3.18-rc2. Signed-off-by: Masahiro Yamada --- include/linux/kernel.h | 104 + 1 file changed, 104 insertions(+) diff --git a/include/linux/kernel.h b/includ

[U-Boot] [PATCH 2/6] include/common.h: remove DIV_ROUND definition

2014-11-04 Thread Masahiro Yamada
All the references of DIV_ROUND have been replaced with DIV_ROUND_CLOSEST. Remove DIV_ROUND. Signed-off-by: Masahiro Yamada --- include/common.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/common.h b/include/common.h index ecf7fca..c9fe386 100644 --- a/include/common.h +++ b/inc

[U-Boot] [PATCH] doc: fix documentation of output directory

2014-11-04 Thread Timo Ketola
Correct environment variable is KBUILD_OUTPUT. Signed-off-by: Timo Ketola --- README |6 +++--- doc/README.kwbimage |4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index 7b5538e..c3a9dfc 100644 --- a/README +++ b/README @@ -5012,14 +50

Re: [U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-04 Thread Marek Vasut
On Tuesday, November 04, 2014 at 11:50:29 AM, Peng Fan wrote: > 在 11/4/2014 6:33 PM, Marek Vasut 写道: > > On Tuesday, November 04, 2014 at 08:50:00 AM, Peng Fan wrote: > >> Include a weak function board_ehci_usb_mode to gives board code > >> a choice. > > > > What choice? > > > >> If the board wan

[U-Boot] please pull u-boot-samsung master

2014-11-04 Thread Minkyu Kang
Dear Tom, The following changes since commit 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6: arm: interrupt_init: set sp in IRQ/FIQ modes (2014-10-29 09:03:28 -0400) are available in the git repository at: http://git.denx.de/u-boot-samsung for you to fetch changes up to 4aa97312f7147b68b8b7c731

Re: [U-Boot] [PATCH v2 3/4] odroid: make some macros common

2014-11-04 Thread Minkyu Kang
Dear Hyungwon Hwang, On 04/11/14 17:29, Lukasz Majewski wrote: > Hi Hyungwon, > >> On Mon, 03 Nov 2014 09:51:25 +0100 >> Lukasz Majewski wrote: >> >>> Hi Hyungwon, >>> Some macros are used commonly for odroid series boards. This patch makes a common header file to congregate that kinds

Re: [U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-04 Thread Peng Fan
在 11/4/2014 6:33 PM, Marek Vasut 写道: On Tuesday, November 04, 2014 at 08:50:00 AM, Peng Fan wrote: Include a weak function board_ehci_usb_mode to gives board code a choice. What choice? If the board want the otg port work in host mode but not device mode, this should be handled. How? Al

Re: [U-Boot] [PATCH 2/3] exynos4/4x12: gpio: use gpio extra base addresses

2014-11-04 Thread Minkyu Kang
On 04/11/14 18:29, Przemyslaw Marczak wrote: > Hello Minkyu, > > On 10/30/2014 02:54 PM, Minkyu Kang wrote: >> On 29/10/14 01:31, Przemyslaw Marczak wrote: >>> This patch adds extra gpio part addresses to exynos4 >>> and exynos4x12_gpio_data arrays, which are required >>> since the gpio enum lists

Re: [U-Boot] [PATCH v2 0/3] imx:mx6 add usb support

2014-11-04 Thread Marek Vasut
On Tuesday, November 04, 2014 at 08:49:59 AM, Peng Fan wrote: So uh, what exactly does this patchset do ? It's not clear at all from the subject and any description is completely missing. To my knowledge, i.MX6 already does have USB support in U-Boot, so the subject is misleading as well. > Chan

Re: [U-Boot] [PATCH v2 1/3] usb:ehci-mx6 add board_ehci_usb_mode function

2014-11-04 Thread Marek Vasut
On Tuesday, November 04, 2014 at 08:50:00 AM, Peng Fan wrote: > Include a weak function board_ehci_usb_mode to gives board code > a choice. What choice? > If the board want the otg port work in host mode but not > device mode, this should be handled. How? Also, isn't usb_phy_enable() supposed t

[U-Boot] wrong uboot type in uboot binary

2014-11-04 Thread pegasus711
I cross compiled u-boot's latest version 2014-10 using buildroot's built-in cross compiler and generated uboot.bin. When I try to invoke it like so: it throws an error complaining wrong image format: I've checked qemu's sources and as per the following file , the only valid type numbers are f

Re: [U-Boot] verifying & signing

2014-11-04 Thread Srinivasan S
Hi Simon, From: s...@google.com on behalf of Simon Glass Sent: Tuesday, November 4, 2014 12:07 PM To: Srinivasan S Cc: srinivasan; U-Boot Mailing List Subject: Re: verifying & signing Hi, On 3 November 2014 20:01, Srinivasan S wrote: > Hi Simon, > >

Re: [U-Boot] verifying & signing

2014-11-04 Thread Srinivasan S
Hi Simon, When I was generating the keys ie., Step 4: Create a key pair Am facing one more error while generating private key & certificate containing public key used for verification when I execute the below openssl commands it is saying can't open config file: srinivasan@tata-HP-Elite-7100

Re: [U-Boot] [PATCH 2/4] imx: mx6slevk: Add PMIC Pfuze support

2014-11-04 Thread Li Ye-B37916
Hi Przemyslaw, On 11/4/2014 5:24 PM, Li Ye-B37916 wrote: > Hi Przemyslaw, > > > On 10/30/2014 6:36 PM, Stefano Babic wrote: >> Hi Ye, >> >> On 10/09/2014 11:08, Ye.Li wrote: >>> Initialize the Pfuze on I2C1 at board late init. The mx6slevk board >>> has Pfuze100 or Pfuze200, print the chip type b

Re: [U-Boot] [PATCH 2/3] exynos4/4x12: gpio: use gpio extra base addresses

2014-11-04 Thread Przemyslaw Marczak
Hello Minkyu, On 10/30/2014 02:54 PM, Minkyu Kang wrote: On 29/10/14 01:31, Przemyslaw Marczak wrote: This patch adds extra gpio part addresses to exynos4 and exynos4x12_gpio_data arrays, which are required since the gpio enum lists are linear Signed-off-by: Przemyslaw Marczak --- arch/arm/

Re: [U-Boot] [PATCH 2/4] imx: mx6slevk: Add PMIC Pfuze support

2014-11-04 Thread Li Ye-B37916
Hi Przemyslaw, On 10/30/2014 6:36 PM, Stefano Babic wrote: > Hi Ye, > > On 10/09/2014 11:08, Ye.Li wrote: >> Initialize the Pfuze on I2C1 at board late init. The mx6slevk board >> has Pfuze100 or Pfuze200, print the chip type by parsing the ID. >> >> Signed-off-by: Ye.Li >> --- > Slowly (sorry f

[U-Boot] [PATCH v6 0/6] fs: fat/ext4/sandbox - Deal with files greater than 2GB

2014-11-04 Thread Suriyan Ramasami
The commands fatls/ext4ls give negative values when dealing with files greater than 2GB. The commands fatsize/ext4size do not update the variable filesize for these files. To deal with this, the fs functions have been modified to take an additional parameter of type "* loff_t" which is then popul

Re: [U-Boot] verified boot of beaglebone black

2014-11-04 Thread Srinivasan S
Thanks a lot for your replies The issue was where at symbol was supposed to be changed to @ + kernel at 1 { + data = /incbin/("Image.lzo"); + type = "kernel"; + arch = "arm"; + os = "linux"; +

Re: [U-Boot] verifying & signing

2014-11-04 Thread Srinivasan S
Hi Simon, Good Morning! Many Thanks a lot for all your support so far, 1. With respect to the verified boot , I want to put the images onto NAND FLASH, Could you please let me know what is the procedure of flashing the verified boot images onto NAND instead of micro-SD 2.Does dm-verity works

Re: [U-Boot] [linux-sunxi] [PATCH 5/9] sun4i: Rename dram files to dram_sun4i.x

2014-11-04 Thread Julian Calaby
Hi Hans, On Tue, Nov 4, 2014 at 2:34 AM, Hans de Goede wrote: > In preparation for adding sun6i dram support. > > Signed-off-by: Hans de Goede > --- > arch/arm/cpu/armv7/sunxi/Makefile| 6 +- > arch/arm/cpu/armv7/sunxi/dram.c | 750 > --- > ar

Re: [U-Boot] verified boot of beaglebone black

2014-11-04 Thread Srinivasan S
Hi, Thanks a lot for your replies, When I was executing the below ie., Step 5: Sign the kernel from http://lists.denx.de/pipermail/u-boot/2014-June/180845.html When I was using the mkimage tools for sigining am facing the below errors, could you please do the needful in resolving the below err

[U-Boot] Displaying splash screen on BeagleBone Black and LCD

2014-11-04 Thread Tamás Bondár
Hi, I'm trying to display a splash screen on a BeagleBone Black with the Chipsee 7" LCD expansion board. I'm wondering how difficult this is with the latest U-Boot? I can see that there are some framebuffer drivers available (am335x-fb.c and da8xx-fb.c) but it's not clear how to configure U-B

Re: [U-Boot] [PATCH] MAINTAINERS: add me as a maintainer of MTD

2014-11-04 Thread Scott Wood
On Fri, 2014-10-31 at 11:26 +0100, Heiko Schocher wrote: > Add MAINTAINERS and doc/git-mailrc entry. > > Signed-off-by: Heiko Schocher > > --- > as discussed this step here and there first of all with Scott Wood > for example here: > http://lists.denx.de/pipermail/u-boot/2014-August/186005.html

[U-Boot] [PATCH] board/freescale: use generic board architecture for p1025-twr

2014-11-04 Thread ying.zhang
From: Ying Zhang Use generic board architecture for p1025-twr, tested with NOR boot and NAND boot on p1025-twr. Signed-off-by: Ying Zhang --- include/configs/p1_twr.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/p1_twr.h b/include/configs/p1_twr.h index 911203d..b98c71

Re: [U-Boot] [PATCH v2 3/4] odroid: make some macros common

2014-11-04 Thread Lukasz Majewski
Hi Hyungwon, > On Mon, 03 Nov 2014 09:51:25 +0100 > Lukasz Majewski wrote: > > > Hi Hyungwon, > > > > > Some macros are used commonly for odroid series boards. This patch > > > makes a common header file to congregate that kinds of macros. > > > Even though there are more macros which can be co

[U-Boot] [PATCH 4/4] imx: mx6sxsabresd: Add support for building plugin image

2014-11-04 Thread Ye . Li
Update "cfg" script to build for plugin image. This default plugin image supports the boot devices as DCD image. To enable the plugin, must define the CONFIG_USE_PLUGIN in "mx6sxsabresd.h" Signed-off-by: Ye.Li --- board/freescale/mx6sxsabresd/Makefile |4 + board/freescale/mx6sxsabresd/

[U-Boot] [PATCH 2/4] imx: mx6q/dlarm2: Add support for building plugin image

2014-11-04 Thread Ye . Li
Update "cfg" script to build for plugin image. This default plugin image supports the boot devices as DCD image. To enable the plugin, must define the CONFIG_USE_PLUGIN in "mx6qarm2.h" Signed-off-by: Ye.Li --- board/freescale/mx6qarm2/Makefile |4 + board/freescale/mx6qarm2/imxima

[U-Boot] [PATCH 3/4] imx: mx6slevk: Add support for building plugin image

2014-11-04 Thread Ye . Li
Update "cfg" script to build for plugin image. This default plugin image supports the boot devices as DCD image. To enable the plugin, must define the CONFIG_USE_PLUGIN in "mx6slevk.h" Signed-off-by: Ye.Li --- board/freescale/mx6slevk/Makefile |4 + board/freescale/mx6slevk/imximage.cfg

[U-Boot] [PATCH 1/4] imx: mx6: Add support for MX6 plugin images

2014-11-04 Thread Ye . Li
Plugin image is a firmware which can be executed by boot ROM to do device initialization, custom settings, delay assertion, etc. The boot ROM detects the image type using the plugin flag of the boot data structure. If the plugin flag is 1, then the ROM uses the image as a plugin function. The func

Re: [U-Boot] [PATCH 1/2] usb: ehci: rmobile: Add support R8A7793

2014-11-04 Thread Marek Vasut
On Tuesday, November 04, 2014 at 08:10:30 AM, Nobuhiro Iwamatsu wrote: > Hi! Hi! [...] > > btw. just an idea, but you don't need to explicitly use > > usb_base_address[CONFIG_USB_MAX_CONTROLLER_COUNT], you can > > just use usb_base_address[] in the array definition. Then, > > in the code, you ca

<    1   2