[U-Boot] [PATCH v3 0/3] exynos config updates

2014-11-09 Thread Ian Campbell
This series rebases my exynos config_distro_*.h patches as requested. Baseline is u-boot.git#master 11ada9225a16 (ahead of current u-boot-samsung). I also included Increase command line buffer size (CONFIG_SYS_CBSIZE) which was previously posted separately. Ian.

[U-Boot] [PATCH v3 1/3] exynos: Enable config_distro_defaults.h

2014-11-09 Thread Ian Campbell
From: Ian Campbell ian.campb...@citrix.com ...and remove explicit setting of things which this implies. This is done for all exynos platforms (4 5) so it is added to exynos-common.h I'm mainly interested in CONFIG_CMD_BOOTZ and CONFIG_SUPPORT_RAW_INITRD I have build tested on all exynos

[U-Boot] [PATCH v3 2/3] exynos5: Use config_distro_bootcmd.h

2014-11-09 Thread Ian Campbell
From: Ian Campbell ian.campb...@citrix.com This replaces the existing CONFIG_BOOTCOMMAND for exynos5250 and 5420. exynos4 platforms seem to have existing complex extra env configuration for booting and so are excluded here. Hence the bootcmd.h is added to exynos5-common.h. I have build tested

[U-Boot] [PATCH v3 3/3] exynos: Increase command line buffer size (CONFIG_SYS_CBSIZE)

2014-11-09 Thread Ian Campbell
From: Ian Campbell ian.campb...@citrix.com I was running into this limit with a not overly long PXE append line. Since the PXE code wants to print the resulting command line increase CONFIG_SYS_PBSIZE too. Signed-off-by: Ian Campbell ian.campb...@citrix.com --- v2: Apply to exynos generally

[U-Boot] [PATCH v2 1/4] x86: Do CPU identification in the early phase

2014-11-09 Thread Bin Meng
The CPU identification happens in x86_cpu_init_f() and corresponding fields are saved in the global data for later use. Signed-off-by: Bin Meng bmeng...@gmail.com --- Changes for v2: - Update the patch per review comments from Simon Glass - cpu_vendor_name() and fill_processor_name() are not

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

2014-11-09 Thread Bin Meng
Return the saved TSC frequency in get_tbclk_mhz(). Signed-off-by: Bin Meng bmeng...@gmail.com Acked-by: Simon Glass s...@chromium.org Tested-by: Simon Glass s...@chromium.org --- arch/x86/include/asm/global_data.h | 1 + arch/x86/lib/tsc_timer.c | 4 2 files changed, 5

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

2014-11-09 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 bmeng...@gmail.com Acked-by: Simon Glass s...@chromium.org Tested-by: Simon Glass s...@chromium.org ---

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

2014-11-09 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 bmeng...@gmail.com Acked-by: Simon Glass s...@chromium.org --- arch/x86/include/asm/i8254.h | 3 + arch/x86/lib/tsc_timer.c | 155

[U-Boot] [PATCH 1/7] imx6: add macro define inclusion

2014-11-09 Thread John Tobias
add a macro define inclusion to compile the function. iMX6SL doesn't have an MMDC_P1_BASE_ADDR in the header. It will break the build if the SPL features is enabled for iMX6SL. --- arch/arm/cpu/armv7/mx6/ddr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/cpu/armv7/mx6/ddr.c

[U-Boot] [PATCH 0/7] *** iMX6SL-evk SPL Support ***

2014-11-09 Thread John Tobias
This patch is for SPL support for iMX6SL-evk. The said patches has been tested to work on SD1, SD2 and SD3 ports of the said board. After applying the following patches, it will produces SPL and u-boot.img binary images. You should run the two commands below to store it in your SD or eMMC. sudo

[U-Boot] [PATCH 3/7] imx6sl: add spl on board configuration

2014-11-09 Thread John Tobias
add spl on build configuration for iMX6SL --- configs/mx6slevk_defconfig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configs/mx6slevk_defconfig b/configs/mx6slevk_defconfig index fb8c4de..dfdf54f 100644 --- a/configs/mx6slevk_defconfig +++ b/configs/mx6slevk_defconfig

[U-Boot] [PATCH 2/7] imx6sl: update DCD configuration file

2014-11-09 Thread John Tobias
Update the Device Configuration Data file for iMX6SL for SPL support. --- board/freescale/mx6slevk/imximage.cfg | 78 ++- 1 file changed, 4 insertions(+), 74 deletions(-) diff --git a/board/freescale/mx6slevk/imximage.cfg b/board/freescale/mx6slevk/imximage.cfg

[U-Boot] [PATCH 6/7] imx6sl: add SPL support for iMX6SL-evk

2014-11-09 Thread John Tobias
This patch support the SPL features for iMX6SL. It tested to boot on SD1, SD2 and SD3 mmc ports. --- board/freescale/mx6slevk/mx6slevk.c | 168 +++- 1 file changed, 167 insertions(+), 1 deletion(-) diff --git a/board/freescale/mx6slevk/mx6slevk.c

[U-Boot] [PATCH 4/7] imx6: add additional flexibility for defining macros

2014-11-09 Thread John Tobias
iMX6SL has a different address value for the following: CONFIG_SPL_BSS_START_ADDR CONFIG_SYS_SPL_MALLOC_START --- include/configs/imx6_spl.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/imx6_spl.h b/include/configs/imx6_spl.h index 4ff37b3..61233c4 100644 ---

[U-Boot] [PATCH 7/7] kconfig: imx6sl: add add SUPPORT_SPL

2014-11-09 Thread John Tobias
enable SUPPORT_SPL by default for iMX6SL-evk --- arch/arm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index ab0d284..40a3604 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -614,6 +614,7 @@ config TARGET_MX6SABRESD config

[U-Boot] [PATCH 5/7] imx6sl: add spl in include header file

2014-11-09 Thread John Tobias
add the SPL macros in include header file for iMX6SL --- include/configs/mx6slevk.h | 8 1 file changed, 8 insertions(+) diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h index 4fcaf51..afbb81d 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h

Re: [U-Boot] [PATCH v3 7/8] imx6: SPL support for iMX6 SabreSD

2014-11-09 Thread Stefano Babic
Hi John, On 08/11/2014 22:27, John Tobias wrote: This patch will enable the support for SPL on iMX6 SabreSD. It tested on SD2 and SD3 mmc port. --- board/freescale/mx6sabresd/mx6sabresd.c | 211 +++- 1 file changed, 209 insertions(+), 2 deletions(-) diff

Re: [U-Boot] [PATCH v3 6/8] imx6: add data configuration file for SPL

2014-11-09 Thread Stefano Babic
Hi John, On 08/11/2014 22:27, John Tobias wrote: This file is the default DCD configuration file for SPL --- board/freescale/mx6sabresd/mx6sabresd_spl.cfg | 54 +++ 1 file changed, 54 insertions(+) create mode 100644 board/freescale/mx6sabresd/mx6sabresd_spl.cfg

Re: [U-Boot] [PATCH v3 4/8] imx6: add some flexibility for defining macros

2014-11-09 Thread Stefano Babic
On 08/11/2014 22:27, John Tobias wrote: iMX6 SabreSD has different stack address compare to the default stack address defined on the file. The CONFIG_SYS_TEXT_BASE is defined in mx6sabre_common.h which is same address defined on file. At the same time to avoid compilation warnings. ---

Re: [U-Boot] [PATCH 2/7] imx6sl: update DCD configuration file

2014-11-09 Thread Stefano Babic
Hi John, On 09/11/2014 18:51, John Tobias wrote: Update the Device Configuration Data file for iMX6SL for SPL support. --- board/freescale/mx6slevk/imximage.cfg | 78 ++- 1 file changed, 4 insertions(+), 74 deletions(-) diff --git

Re: [U-Boot] [PATCH 0/7] *** iMX6SL-evk SPL Support ***

2014-11-09 Thread Andreas Färber
Hi, Please drop *** from the cover letter template git-format-patch generates. :) Cheers, Andreas -- SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 21284 AG Nürnberg ___ U-Boot mailing

Re: [U-Boot] [PATCH 0/7] *** iMX6SL-evk SPL Support ***

2014-11-09 Thread John Tobias
Thanks for the info. Regards, John On Sunday, November 9, 2014, Andreas Färber afaer...@suse.de wrote: Hi, Please drop *** from the cover letter template git-format-patch generates. :) Cheers, Andreas -- SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany GF: Jeff Hawn, Jennifer

Re: [U-Boot] [PATCH 1/7] imx6: add macro define inclusion

2014-11-09 Thread Fabio Estevam
Hi John, On Sun, Nov 9, 2014 at 3:51 PM, John Tobias john.tobias...@gmail.com wrote: add a macro define inclusion to compile the function. iMX6SL doesn't have an MMDC_P1_BASE_ADDR in the header. It will break the build if the SPL features is enabled for iMX6SL. --- You missed to add the

Re: [U-Boot] [PATCH 1/7] imx6: add macro define inclusion

2014-11-09 Thread John Tobias
Hi Fabio, I didn't notice that one... Thanks for the info. Regards, john On Sun, Nov 9, 2014 at 3:26 PM, Fabio Estevam feste...@gmail.com wrote: Hi John, On Sun, Nov 9, 2014 at 3:51 PM, John Tobias john.tobias...@gmail.com wrote: add a macro define inclusion to compile the function.

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

2014-11-09 Thread Srinivasan S
Hi Simon From: s...@google.com s...@google.com on behalf of Simon Glass s...@chromium.org Sent: Friday, November 7, 2014 10:18 PM To: Srinivasan S Cc: Jagan Teki; U-Boot Mailing List Subject: Re: [U-Boot] verified boot of beaglebone black Hi, On 4

Re: [U-Boot] [PATCH 7/9] board/renesas/ecovec/ecovec.c: fix buffer overflow

2014-11-09 Thread Nobuhiro Iwamatsu
2014-11-06 22:03 GMT+09:00 Wolfgang Denk w...@denx.de: Fix error detected by cppcheck: [board/renesas/ecovec/ecovec.c:66]: (error) Buffer is accessed out of bounds. Signed-off-by: Wolfgang Denk w...@denx.de Cc: Nobuhiro Iwamatsu iwamatsu.nobuh...@renesas.com ---

Re: [U-Boot] [PATCH v3 4/8] imx6: add some flexibility for defining macros

2014-11-09 Thread John Tobias
Hi Stefano, On Sun, Nov 9, 2014 at 1:24 PM, Stefano Babic sba...@denx.de wrote: On 08/11/2014 22:27, John Tobias wrote: iMX6 SabreSD has different stack address compare to the default stack address defined on the file. The CONFIG_SYS_TEXT_BASE is defined in mx6sabre_common.h which is same

Re: [U-Boot] [PATCH v3 6/8] imx6: add data configuration file for SPL

2014-11-09 Thread John Tobias
Thanks for the info. I'll double check it again. Regards, john On Sun, Nov 9, 2014 at 1:22 PM, Stefano Babic sba...@denx.de wrote: Hi John, On 08/11/2014 22:27, John Tobias wrote: This file is the default DCD configuration file for SPL --- board/freescale/mx6sabresd/mx6sabresd_spl.cfg |

Re: [U-Boot] [PATCH v2 3/8] imx6: add spl on board configuration

2014-11-09 Thread Fabio Estevam
On Sat, Nov 8, 2014 at 4:22 PM, John Tobias john.tobias...@gmail.com wrote: add the spl on build configuration of iMX6 SabreSD --- include/configs/mx6sabresd.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/configs/mx6sabresd.h b/include/configs/mx6sabresd.h index

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

2014-11-09 Thread Srinivasan S
Hi Simon, Hi Simon, As you suggested earlier am using u-boot-2014.07 Am using ~/ti-sdk-am335x-evm-07.00.00.00/bin/create-sdcard.sh for creating the partitions, After creating the partitions I tried implementing step 7. Put U-Boot and the kernel onto the board step 8. Try it, by the

[U-Boot] [PATCH 1/3] arm: rmobile: alt: Enable channel 1 of sh-i2c

2014-11-09 Thread Nobuhiro Iwamatsu
Alt board was connected Power IC to channel 1 of sh-i2c. Source code that controls this is already included, but channel 1 of sh-i2c is not enabled. This enables channel 1 of sh-i2c, and can use. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com --- board/renesas/alt/alt.c | 7

[U-Boot] [PATCH 3/3] arm: rmobile: alt: Remove i2c_init function

2014-11-09 Thread Nobuhiro Iwamatsu
The i2c_init function is no longer necessary. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com --- board/renesas/alt/alt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/board/renesas/alt/alt.c b/board/renesas/alt/alt.c index 68ae937..039cb37 100644 ---

[U-Boot] [PATCH 2/3] arm: rmobile: alt: Fix typo in comment for sh-i2c

2014-11-09 Thread Nobuhiro Iwamatsu
PowerIC connected to channel 1 of sh-i2c, not channel 2. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com --- board/renesas/alt/alt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/renesas/alt/alt.c b/board/renesas/alt/alt.c index 083e007..68ae937

Re: [U-Boot] [PATCH v3 7/8] imx6: SPL support for iMX6 SabreSD

2014-11-09 Thread John Tobias
Hi Stefano, On Sun, Nov 9, 2014 at 1:16 PM, Stefano Babic sba...@denx.de wrote: Hi John, On 08/11/2014 22:27, John Tobias wrote: This patch will enable the support for SPL on iMX6 SabreSD. It tested on SD2 and SD3 mmc port. --- board/freescale/mx6sabresd/mx6sabresd.c | 211

[U-Boot] [PATCH] arm: rmobile: kconfig: Remove '+S:' prefix from defconfig files

2014-11-09 Thread Nobuhiro Iwamatsu
'+S' is unnecessary because boards of rmobile do not use SPL. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com CC: Masahiro Yamada yamad...@jp.panasonic.com --- configs/alt_defconfig | 2 +- configs/koelsch_defconfig | 2 +- configs/lager_defconfig | 2 +- 3 files changed,

[U-Boot] [PATCH] arm: rmobile: alt: Change clock of SCIF to external clock

2014-11-09 Thread Nobuhiro Iwamatsu
Change clock of SCIF for Alt board is used to external clock. This changes to using external clock. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com --- include/configs/alt.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/alt.h b/include/configs/alt.h index

Re: [U-Boot] [PATCH v2 3/8] imx6: add spl on board configuration

2014-11-09 Thread John Tobias
That's exactly that I am going to ask you. Because, some people in the community doesn't need the SPL. I think this will need a separate config files (e.g mx6slevk_spl_defconfig, mx6qsabresd_spl_defconfig) Regards, john On Sun, Nov 9, 2014 at 4:03 PM, Fabio Estevam feste...@gmail.com wrote:

Re: [U-Boot] [PATCH v2 3/8] imx6: add spl on board configuration

2014-11-09 Thread Fabio Estevam
On Sun, Nov 9, 2014 at 10:27 PM, John Tobias john.tobias...@gmail.com wrote: That's exactly that I am going to ask you. Because, some people in the community doesn't need the SPL. I think this will need a separate config files (e.g mx6slevk_spl_defconfig, mx6qsabresd_spl_defconfig) Yes,

Re: [U-Boot] [PATCH 2/7] imx6sl: update DCD configuration file

2014-11-09 Thread John Tobias
My mistake, I should use what's in the mx6q_4x_mt41j128.cfg. Regards, john On Sun, Nov 9, 2014 at 1:31 PM, Stefano Babic sba...@denx.de wrote: Hi John, On 09/11/2014 18:51, John Tobias wrote: Update the Device Configuration Data file for iMX6SL for SPL support. ---

Re: [U-Boot] [PATCH v2 3/8] imx6: add spl on board configuration

2014-11-09 Thread John Tobias
Oh okay, I'll do it again. Regards, John On Sun, Nov 9, 2014 at 4:32 PM, Fabio Estevam feste...@gmail.com wrote: On Sun, Nov 9, 2014 at 10:27 PM, John Tobias john.tobias...@gmail.com wrote: That's exactly that I am going to ask you. Because, some people in the community doesn't need the SPL.

[U-Boot] [PATCH v4 0/3] Add board level usb support for mxsxsabresd and mx6slevk

2014-11-09 Thread Peng Fan
Changes v4: - Take Marek's suggestions, implement usb_phy_mode function and introduce a weak function board_usb_phy_mode. - change usb_phy_enable's return value with 0. - reimplement board_usb_phy_mode in board code. - add prototype type for board_usb_phy_mode and usb_phy_mode Changes v3: -

[U-Boot] [PATCH v4 2/3] imx:mx6sxsabresd add board level support for usb

2014-11-09 Thread Peng Fan
Add pinmux settings, implement board_ehci_hcd_init, board_usb_phy_mode There are two usb port on mx6sxsabresd board: 1. otg port 2. host port The following are the connection between usb controller and board usb interface, host port has not ID pin set: otg1 core --- board otg port otg2 core ---

[U-Boot] [PATCH v4 1/3] usb:ehci-mx6 add phy mode query function

2014-11-09 Thread Peng Fan
usb_phy_enable should return status bit, but not phy mode bit, thus add a new function usb_phy_mode to query the PHY for it's mode and make usb_phy_enable just return 0 but not 'phy_ctrl USBPHY_CTRL_OTG_ID'. Include a new board weak function board_usb_phy_mode. If board code does not reimplement

[U-Boot] [PATCH 3/3] imx:mx6slevk add board level support for usb

2014-11-09 Thread Peng Fan
Add pinmux settings, implement board_ehci_hcd_init, board_usb_phy_mode There are two usb port on mx6slevk board: 1. otg port 2. host port The following are the connection between usb controller and board usb interface, host port has not ID pin set: otg1 core --- board otg port otg2 core --- board

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

2014-11-09 Thread Peng Fan
On 11/8/2014 7:33 PM, Marek Vasut wrote: On Saturday, November 08, 2014 at 05:07:21 AM, Peng Fan wrote: 在 11/7/2014 8:17 PM, Marek Vasut 写道: On Friday, November 07, 2014 at 12:45:51 PM, Peng Fan wrote: 在 11/7/2014 7:09 PM, Marek Vasut 写道: On Friday, November 07, 2014 at 12:03:30 PM, Peng

[U-Boot] [PATCH v6 3/3] Odroid-XU3: Add documentation for Odroid-XU3

2014-11-09 Thread Hyungwon Hwang
This patch adds documentation for Odroid-XU3. This documentation is based on that of Odroid (doc/README-odroid) made by Przemyslaw Marczak. The documentation includes basic information about boot media layout, environment, partition layout, and the instruction to burn the u-boot image to boot

[U-Boot] [PATCH v6 0/3] Adds support for Exynos5422 odroid xu3 board

2014-11-09 Thread Hyungwon Hwang
This is v6 of the patchset adding support Odroud XU3 board. link to the previous version: v2: https://www.mail-archive.com/u-boot@lists.denx.de/msg152275.html v3: https://www.mail-archive.com/u-boot%40lists.denx.de/msg152677.html v4: https://patchwork.ozlabs.org/patch/407411/ v5:

[U-Boot] [PATCH v6 1/3] exynos5: fix GPIO information of exynos5420

2014-11-09 Thread Hyungwon Hwang
This patch fixes wrong GPIO information such as GPIO bank, table which is used to convert GPIO name to index, bank base address, and etc. Signed-off-by: Hyungwon Hwang human.hw...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com Cc: Lukasz Majewski l.majew...@samsung.com --- Changes for v4: -

[U-Boot] [PATCH v6 2/3] Odroid-XU3: Add support for Odroid-XU3

2014-11-09 Thread Hyungwon Hwang
This patch adds support for Odroid-XU3. Signed-off-by: Hyungwon Hwang human.hw...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com Cc: Lukasz Majewski l.majew...@samsung.com --- Changes for v3: - Remove unnecessary node from DT file - Remove unnecessary features from config file - Remove

Re: [U-Boot] [PATCH 31/39] x86: ivybridge: Check BIST value on boot

2014-11-09 Thread Bin Meng
Hi Simon, On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: The built-in self test value should be checked before we continue booting. Refuse to continue if there is something wrong. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/ivybridge/cpu.c | 16

Re: [U-Boot] [PATCH 32/39] x86: ivybridge: Perform Intel microcode update on boot

2014-11-09 Thread Bin Meng
Hi Simon, On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: Microcode updates are stored in the device tree. Work through these and apply any that are needed. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/ivybridge/Makefile | 1 +

Re: [U-Boot] [PATCH 33/39] RFC: x86: dts: Add microcode updates for ivybridge CPU

2014-11-09 Thread Bin Meng
Hi Simon, On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: Add two microcode updates that are provided for this CPU. The updates have been converted to a device tree form. (The license needs to be converted to SPDX) Signed-off-by: Simon Glass s...@chromium.org ---

[U-Boot] Pull request: u-boot-blackfin

2014-11-09 Thread Sonic Zhang
Hi Tom, Please pull the following patches for Blackfin from u-boot-blackfin into your tree. Thanks Sonic Zhang The following changes since commit 11ada9225a16ed2d8ddbf0715a2416245a777cbc: Merge branch 'rmobile' of git://www.denx.de/git/u-boot-sh (2014-11-05 13:11:18 -0500) are available

Re: [U-Boot] [PATCH 39/39] x86: ivybridge: Implement SDRAM init

2014-11-09 Thread Bin Meng
Hi Simon, On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: Implement SDRAM init using the Memory Reference Code (mrc.bin) provided in the board directory and the SDRAM SPD information in the device tree. This also needs the Intel Management Engine (me.bin) to work. Binary

[U-Boot] [PATCH] arm: rmobile: alt: Change clock of SCIF to external clock

2014-11-09 Thread Nobuhiro Iwamatsu
Change clock of SCIF for Alt board is used to external clock. This changes to using external clock. Signed-off-by: Nobuhiro Iwamatsu nobuhiro.iwamatsu...@renesas.com --- V2: Change CONFIG_SH_SCIF_CLK_FREQ. include/configs/alt.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff

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

2014-11-09 Thread Heiko Schocher
Add MAINTAINERS and doc/git-mailrc entry. Signed-off-by: Heiko Schocher h...@denx.de --- 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 I am now ready for taking over the ownership for MTD ...

Re: [U-Boot] [RFC PATCH 03/12] dm: i2c: Add a uclass for I2C

2014-11-09 Thread Heiko Schocher
Hello Simon, Am 13.10.2014 07:39, schrieb Simon Glass: The uclass implements the same operations as the current I2C framework but makes some changes to make it fit driver model better: - Remove the chip address from API calls - Remove the address length from API calls - Remove concept of

Re: [U-Boot] [PATCH 19/39] x86: Build a .rom file which can be flashed to an x86 machine

2014-11-09 Thread Bin Meng
Hi Simon, On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: On x86 machines U-Boot needs to be added to a large ROM image which is then flashed onto the target board. The ROM has a particular format so it makes sense for U-Boot to build this image automatically.

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

2014-11-09 Thread Jagan Teki
On 10 November 2014 11:45, Heiko Schocher h...@denx.de wrote: Add MAINTAINERS and doc/git-mailrc entry. Signed-off-by: Heiko Schocher h...@denx.de --- as discussed this step here and there first of all with Scott Wood for example here:

Re: [U-Boot] [PATCH 39/39] x86: ivybridge: Implement SDRAM init

2014-11-09 Thread Bin Meng
Hi Simon, On Fri, Nov 7, 2014 at 4:20 AM, Simon Glass s...@chromium.org wrote: Implement SDRAM init using the Memory Reference Code (mrc.bin) provided in the board directory and the SDRAM SPD information in the device tree. This also needs the Intel Management Engine (me.bin) to work. Binary

Re: [U-Boot] [RFC PATCH 04/12] dm: i2c: Implement driver model support in the i2c command

2014-11-09 Thread Heiko Schocher
Hello Simon, Am 13.10.2014 07:39, schrieb Simon Glass: The concept of a 'current bus' is now implemented in the command line rather than in the uclass. Also the address length does not need to be specified with each command - really we should consider dropping this from most commands but it

Re: [U-Boot] [RFC PATCH 0/12] RFC: dm: Add I2C support

2014-11-09 Thread Heiko Schocher
Hello Simon, sorry for the long delay... Am 13.10.2014 07:39, schrieb Simon Glass: (Note this is RFC since the uclass interface needs discussion and also because only sandbox is implemented so far. But I thought it best to get this out there as soon as I wrote it as it may influence the PMIC

[U-Boot] [PATCH v4 0/3] ARM: atmel: add sama5d4ek board support

2014-11-09 Thread Bo Shen
This patch series add sama5d4ek board support which supports following features: - Boot media support: NAND flash/SD card/SPI flash - Support LCD display - Support ethernet - Support USB mass storage Changes in v4: - rebase to the mainline master (11ada92) - Select CPU_V7 in Kconfig.

[U-Boot] [PATCH v4 2/3] net: macb: enable GMAC IP without GE feature support

2014-11-09 Thread Bo Shen
The User Register in GMAC IP is used to select interface type. When with GE feature, it is used to select interface between RGMII and GMII. If without GE feature, it is used to select interface between MII and RMII. Signed-off-by: Bo Shen voice.s...@atmel.com --- Changes in v4: None Changes in

[U-Boot] [PATCH v4 3/3] ARM: atmel: add sama5d4ek board support

2014-11-09 Thread Bo Shen
The code for this board supports following features: - Boot media support: NAND flash/SD card/SPI flash - Support LCD display - Support ethernet - Support USB mass storage Signed-off-by: Bo Shen voice.s...@atmel.com --- Changes in v4: - rebase to the mainline master (11ada92) -

[U-Boot] [PATCH v4 1/3] mtd: atmel_nand: runtime to build gf table for pmecc

2014-11-09 Thread Bo Shen
From: Josh Wu josh...@atmel.com As in SAMA5D4 SoC, the gf table in ROM code can not be seen. So, when we try to use PMECC, we need to build it when do initialization. Add a macro NO_GALOIS_TABLE_IN_ROM in soc header file. If it is defined we will build gf table runtime. The PMECC use the BCH

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

2014-11-09 Thread Heiko Schocher
Hello Jagan, Am 10.11.2014 07:38, schrieb Jagan Teki: On 10 November 2014 11:45, Heiko Schocher h...@denx.de wrote: Add MAINTAINERS and doc/git-mailrc entry. Signed-off-by: Heiko Schocher h...@denx.de --- as discussed this step here and there first of all with Scott Wood for example here:

[U-Boot] [i2c] Pull request

2014-11-09 Thread Heiko Schocher
Hello Tom, please pull from u-boot-i2c.git The following changes since commit 11ada9225a16ed2d8ddbf0715a2416245a777cbc: Merge branch 'rmobile' of git://www.denx.de/git/u-boot-sh (2014-11-05 13:11:18 -0500) are available in the git repository at: git://git.denx.de/u-boot-i2c.git master

[U-Boot] [PATCH v2] ARM: atmel: add sama5d4 xplained ultra board support

2014-11-09 Thread Bo Shen
The code for this board supports following features: - Boot media support: NAND flash/SD card/SPI flash - Support LCD display (optional, disabled by default) - Support ethernet - Support USB mass storage Signed-off-by: Bo Shen voice.s...@atmel.com --- This patch based on the patch to add