linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* OMAP 3430 LDP Trouble
@ 2010-04-03 17:33 Tar Gz
  2010-04-04  5:43 ` [ASK] " Tar Gz
  0 siblings, 1 reply; 7+ messages in thread
From: Tar Gz @ 2010-04-03 17:33 UTC (permalink / raw)
  To: linux-omap

Hi all,
i'm sorry if my english too bad

I try to porting linux to omap 3430 LDP..but my board have trouble
after i running this command:

nand ecc sw
nand unlock 80000 80000
nand erase 80000 80000

nand ecc hw
nand unlock 0 80000
nand erase 0 80000

and if i try to turn on my board, BT led [blue led] always on and my
minicom can't show anything...and i forget to setting the enviroment
variable mmcinit..

my question is, how to make my board can run normally like before?

best regards,
Aldyth M

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

* [ASK] OMAP 3430 LDP Trouble
  2010-04-03 17:33 OMAP 3430 LDP Trouble Tar Gz
@ 2010-04-04  5:43 ` Tar Gz
  2010-04-04 16:04   ` Ghorai, Sukumar
  0 siblings, 1 reply; 7+ messages in thread
From: Tar Gz @ 2010-04-04  5:43 UTC (permalink / raw)
  To: linux-omap

Hi all,
i'm sorry if my english too bad

I try to porting linux to omap 3430 LDP..but my board have trouble
after i running this command:

nand ecc sw
nand unlock 80000 80000
nand erase 80000 80000

nand ecc hw
nand unlock 0 80000
nand erase 0 80000

and if i try to turn on my board, BT led [blue led] always on and my
minicom can't show anything...and i forget to setting the enviroment
variable mmcinit..

my question is, how to make my board can run normally like before?

best regards,
Aldyth M

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

* RE: [ASK] OMAP 3430 LDP Trouble
  2010-04-04  5:43 ` [ASK] " Tar Gz
@ 2010-04-04 16:04   ` Ghorai, Sukumar
  2010-04-05  4:06     ` Tar Gz
  2010-04-05  4:18     ` Vimal Singh
  0 siblings, 2 replies; 7+ messages in thread
From: Ghorai, Sukumar @ 2010-04-04 16:04 UTC (permalink / raw)
  To: Tar Gz, linux-omap

Aldyth,
1. Do you mean that NAND boot is not working?
2. Does MMC/SD boot working? If yes, boot the platform from MMC/SD using the latest x-loade/ u-boot and flush the same binaries to NAND using the following commands. 
mmcinit 0
nand unlock 80000 80000
nand erase 80000 80000
fatload mmc 0 80000000 u-boot.bin
nand write.i 80000000 80000 ${filesize}
 
nand unlock 0 80000
nand erase 0 80000 
fatload mmc 0 80000000 MLO
nand write.i 80000000 0 ${filesize}

Regards,
Ghorai

> -----Original Message-----
> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> owner@vger.kernel.org] On Behalf Of Tar Gz
> Sent: 2010-04-04 11:13
> To: linux-omap
> Subject: [ASK] OMAP 3430 LDP Trouble
> 
> Hi all,
> i'm sorry if my english too bad
> 
> I try to porting linux to omap 3430 LDP..but my board have trouble
> after i running this command:
> 
> nand ecc sw
> nand unlock 80000 80000
> nand erase 80000 80000
> 
> nand ecc hw
> nand unlock 0 80000
> nand erase 0 80000
> 
> and if i try to turn on my board, BT led [blue led] always on and my
> minicom can't show anything...and i forget to setting the enviroment
> variable mmcinit..
> 
> my question is, how to make my board can run normally like before?
> 
> best regards,
> Aldyth M
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [ASK] OMAP 3430 LDP Trouble
  2010-04-04 16:04   ` Ghorai, Sukumar
@ 2010-04-05  4:06     ` Tar Gz
  2010-04-05  4:18     ` Vimal Singh
  1 sibling, 0 replies; 7+ messages in thread
From: Tar Gz @ 2010-04-05  4:06 UTC (permalink / raw)
  To: Ghorai, Sukumar; +Cc: linux-omap

On 4/4/10, Ghorai, Sukumar <s-ghorai@ti.com> wrote:
> Aldyth,
> 1. Do you mean that NAND boot is not working?
> 2. Does MMC/SD boot working? If yes, boot the platform from MMC/SD using the
> latest x-loade/ u-boot and flush the same binaries to NAND using the
> following commands.
> mmcinit 0
> nand unlock 80000 80000
> nand erase 80000 80000
> fatload mmc 0 80000000 u-boot.bin
> nand write.i 80000000 80000 ${filesize}
>
> nand unlock 0 80000
> nand erase 0 80000
> fatload mmc 0 80000000 MLO
> nand write.i 80000000 0 ${filesize}
>
> Regards,
> Ghorai
>
>> -----Original Message-----
>> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
>> owner@vger.kernel.org] On Behalf Of Tar Gz
>> Sent: 2010-04-04 11:13
>> To: linux-omap
>> Subject: [ASK] OMAP 3430 LDP Trouble
>>
>> Hi all,
>> i'm sorry if my english too bad
>>
>> I try to porting linux to omap 3430 LDP..but my board have trouble
>> after i running this command:
>>
>> nand ecc sw
>> nand unlock 80000 80000
>> nand erase 80000 80000
>>
>> nand ecc hw
>> nand unlock 0 80000
>> nand erase 0 80000
>>
>> and if i try to turn on my board, BT led [blue led] always on and my
>> minicom can't show anything...and i forget to setting the enviroment
>> variable mmcinit..
>>
>> my question is, how to make my board can run normally like before?
>>
>> best regards,
>> Aldyth M
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

but i can't enter prompt, my minincom can't show anything when i'm
turn on my board. I'm using latest u-boot and x-loader / MLO but still
can't booting and BT led [blue colour] always on. How solve my
problem?

best regards,
Aldyth M

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

* Re: [ASK] OMAP 3430 LDP Trouble
  2010-04-04 16:04   ` Ghorai, Sukumar
  2010-04-05  4:06     ` Tar Gz
@ 2010-04-05  4:18     ` Vimal Singh
  2010-04-06 19:41       ` Tar Gz
  1 sibling, 1 reply; 7+ messages in thread
From: Vimal Singh @ 2010-04-05  4:18 UTC (permalink / raw)
  To: Ghorai, Sukumar; +Cc: Tar Gz, linux-omap

AFAIK, NAND support is currently missing for OMAP3430 LDP boards in LO.

-Vimal

On Sun, Apr 4, 2010 at 9:34 PM, Ghorai, Sukumar <s-ghorai@ti.com> wrote:
> Aldyth,
> 1. Do you mean that NAND boot is not working?
> 2. Does MMC/SD boot working? If yes, boot the platform from MMC/SD using the latest x-loade/ u-boot and flush the same binaries to NAND using the following commands.
> mmcinit 0
> nand unlock 80000 80000
> nand erase 80000 80000
> fatload mmc 0 80000000 u-boot.bin
> nand write.i 80000000 80000 ${filesize}
>
> nand unlock 0 80000
> nand erase 0 80000
> fatload mmc 0 80000000 MLO
> nand write.i 80000000 0 ${filesize}
>
> Regards,
> Ghorai
>
>> -----Original Message-----
>> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
>> owner@vger.kernel.org] On Behalf Of Tar Gz
>> Sent: 2010-04-04 11:13
>> To: linux-omap
>> Subject: [ASK] OMAP 3430 LDP Trouble
>>
>> Hi all,
>> i'm sorry if my english too bad
>>
>> I try to porting linux to omap 3430 LDP..but my board have trouble
>> after i running this command:
>>
>> nand ecc sw
>> nand unlock 80000 80000
>> nand erase 80000 80000
>>
>> nand ecc hw
>> nand unlock 0 80000
>> nand erase 0 80000
>>
>> and if i try to turn on my board, BT led [blue led] always on and my
>> minicom can't show anything...and i forget to setting the enviroment
>> variable mmcinit..
>>
>> my question is, how to make my board can run normally like before?
>>
>> best regards,
>> Aldyth M
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [ASK] OMAP 3430 LDP Trouble
  2010-04-05  4:18     ` Vimal Singh
@ 2010-04-06 19:41       ` Tar Gz
  2010-04-06 19:47         ` Gadiyar, Anand
  0 siblings, 1 reply; 7+ messages in thread
From: Tar Gz @ 2010-04-06 19:41 UTC (permalink / raw)
  To: Vimal Singh; +Cc: Ghorai, Sukumar, linux-omap

if NAND support is currently missing for OMAP3430 LDP,,how i boot my
ldp again like before?...any idea?

best regards,
Aldyth M

On 4/5/10, Vimal Singh <vimal.newwork@gmail.com> wrote:
> AFAIK, NAND support is currently missing for OMAP3430 LDP boards in LO.
>
> -Vimal
>
> On Sun, Apr 4, 2010 at 9:34 PM, Ghorai, Sukumar <s-ghorai@ti.com> wrote:
>> Aldyth,
>> 1. Do you mean that NAND boot is not working?
>> 2. Does MMC/SD boot working? If yes, boot the platform from MMC/SD using
>> the latest x-loade/ u-boot and flush the same binaries to NAND using the
>> following commands.
>> mmcinit 0
>> nand unlock 80000 80000
>> nand erase 80000 80000
>> fatload mmc 0 80000000 u-boot.bin
>> nand write.i 80000000 80000 ${filesize}
>>
>> nand unlock 0 80000
>> nand erase 0 80000
>> fatload mmc 0 80000000 MLO
>> nand write.i 80000000 0 ${filesize}
>>
>> Regards,
>> Ghorai
>>
>>> -----Original Message-----
>>> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
>>> owner@vger.kernel.org] On Behalf Of Tar Gz
>>> Sent: 2010-04-04 11:13
>>> To: linux-omap
>>> Subject: [ASK] OMAP 3430 LDP Trouble
>>>
>>> Hi all,
>>> i'm sorry if my english too bad
>>>
>>> I try to porting linux to omap 3430 LDP..but my board have trouble
>>> after i running this command:
>>>
>>> nand ecc sw
>>> nand unlock 80000 80000
>>> nand erase 80000 80000
>>>
>>> nand ecc hw
>>> nand unlock 0 80000
>>> nand erase 0 80000
>>>
>>> and if i try to turn on my board, BT led [blue led] always on and my
>>> minicom can't show anything...and i forget to setting the enviroment
>>> variable mmcinit..
>>>
>>> my question is, how to make my board can run normally like before?
>>>
>>> best regards,
>>> Aldyth M
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: [ASK] OMAP 3430 LDP Trouble
  2010-04-06 19:41       ` Tar Gz
@ 2010-04-06 19:47         ` Gadiyar, Anand
  0 siblings, 0 replies; 7+ messages in thread
From: Gadiyar, Anand @ 2010-04-06 19:47 UTC (permalink / raw)
  To: Tar Gz, Vimal Singh; +Cc: Ghorai, Sukumar, linux-omap

Tar Gz wrote:
> if NAND support is currently missing for OMAP3430 LDP,,how i boot my
> ldp again like before?...any idea?
> 

<snip>

If I understand you correctly, you now have a non-booting LDP, and want
to get a bootloader flashed on it?

You may need to do a serial boot.

Maybe this (old, and no longer maintained) page will help?

<https://gforge.ti.com/gf/project/omapzoom/wiki/?pagename=BootingAndFlashing>

- Anand

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

end of thread, other threads:[~2010-04-06 19:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-03 17:33 OMAP 3430 LDP Trouble Tar Gz
2010-04-04  5:43 ` [ASK] " Tar Gz
2010-04-04 16:04   ` Ghorai, Sukumar
2010-04-05  4:06     ` Tar Gz
2010-04-05  4:18     ` Vimal Singh
2010-04-06 19:41       ` Tar Gz
2010-04-06 19:47         ` Gadiyar, Anand

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).