[U-Boot] [PATCH 1/5 v2] Licenses: introduce SPDX Unique Lincense Identifiers

2013-07-24 Thread Wolfgang Denk
Like many other projects, U-Boot has a tradition of including big blocks of License headers in all files. This not only blows up the source code with mostly redundant information, but also makes it very difficult to generate License Clearing Reports. An additional problem is that even the same

Re: [U-Boot] [PATCH] net, phy, cpsw: fix gigabit register access

2013-07-24 Thread Mugunthan V N
On 7/23/2013 7:02 PM, Heiko Schocher wrote: accessing a lan9303 switch with the cpsw driver results in wrong speed detection, as the switch sets the BMSR_ERCAP in BMSR register, and follow read of the MII_STAT1000 register fails, as the switch does not support it. Current code did not check,

[U-Boot] [PATCH 1/5 v3] Licenses: introduce SPDX Unique License Identifiers

2013-07-24 Thread Wolfgang Denk
Like many other projects, U-Boot has a tradition of including big blocks of License headers in all files. This not only blows up the source code with mostly redundant information, but also makes it very difficult to generate License Clearing Reports. An additional problem is that even the same

Re: [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers

2013-07-24 Thread Graeme Russ
Hi Wolfgang, On Wed, Jul 10, 2013 at 5:37 PM, Wolfgang Denk w...@denx.de wrote: Like many other projects, U-Boot has a tradition of including big blocks of License headers in all files. This not only blows up the source code with mostly redundant information, but also makes it very

[U-Boot] [PATCH] fs: fat: don't call disk_write with zero sector num

2013-07-24 Thread Josh Wu
In the set_cluster() function, it will convert the buffer size to sector numbers. Then call disk_write() to write by sector. For remaining buffer, the size is less than a sector, call disk_write() again to write them in one sector. But if the total buffer size is less then one sector, the

[U-Boot] i.MX28 AUTO_RESTART, watchdog, battery and poweroff

2013-07-24 Thread Hector Palacios
Greetings, I'm not sure I understand the function mxs_power_clear_auto_restart() in spl_power_init.c The name of the function seems to indicate that its purpose is to *clear* the AUTO_RESTART bit, but it is actually setting it: setbits_le32(rtc_regs-hw_rtc_persistent0,

Re: [U-Boot] [PATCH] mxc_gpio: Correct the GPIO handling in gpio_direction_output()

2013-07-24 Thread Stefano Babic
On 15/07/2013 15:58, Dirk Behme wrote: Setting the direction and an output value should be done by First, set the desired output value. Then, switch to output. If this is done in the inverse order, like at the moment, there can be a glitch on the GPIO line while switching first the old

Re: [U-Boot] [PATCH v2] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-24 Thread Stefano Babic
Hi Robert, On 24/07/2013 01:15, Robert Winkler wrote: Incidentally, I just grepped for CONFIG_CMD_HDMIDETECT and I don't see it documented anywhere. It should probably be added to the README Right - but let's do it in a separate patch. For this one: Acked-by: Stefano Babic sba...@denx.de

Re: [U-Boot] i.MX28 AUTO_RESTART, watchdog, battery and poweroff

2013-07-24 Thread Marek Vasut
Dear Hector Palacios, Greetings, I'm not sure I understand the function mxs_power_clear_auto_restart() in spl_power_init.c We're on the same board there. According to FSL, this is needed on some versions of MX28 (translation from the techsupp language: we have no idea where this code

Re: [U-Boot] i.MX28 AUTO_RESTART, watchdog, battery and poweroff

2013-07-24 Thread Fabio Estevam
On Wed, Jul 24, 2013 at 8:40 AM, Marek Vasut ma...@denx.de wrote: Am I missing something? Otherwise I think this function should be renamed to mxs_power_set_auto_restart(). I'd ack the rename. Fabio? Sounds good. Please submit a patch, Hector. Thanks, Fabio Estevam

Re: [U-Boot] [PATCH] wandboard: Use splash image at screen center by default

2013-07-24 Thread Stefano Babic
On 20/07/2013 22:21, Otavio Salvador wrote: Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH, MD: Wolfgang Denk

Re: [U-Boot] [PATCH V2 0/9] rely on latest dtc, simplify

2013-07-24 Thread Tom Rini
On Tue, Jul 23, 2013 at 05:31:39PM -0700, Stephen Warren wrote: On 06/24/2013 08:43 AM, Stephen Warren wrote: From: Stephen Warren swar...@nvidia.com This is a series of patches which simplifies the rules to build *.dts in U-Boot by relying on features in the latest dtc. The include

Re: [U-Boot] [PATCH v2] mx6qsabrelite: Remove mx6qsabrelite code in favor of nitrogen6x

2013-07-24 Thread Stefano Babic
Hi Fabio, On 15/07/2013 19:29, Fabio Estevam wrote: mx6qsabrelite and nitrogen6q boards are hardware compatible, so let's avoid the code duplication and only use the nitrogen6x source code to make board code maintainance easier. Tested booting a mainline device tree kernel on a

Re: [U-Boot] [PATCH v2] mx6qsabrelite: Remove mx6qsabrelite code in favor of nitrogen6x

2013-07-24 Thread Fabio Estevam
Hi Stefano, On Wed, Jul 24, 2013 at 9:45 AM, Stefano Babic sba...@denx.de wrote: Hi Fabio, On 15/07/2013 19:29, Fabio Estevam wrote: mx6qsabrelite and nitrogen6q boards are hardware compatible, so let's avoid the code duplication and only use the nitrogen6x source code to make board code

[U-Boot] [PATCH] cmd_io.c: Re-add Copyright/license section

2013-07-24 Thread Tom Rini
The SPDX license identifier commit ate the top of this file by accident, restore conents. Signed-off-by: Tom Rini tr...@ti.com --- common/cmd_io.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/common/cmd_io.c b/common/cmd_io.c index ceb0b89..eefac36 100644 ---

[U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file

2013-07-24 Thread Tom Rini
From: Wolfgang Denk w...@denx.de The Licenses/Exceptions file describes the standalone license exception. Add back our long-standing introductory remarks to Licenses/README and fix a few spelling problems Signed-off-by: Wolfgang Denk w...@denx.de [trini: Grab differences between v1 and v3, apply

Re: [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers

2013-07-24 Thread Tom Rini
On Wed, Jul 10, 2013 at 09:37:36AM +0200, Wolfgang Denk wrote: Like many other projects, U-Boot has a tradition of including big blocks of License headers in all files. This not only blows up the source code with mostly redundant information, but also makes it very difficult to generate

[U-Boot] [PATCH] drivers/i2c: Update fti2c010.[ch], i2c_core.c to use SPDX identifiers

2013-07-24 Thread Tom Rini
Signed-off-by: Tom Rini tr...@ti.com --- drivers/i2c/fti2c010.c |3 +-- drivers/i2c/fti2c010.h |3 +-- drivers/i2c/i2c_core.c | 14 +- 3 files changed, 3 insertions(+), 17 deletions(-) diff --git a/drivers/i2c/fti2c010.c b/drivers/i2c/fti2c010.c index 24c4bb5..ddeb941

[U-Boot] [PATCH] qemu-malta: Update for SPDX license identifiers

2013-07-24 Thread Tom Rini
Signed-off-by: Tom Rini tr...@ti.com --- board/qemu-malta/Makefile| 18 +- board/qemu-malta/lowlevel_init.S |4 +--- board/qemu-malta/qemu-malta.c|4 +--- drivers/pci/pci_gt64120.c|4 +--- include/configs/qemu-malta.h |4 +---

Re: [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file

2013-07-24 Thread Wolfgang Denk
Dear Tom, In message 1374671685-21577-1-git-send-email-tr...@ti.com you wrote: The Licenses/Exceptions file describes the standalone license exception. Add back our long-standing introductory remarks to Licenses/README and fix a few spelling problems Signed-off-by: Wolfgang Denk

[U-Boot] [PATCH] nds32: Update asm/io.h and asm/setup.h with SPDX license identifiers

2013-07-24 Thread Tom Rini
Signed-off-by: Tom Rini tr...@ti.com --- arch/nds32/include/asm/io.h|4 +--- arch/nds32/include/asm/setup.h |4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/arch/nds32/include/asm/io.h b/arch/nds32/include/asm/io.h index 254c8f9..04708e9 100644 ---

[U-Boot] [PATCH] ARM: mxs: rename function that sets AUTO_RESTART flag

2013-07-24 Thread Hector Palacios
The AUTO_RESTART flag of HW_RTC_PERSISTENT0 register will power up the chip automatically 180ms after power down. This bit must be enabled by the boot loader to ensure the target can start upon hardware reset or watchdog reset even when powered from a battery. Currently the function named

[U-Boot] [RFC PATCH 2/2] ARMV7: OMAP4: Add twl6032 support

2013-07-24 Thread Oleg Kosheliev
From: Oleg Kosheliev oleg.koshel...@ti.com Added chip type detection and twl6032 support in the battery control and charge functions. Based on Balaji T K balaj...@ti.com patches for TI u-boot. Signed-off-by: Oleg Kosheliev oleg.koshel...@ti.com --- drivers/power/twl6030.c | 56

[U-Boot] [RFC PATCH 1/2] ARMV7: OMAP4: Add struct for twl603x data

2013-07-24 Thread Oleg Kosheliev
From: Oleg Kosheliev oleg.koshel...@ti.com The data struct is used to support different PMIC chip types. It contains the chip type and the data (e.g. registers addresses, adc multiplier) which is different for twl6030 and twl6032. Replaced some hardcoded values with the structure vars. Based on

[U-Boot] [RFC PATCH] armv7:omap4-common: Correct check of the SPL image size

2013-07-24 Thread Oleg Kosheliev
From: Oleg_Kosheliev oleg.koshel...@ti.com The u-boot-spl image must be stored in SRAM at addresses from 0x4030 till 0x4030bfff. Higher than that area is located the ROM code stack. Thus we should check that the highest address of the SPL image is not in the stack area or higher. In this

[U-Boot] [RFC PATCH 0/2] ARMV7: OMAP4: Add support for twl6032

2013-07-24 Thread Oleg Kosheliev
From: Oleg Kosheliev oleg.koshel...@ti.com TWL6032 is a companion Power Management IC (PMIC) of OMAP4470. This chip is similar to TWL6030 but has slight difference in some registers e.g. for GPADC. In u-boot only TWL6030 is supported now, thus there is no ability to boot OMAP4470 with TWL6032

Re: [U-Boot] [PATCH] Licenses: Re-add introduction to README, add Exceptions file

2013-07-24 Thread Tom Rini
On Wed, Jul 24, 2013 at 03:36:54PM +0200, Wolfgang Denk wrote: Dear Tom, In message 1374671685-21577-1-git-send-email-tr...@ti.com you wrote: The Licenses/Exceptions file describes the standalone license exception. Add back our long-standing introductory remarks to Licenses/README and

Re: [U-Boot] [PATCH] ARM: mxs: rename function that sets AUTO_RESTART flag

2013-07-24 Thread Marek Vasut
Dear Hector Palacios, The AUTO_RESTART flag of HW_RTC_PERSISTENT0 register will power up the chip automatically 180ms after power down. This bit must be enabled by the boot loader to ensure the target can start upon hardware reset or watchdog reset even when powered from a battery.

Re: [U-Boot] [PATCH] ARM: mxs: rename function that sets AUTO_RESTART flag

2013-07-24 Thread Hector Palacios
Dear Marek, On 07/24/2013 05:54 PM, Marek Vasut wrote: Dear Hector Palacios, The AUTO_RESTART flag of HW_RTC_PERSISTENT0 register will power up the chip automatically 180ms after power down. This bit must be enabled by the boot loader to ensure the target can start upon hardware reset or

[U-Boot] [PATCH v2 1/2] Subject: [PATCH 1/2] mx6: Factor out common HDMI setup code Instead of duplicating HDMI setup code for every mx6 board, factor out the common code

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make interface clearer. Boards that support auto-detect (mx6qsabrelite/nitrogen6x) are wrapping it. arch/arm/cpu/armv7/mx6/soc.c | 48

[U-Boot] [PATCH v2 1/2] mx6: Factor out common HDMI setup code Instead of duplicating HDMI setup code for every mx6 board, factor out the common code

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make interface clearer. Boards that support auto-detect (mx6qsabrelite/nitrogen6x) are wrapping it. arch/arm/cpu/armv7/mx6/soc.c | 48

[U-Boot] [PATCH v2 2/2] mx6qsabresd: Add splash screen support via HDMI

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make interface clearer. Remove display_info_t structure. board/freescale/mx6sabresd/mx6sabresd.c | 63 ++-

[U-Boot] [PATCH v2 1/2] mx6: Factor out common HDMI setup code

2013-07-24 Thread Pardeep Kumar Singla
Instead of duplicating HDMI setup code for every mx6 board, factor out the common code Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make interface clearer. Boards that support auto-detect

[U-Boot] [PATCH v2 2/2] Subject: [PATCH 2/2] mx6qsabresd: Add splash screen support via HDMI

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make interface clearer. Remove display_info_t structure. board/freescale/mx6sabresd/mx6sabresd.c | 63 ++-

[U-Boot] [PATCH v2 2/2] mx6qsabresd: Add splash screen support via HDMI

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make interface clearer. Remove display_info_t structure. board/freescale/mx6sabresd/mx6sabresd.c | 63 ++-

Re: [U-Boot] [PATCH v2 1/2] mx6: Factor out common HDMI setup code

2013-07-24 Thread Eric Nelson
Hi Pardeep, On 07/24/2013 09:31 AM, Pardeep Kumar Singla wrote: Instead of duplicating HDMI setup code for every mx6 board, factor out the common code Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v1: Remove dev paramter from imx_enable_hdmi_phy function to make

[U-Boot] [PATCH V2 REPOST 5/9] dt: don't use ARCH_CPU_DTS

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Now that we assume dtc supports the -i option, we don't need to use ARCH_CPU_DTS in *.dts{,i}; we simply specify the include filename directly, and dtc will find it. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by: Simon Glass s...@chromium.org

[U-Boot] [PATCH V2 REPOST 1/9] Validate dtc is new enough

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Subsequent patches assume that dtc supports various recent features. These are available in dtc 1.4.0. Validate that dtc is at least that version. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by: Simon Glass s...@chromium.org --- v2: New patch.

[U-Boot] [PATCH V2 REPOST 6/9] dts/Makefile: don't define ARCH_CPU_DTS, BOARD_DTS

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Now that nothing uses the defines ARCH_CPU_DTS, BOARD_DTS, stop defining them. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by: Simon Glass s...@chromium.org --- dts/Makefile |7 --- 1 file changed, 7 deletions(-) diff --git

[U-Boot] [PATCH V2 REPOST 9/9] dts/Makefile: pass -undef -D__DTS__ to cpp

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com This brings U-Boot's cpp invocation into line with the way the Linux kernel invokes cpp on device trees. Consistency will be useful to ensure *.dts is portable between the two. -undef also has the added advantage of not defining linux, so DT property names

[U-Boot] [PATCH V2 REPOST 0/9] rely on latest dtc, simplify

2013-07-24 Thread Stephen Warren
This is a series of patches which simplifies the rules to build *.dts in U-Boot by relying on features in the latest dtc. The include rules are made more consistent between cpp (when processing *.dts) and dtc. The cpp flags are made more consistent with the way the kernel processes *.dts to allow

[U-Boot] [PATCH V2 REPOST 4/9] dts/Makefile: unify cpp/dtc include paths

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com *.dts may use #include (via cpp) or /include/ (via dtc; assuming a newer dtc). The choice is up to the creator of the DT. Create a common variable DTC_INCDIRS that lists the paths searched by include statements, and update cpp and dtc invocation to use

[U-Boot] [PATCH V2 REPOST 8/9] dts/Makefile: don't use cpp -P

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Recent dtc supports #line directives in the input source code, and even uses them to generate useful line numbers in any messages it emits. Stop passing -P to cpp, since there's no need any more. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by:

[U-Boot] [PATCH V2 REPOST 7/9] config: don't define CONFIG_ARCH_DEVICE_TREE

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Now that nothing uses CONFIG_ARCH_DEVICE_TREE, stop defining it. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by: Simon Glass s...@chromium.org --- arch/arm/cpu/armv7/tegra114/config.mk | 19 ---

[U-Boot] [PATCH V2 REPOST 2/9] xilinx: move microblaze-generic .dts to standard location

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Aside from microblaze, all other SoCs/boards/vendors store their DT files in board/$vendor/dts/$soc-$board.dts. Move microblaze-generic.dts to this location for consistency. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by: Simon Glass

[U-Boot] [PATCH V2 REPOST 3/9] dts/Makefile: simplify dtc invocation

2013-07-24 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com The invocation of dtc is significantly more complex that it could be, in order to work around an issue on old versions of dtc, which print a message to stdout every time they run. Remove this workaround, on the assumption that people have or will upgrade

Re: [U-Boot] [Ac100] [PATCH 3/3] ARM: tegra: paz00: enable nveckeyboardsupport

2013-07-24 Thread Marc Dietrich
On Tuesday 23 July 2013 08:40:42 Stephen Warren wrote: On 07/22/2013 01:09 AM, Marc Dietrich wrote: [ snip the stuff we agreed upon ] The nvec still needs to tell the slave driver which protocol to use, but that can be hard coded. I'm not sure what that means. At the controller/HW level,

[U-Boot] [PATCH v2] nds32: Enable FPU if the version of CPU supported

2013-07-24 Thread Kuan-Yu Kuo
Some version of Andes core support FPU coprocessor, if this is the case, and toolchain support FPU instruction set, we should enable it at low level initialization time. Signed-off-by: Kuan-Yu Kuo ken.ku...@gmail.com Cc: Macpaul Lin macp...@gmail.com --- Change for v2: - Add compile option to

[U-Boot] [PATCH] nds32: Convert Makefiles to use COBJS-y style

2013-07-24 Thread Kuan-Yu Kuo
Signed-off-by: Kuan-Yu Kuo ken.ku...@gmail.com Cc: Macpaul Lin macp...@gmail.com --- arch/nds32/cpu/n1213/Makefile |4 ++-- arch/nds32/cpu/n1213/ag101/Makefile |8 arch/nds32/cpu/n1213/ag102/Makefile |8 arch/nds32/lib/Makefile |9 ++---

Re: [U-Boot] [PATCH v4] dfu, nand, ubi: add partubi alt settings for updating ubi partition

2013-07-24 Thread Scott Wood
On 07/23/2013 11:30:55 PM, Heiko Schocher wrote: Hello Scott, Am 24.07.2013 01:22, schrieb Scott Wood: On 07/18/2013 11:32:14 PM, Heiko Schocher wrote: +static int dfu_flush_medium_nand(struct dfu_entity *dfu) +{ + int ret = 0; + + /* in case of ubi partition, erase rest of the partition */ +

[U-Boot] [PATCH 2/2] omap: overo: Use 200MHz SDRC timings for revision 1, 2 3 boards

2013-07-24 Thread ash
From: Ash Charles ashchar...@gmail.com Gumstix uses 200Mhz RAM on revision 1, 2 3 COMs, so use 200MHz timings rather than 165MHz. Based on 6cf8bf44b1f8550e12f7f2a16e01890e5de8443d Signed-off-by: Ash Charles ashchar...@gmail.com --- board/overo/overo.c | 16 1 file changed,

[U-Boot] [PATCH 1/2] omap: overo: update support for Micron 1GB POP

2013-07-24 Thread ash
From: Steve Sakoman st...@sakoman.com Signed-off-by: Ash Charles ashchar...@gmail.com --- board/overo/overo.c |6 ++ board/overo/overo.h |1 + 2 files changed, 7 insertions(+) diff --git a/board/overo/overo.c b/board/overo/overo.c index c10c44c..8df077d 100644 ---

Re: [U-Boot] [PATCH v3 6/7] USB: usb-hub: Add a weak function for resetting devices

2013-07-24 Thread Dan Murphy
Marek On 07/17/2013 11:30 PM, Marek Vasut wrote: Dear Dan Murphy, Add a __weak function that can be overridden to reset devices attached to an ehci devices after the FEAT_POWER has been submitted Signed-off-by: Dan Murphy dmur...@ti.com --- v3 - Modified location of the weak function -

Re: [U-Boot] [PATCH v2] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-24 Thread Robert Winkler
Stefano, On Wed, Jul 24, 2013 at 4:09 AM, Stefano Babic sba...@denx.de wrote: Hi Robert, On 24/07/2013 01:15, Robert Winkler wrote: Incidentally, I just grepped for CONFIG_CMD_HDMIDETECT and I don't see it documented anywhere. It should probably be added to the README Right - but

Re: [U-Boot] [PATCH v2] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-24 Thread Otavio Salvador
On Wed, Jul 24, 2013 at 4:59 PM, Robert Winkler robert.wink...@boundarydevices.com wrote: Stefano, On Wed, Jul 24, 2013 at 4:09 AM, Stefano Babic sba...@denx.de wrote: Hi Robert, On 24/07/2013 01:15, Robert Winkler wrote: Incidentally, I just grepped for CONFIG_CMD_HDMIDETECT and I

[U-Boot] Building u-boot enabling all debug messages

2013-07-24 Thread kannaiah
Hi, How can configure u-boot so that I enable all the debug messages (enable CONFIG_TRACE?) Thank you. Regards -- View this message in context: http://u-boot.10912.n7.nabble.com/Building-u-boot-enabling-all-debug-messages-tp159966.html Sent from the U-Boot mailing list archive at

[U-Boot] [PATCH v3 1/2] mx6: Factor out common HDMI setup code

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v2: Added new function enable_ipu_clock() to separate the functinality of ipu clock from hdmi setup. Remove unnecessary include files. arch/arm/cpu/armv7/mx6/clock.c|8 +

[U-Boot] [PATCH v3 2/2] mx6qsabresd: Add splash screen support via HDMI

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- board/freescale/mx6sabresd/mx6sabresd.c | 63 ++- include/configs/mx6sabre_common.h |3 +- include/configs/mx6sabresd.h| 19 ++ 3 files changed, 83 insertions(+), 2

[U-Boot] [PATCH v3 1/2] mx6: Factor out common HDMI setup code

2013-07-24 Thread Pardeep Kumar Singla
Instead of duplicating HDMI setup code for every mx6 board, factor out the common code Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v2: Added new function enable_ipu_clock() to separate the functinality of ipu clock from hdmi setup. Remove unnecessary include

[U-Boot] [PATCH v3 2/2] mx6qsabresd: Add splash screen support via HDMI

2013-07-24 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- board/freescale/mx6sabresd/mx6sabresd.c | 63 ++- include/configs/mx6sabre_common.h |3 +- include/configs/mx6sabresd.h| 19 ++ 3 files changed, 83 insertions(+), 2

Re: [U-Boot] PPC4XX Custom Board - Failing to read I2C

2013-07-24 Thread txcotrader
Stefan, I know it's been awhile, but I do appreciate your previous help. I took some time off to complete other projects, now I'm back working on finishing this port. During the boot I'm seeing the value of i2c-extsts is either 0x40 or 0x60 which equates to lost arbitration or lost arbitration

[U-Boot] [PATCH] imx: Add documentation for imx specific commands

2013-07-24 Thread Robert Winkler
CONFIG_CMD_HDMIDETECT CONFIG_CMD_BMODE Signed-off-by: Robert Winkler robert.wink...@boundarydevices.com --- README | 15 +++ 1 file changed, 15 insertions(+) diff --git a/README b/README index bcfffc3..3a7cf4e 100644 --- a/README +++ b/README @@ -2598,6 +2598,21 @@ CBFS (Coreboot

Re: [U-Boot] How to create a library with already built library

2013-07-24 Thread Julyberry
Thanks. I was able to link the target by modifying the main Makefile. I will look for how to subscribe the other mailing list. -- View this message in context: http://u-boot.10912.n7.nabble.com/How-to-create-a-library-with-already-built-library-tp159486p159977.html Sent from the U-Boot

[U-Boot] [PATCH] imx: Add documentation for imx specific commands

2013-07-24 Thread Robert Winkler
CONFIG_CMD_HDMIDETECT CONFIG_CMD_BMODE Signed-off-by: Robert Winkler robert.wink...@boundarydevices.com --- changes from v1: removed space between MX and series # to be consistent with U-Boot README | 15 +++ 1 file changed, 15 insertions(+) diff --git a/README b/README index

[U-Boot] [PATCH 1/2] arm: smdkc100: remove config.mk file

2013-07-24 Thread Minkyu Kang
Since config.mk is deprecated, remove this file, and move CONFIG_SYS_TEXT_BASE define to config file. Signed-off-by: Minkyu Kang mk7.k...@samsung.com Cc: Wolfgang Denk w...@denx.de --- board/samsung/smdkc100/config.mk | 16 include/configs/smdkc100.h |3 +++ 2 files

[U-Boot] [PATCH 2/2] arm: goni: remove config.mk file

2013-07-24 Thread Minkyu Kang
Since config.mk is deprecated, remove this file, and move CONFIG_SYS_TEXT_BASE define to config file. Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- board/samsung/goni/config.mk | 34 -- include/configs/s5p_goni.h |3 +++ 2 files changed, 3

Re: [U-Boot] [PATCH] imx: Add documentation for imx specific commands

2013-07-24 Thread Otavio Salvador
On Wed, Jul 24, 2013 at 9:57 PM, Robert Winkler robert.wink...@boundarydevices.com wrote: CONFIG_CMD_HDMIDETECT CONFIG_CMD_BMODE Signed-off-by: Robert Winkler robert.wink...@boundarydevices.com Acked-by: Otavio Salvador ota...@ossystems.com.br -- Otavio Salvador

Re: [U-Boot] PPC4XX Custom Board - Failing to read I2C

2013-07-24 Thread Stefan Roese
Greg, On 07/25/2013 12:58 AM, txcotrader wrote: I know it's been awhile, but I do appreciate your previous help. I took some time off to complete other projects, now I'm back working on finishing this port. During the boot I'm seeing the value of i2c-extsts is either 0x40 or 0x60 which

Re: [U-Boot] [PATCH v4] dfu, nand, ubi: add partubi alt settings for updating ubi partition

2013-07-24 Thread Heiko Schocher
Hello Scott, Am 24.07.2013 21:08, schrieb Scott Wood: On 07/23/2013 11:30:55 PM, Heiko Schocher wrote: Hello Scott, Am 24.07.2013 01:22, schrieb Scott Wood: On 07/18/2013 11:32:14 PM, Heiko Schocher wrote: +static int dfu_flush_medium_nand(struct dfu_entity *dfu) +{ + int ret = 0; + + /* in

[U-Boot] [PATCH v5] dfu, nand, ubi: add partubi alt settings for updating ubi partition

2013-07-24 Thread Heiko Schocher
updating an ubi partition needs a completely erased mtd partition, see: http://lists.infradead.org/pipermail/linux-mtd/2011-May/035416.html So, add partubi alt setting for the dfu_alt_info environment variable to mark this partition as an ubi partition. In case we update an ubi partition, we

Re: [U-Boot] [PATCH] drivers/i2c: Update fti2c010.[ch], i2c_core.c to use SPDX identifiers

2013-07-24 Thread Heiko Schocher
Hello Tom, Am 24.07.2013 15:26, schrieb Tom Rini: Signed-off-by: Tom Rinitr...@ti.com --- drivers/i2c/fti2c010.c |3 +-- drivers/i2c/fti2c010.h |3 +-- drivers/i2c/i2c_core.c | 14 +- 3 files changed, 3 insertions(+), 17 deletions(-) Thanks! I just Ack this patch,

Re: [U-Boot] [U-boot] shell script syntax

2013-07-24 Thread TigerLiu
Hi, James: Try something like = for i in a b c; do echo $i done a b c = Your suggestion is right! Thank you! Best wishes, ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v3 6/7] USB: usb-hub: Add a weak function for resetting devices

2013-07-24 Thread Marek Vasut
Dear Dan Murphy, Marek On 07/17/2013 11:30 PM, Marek Vasut wrote: Dear Dan Murphy, Add a __weak function that can be overridden to reset devices attached to an ehci devices after the FEAT_POWER has been submitted Signed-off-by: Dan Murphy dmur...@ti.com --- v3 - Modified