[U-Boot] OMAP3 rom API

2014-03-26 Thread Gilles Chanteperdrix
Hi, I see in u-boot sources that the L2 cache is enabled and invalidated on OMAP3 using secure monitor calls. Where can I find the documentation for these calls? I see that the corresponding information is available for instance for DM8148 in its TRM, but not in OMAP3530 TRM. I am interested

Re: [U-Boot] Need FTP client support in U-Boot

2014-10-30 Thread Gilles Chanteperdrix
On Wed, Oct 29, 2014 at 03:49:15PM +0100, Wolfgang Denk wrote: > Dear Madhu, > > In message > <23c3598d8b87452eb6a3d1f52afb8...@sg2pr01mb0394.apcprd01.prod.exchangelabs.com> > you wrote: > > > > We are looking for FTP client command in U-boot commands, So that, we > > can boot the O.S kernel-im

Re: [U-Boot] Need FTP client support in U-Boot

2014-11-01 Thread Gilles Chanteperdrix
On Fri, Oct 31, 2014 at 12:35:18PM +0400, Antony Pavlov wrote: > On Thu, 30 Oct 2014 08:08:44 +0100 > Gilles Chanteperdrix wrote: > > > On Wed, Oct 29, 2014 at 03:49:15PM +0100, Wolfgang Denk wrote: > > > Dear Madhu, > > > > > > In message > > &

Re: [U-Boot] Need FTP client support in U-Boot

2014-11-01 Thread Gilles Chanteperdrix
On Sat, Nov 01, 2014 at 10:50:06AM +0100, Gilles Chanteperdrix wrote: > On Fri, Oct 31, 2014 at 12:35:18PM +0400, Antony Pavlov wrote: > > On Thu, 30 Oct 2014 08:08:44 +0100 > > Gilles Chanteperdrix wrote: > > > > > On Wed, Oct 29, 2014 at 03:49:15PM +0100, Wol

Re: [U-Boot] Need FTP client support in U-Boot

2014-11-02 Thread Gilles Chanteperdrix
On Sat, Nov 01, 2014 at 09:17:05AM -0600, Simon Glass wrote: > Hi Giles, > > On 1 November 2014 04:10, Gilles Chanteperdrix > wrote: > > > > On Sat, Nov 01, 2014 at 10:50:06AM +0100, Gilles Chanteperdrix wrote: > > > On Fri, Oct 31, 2014 at 12:35:18PM +0400, An

[U-Boot] tftp booting the panda board

2011-05-09 Thread Gilles Chanteperdrix
Hi, I am trying to tftpboot the panda board, this basically works, but I still have some issues. The panda board uses an SMSC95xx chip, and so requires USB2.0 Using the u-boot git head, we have support for network adapters over USB, and the patches from Simon Glass, we get support for the ether

[U-Boot] [PATCH 3/3] omap4_panda: add support for EHCI

2011-05-09 Thread Gilles Chanteperdrix
Signed-off-by: Gilles Chanteperdrix --- board/ti/panda/Makefile |4 ++- board/ti/panda/ehci-panda.c | 59 +++ 2 files changed, 62 insertions(+), 1 deletions(-) create mode 100644 board/ti/panda/ehci-panda.c diff --git a/board/ti/panda/Makefile

[U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-09 Thread Gilles Chanteperdrix
Copied from omap3. Signed-off-by: Gilles Chanteperdrix --- arch/arm/cpu/armv7/omap4/Makefile |1 + arch/arm/cpu/armv7/omap4/gpio.c| 169 arch/arm/include/asm/arch-omap4/gpio.h | 93 + 3 files changed, 263 insertions(+), 0

[U-Boot] [PATCH 2/3] omap4: add support for EHCI

2011-05-09 Thread Gilles Chanteperdrix
As board may need some specific support, implement inner functions to be called by the boards implementaions of ehci_hcd_start, ehci_hcd_stop. Signed-off-by: Gilles Chanteperdrix --- arch/arm/include/asm/arch-omap4/ehci.h |8 + drivers/usb/host/Makefile |1 + drivers/usb

Re: [U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-10 Thread Gilles Chanteperdrix
On 05/10/2011 04:08 PM, John Rigby wrote: > On Mon, May 9, 2011 at 11:04 PM, Gilles Chanteperdrix > wrote: >> Copied from omap3. > I have not looked at the code but if it truly is a copy (other than > some base addresses) is there a way to share with omap3? Yes, probably. The

Re: [U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-12 Thread Gilles Chanteperdrix
On 05/10/2011 04:08 PM, John Rigby wrote: > On Mon, May 9, 2011 at 11:04 PM, Gilles Chanteperdrix > wrote: >> Copied from omap3. > I have not looked at the code but if it truly is a copy (other than > some base addresses) is there a way to share with omap3? I am going to f

Re: [U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-12 Thread Gilles Chanteperdrix
On 05/13/2011 07:31 AM, John Rigby wrote: >> >> I am going to fix this and resend another round of patches. But, it this >> the only thing I should fix? >> > My comment was not a complete review only a comment about sharing. I got that, I am just trying to get more comments before I send another r

Re: [U-Boot] [PATCH 2/3] omap4: add support for EHCI

2011-05-18 Thread Gilles Chanteperdrix
On 05/18/2011 09:50 PM, John Rigby wrote: > On Mon, May 9, 2011 at 3:04 PM, Gilles Chanteperdrix > wrote: > >> diff --git a/drivers/usb/host/ehci-omap4.c b/drivers/usb/host/ehci-omap4.c >> new file mode 100644 >> index 000..19cd286 >> --- /dev/null >&

Re: [U-Boot] omap4 EHCI support and SMSC95xx support on panda

2011-05-26 Thread Gilles Chanteperdrix
On 05/26/2011 10:52 PM, Peter Meerwald wrote: > Hello, > > I am trying to get tftp working on the pandaboard; I am testing Simon's v6 > patch series and Gilles EHCI patches > > doc/README.sub claims that the SMSC driver supports usbethaddr, I do not > see this > > smsc95xx_init_mac_address() f

Re: [U-Boot] TFTP support for Pandaboard (OMAP4430 Cortex-A9 Dual core)

2011-06-07 Thread Gilles Chanteperdrix
On 06/06/2011 08:07 PM, Peter Meerwald wrote: > >> 1. I need to boot my Pandaboard via TFTP. As long as I see this is >> not yet possible, since in u-boot\include\configs\omap4_panda.h >> there is: >> /* Disabled commands */ >> #undef CONFIG_CMD_NET >> #undef CONFIG_CMD_NFS > > a couple of patche

Re: [U-Boot] TFTP support for Pandaboard (OMAP4430 Cortex-A9 Dual core)

2011-06-07 Thread Gilles Chanteperdrix
On 06/07/2011 11:31 AM, Iordan Neshev wrote: > On 6/7/2011 10:53 AM, Gilles Chanteperdrix wrote: >> On 06/06/2011 08:07 PM, Peter Meerwald wrote: >>>> 1. I need to boot my Pandaboard via TFTP. As long as I see this is >>>> not yet possible, since in u-boot\include

Re: [U-Boot] omap4 EHCI support and SMSC95xx support on panda

2011-06-22 Thread Gilles Chanteperdrix
On 06/22/2011 12:24 PM, kris.m wrote: > > Hi, > > I am trying to enable tftpboot on pandaboard and followed the steps and > applied Simon and Gilles patches. > But not able to get ethernet detected. I am using trace32 debugger to > directly init the RAM and othe peripherals and load u-boot. >

Re: [U-Boot] [PATCH RFC] OMAP5: uEVM: Enable USB EHCI functionality (preliminary, not tested)

2013-05-15 Thread Gilles Chanteperdrix
On 05/15/2013 05:55 PM, Lubomir Popov wrote: > Prerequisites: appropriate patches to the USB EHCI and Eth > drivers, and to the OMAP5 clock register definitions. Hi Lubomir, I have been trying to get the USB working on omap5 uEVM yesterday. In addition to your code, I added the changes necessa

Re: [U-Boot] [PATCH RFC] OMAP5: uEVM: Enable USB EHCI functionality (preliminary, not tested)

2013-05-15 Thread Gilles Chanteperdrix
On 05/16/2013 12:06 AM, Tom Rini wrote: > CONFIG_OMAP_EHCI_PHY2_RESET_GPIO. I'm looking around for the schematic > so I can try and find that out. There: https://www.svtronics.com/download/OMAP5uEVM_Spec_DOC-21163_REV0_4.pdf -- G

Re: [U-Boot] [PATCH RFC] OMAP5: uEVM: Enable USB EHCI functionality (preliminary, not tested)

2013-05-18 Thread Gilles Chanteperdrix
On 05/16/2013 10:39 AM, Lubomir Popov wrote: > Hi Gilles, > > On 16/05/13 01:31, Gilles Chanteperdrix wrote: >> On 05/15/2013 05:55 PM, Lubomir Popov wrote: >> >>> Prerequisites: appropriate patches to the USB EHCI and Eth >>> drivers, and to the OMAP5 c

Re: [U-Boot] [PATCH RFC] OMAP5: uEVM: Enable USB EHCI functionality (preliminary, not tested)

2013-05-18 Thread Gilles Chanteperdrix
On 05/18/2013 07:07 PM, Tom Rini wrote: > On 05/18/2013 11:25 AM, Gilles Chanteperdrix wrote: > >> I was working with u-boot-ti master, applied all the patches, and >> it still does not seem to work. I just tried the u-boot master >> branch but it fails to compile for

Re: [U-Boot] [PATCH RFC] OMAP5: uEVM: Enable USB EHCI functionality (preliminary, not tested)

2013-05-18 Thread Gilles Chanteperdrix
On 05/18/2013 09:13 PM, Lubomir Popov wrote: > Hi Gilles, > >> On 05/16/2013 10:39 AM, Lubomir Popov wrote: >> >>> Hi Gilles, >>> >>> On 16/05/13 01:31, Gilles Chanteperdrix wrote: >>>> On 05/15/2013 05:55 PM, Lubomir Popov wrote: >>

Re: [U-Boot] [PATCH RFC] OMAP5: uEVM: Enable USB EHCI functionality (preliminary, not tested)

2013-05-18 Thread Gilles Chanteperdrix
On 05/18/2013 09:13 PM, Lubomir Popov wrote: > Hi Gilles, > >> On 05/16/2013 10:39 AM, Lubomir Popov wrote: >> >>> Hi Gilles, >>> >>> On 16/05/13 01:31, Gilles Chanteperdrix wrote: >>>> On 05/15/2013 05:55 PM, Lubomir Popov wrote: >>

[U-Boot] Working on u-boot on panda board.

2011-03-17 Thread Gilles Chanteperdrix
Hi, I would like to make some changes to u-boot on pandaboard. Sometimes in the past, in u-boot, I could "loadb" a new u-boot binary, then "go" to it, and the new version of u-boot would start. This was far from perfect, but it made testing small changes possible. This also works with the version

Re: [U-Boot] Working on u-boot on panda board.

2011-03-17 Thread Gilles Chanteperdrix
Aneesh V wrote: > Hi Gilles, > > On Thursday 17 March 2011 06:13 PM, Gilles Chanteperdrix wrote: >> Hi, >> >> I would like to make some changes to u-boot on pandaboard. Sometimes in >> the past, in u-boot, I could "loadb" a new u-boot binary, then &

Re: [U-Boot] Working on u-boot on panda board.

2011-03-17 Thread Gilles Chanteperdrix
Aneesh V wrote: > Hi Gilles, > > On Thursday 17 March 2011 06:13 PM, Gilles Chanteperdrix wrote: >> Hi, >> >> I would like to make some changes to u-boot on pandaboard. Sometimes in >> the past, in u-boot, I could "loadb" a new u-boot binary, then &

[U-Boot] [PATCH] wandboard: enable SATA with imx6q

2016-06-09 Thread Gilles Chanteperdrix
Signed-off-by: Gilles Chanteperdrix --- board/wandboard/wandboard.c | 6 ++ include/configs/wandboard.h | 12 2 files changed, 18 insertions(+) diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c index 4ce74cd..8340dd1 100644 --- a/board/wandboard

[U-Boot] 425, Sorry, invalid address given

2014-11-28 Thread Gilles Chanteperdrix
Hi, I get the error in the subject when trying and downloading u-boot on the ftp: ftp://ftp.denx.de/pub/u-boot/u-boot-2014.10.tar.bz2 Regards. -- Gilles. ___ U-Boot mailing list U-Boot@lists.denx.de http://

Re: [U-Boot] 425, Sorry, invalid address given

2014-11-28 Thread Gilles Chanteperdrix
On Fri, Nov 28, 2014 at 11:59:49PM +0100, Gilles Chanteperdrix wrote: > Hi, > > I get the error in the subject when trying and downloading u-boot on > the ftp: > > ftp://ftp.denx.de/pub/u-boot/u-boot-2014.10.tar.bz2 > > Regards. If you need to search in th