Stephen,
On Wed, Dec 12, 2012 at 3:06 PM, Stephen Warren wrote:
> On 12/12/2012 09:14 AM, Tom Warren wrote:
>> Allen,
>>
>> On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote:
>>> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote:
These files are used by both SPL and main U-Boot.
Stephen,
On Wed, Dec 12, 2012 at 3:10 PM, Stephen Warren wrote:
> On 12/11/2012 04:34 PM, Tom Warren wrote:
>> These are stripped down for bringup, They'll be filled out later
>> to match-up with the kernel DT contents, and/or as devices are
>> brought up (mmc, usb, spi, etc.).
>
>> diff --git a/
Simon,
On Wed, Dec 12, 2012 at 3:40 PM, Simon Glass wrote:
> Hi Tom,
>
> On Tue, Dec 11, 2012 at 7:05 PM, Allen Martin wrote:
>> On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote:
>>> This patch series adds basic (boot to cmd prompt) support for Tegra30.
>>> This is based on the Tegra20
From: Stephen Warren
A single U-Boot binary may support multiple very similar boards. These
boards may use different UARTs for the main debug console. Hence, it is
impossible to #define CONFIG_SYS_NS16550_COM1 to some static UART
address, since the true value may only be determined at run-time, a
Hi Wolfgang,
On Wed, Dec 12, 2012 at 2:11 PM, Wolfgang Denk wrote:
> Dear Simon Glass,
>
> In message
> you
> wrote:
>>
>> > Also, this should not be considered as somethin board specific as the
>> > name "board polling function" might suggest. What is being discussed
>> > here is not more an
Hi Stephen,
On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren wrote:
> From: Stephen Warren
>
> A single U-Boot binary may support multiple very similar boards. These
> boards may use different UARTs for the main debug console. Hence, it is
> impossible to #define CONFIG_SYS_NS16550_COM1 to some s
Hi,
Thanks.
I set assign to you in patchwork. But first, this was set to me.
Best regards,
Nobuhiro
On Wed, Dec 12, 2012 at 4:23 PM, Joe Hershberger
wrote:
> Hi
>
> On Wed, Dec 12, 2012 at 12:37 AM, Nobuhiro Iwamatsu
> wrote:
>> Hi, Joe.
>>
>> Please pick this patch for your repository.
>
>
On 12/12/2012 04:38 PM, Simon Glass wrote:
> Hi Stephen,
>
> On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren wrote:
>> From: Stephen Warren
>>
>> A single U-Boot binary may support multiple very similar boards. These
>> boards may use different UARTs for the main debug console. Hence, it is
>> i
Hi Stephen,
On Wed, Dec 12, 2012 at 3:52 PM, Stephen Warren wrote:
> On 12/12/2012 04:38 PM, Simon Glass wrote:
>> Hi Stephen,
>>
>> On Wed, Dec 12, 2012 at 3:23 PM, Stephen Warren
>> wrote:
>>> From: Stephen Warren
>>>
>>> A single U-Boot binary may support multiple very similar boards. These
This series adds a few USB improvements for Marek:
- Support for interupt transfers
- Faster start-up and proper shutdown of ASIX USB adapter
- Basic 64-bit controller support (used by x86)
- Fix detection of empty USB media readers
- Clean up after device configuration failure
Michael Spang (1)
From: Vincent Palatin
Instead of hardcoding the PCI IDs on the USB controller, use the PCI
class to detect them.
Ensure the busmaster bit is properly set in the PCI configuration.
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-pci.c | 37 +
1 files
From: Vincent Palatin
Use the ability to have several active EHCI controller on a system
in the PCI EHCI controller implementation.
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-pci.c | 24 +++-
1 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/driver
From: Vincent Palatin
On EHCI controller with 64-bit address space support, we must initialize
properly the high word for the PCI bus master accesses.
Signed-off-by: Vincent Palatin
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-hcd.c |3 +++
1 files changed, 3 insertions(+), 0 dele
From: Vincent Palatin
When a USB card reader is empty, it will return "Not Ready - medium not
present" as Key Code Qualifier. In that situation, it's useless waiting
for the full timeout since the result won't change until the user
inserts a card.
Signed-off-by: Vincent Palatin
Signed-off-by: V
From: Vincent Palatin
Ensure we cannot get stuck in the keyboard scanning if something wrong
happens (USB device unplugged or fatal I/O error)
Signed-off-by: Vincent Palatin
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci-hcd.c | 18 --
1 files changed, 16 insertions(+
From: Michael Spang
[port of Linux kernel commit bcd218be5aeb by Steve Glendinning]
The eeprom read & write commands currently check the E2P_CMD_LOADED_ bit is
set before allowing any operations. This prevents any reading or writing
unless a correctly programmed EEPROM is installed.
Signed-off
From: Milind Choudhary
If probe of a newly connected device fails for some reason, clean up
the allocated entry in usb_dev array.
Signed-off-by: Milind Choudhary
Signed-off-by: Simon Glass
---
common/usb.c | 12
common/usb_hub.c |2 ++
include/usb.h|1 +
3 files
The Asix driver takes the link down during init() and then brings it back up.
This commit changes this so that if a link has already been established
successfully we simply check that the link is still good.
Also fix up asix_halt() to actually halt RX on the interface. Previously this
was not done
From: Vincent Palatin
The interrupt endpoint handling code stores the buffer pointer in the QH
padding field. We need to make it the size of a pointer to avoid strict
aliasing issue with the compiler.
Signed-off-by: Vincent Palatin
Signed-off-by: Simon Glass
---
drivers/usb/host/ehci.h |
Enable PCI EHCI, storage, keyboard and Ethernet for USB.
Signed-off-by: Simon Glass
---
include/configs/coreboot.h | 17 +
1 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h
index adeace0..79adbc0 100644
--- a
From: Patrick Georgi
Interrupt transfers aren't meant to be used from the async list
(the EHCI spec indicates trouble with low/full-speed intr on async).
Build a periodic list instead, and provide an API to make use of it.
Then, use that API from the existing interrupt transfer API.
This provid
On 12/12/12 23:02, Kyungmin Park wrote:
> Hi,
>
> On Tue, Dec 11, 2012 at 8:01 PM, Ajay Kumar wrote:
>> This patch adds pinmux configuration for backlight, LCD reset
>> and HPD for DP panel on Exynos5 SMDK.
>>
>> Signed-off-by: Ajay Kumar
>> ---
>> arch/arm/cpu/armv7/exynos/pinmux.c|
On 12/13/2012 1:54 AM, Wolfgang Denk wrote:
Dear Vipin Kumar,
In
message
you wrote:
imls does not list the images in NAND devices. This patch implements this
support for legacy type images.
...
-static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+static void do_i
[...]
README | 3 +-
common/cmd_bootm.c | 133
-
2 files changed, 134 insertions(+), 2 deletions(-)
diff --git a/README b/README
index 2077c3b..ec5c31e 100644
--- a/README
+++ b/README
@@ -831,7 +831,8 @@ The following opti
On 12/12/2012 4:55 PM, Marek Vasut wrote:
Dear Vipin Kumar,
+ ulong start = get_timer(0);
+
+ do {
+ ret = usb_get_port_status(dev, i + 1, portsts);
+ if (ret< 0) {
+ USB_HUB_PRINTF("get_port
Dear Kim,
On 12 December 2012 13:24, Jeong Hyeon Kim wrote:
> From: Jeong-Hyeon Kim
>
> This patch adds the support for Exynos4212/4412.
>
> Samsung's ARM Cortex-A9 based Exynos4x12 SoCs and Exynos4210 are similar.
> Address of a few registers are different in CMU part like MPLL.
>
> Signed-off-
On 13 December 2012 11:49, Chander Kashyap wrote:
> Dear Kim,
>
> On 12 December 2012 13:24, Jeong Hyeon Kim wrote:
>> From: Jeong-Hyeon Kim
>>
>> This patch adds the support for Exynos4212/4412.
>>
>> Samsung's ARM Cortex-A9 based Exynos4x12 SoCs and Exynos4210 are similar.
>> Address of a few
All,
My question stems from building a "standalone" application for U-Boot
with code that has conflicting licenses with GPL v2. The COPYING file
states that if I used the standard jump table then the standalone
application will not fall under GPL v2. However if I want to expand
the functionality
A friend of mine (who is more of a low-level hardware guy) is trying to
put together a project based on the NXP lpc3130 processor, and asked me
to help him out. I've got a reasonable OS/development background, but
not much of any experience in the embedded realm, so apologies in
advance for any
This patch adds pinumx support for SROMC.
Signed-off-by: Jeong-Hyeon Kim
---
arch/arm/cpu/armv7/exynos/pinmux.c | 77
1 file changed, 77 insertions(+)
diff --git a/arch/arm/cpu/armv7/exynos/pinmux.c
b/arch/arm/cpu/armv7/exynos/pinmux.c
index d778b46..cdd6
101 - 130 of 130 matches
Mail list logo