All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] mx28evk: correct settings to make machine work
@ 2011-06-06 21:25 Andreas Mueller
  2011-06-06 21:25 ` [PATCH v2 1/2] mx28 SOC: set correct addresses for u-boot Andreas Mueller
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Andreas Mueller @ 2011-06-06 21:25 UTC (permalink / raw)
  To: openembedded-devel

Changes to V1:

* changed commit messages
* split patch

Andreas Mueller (2):
  mx28 SOC: set correct addresses for u-boot
  mx28evk: set valid console

 conf/machine/include/imx28.inc |    4 ++--
 conf/machine/mx28evk.conf      |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
1.7.4.4




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

* [PATCH v2 1/2] mx28 SOC: set correct addresses for u-boot
  2011-06-06 21:25 [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
@ 2011-06-06 21:25 ` Andreas Mueller
  2011-06-06 21:25 ` [PATCH v2 2/2] mx28evk: set valid console Andreas Mueller
  2011-06-16  7:54 ` [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
  2 siblings, 0 replies; 6+ messages in thread
From: Andreas Mueller @ 2011-06-06 21:25 UTC (permalink / raw)
  To: openembedded-devel

The initial patch was build tested only because a hardware for tests was not
available at the time initial patches were sent. The modifications lead to the
following boot log (thanks to Christian Borutta for testing):

U-Boot 2009.08 (May 09 2011 - 16:42:53)

Freescale i.MX28 family
CPU:   454 MHz
BUS:   151 MHz
EMI:   205 MHz
GPMI:   24 MHz
DRAM:  128 MB
MMC:   IMX_SSP_MMC: 0, IMX_SSP_MMC: 1
In:    serial
Out:   serial
Err:   serial
Net:   got MAC address from IIM: 00:04:9f:01:4d:57
FEC0
Hit any key to stop autoboot:  0
reading uImage

2519812 bytes read
   Image Name:   Angstrom/2.6.35/mx28evk
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    2519748 Bytes =  2.4 MB
   Load Address: 40008000
   Entry Point:  40008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
Linux version 2.6.35.3 (borutta@debian) (gcc version 4.5.3 20110311 (prerelease) (GCC) ) #1 PREEMPT Thu May 12 09:54:03 CEST 2011
CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177
CPU: VIVT data cache, VIVT instruction cache
Machine: Freescale MX28EVK board
...

Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de>
---
 conf/machine/include/imx28.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/machine/include/imx28.inc b/conf/machine/include/imx28.inc
index 38248a8..b50f000 100644
--- a/conf/machine/include/imx28.inc
+++ b/conf/machine/include/imx28.inc
@@ -10,8 +10,8 @@ MACHINE_KERNEL_PR = "r0"
 
 KERNEL_IMAGETYPE = "uImage"
 
-UBOOT_ENTRYPOINT = "0x8000"
-UBOOT_LOADADDRESS = "0x8000"
+UBOOT_ENTRYPOINT = "0x40008000"
+UBOOT_LOADADDRESS = "0x40008000"
 
 EXTRA_IMAGEDEPENDS += "u-boot"
 
-- 
1.7.4.4




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

* [PATCH v2 2/2] mx28evk: set valid console
  2011-06-06 21:25 [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
  2011-06-06 21:25 ` [PATCH v2 1/2] mx28 SOC: set correct addresses for u-boot Andreas Mueller
@ 2011-06-06 21:25 ` Andreas Mueller
  2011-06-16  7:54 ` [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
  2 siblings, 0 replies; 6+ messages in thread
From: Andreas Mueller @ 2011-06-06 21:25 UTC (permalink / raw)
  To: openembedded-devel

The initial patch was build tested only because hardware for tests was not
available. Christian Borutta reported the following log:

INIT: Id "S" respawning too fast: disabled for 5 minutes

Signed-off-by: Andreas Mueller <schnitzeltony@gmx.de>
---
 conf/machine/mx28evk.conf |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/conf/machine/mx28evk.conf b/conf/machine/mx28evk.conf
index e093ffa..823b502 100644
--- a/conf/machine/mx28evk.conf
+++ b/conf/machine/mx28evk.conf
@@ -17,7 +17,7 @@ XSERVER = "xserver-kdrive-fbdev"
 require conf/machine/include/imx28.inc
 
 # used by sysvinit_2
-SERIAL_CONSOLE = "115200 ttymxc0"
+SERIAL_CONSOLE = "115200 ttyAM0"
 
 ROOT_FLASH_SIZE = "128"
 
-- 
1.7.4.4




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

* Re: [PATCH v2 0/2] mx28evk: correct settings to make machine work
  2011-06-06 21:25 [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
  2011-06-06 21:25 ` [PATCH v2 1/2] mx28 SOC: set correct addresses for u-boot Andreas Mueller
  2011-06-06 21:25 ` [PATCH v2 2/2] mx28evk: set valid console Andreas Mueller
@ 2011-06-16  7:54 ` Andreas Mueller
  2011-06-16  7:59   ` Eric Bénard
  2 siblings, 1 reply; 6+ messages in thread
From: Andreas Mueller @ 2011-06-16  7:54 UTC (permalink / raw)
  To: openembedded-devel

On Monday, June 06, 2011 11:25:43 PM Andreas Mueller wrote:
> Changes to V1:
> 
> * changed commit messages
> * split patch
> 
> Andreas Mueller (2):
>   mx28 SOC: set correct addresses for u-boot
>   mx28evk: set valid console
> 
>  conf/machine/include/imx28.inc |    4 ++--
>  conf/machine/mx28evk.conf      |    2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
Can somebody please take care for these harmless 3 lines?

Andreas



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

* Re: [PATCH v2 0/2] mx28evk: correct settings to make machine work
  2011-06-16  7:54 ` [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
@ 2011-06-16  7:59   ` Eric Bénard
  2011-06-16 11:32     ` Andreas Mueller
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Bénard @ 2011-06-16  7:59 UTC (permalink / raw)
  To: openembedded-devel

Hi Andreas,

On 16/06/2011 09:54, Andreas Mueller wrote:
> On Monday, June 06, 2011 11:25:43 PM Andreas Mueller wrote:
>> Changes to V1:
>>
>> * changed commit messages
>> * split patch
>>
>> Andreas Mueller (2):
>>    mx28 SOC: set correct addresses for u-boot
>>    mx28evk: set valid console
>>
>>   conf/machine/include/imx28.inc |    4 ++--
>>   conf/machine/mx28evk.conf      |    2 +-
>>   2 files changed, 3 insertions(+), 3 deletions(-)
> Can somebody please take care for these harmless 3 lines?
>
done
Thanks,

Eric



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

* Re: [PATCH v2 0/2] mx28evk: correct settings to make machine work
  2011-06-16  7:59   ` Eric Bénard
@ 2011-06-16 11:32     ` Andreas Mueller
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Mueller @ 2011-06-16 11:32 UTC (permalink / raw)
  To: openembedded-devel

On Thursday, June 16, 2011 09:59:50 AM Eric Bénard wrote:
> Hi Andreas,
> 
> On 16/06/2011 09:54, Andreas Mueller wrote:
> > On Monday, June 06, 2011 11:25:43 PM Andreas Mueller wrote:
> >> Changes to V1:
> >> 
> >> * changed commit messages
> >> * split patch
> >> 
> >> Andreas Mueller (2):
> >>    mx28 SOC: set correct addresses for u-boot
> >>    mx28evk: set valid console
> >>   
> >>   conf/machine/include/imx28.inc |    4 ++--
> >>   conf/machine/mx28evk.conf      |    2 +-
> >>   2 files changed, 3 insertions(+), 3 deletions(-)
> > 
> > Can somebody please take care for these harmless 3 lines?
> 
> done
> Thanks,
> 
> Eric
> 
Thanks for committing

Andreas



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

end of thread, other threads:[~2011-06-16 11:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-06 21:25 [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
2011-06-06 21:25 ` [PATCH v2 1/2] mx28 SOC: set correct addresses for u-boot Andreas Mueller
2011-06-06 21:25 ` [PATCH v2 2/2] mx28evk: set valid console Andreas Mueller
2011-06-16  7:54 ` [PATCH v2 0/2] mx28evk: correct settings to make machine work Andreas Mueller
2011-06-16  7:59   ` Eric Bénard
2011-06-16 11:32     ` Andreas Mueller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.