[U-Boot] [PATCH 4/5] x86: Add console command to display CBMEM console buffer

2012-10-12 Thread Simon Glass
From: Vadim Bendebury This command is useful to allow to observe messages generated by coreboot and u-boot until present. In particular it is handy when u-boot is instrumented to fall through into console mode on startup errors. Signed-off-by: Vadim Bendebury Signed-off-by: Simon Glass --- dr

[U-Boot] [PATCH 5/5] x86: Select stdio devices for coreboot

2012-10-12 Thread Simon Glass
We want to support VGA, serial, USB keyboard and the Coreboot memory console buffer. Signed-off-by: Simon Glass --- include/configs/coreboot.h |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h index 2649b82..fe5

[U-Boot] [PATCH 2/5] x86: coreboot: Decode additional coreboot sysinfo tags

2012-10-12 Thread Simon Glass
Add support for decoding tags for GPIOs, compile/build info, cbmem and other features. Signed-off-by: Stefan Reinauer Signed-off-by: Vadim Bendebury Signed-off-by: Gabe Black Signed-off-by: Simon Glass --- arch/x86/cpu/coreboot/tables.c | 109 - arch/x8

[U-Boot] [PATCH 3/5] x86: Add CBMEM console driver for coreboot

2012-10-12 Thread Simon Glass
From: Vadim Bendebury This patch builds upon the recently introduced CBMEM console feature of coreboot. CBMEM console uses a memry area allocated by coreboot to store the console output. The memory area has a certain structure, which allows to determine where the buffer is, the buffer size and t

[U-Boot] [PATCH 1/5] x86: coreboot: Drop sysinfo.c

2012-10-12 Thread Simon Glass
From: Stefan Reinauer sysinfo.c only contains the lib_sysinfo data structure which is used/filled by tables.c. This split was introduced by importing code from libpayload originally, but to keep the code simple, add the single line of actual code to tables.c Signed-off-by: Stefan Reinauer Signe

Re: [U-Boot] [PATCH] tools/env: Fix build failure from missing header include

2012-10-12 Thread Joe Hershberger
Hi Marek, On Fri, Oct 12, 2012 at 5:20 PM, Marek Vasut wrote: > Dear Joe Hershberger, > >> This was introduced in: >> 8679d0ffdcc0beafea8e6942c0c67cf859afa18e - >> COMMON: Use __stringify() instead of MK_STR() >> >> The header is now needed since common.h is not included in this tool. > > G

Re: [U-Boot] [PATCH v5 2/2] qi_lb60: add software usbboot support

2012-10-12 Thread Marek Vasut
Dear xian...@openmobilefree.net, > From: Xiangfu > > JZ4740 CPU have a internal ROM have such kind of code, that make > JZ4740 can boot from USB > > usbboot.S can downloads user program from the USB port to internal > SRAM and branches to the internal SRAM to execute the program > > Si

Re: [U-Boot] [PATCH v5 1/2] qi_lb60: add nand spl support

2012-10-12 Thread Marek Vasut
Dear xian...@openmobilefree.net, > From: Xiangfu > > The JZ4740 CPU can load 8KB from two different addresses: >1. the normal area up to 8KB starting from NAND flash address 0x >2. the backup area up to 8KB starting from NAND flash address 0x2000 > > After create u-boot-

Re: [U-Boot] [PATCH 2/7] usb: Support the CONFIG_SYS_64BIT_LBA option

2012-10-12 Thread Marek Vasut
Dear Simon Glass, > From: Gabe Black > > usb_storage wouldn't compile when the CONFIG_SYS_64BIT_LBA option is > turned on because the used fixed size data types in their exported > functions when they should have used lbaint_t for the block count > parameter. That meant that when the sizes happe

Re: [U-Boot] mpc85xx debug TLB entry

2012-10-12 Thread Scott Wood
On 10/11/2012 10:21:07 AM, Scott Wood wrote: On 10/11/2012 04:01:27 AM, Prabhakar Kushwaha wrote: On 10/11/2012 05:51 AM, Scott Wood wrote: I'm debugging some SPL changes and am still having a hard time following the initial TLB flow. We seem to be creating an entry in AS0 -- how is that no

Re: [U-Boot] [RFC PATCH 1/2] fs: delete unused Makefile

2012-10-12 Thread Simon Glass
Hi Stephen, On Wed, Oct 10, 2012 at 5:05 PM, Stephen Warren wrote: > From: Stephen Warren > > fs/Makefile is unused. The top-level Makefile sets LIBS-y += fs/xxx and > hence causes make to directly descend two directory levels into each > individual filesystem, and it never descends into fs/ its

[U-Boot] [PATCH 4/7] disk: Address cast and format errors

2012-10-12 Thread Simon Glass
From: Taylor Hutt This change addresses a few printf-formatting errors, and a typecast error. Signed-off-by: Taylor Hutt Signed-off-by: Simon Glass --- disk/part_efi.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/disk/part_efi.c b/disk/part_efi.c index 264ea9

[U-Boot] [PATCH 5/7] disk: Allow alternate EFI partition signature

2012-10-12 Thread Simon Glass
From: Stefan Reinauer ChromeOS uses a GPT partition table to partition the disk. However, Windows will refuse to install on a GPT partitioned disk if there is no EFI available (Even if there is an MBR, too) To hide the GPT partition table from Windows, we need to write it with a header magic othe

[U-Boot] [PATCH 6/7] fs: Add a Coreboot Filesystem (CBFS) driver and commands

2012-10-12 Thread Simon Glass
From: Gabe Black This change adds CBFS support and some commands to use it to u-boot. These commands are: cbfsinit - Initialize CBFS support and pull all metadata into RAM. The end of the ROM is an optional parameter which defaults to the standard 0x and can be used to support multiple C

[U-Boot] [PATCH 3/7] disk: Make the disk partition code work with no specific partition types

2012-10-12 Thread Simon Glass
From: Gabe Black Currently, if the disk partition code is compiled with all of the parition types compiled out, it hits an #error which stops the build. This change adjusts that file so that those functions will fall through to their defaults in those cases instead of breaking the build. These fu

[U-Boot] [PATCH 7/7] config: Enable CBFS, ext4 for coreboot

2012-10-12 Thread Simon Glass
Enable Coreboot and EXT4 Filesystems on the coreboot board. Signed-off-by: Simon Glass --- include/configs/coreboot.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h index 0e89242..3df085b 100644 --- a/include/con

[U-Boot] [PATCH 2/7] usb: Support the CONFIG_SYS_64BIT_LBA option

2012-10-12 Thread Simon Glass
From: Gabe Black usb_storage wouldn't compile when the CONFIG_SYS_64BIT_LBA option is turned on because the used fixed size data types in their exported functions when they should have used lbaint_t for the block count parameter. That meant that when the sizes happened to be the same, when using

[U-Boot] [PATCH 1/7] ide: Add printf format string for CONFIG_SYS_64BIT_LBA option

2012-10-12 Thread Simon Glass
From: Gabe Black The size of an LBA type changes depending on this option. We need to use a different printf() string in each case, so create a define for this. Signed-off-by: Gabe Black Signed-off-by: Simon Glass --- include/ide.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)

[U-Boot] [PATCH 14/14] sandbox: Change global data baudrate to int

2012-10-12 Thread Simon Glass
This doesn't need to be a long, so change it. Signed-off-by: Simon Glass --- arch/sandbox/include/asm/global_data.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sandbox/include/asm/global_data.h b/arch/sandbox/include/asm/global_data.h index 581fd2f..78a751d 10

[U-Boot] [PATCH 12/14] nds32: Change global data baudrate to int

2012-10-12 Thread Simon Glass
This doesn't need to be a long, so change it. Also adjust bi_baudrate to be unsigned. Signed-off-by: Simon Glass --- arch/nds32/include/asm/global_data.h |2 +- arch/nds32/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+),

[U-Boot] [PATCH 13/14] x86: Change global data baudrate to int

2012-10-12 Thread Simon Glass
This doesn't need to be a long, so change it. Signed-off-by: Simon Glass --- arch/x86/include/asm/global_data.h |2 +- common/cmd_bdinfo.c|2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/globa

[U-Boot] [PATCH 08/14] sparc: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/sparc/include/asm/global_data.h |2 +- arch/sparc/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/sparc/i

[U-Boot] [PATCH 04/14] microblaze: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/microblaze/include/asm/global_data.h |2 +- arch/microblaze/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git

[U-Boot] [PATCH 11/14] mips: Change global data baudrate to int

2012-10-12 Thread Simon Glass
This doesn't need to be a long, so change it. Also adjust bi_baudrate to be unsigned. Signed-off-by: Simon Glass --- arch/mips/include/asm/global_data.h |2 +- arch/mips/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 d

[U-Boot] [PATCH 09/14] arm: Change global data baudrate to int

2012-10-12 Thread Simon Glass
This does not need to be a long, so change it. Also adjust bi_baudrate to be unsigned. Signed-off-by: Simon Glass --- arch/arm/include/asm/global_data.h |2 +- arch/arm/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c|2 +- 3 files changed, 3 insertions(+), 3 del

[U-Boot] [PATCH 07/14] powerpc: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/powerpc/include/asm/global_data.h |2 +- arch/powerpc/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c|2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/p

[U-Boot] [PATCH 01/14] sh: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/sh/include/asm/global_data.h |2 +- arch/sh/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/sh/include/asm/g

[U-Boot] [PATCH 02/14] avr32: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/avr32/include/asm/global_data.h |2 +- arch/avr32/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/avr32/i

[U-Boot] [PATCH 05/14] nios2: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/nios2/include/asm/global_data.h |2 +- arch/nios2/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/nios2/i

[U-Boot] [PATCH 03/14] m68k: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/m68k/include/asm/global_data.h |2 +- arch/m68k/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/m68k/inclu

[U-Boot] [PATCH 06/14] openrisc: Change bi_baudrate and global data baudrate to int

2012-10-12 Thread Simon Glass
These don't need to be longs, so change them. Signed-off-by: Simon Glass --- arch/openrisc/include/asm/global_data.h |2 +- arch/openrisc/include/asm/u-boot.h |2 +- common/cmd_bdinfo.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arc

[U-Boot] [PATCH 10/14] blackfin: Change global data baudrate to int

2012-10-12 Thread Simon Glass
This doesn't need to be a long, so change it. Also adjust bi_baudrate to be unsigned. Signed-off-by: Simon Glass --- arch/blackfin/include/asm/global_data.h |2 +- arch/blackfin/include/asm/u-boot.h |2 +- arch/blackfin/lib/board.c |2 +- common/cmd_bdinfo.c

[U-Boot] [PATCH 0/14] Homogenise baud rate type to unsigned int

2012-10-12 Thread Simon Glass
The global_data and bd_info structures for each board have different types for the baudrate and bi_baudrate fields. This series lines them all up to be the same. There is some discussion on the list about using u32 instead of 'unsigned int'. These are equivalent on all current architectures, and o

Re: [U-Boot] [PATCH 2/5] input: Provide a board specific mechanism to decide whether to skip i8042 init

2012-10-12 Thread Simon Glass
Hi Tom, On Fri, Oct 12, 2012 at 9:05 AM, Tom Rini wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 10/11/12 18:15, Simon Glass wrote: >> From: Gabe Black >> >> This change adds a board overridable function which can be used to >> decide whether or not to initialize the i8042 keybo

[U-Boot] [PATCH] x86: coreboot: Enable i8042 keyboard

2012-10-12 Thread Simon Glass
Add support for an i8042 keyboard controller. Signed-off-by: Simon Glass --- include/configs/coreboot.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h index 0e89242..a0d3d44 100644 --- a/include/configs/coreboot

[U-Boot] [PATCH v2 1/5] input: Use finer grain udelays while waitng for the i8042 keyboard buffer to empty

2012-10-12 Thread Simon Glass
From: Gabe Black On x86, the i8042 keyboard controller driver frequently waits for the keyboard input buffer to be empty to make sure the controller has had a chance to process the data it was given. The way the delay loop was structured, if the controller hadn't cleared the corresponding status

[U-Boot] [PATCH v2 2/5] input: Provide a board specific mechanism to decide whether to skip i8042 init

2012-10-12 Thread Simon Glass
From: Gabe Black This change adds a board overridable function which can be used to decide whether or not to initialize the i8042 keyboard controller. On systems where it isn't actually connected to anything, this can save a significant amount of boot time. On Stumpy, this saves about 200ms on b

Re: [U-Boot] [PATCH 1/5] input: Use finer grain udelays while waitng for the i8042 keyboard buffer to empty

2012-10-12 Thread Simon Glass
Hi Graeme, On Thu, Oct 11, 2012 at 8:55 PM, Graeme Russ wrote: > Hi Simon, > > On Fri, Oct 12, 2012 at 12:15 PM, Simon Glass wrote: > >> diff --git a/drivers/input/i8042.c b/drivers/input/i8042.c >> index c3bc536..99254e4 100644 >> --- a/drivers/input/i8042.c >> +++ b/drivers/input/i8042.c >> @@

Re: [U-Boot] [PATCH] tools/env: Fix build failure from missing header include

2012-10-12 Thread Marek Vasut
Dear Joe Hershberger, > This was introduced in: > 8679d0ffdcc0beafea8e6942c0c67cf859afa18e - > COMMON: Use __stringify() instead of MK_STR() > > The header is now needed since common.h is not included in this tool. Good find. This is -next, right ? > Signed-off-by: Joe Hershberger > ---

Re: [U-Boot] U-Boot git usage model

2012-10-12 Thread Scott Wood
On 10/12/2012 05:11:17 AM, Albert ARIBAUD wrote: Hi Scott, On Thu, 11 Oct 2012 13:59:31 -0500, Scott Wood wrote: > On 10/11/2012 01:45:02 PM, Albert ARIBAUD wrote: > > Hi Scott, > > > > On Thu, 11 Oct 2012 13:13:33 -0500, Scott Wood > > wrote: > > > > > FWIW I think putting policy documents i

Re: [U-Boot] u-boot-tegra/master and /next have been updated and uploaded to denx.de

2012-10-12 Thread Stephen Warren
On 10/12/2012 03:26 PM, Tom Warren wrote: > Folks, > > u-boot-tegra/next has been updated with new patches from Lucas, Marc, and > Stephen, rebased against u-boot-arm, and pushed to denx.de. u-boot-tegra/next right now is based on u-boot-arm/master, but includes patches that are both: a) Already

[U-Boot] Reminder: v2012.10 on Monday

2012-10-12 Thread Tom Rini
Hey all, As a reminder, v2012.10 is going to be released on Monday. If you have any critical patches that are not current applied please let me (and any relevant custodian) know ASAP. Thanks! -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] u-boot-tegra/master and /next have been updated and uploaded to denx.de

2012-10-12 Thread Tom Warren
Folks, u-boot-tegra/next has been updated with new patches from Lucas, Marc, and Stephen, rebased against u-boot-arm, and pushed to denx.de. Please use this for any future patches, and if you have patches under review, please rebase them if they no longer apply cleanly. I'm going to be on vacati

[U-Boot] which toolchain version for Microblaze

2012-10-12 Thread Stephan Linz
Hi Michal, Hi David which version of binutils and gcc you are currently using for embedded Linux development? Just now I've played a little bit with the new one I've found in the Xilinx git repository on: git://git.xilinx.com/microblaze-gnu.git Unfortunately both the binaries and the sources see

[U-Boot] [PATCH 4/6 V3] common: Convert the U-Boot commands to LG-arrays

2012-10-12 Thread Marek Vasut
This patch converts the old method of creating a list of command onto the new LG-arrays code. The old u_boot_cmd section is converted to new u_boot_list_cmd subsection and LG-array macros used as needed. Minor adjustments had to be made to the common code to work with the LG-array macros, mostly t

[U-Boot] [PATCH 6/6 V3] kerneldoc: tmpl: Implement template for LG-arrays

2012-10-12 Thread Marek Vasut
Implement kerneldoc template for linker-generated arrays. This is the first template in U-Boot that is used to generate kerneldoc style documentation. This template is very basic. Signed-off-by: Marek Vasut --- doc/DocBook/Makefile |2 +- doc/DocBook/linker_lists.tmpl | 46 +++

[U-Boot] [PATCH 1/6 V3] common: Add symbol handling for generic lists into Makefile

2012-10-12 Thread Marek Vasut
This patch adds essential components for generation of the contents of the linker section that is used by the linker-generated array. All of the contents is held in a separate file, u-boot.lst, which is generated at runtime just before U-Boot is linked. The purpose of this code is to especially ge

[U-Boot] [PATCH 2/6 V3] common: Implement support for linker-generated arrays

2012-10-12 Thread Marek Vasut
This patch adds support for linker-generated array. These arrays are a generalization of the U-Boot command declaration approach. Basically, the idea is to generate an array, where elements of the array are statically initialized at compile time and each element is declared separatelly at differen

[U-Boot] [PATCH 0/6 V3] Linker-generated arrays (take 2)

2012-10-12 Thread Marek Vasut
This is a second stab at the linker-generated array. Basically, this concept is a generic abstraction of how u_boot_cmd works today. The patch 2/4 contains a huge pile of documentation which should clarify most of the questions. I don't see size growth, I see size fluctiation in the order of tens

[U-Boot] [PATCH] tools/env: Fix build failure from missing header include

2012-10-12 Thread Joe Hershberger
This was introduced in: 8679d0ffdcc0beafea8e6942c0c67cf859afa18e - COMMON: Use __stringify() instead of MK_STR() The header is now needed since common.h is not included in this tool. Signed-off-by: Joe Hershberger --- tools/env/fw_env.c | 1 + 1 file changed, 1 insertion(+) diff --git

[U-Boot] U-Boot Ethernet Connectivity Issues

2012-10-12 Thread Harms, Joel K
I have a Windows 7 development machine that I cannot verify ethernet connectivity with my P2041RDB QorIQ platfrom running u-boot. The two devices are connected using a crossover cable. When I try to ping from the P2041 to the Windows 7, the ping returns No link. I verified that my dev machine

[U-Boot] [PATCH 3/3] ARM: tegra: Whistler: remove unused USB alias

2012-10-12 Thread Stephen Warren
From: Stephen Warren Port USB1 on Whistler is intended as a device port for USB recovery. Whistler's DT currently contains an alias for this USB port, even though Whistler's config doesn't enable multiple USB controllers, so the alias is unused. Remove the unused alias for consistency for now. Si

[U-Boot] [PATCH 2/3] ARM: tegra: Seaboard: enable multiple USB ports

2012-10-12 Thread Stephen Warren
From: Stephen Warren The device tree already contains the required configuration for both the USB1 and USB3 ports. Enable the required configuration options to enable both these ports, which in turn allows the USB1 port to be used. Note that on a true Seaboard, this port is typically used as a d

[U-Boot] [PATCH 1/3] ARM: tegra: Harmony: enable ULPI USB port

2012-10-12 Thread Stephen Warren
From: Stephen Warren The ULPI port is routed onto pins on the mini PCI Express connector. A standard breakout board may be used to access the port. * Add required DT entries to configure the ULPI port. * Setup up the ULPI pinmux in the board code. * Enable multiple USB controller and ULPI suppor

Re: [U-Boot] [PATCH] powerpc/fm: fix TBI PHY address settings

2012-10-12 Thread Tabi Timur-B04825
On Fri, Oct 12, 2012 at 1:25 AM, Shaohui Xie wrote: > From: shaohui xie > > TBI PHY address (TBIPA) register is set in general frame manager > phy init funciton dtsec_init_phy() in drivers/net/fm/eth.c, and > it is supposed to set TBIPA on FM1@DTSEC1 in case of FM1@DTSEC1 > isn't used directly, w

Re: [U-Boot] [PATCH] m28: Properly configure the SPI flash chipselect

2012-10-12 Thread Tom Rini
On Fri, Oct 12, 2012 at 03:36:56AM +0200, Marek Vasut wrote: > The SPI flash is not properly detected by plain "sf probe" due to > it being located on different bus and different chipselect. Fix > this problem. > > Signed-off-by: Marek Vasut > Cc: Stefano Babic > Cc: Tom Rini Applied to u-boo

[U-Boot] [PATCH] env: cosmetic: Consilidate the default env definition

2012-10-12 Thread Joe Hershberger
There used to be a huge structure duplicated 3 times in the source. Signed-off-by: Joe Hershberger --- common/env_common.c | 97 +--- common/env_embedded.c | 104 ++ include/env_default.h | 135 +++

Re: [U-Boot] [PATCH] tegra: move common features to a common makefile

2012-10-12 Thread Tom Warren
Marc, > -Original Message- > From: Thierry Reding [mailto:thierry.red...@avionic-design.de] > Sent: Wednesday, October 03, 2012 10:59 PM > To: Marc Dietrich > Cc: u-boot@lists.denx.de; Stephen Warren; Tom Warren; Lucas Stach > Subject: Re: [PATCH] tegra: move common features to a common ma

Re: [U-Boot] [PATCH 0/6] EXYNOS: Add support for Exynos4x10

2012-10-12 Thread Minkyu Kang
Dear Piotr, On 13 October 2012 00:08, Piotr Wilczek wrote: > This patch series adds Register base addresses, clock, gpio, power > and system structures for Exynos4x10. > > Piotr Wilczek (6): > Exynos: Exynos4x10: Add base addresses for Exynos4x10 > Exynos: Exynos4x10: Add clock structure for

Re: [U-Boot] [PATCH 2/5] input: Provide a board specific mechanism to decide whether to skip i8042 init

2012-10-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/11/12 18:15, Simon Glass wrote: > From: Gabe Black > > This change adds a board overridable function which can be used to > decide whether or not to initialize the i8042 keyboard controller. > On systems where it isn't actually connected to any

Re: [U-Boot] U-Boot git usage model

2012-10-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/11/12 22:29, Stefan Roese wrote: > On 10/11/2012 08:30 PM, Scott Wood wrote: >>> But, yes, it bears more thinking if we want the next branch >>> open for longer than it has historically been, if we want >>> that. And we have at least historicall

[U-Boot] [PATCH 6/6] arm: trats: Use exynos4x10 structures on Trats board

2012-10-12 Thread Piotr Wilczek
This patch use exynos4x10 structures on Trats board. Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- board/samsung/trats/trats.c | 40 1 files changed, 20 insertions(+), 20 deletions(-) diff --git a/board/samsung/trats/t

[U-Boot] [PATCH 5/6] Exynos: Exynos4x10: add sysreg structure for exynos4x10

2012-10-12 Thread Piotr Wilczek
This patch adds sysreg structure for Exynos4x10. Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- arch/arm/include/asm/arch-exynos/system.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-exynos/system.h b

[U-Boot] [PATCH 4/6] Exynos: Exynos4x10: add power structure for Exynos4x10

2012-10-12 Thread Piotr Wilczek
This patch adds power structure for Exynos4x10. Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- arch/arm/include/asm/arch-exynos/power.h | 201 ++ 1 files changed, 201 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/ar

[U-Boot] [PATCH 3/6] Exynos: Exynos4x10: Add gpio structure for Exynos4X10

2012-10-12 Thread Piotr Wilczek
This patch adds gpio structure for Exynos4x10. Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- arch/arm/include/asm/arch-exynos/gpio.h | 47 +++ 1 files changed, 47 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch

[U-Boot] [PATCH 2/6] Exynos: Exynos4x10: Add clock structure for exynos4x10

2012-10-12 Thread Piotr Wilczek
This patch adds clock structure for Exynos4x10. Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- arch/arm/include/asm/arch-exynos/clock.h | 236 ++ 1 files changed, 236 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/ar

[U-Boot] [PATCH 1/6] Exynos: Exynos4x10: Add base addresses for Exynos4x10

2012-10-12 Thread Piotr Wilczek
This patch add base addresses for Exynos4x10 registers. Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- Depends on <1349171443-13624-1-git-send-email-chander.kash...@linaro.org> arch/arm/include/asm/arch-exynos/cpu.h | 43 --- 1 file

[U-Boot] [PATCH 0/6] EXYNOS: Add support for Exynos4x10

2012-10-12 Thread Piotr Wilczek
This patch series adds Register base addresses, clock, gpio, power and system structures for Exynos4x10. Piotr Wilczek (6): Exynos: Exynos4x10: Add base addresses for Exynos4x10 Exynos: Exynos4x10: Add clock structure for exynos4x10 Exynos: Exynos4x10: Add gpio structure for Exynos4X10 Exy

Re: [U-Boot] [ARM] [STATUS] ATTENTION: Uu-boot-arm/master branch ROLLBACK to 28e5ac2d

2012-10-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/12/12 03:00, Albert ARIBAUD wrote: > Hi Minkyu, > > On Fri, 12 Oct 2012 15:45:24 +0900, Minkyu Kang > wrote: > >> On 12 October 2012 15:39, Minkyu Kang >> wrote: >>> Dear Albert, >>> >>> On 12 October 2012 14:53, Albert ARIBAUD >>> wrote

Re: [U-Boot] Host driver for ISP1362?

2012-10-12 Thread Steve Strobel
I am working on a embedded board that uses a BF537 (Blackfin) and ISP1362 USB controller. I want to access a USB flash drive from U-Boot. But I haven't been able to find the drivers for the ISP1362. I have found two other U-Boot target platforms that at least reference the ISP1362: In include/co

[U-Boot] [PATCH] phylib: Enable SMSC LAN87xx PHY support

2012-10-12 Thread Mingkai Hu
LAN8720 PHY is used on Freescale C2X0QDS board. Signed-off-by: Mingkai Hu diff --git a/include/config_phylib_all_drivers.h b/include/config_phylib_all_drivers.h index 1db7cec..12828c6 100644 --- a/include/config_phylib_all_drivers.h +++ b/include/config_phylib_all_drivers.h @@ -23,6 +23,7 @@ #

Re: [U-Boot] [PATCH] FEC: Rework RX buffer init

2012-10-12 Thread Albert ARIBAUD
Hi Marek, On Wed, 10 Oct 2012 00:43:33 +0200, Marek Vasut wrote: > Rework the RX buffer init so that it's easier to understand. > Firstly, allocate the whole RX buffer as one large continuous > piece of memory. Also, drop all these writel() accessors used > on the FEC RX DMA descriptor, since it

Re: [U-Boot] [PATCH] m28: Properly configure the SPI flash chipselect

2012-10-12 Thread Stefano Babic
Am 12/10/2012 10:07, schrieb Marek Vasut: > Dear Stefano Babic, > >> Am 12/10/2012 04:08, schrieb Marek Vasut: >>> Dear Tom Rini, >>> The SPI flash is not properly detected by plain "sf probe" due to it being located on different bus and different chipselect. Fix this problem.

Re: [U-Boot] U-Boot git usage model

2012-10-12 Thread Albert ARIBAUD
Hi Scott, On Thu, 11 Oct 2012 13:59:31 -0500, Scott Wood wrote: > On 10/11/2012 01:45:02 PM, Albert ARIBAUD wrote: > > Hi Scott, > > > > On Thu, 11 Oct 2012 13:13:33 -0500, Scott Wood > > wrote: > > > > > FWIW I think putting policy documents in a wiki, without any > > > guidance on who's sup

Re: [U-Boot] Pull request: u-boot-arm/master to u-boot/master

2012-10-12 Thread Piotr Wilczek
Dear All, > -Original Message- > From: Minkyu Kang [mailto:proms...@gmail.com] > Sent: Friday, October 12, 2012 8:47 AM > To: Albert ARIBAUD; Piotr Wilczek > Cc: U-Boot; Tom Rini; Marek Vasut > Subject: Re: [U-Boot] Pull request: u-boot-arm/master to u-boot/master > > On 12 October 2012 1

Re: [U-Boot] [ARM] [STATUS] ATTENTION: Uu-boot-arm/master branch ROLLBACK to 28e5ac2d

2012-10-12 Thread Albert ARIBAUD
Hi Minkyu, On Fri, 12 Oct 2012 15:45:24 +0900, Minkyu Kang wrote: > On 12 October 2012 15:39, Minkyu Kang wrote: > > Dear Albert, > > > > On 12 October 2012 14:53, Albert ARIBAUD wrote: > >> Hi all, > >> > >> I am sending this notice because I have force-pushed a rollback of > >> u-boot-arm/ma

Re: [U-Boot] [PATCH] m28: Properly configure the SPI flash chipselect

2012-10-12 Thread Marek Vasut
Dear Stefano Babic, > Am 12/10/2012 04:08, schrieb Marek Vasut: > > Dear Tom Rini, > > > >> The SPI flash is not properly detected by plain "sf probe" due to > >> it being located on different bus and different chipselect. Fix > >> this problem. > >> > >> Signed-off-by: Marek Vasut > >> Cc: Ste

Re: [U-Boot] [PATCH v2 09/21] pmic: Extend struct pmic to support battery and charger related operations

2012-10-12 Thread Lukasz Majewski
Hi Stefano, > Am 05/10/2012 10:16, schrieb Lukasz Majewski: > > Now it is possible to provide specific function per PMIC/power > > device instance. > > > > Signed-off-by: Lukasz Majewski > > Signed-off-by: Kyungmin Park > > --- > > Changes for v2: > > - New at patch v2 > > --- > > Hi Lucasz, >

Re: [U-Boot] [PATCH] m28: Properly configure the SPI flash chipselect

2012-10-12 Thread Stefano Babic
Am 12/10/2012 04:08, schrieb Marek Vasut: > Dear Tom Rini, > >> The SPI flash is not properly detected by plain "sf probe" due to >> it being located on different bus and different chipselect. Fix >> this problem. >> >> Signed-off-by: Marek Vasut >> Cc: Stefano Babic >> Cc: Tom Rini > [...] >

[U-Boot] [PATCH] powerpc/espi: remove write command length check

2012-10-12 Thread Shaohui Xie
Current espi controller driver assumes the command length of write command is not equal to '1', it was made based on SPANSION SPI flash, but some SPI flash driver such as SST does use write command length as '1', so write command on SST SPI flash will not work. And the length check for write comman

[U-Boot] [PATCH] powerpc/fm: fix TBI PHY address settings

2012-10-12 Thread Shaohui Xie
From: shaohui xie TBI PHY address (TBIPA) register is set in general frame manager phy init funciton dtsec_init_phy() in drivers/net/fm/eth.c, and it is supposed to set TBIPA on FM1@DTSEC1 in case of FM1@DTSEC1 isn't used directly, which provides MDIO for other ports. So following code is wrong i