u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
From: Lubomir Popov <lpopov@mm-sol.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-ti/master
Date: Mon, 10 Jun 2013 13:57:49 +0300	[thread overview]
Message-ID: <51B5B12D.6010708@mm-sol.com> (raw)
In-Reply-To: <20130610095531.GA14999@panicking>

Hi Michael,

On 10/06/13 12:55, Michael Trimarchi wrote:
> Hi
> 
> On Mon, Jun 10, 2013 at 11:54:31AM +0300, Lubomir Popov wrote:
>> Hi Michael,
>>
>> On 10/06/13 00:37, Michael Trimarchi wrote:
>>> Hi
>>>
>>> On 06/08/2013 10:43 PM, Lubomir Popov wrote:
>>>> Hi Tom, Michael,
>>>>
>>>>> Hello,
>>>>>
>>>>> The following changes since commit 3da0e5750b24a9491058df6126c7be577a276c09:
>>>>>
>>>>>   arm: factorize relocate_code routine (2013-05-30 20:24:38 +0200)
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>>   git://git.denx.de/u-boot-ti.git master
>>>>>
>>>>> for you to fetch changes up to 80dd596d1b442ff53dbeb33eccdb8efd2283be79:
>>>>>
>>>>
>>>> [snip]
>>>>
>>>>> Michael Trimarchi (1):
>>>>>       usb: omap: ulpi: fix ulpi transceiver access
>>>>
>>>> [snip]
>>>>
>>>>>  drivers/usb/ulpi/omap-ulpi-viewport.c              |   40 +-
>>>>
>>>> [snip]
>>>>
>>>> I just made a clean clone of u-boot-ti/master, manually applied the
>>>> changes to the ehci files, added my board files and made a build.
>>>> Everything seems to work fine, but I see an error message regarding
>>>> ULPI reset that was not present before, and obviously it is due to
>>>> Michael's changes:
>>>>
>>>> SOM5_EVB # usb start
>>>> (Re)start USB...
>>>> USB0:   ULPI: ulpi_reset: failed writing reset bit
>>>
>>> Let me understand. The patch is wrong because you have a problem now.
>>> The old code was not sending any write command so any ulpi_reset and the
>>> test condition was wrong.
>> Right.
>>
>>>
>>>> USB EHCI 1.00
>>>> scanning bus 0 for devices... 6 USB Device(s) found
>>>>        scanning usb for storage devices... 3 Storage Device(s) found
>>>>        scanning usb for ethernet devices... 1 Ethernet Device(s) found
>>>> SOM5_EVB # usb tree
>>>> USB device tree:
>>>>   1  Hub (480 Mb/s, 0mA)
>>>>   |  u-boot EHCI Host Controller
>>>>   |
>>>>   +-2  Mass Storage (480 Mb/s, 200mA)
>>>>   |    FSC                  MEMORYBIRD USB2      C157040817120315AA
>>>>   |
>>>>   +-3  Hub (480 Mb/s, 2mA)
>>>>   | |
>>>>   | +-4  Mass Storage (480 Mb/s, 96mA)
>>>>   | |    Generic Ultra Fast Media Reader 000000264001
>>>>   | |
>>>>   | +-5  Mass Storage (480 Mb/s, 100mA)
>>>>   |      USB Flash Drive 531C43B21928F11F
>>>>   |
>>>>   +-6  Vendor specific (480 Mb/s, 500mA)
>>>>
>>>> SOM5_EVB #
>>>>
>>>> Otherwise everything is OK, the device on the ULPI port is working
>>>> (it is #2 above). It is now late and I shall investigate in detail
>>>> tomorrow, this is just an early warning ;)
>>>
>>> Can you test the attach patch? Yes I know it is not inline but I will
>>> send inline tomorrow and I have done changing the old one. 
>>> I was thinking port number was starting from 1 but I have done a quick check
>>> on soft_reset of omap and it is starting from 0
>>
>> Just tested on a OMAP5430 custom board. Everything is OK, PHY soft reset
>> passes. My ULPI PHY is on port 0, and with the previous version the insreg05
>> bit 31 remained stuck at 1, producing this error. Now when we write 1 to the
>> port field instead of 0, everything is fine. So
>>
>> Tested-by: Lubomir Popov <lpopov@mm-sol.com>
>>
>> While testing, I however encountered another issue (not related to this patch,
>> take it easy ;-) ): one particular USB flash stick, connected to the ULPI port,
>> does systematically (100%) not get detected upon the first 'usb start' command
>> after power-on; subsequent usb start/reset commands detect it alright. I have
>> experimented a bit with some delays (assuming that it is some sort of timing
>> problem), but without success. Other sticks are OK. Removing the call to
>> omap_ehci_soft_phy_reset() (which calls ulpi_reset() and the viewport stuff)
>> does not change anything.
>>
>> I'm currently at work, where I have other obligations and cannot spend much
>> time for U-Boot. Therefore, if somebody could share any experience on this
>> subject, please let me know.
>>
>> One thing that perhaps I should clarify: my ULPI PHY is the TI part TUSB1210;
>> on the other hand, TI themselves recommend PHYs by SMSC, at least for the OMAP4.
>> This was not the case for OMAP5, but who knows...
>>
>> Thanks,
>> Lubo
>>
>>>
>>> Michael
>>>
>>>>
>>>> Best regards,
>>>> Lubo
>>>>
> 
> This patch fix the omap access to the transceiver
> configuration registers using the ulpi bus. As reported by
> the documentation the bit31 is used only to check if the
> transaction is done or still running and the reading and
> writing operation have different offset and have different
> values. What we need to do at the end of a transaction is
> leave the bus in done state. Anyway an error using the ulpi
> omap register is not recoverable so any error give out the
> usage of this interface.
> 
> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
> ---
> - changes for V4
>   * port_num start from 0 so we need to take in account when
>   we use the omap access function.
>   * Fix the read function
> - changes for V3
>   Fix patch subject
> - changes for V2
>   Fix commit message
> ---
>  drivers/usb/ulpi/omap-ulpi-viewport.c |   42 +++++++--------------------------
>  1 file changed, 9 insertions(+), 33 deletions(-)
> 
> diff --git a/drivers/usb/ulpi/omap-ulpi-viewport.c b/drivers/usb/ulpi/omap-ulpi-viewport.c
> index 3c1ea1a..4db7fa4 100644
> --- a/drivers/usb/ulpi/omap-ulpi-viewport.c
> +++ b/drivers/usb/ulpi/omap-ulpi-viewport.c
> @@ -22,18 +22,19 @@
>  #include <asm/io.h>
>  #include <usb/ulpi.h>
>  
> -#define OMAP_ULPI_WR_OPSEL	(3 << 21)
> -#define OMAP_ULPI_ACCESS	(1 << 31)
> +#define OMAP_ULPI_WR_OPSEL	(2 << 22)
> +#define OMAP_ULPI_RD_OPSEL	(3 << 22)
> +#define OMAP_ULPI_START		(1 << 31)
>  
>  /*
> - * Wait for the ULPI Access to complete
> + * Wait for having ulpi in done state
>   */
>  static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
>  {
>  	int timeout = CONFIG_USB_ULPI_TIMEOUT;
>  
>  	while (--timeout) {
> -		if ((readl(ulpi_vp->viewport_addr) & mask))
> +		if (!(readl(ulpi_vp->viewport_addr) & mask))
>  			return 0;
>  
>  		udelay(1);
> @@ -43,40 +44,15 @@ static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
>  }
>  
>  /*
> - * Wake the ULPI PHY up for communication
> - *
> - * returns 0 on success.
> - */
> -static int ulpi_wakeup(struct ulpi_viewport *ulpi_vp)
> -{
> -	int err;
> -
> -	if (readl(ulpi_vp->viewport_addr) & OMAP_ULPI_ACCESS)
> -		return 0; /* already awake */
> -
> -	writel(OMAP_ULPI_ACCESS, ulpi_vp->viewport_addr);
> -
> -	err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
> -	if (err)
> -		debug("ULPI wakeup timed out\n");
> -
> -	return err;
> -}
> -
> -/*
>   * Issue a ULPI read/write request
>   */
>  static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
>  {
>  	int err;
>  
> -	err = ulpi_wakeup(ulpi_vp);
> -	if (err)
> -		return err;
> -
>  	writel(value, ulpi_vp->viewport_addr);
>  
> -	err = ulpi_wait(ulpi_vp, OMAP_ULPI_ACCESS);
> +	err = ulpi_wait(ulpi_vp, OMAP_ULPI_START);
>  	if (err)
>  		debug("ULPI request timed out\n");
>  
> @@ -85,7 +61,7 @@ static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
>  
>  int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
>  {
> -	u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
> +	u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
>  			OMAP_ULPI_WR_OPSEL | ((u32)reg << 16) | (value & 0xff);
>  
>  	return ulpi_request(ulpi_vp, val);
> @@ -94,8 +70,8 @@ int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
>  u32 ulpi_read(struct ulpi_viewport *ulpi_vp, u8 *reg)
>  {
>  	int err;
> -	u32 val = ((ulpi_vp->port_num & 0xf) << 24) |
> -			 OMAP_ULPI_WR_OPSEL | ((u32)reg << 16);
> +	u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
> +			 OMAP_ULPI_RD_OPSEL | ((u32)reg << 16);
This fix (OMAP_ULPI_START | ...) to ulpi_read() is correct. It does not however solve
my issue :( . As I noted, with or without calling the soft reset, behavior with this
particular USB stick is the same. 
>  
>  	err = ulpi_request(ulpi_vp, val);
>  	if (err)
> 
BR,
Lubo

  reply	other threads:[~2013-06-10 10:57 UTC|newest]

Thread overview: 324+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-07 19:19 [U-Boot] Please pull u-boot-ti/master Tom Rini
2013-06-08 20:43 ` Lubomir Popov
2013-06-09  8:07   ` Igor Grinberg
2013-06-09 21:37   ` Michael Trimarchi
2013-06-10  8:54     ` Lubomir Popov
2013-06-10  9:55       ` Michael Trimarchi
2013-06-10 10:57         ` Lubomir Popov [this message]
2013-06-10 14:51         ` Albert ARIBAUD
2013-06-10 15:37         ` Tom Rini
2013-06-08 21:57 ` Albert ARIBAUD
2013-06-10 12:44   ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2015-01-30 14:20 Tom Rini
2015-02-02 19:00 ` Tom Rini
2014-12-05 14:53 Tom Rini
2014-12-08 21:41 ` Tom Rini
2014-11-05 21:33 Tom Rini
2014-11-10 21:29 ` Tom Rini
2014-10-23 17:17 Tom Rini
2014-10-27 14:32 ` Tom Rini
2014-09-18 12:34 Tom Rini
2014-09-21 16:45 ` Albert ARIBAUD
2014-09-04 20:48 Tom Rini
2014-09-08 22:19 ` Albert ARIBAUD
2014-08-25 19:18 Tom Rini
2014-08-29 17:48 ` Tom Rini
2014-07-26  1:29 Tom Rini
2014-07-29 11:55 ` Albert ARIBAUD
2014-06-19 22:03 Tom Rini
2014-07-01 13:43 ` Albert ARIBAUD
2014-06-06 21:56 Tom Rini
2014-06-08  7:45 ` Albert ARIBAUD
2014-05-23 23:52 Tom Rini
2014-05-24  8:39 ` Albert ARIBAUD
2014-05-14  1:36 Tom Rini
2014-05-16 15:20 ` Albert ARIBAUD
2014-04-18 13:24 Tom Rini
2014-04-21 16:54 ` Karicheri, Muralidharan
2014-04-21 19:32 ` Albert ARIBAUD
2014-03-31 15:21 Tom Rini
2014-04-02  5:12 ` Albert ARIBAUD
2014-03-12 20:05 Tom Rini
2014-03-12 20:23 ` Tom Rini
2014-03-13 15:56   ` Albert ARIBAUD
2014-03-06 15:45 Tom Rini
2014-03-06 16:05 ` Enric Balletbo Serra
2014-03-06 16:24   ` Tom Rini
2014-03-06 16:22 ` Tom Rini
2014-03-07 13:24   ` Albert ARIBAUD
2014-03-04 19:19 Tom Rini
2014-03-05  8:51 ` Albert ARIBAUD
2014-02-21 19:16 Tom Rini
2014-02-24 12:29 ` Albert ARIBAUD
2014-01-24 20:20 Tom Rini
2014-01-29 13:07 ` Albert ARIBAUD
2014-01-29 15:07 ` Albert ARIBAUD
2014-01-08 13:33 Tom Rini
2014-01-08 22:06 ` Albert ARIBAUD
2013-12-18 20:07 Tom Rini
2013-12-19 13:14 ` Dan Murphy
2013-12-19 14:23   ` Tom Rini
2013-12-04 22:06 Tom Rini
2013-12-06  8:33 ` Albert ARIBAUD
2013-12-06  9:20   ` Yegor Yefremov
2013-12-06 10:08     ` Stefan Roese
2013-12-06 10:11       ` Yegor Yefremov
2013-12-06 12:06       ` Albert ARIBAUD
2013-12-06 13:38         ` Stefan Roese
2013-12-06 14:23           ` Albert ARIBAUD
2013-11-12 14:50 Tom Rini
2013-11-12 15:03 ` Tom Rini
2013-10-07 11:44 Tom Rini
2013-10-07 16:17 ` Albert ARIBAUD
2013-09-21 12:06 Tom Rini
2013-10-02  7:39 ` Albert ARIBAUD
2013-08-28 18:25 Tom Rini
2013-09-04 15:14 ` Albert ARIBAUD
2013-08-16 13:39 Tom Rini
2013-07-30 13:29 Tom Rini
2013-07-30 20:07 ` Albert ARIBAUD
2013-07-30  2:21 Tom Rini
2013-07-30  9:45 ` Stefan Roese
2013-07-30 13:38   ` Tom Rini
2013-07-30 13:37 ` Tom Rini
2013-07-02 20:05 Tom Rini
2013-07-04 12:10 ` Albert ARIBAUD
2013-06-18 15:25 Tom Rini
2013-06-19 23:18 ` Albert ARIBAUD
2013-06-10 15:38 Tom Rini
2013-06-10 17:11 ` Albert ARIBAUD
2013-06-05 12:54 Tom Rini
2013-06-05 15:00 ` Albert ARIBAUD
2013-05-10 13:16 Tom Rini
2013-05-11 20:54 ` Albert ARIBAUD
2013-04-12 20:47 Tom Rini
2013-04-13  8:36 ` Albert ARIBAUD
2013-04-10 20:07 Tom Rini
2013-04-10 21:28 ` Albert ARIBAUD
2013-04-08 16:33 Tom Rini
2013-04-09  5:47 ` Albert ARIBAUD
2013-03-22 20:18 Tom Rini
2013-03-24 16:48 ` Albert ARIBAUD
2013-03-24 16:51   ` Tom Rini
2013-03-24 17:57     ` Albert ARIBAUD
2013-03-11 18:25 Tom Rini
2013-03-12  7:03 ` Nikita Kiryanov
2013-03-12  7:14   ` Albert ARIBAUD
2013-03-12 12:50     ` Tom Rini
2013-03-12 12:49   ` Tom Rini
2013-03-12 14:13 ` Albert ARIBAUD
2013-02-19 16:14 Tom Rini
2013-02-21 17:52 ` R Sricharan
2013-02-21 17:57   ` Tom Rini
2013-02-21 18:02     ` R Sricharan
2013-02-21 21:53 ` Albert ARIBAUD
2013-02-07 19:19 Tom Rini
2013-02-08 18:50 ` Albert ARIBAUD
2013-02-04 20:13 Tom Rini
2013-02-07 19:18 ` Tom Rini
2013-01-25 22:13 Tom Rini
2013-01-26 10:55 ` Albert ARIBAUD
2013-01-26 12:22   ` Javier Martinez Canillas
2013-01-11  0:59 Tom Rini
2013-01-11 17:23 ` Albert ARIBAUD
2012-12-10 20:18 Tom Rini
2013-01-08 13:12 ` Albert ARIBAUD
2012-11-02 17:08 Tom Rini
2012-11-03  9:58 ` Albert ARIBAUD
2012-10-25 18:49 Tom Rini
2012-10-26  5:37 ` Albert ARIBAUD
2012-10-23 18:19 Tom Rini
2012-10-25 18:34 ` Tom Rini
2012-10-02  0:12 Tom Rini
2012-10-03  0:01 ` Albert ARIBAUD
2012-09-20 23:52 Tom Rini
2012-09-21 21:07 ` Albert ARIBAUD
2012-09-21 21:17   ` Tom Rini
2012-09-05  0:41 Tom Rini
2012-09-05 20:59 ` Albert ARIBAUD
2012-08-24 23:40 Tom Rini
2012-08-25 11:30 ` Albert ARIBAUD
2012-08-07 17:08 Tom Rini
2012-08-13 23:14 ` Albert ARIBAUD
2012-08-03 16:16 Tom Rini
2012-08-05 20:26 ` Albert ARIBAUD
2012-07-09 18:43 Tom Rini
2012-07-09 20:38 ` Albert ARIBAUD
2012-07-05 16:18 Tom Rini
2012-07-05 21:31 ` Albert ARIBAUD
2012-05-25 15:02 Tom Rini
2012-06-10 21:39 ` Albert ARIBAUD
2012-05-14 21:26 Tom Rini
2012-05-15  6:29 ` Albert ARIBAUD
2012-05-03 15:53 Tom Rini
2012-05-08 15:11 ` Albert ARIBAUD
2012-05-08 17:08   ` Tom Rini
2012-04-23 17:19 Tom Rini
2012-04-25  7:06 ` Albert ARIBAUD
2012-04-10 17:57 Tom Rini
2012-04-16 12:46 ` Albert ARIBAUD
2012-03-28 21:54 Tom Rini
2012-03-29  6:21 ` Albert ARIBAUD
2012-03-29 18:01 ` Tom Rini
2012-03-29 23:51   ` Albert ARIBAUD
2012-03-30  0:58     ` Tom Rini
2012-03-30  5:35       ` Albert ARIBAUD
2012-03-30 14:16         ` Tom Rini
2012-03-26 22:40 Tom Rini
2012-03-27 20:07 ` Albert ARIBAUD
2012-03-19 18:29 Tom Rini
2012-03-26 17:36 ` Tom Rini
2012-03-26 20:45   ` Albert ARIBAUD
2012-03-26 21:09     ` Albert ARIBAUD
2012-03-05 23:03 Tom Rini
2012-03-06  7:29 ` Albert ARIBAUD
2012-03-06 14:28   ` Tom Rini
2012-03-06 20:16   ` Wolfgang Denk
2012-03-07  7:22     ` Albert ARIBAUD
2012-02-23 16:01 Tom Rini
2012-02-27 20:17 ` Albert ARIBAUD
2012-02-14 18:00 Tom Rini
2012-02-17  8:02 ` Albert ARIBAUD
2012-02-10 22:56 Tom Rini
2012-02-12  9:10 ` Albert ARIBAUD
2012-02-02 18:10 Tom Rini
2012-02-03 18:49 ` Albert ARIBAUD
2012-01-25 21:34 Tom Rini
2012-01-13 19:33 Tom Rini
2012-01-16  7:39 ` Albert ARIBAUD
2012-01-04 16:19 Tom Rini
2012-01-12 22:06 ` Albert ARIBAUD
2011-12-13 18:58 Tom Rini
2011-12-05 23:52 Tom Rini
2011-12-06 22:40 ` Tom Rini
2011-12-06 22:54   ` Albert ARIBAUD
2011-11-29 22:53 Tom Rini
2011-12-05 17:07 ` Albert ARIBAUD
2011-11-16 15:24 s-paulraj at ti.com
2011-11-17 13:55 ` Albert ARIBAUD
2011-11-17 14:56   ` Kumar Gala
2011-11-15 15:11 s-paulraj at ti.com
2011-11-15 21:27 ` Albert ARIBAUD
2011-11-09 22:04 s-paulraj at ti.com
2011-11-10 15:36 ` Albert ARIBAUD
2011-11-08 14:05 s-paulraj at ti.com
2011-11-08 19:41 ` Albert ARIBAUD
2011-11-04 17:46 s-paulraj at ti.com
2011-11-03 20:11 s-paulraj at ti.com
2011-11-03 21:30 ` Albert ARIBAUD
2011-11-03 16:54 s-paulraj at ti.com
2011-11-03 17:24 ` Luca Ceresoli
2011-11-03 17:52   ` Paulraj, Sandeep
2011-11-03 18:05     ` Wolfgang Denk
2011-11-03 18:17     ` Albert ARIBAUD
2011-11-03 18:23       ` Tom Rini
2011-11-03 20:13       ` Paulraj, Sandeep
2011-11-03 21:06         ` Albert ARIBAUD
2011-11-03 21:11           ` Paulraj, Sandeep
2011-11-03 21:15             ` Albert ARIBAUD
2011-11-03 18:26   ` Tom Rini
2011-11-03 19:46     ` Albert ARIBAUD
2011-11-03 20:04   ` Tom Rini
2011-10-21 17:00 s-paulraj at ti.com
2011-10-21 18:12 ` Albert ARIBAUD
2011-10-21 19:57   ` Dirk Behme
2011-10-21 20:04     ` Paulraj, Sandeep
2011-10-21 20:09       ` Albert ARIBAUD
2011-10-21 21:00         ` Tom Rini
2011-10-21 21:48           ` Albert ARIBAUD
2011-09-09 20:35 s-paulraj at ti.com
2011-09-09 21:26 ` Albert ARIBAUD
2011-09-10  6:00   ` Albert ARIBAUD
2011-09-10 19:00     ` Paulraj, Sandeep
2011-09-10  6:11 ` Albert ARIBAUD
2011-09-08 15:16 s-paulraj at ti.com
2011-09-08 15:54 ` Albert ARIBAUD
2011-09-08 16:52   ` Paulraj, Sandeep
2011-09-08 17:20     ` Albert ARIBAUD
2011-09-08 15:58 ` Albert ARIBAUD
2011-09-04  2:35 s-paulraj at ti.com
2011-07-21 13:36 s-paulraj at ti.com
2011-07-23 13:13 ` Albert ARIBAUD
2011-07-18 14:07 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2011-06-09 12:58 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2011-06-13 10:23 ` Albert ARIBAUD
2011-04-29 20:39 s-paulraj at ti.com
2011-05-07 10:13 ` Albert ARIBAUD
2011-05-09  5:49   ` Prafulla Wadaskar
2011-04-28 19:26 s-paulraj at ti.com
2011-04-28 19:38 ` Albert ARIBAUD
2011-04-29 20:39   ` Paulraj, Sandeep
2011-04-20 15:16 s-paulraj at ti.com
2011-04-20 18:43 ` Albert ARIBAUD
2011-04-19 14:02 s-paulraj at ti.com
2011-04-20  8:58 ` Albert ARIBAUD
2011-04-18 23:33 s-paulraj at ti.com
2011-04-19  5:41 ` Albert ARIBAUD
2011-04-18 23:18 s-paulraj at ti.com
2010-12-30 16:36 s-paulraj at ti.com
2011-01-05 20:40 ` Albert ARIBAUD
2010-12-28 23:39 s-paulraj at ti.com
2010-12-28 23:49 ` Albert ARIBAUD
2010-12-28 23:59   ` Paulraj, Sandeep
2010-12-29  0:14 ` Albert ARIBAUD
2010-12-14  2:45 s-paulraj at ti.com
2010-12-17  9:08 ` Wolfgang Denk
2010-12-11 15:54 s-paulraj at ti.com
2010-12-13 22:52 ` Wolfgang Denk
2010-11-30 16:13 s-paulraj at ti.com
2010-11-30 20:26 ` Wolfgang Denk
2010-11-30  3:28 s-paulraj at ti.com
2010-11-30 20:18 ` Wolfgang Denk
2010-11-29  1:04 s-paulraj at ti.com
2010-11-29 20:28 ` Paulraj, Sandeep
2010-11-19 21:31 s-paulraj at ti.com
2010-11-24 18:17 ` Wolfgang Denk
2010-11-04 20:35 s-paulraj at ti.com
2010-11-12 23:20 ` Wolfgang Denk
2010-10-14 21:31 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2010-10-17 18:15 ` Wolfgang Denk
2010-09-28 18:03 s-paulraj at ti.com
2010-09-28 20:34 ` Wolfgang Denk
2010-09-09  8:29 s-paulraj at ti.com
2010-09-09 17:55 ` Wolfgang Denk
2010-08-12 18:23 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2010-08-12 21:09 ` Wolfgang Denk
2010-08-06 16:25 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2010-08-10 20:21 ` Wolfgang Denk
2010-07-28 19:25 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2010-08-03 21:37 ` Wolfgang Denk
2010-08-03 22:03   ` Steve Sakoman
2010-08-03 22:21     ` Wolfgang Denk
2010-08-03 22:36       ` Steve Sakoman
2010-07-06  0:29 s-paulraj at ti.com
2010-07-14 19:12 ` Wolfgang Denk
2010-06-10 16:12 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2010-06-17 20:20 ` Wolfgang Denk
2010-06-17 20:23   ` Paulraj, Sandeep
2010-06-07 21:27 s-paulraj at ti.com
2010-06-08 16:49 ` Tom Rix
2010-06-01 14:03 s-paulraj at ti.com
2010-02-24  5:01 [U-Boot] Please pull u-boot-ti/master s-paulraj at ti.com
2010-02-18  2:45 s-paulraj at ti.com
2010-02-23  3:09 ` Paulraj, Sandeep
2010-02-23 15:55   ` Tom
2010-02-23 16:07     ` Paulraj, Sandeep
2010-02-23 20:05       ` Tom
2010-02-23 20:53   ` Tom
2010-02-08 19:28 s-paulraj at ti.com
2010-02-12 14:33 ` Tom
2010-02-20 22:27 ` Tom
2010-02-08 17:01 s-paulraj at ti.com
2010-02-12 14:31 ` Tom
2010-01-25 14:18 s-paulraj at ti.com
2009-12-12 17:20 s-paulraj at ti.com
2009-12-12 18:08 ` Tom
2009-12-13 15:32 ` Tom
2009-11-21 23:27 s-paulraj at ti.com
2009-11-23 21:33 ` Tom
2009-11-23 22:08   ` Paulraj, Sandeep
2009-11-24 15:08     ` Tom
2009-11-24 15:21       ` Paulraj, Sandeep
2009-11-25 14:11 ` Tom
2009-09-29 15:50 [U-Boot] Please Pull u-boot-ti/master s-paulraj at ti.com
2009-09-30  1:32 ` Tom

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=51B5B12D.6010708@mm-sol.com \
    --to=lpopov@mm-sol.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).