public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Issues in U-BOOT for OMAPL137
@ 2011-05-11  9:15 shilpa jadav
  2011-05-12  9:00 ` Nick Thompson
  0 siblings, 1 reply; 3+ messages in thread
From: shilpa jadav @ 2011-05-11  9:15 UTC (permalink / raw)
  To: u-boot

Hi ,
When i am trying to compile u-boot for omapL137 by issuing the following
command
make da830_omapl137_evm_config CROSS_COMPILE=arm-none-linux-gnueabi-

Our goal is to get USB up on the uboot . We are trying to boot OMAPL137 Evm
using USB mass storage device(Pen drive)
I have added the following macros in the /include/configs/da830_evm.h
(followed the instructions from CHANGELOG file)
 #define CONFIG_CMD_USB          1
    #define CONFIG_USB_STORAGE      1
    #define CONFIG_USB_EHCI
    #define CONFIG_USB_EHCI_IXP4XX      1
    #define CONFIG_EHCI_IS_TDI  1
    #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
    #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
    #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 1
    #define CONFIG_LEGACY_USB_INIT_SEQ      1

This is the error i am seeing consistently.

make[1]: Leaving directory
`/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/musb'
make -C drivers/usb/host/
make[1]: Entering directory
`/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/host'
make[1]: *** No rule to make target `.depend', needed by `libusb_host.a'.
Stop.
make[1]: Leaving directory
`/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/host'
make: *** [drivers/usb/host/libusb_host.a] Error 2

Please help us solving this issue as this is very critical for our
development,
'

thanks
Shilpa

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] Issues in U-BOOT for OMAPL137
  2011-05-11  9:15 [U-Boot] Issues in U-BOOT for OMAPL137 shilpa jadav
@ 2011-05-12  9:00 ` Nick Thompson
       [not found]   ` <BANLkTik_HieausoTx-LnUP4wO+_f+JuFDw@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Nick Thompson @ 2011-05-12  9:00 UTC (permalink / raw)
  To: u-boot

On 11/05/11 10:15, shilpa jadav wrote:
> Hi ,
> When i am trying to compile u-boot for omapL137 by issuing the following
> command
> make da830_omapl137_evm_config CROSS_COMPILE=arm-none-linux-gnueabi-
> 
> Our goal is to get USB up on the uboot . We are trying to boot OMAPL137 Evm
> using USB mass storage device(Pen drive)
> I have added the following macros in the /include/configs/da830_evm.h
> (followed the instructions from CHANGELOG file)
>  #define CONFIG_CMD_USB          1
>     #define CONFIG_USB_STORAGE      1
>     #define CONFIG_USB_EHCI
>     #define CONFIG_USB_EHCI_IXP4XX      1
>     #define CONFIG_EHCI_IS_TDI  1
>     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
>     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
>     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 1
>     #define CONFIG_LEGACY_USB_INIT_SEQ      1
> 
> This is the error i am seeing consistently.
> 
> make[1]: Leaving directory
> `/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/musb'
> make -C drivers/usb/host/
> make[1]: Entering directory
> `/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/host'
> make[1]: *** No rule to make target `.depend', needed by `libusb_host.a'.
> Stop.
> make[1]: Leaving directory
> `/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/host'
> make: *** [drivers/usb/host/libusb_host.a] Error 2
> 
> Please help us solving this issue as this is very critical for our
> development

This u-boot version (from the DaVinci-PSP) is quite old now (2009.08)
and, I believe, its da830/l137 code was never added to the community
tree: community support started in Nov 2009 and USB support was added
in Dec 2009. As such it can't be supported here.

As mentioned da830 EVM is supported by the community tree and I would
encourage you to used the latest release from
git://git.denx.de/u-boot.git or http://git.denx.de/u-boot.git

You can download snapshots, with a browser, from:
http://git.denx.de/?p=u-boot.git;a=summary

Nick.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] Issues in U-BOOT for OMAPL137
       [not found]   ` <BANLkTik_HieausoTx-LnUP4wO+_f+JuFDw@mail.gmail.com>
@ 2011-05-16  8:44     ` Nick Thompson
  0 siblings, 0 replies; 3+ messages in thread
From: Nick Thompson @ 2011-05-16  8:44 UTC (permalink / raw)
  To: u-boot

Please don't top post, it really breaks up the flow of the conversation
when people look at it later on. And please keep the list on CC.

On 13/05/11 06:31, shilpa jadav wrote:
> Hi,
> 
>    I tried latest U-BOOT release from
> git://git.denx.de/u-boot.git or http://git.denx.de/u-boot.git
> 
> I am unable to compile it, i think da830/omapl137 support is not their in
> u-boot. I got the error as mentioned below when i give the command
> 
> u-boot# make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi-
> da830_omapl137_config

The target you are after is da830evm_config. I know its there because
I'm the board maintainer ;-)

$ grep da830evm boards.cfg
da830evm                     arm         arm926ejs   da8xxevm            davinci        davinci

da830 is the name fo the omap-l137 which is not an OMAP but a Davinci
device. omap-l137 is its TI marketing name.

Nick.

> 
> I get the error as:---
> 
> awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg
>> .boards.depend
> make: *** No rule to make target `da830_omapl137_config'.  Stop.
> make: *** [da830_omapl137_config] Error 1
> 
> Can you tell the release which is supporting da830/omapl137 with USB
> support.
> 
> Thanks,
> Shilpa
> 
> 
> On Thu, May 12, 2011 at 2:30 PM, Nick Thompson <nick.thompson@ge.com> wrote:
> 
>> On 11/05/11 10:15, shilpa jadav wrote:
>>> Hi ,
>>> When i am trying to compile u-boot for omapL137 by issuing the following
>>> command
>>> make da830_omapl137_evm_config CROSS_COMPILE=arm-none-linux-gnueabi-
>>>
>>> Our goal is to get USB up on the uboot . We are trying to boot OMAPL137
>> Evm
>>> using USB mass storage device(Pen drive)
>>> I have added the following macros in the /include/configs/da830_evm.h
>>> (followed the instructions from CHANGELOG file)
>>>  #define CONFIG_CMD_USB          1
>>>     #define CONFIG_USB_STORAGE      1
>>>     #define CONFIG_USB_EHCI
>>>     #define CONFIG_USB_EHCI_IXP4XX      1
>>>     #define CONFIG_EHCI_IS_TDI  1
>>>     #define CONFIG_EHCI_DESC_BIG_ENDIAN     1
>>>     #define CONFIG_EHCI_MMIO_BIG_ENDIAN     1
>>>     #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 1
>>>     #define CONFIG_LEGACY_USB_INIT_SEQ      1
>>>
>>> This is the error i am seeing consistently.
>>>
>>> make[1]: Leaving directory
>>>
>> `/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/musb'
>>> make -C drivers/usb/host/
>>> make[1]: Entering directory
>>>
>> `/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/host'
>>> make[1]: *** No rule to make target `.depend', needed by `libusb_host.a'.
>>> Stop.
>>> make[1]: Leaving directory
>>>
>> `/home/dataway/linux_bkup/kalyan/omapl137/DaVinci-PSP-SDK-03.20.00.08/src/u-boot/uboot-03.20.00.08/drivers/usb/host'
>>> make: *** [drivers/usb/host/libusb_host.a] Error 2
>>>
>>> Please help us solving this issue as this is very critical for our
>>> development
>>
>> This u-boot version (from the DaVinci-PSP) is quite old now (2009.08)
>> and, I believe, its da830/l137 code was never added to the community
>> tree: community support started in Nov 2009 and USB support was added
>> in Dec 2009. As such it can't be supported here.
>>
>> As mentioned da830 EVM is supported by the community tree and I would
>> encourage you to used the latest release from
>> git://git.denx.de/u-boot.git or http://git.denx.de/u-boot.git
>>
>> You can download snapshots, with a browser, from:
>> http://git.denx.de/?p=u-boot.git;a=summary
>>
>> Nick.
>>
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-16  8:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-11  9:15 [U-Boot] Issues in U-BOOT for OMAPL137 shilpa jadav
2011-05-12  9:00 ` Nick Thompson
     [not found]   ` <BANLkTik_HieausoTx-LnUP4wO+_f+JuFDw@mail.gmail.com>
2011-05-16  8:44     ` Nick Thompson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox