public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] PPC 405 walnut
@ 2007-09-05 10:07 raj reddy
  2007-09-05 12:54 ` Wolfgang Denk
  0 siblings, 1 reply; 4+ messages in thread
From: raj reddy @ 2007-09-05 10:07 UTC (permalink / raw)
  To: u-boot

My board is close to PPC405 Walnut board. But there is slight modification in the FLASH chip and SDRAM.
   
  -> FLASH chip on my custom board is AT49BV320C (flash interface 16Bits). How do I add this ATMEL chip driver to the u-boot.
  -> SDRAM controller not read from EEPROM , i want to hardcode the values of the SDRAM using the sdram_init (i.e sdram.c) function instead of the spd_sdram.c file. Do i need to change the function implimentation init_func_ram() in the board.c file.
   
  plz throw the light to resolve.....
   
  Regards,
  Entry. 

       
---------------------------------
 Unlimited freedom, unlimited storage. Get it now
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20070905/0281e7db/attachment.htm 

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

* [U-Boot-Users] PPC 405 walnut
  2007-09-05 10:07 [U-Boot-Users] PPC 405 walnut raj reddy
@ 2007-09-05 12:54 ` Wolfgang Denk
  2007-09-06  4:13   ` raj reddy
  2007-09-06 13:40   ` raj reddy
  0 siblings, 2 replies; 4+ messages in thread
From: Wolfgang Denk @ 2007-09-05 12:54 UTC (permalink / raw)
  To: u-boot

In message <570161.51367.qm@web7707.mail.in.yahoo.com> you wrote:
> 
> My board is close to PPC405 Walnut board. But there is slight modification in the FLASH chip and SDRAM.

close is not close enough. You have to do your own port.

>   -> FLASH chip on my custom board is AT49BV320C (flash interface 16Bits). How do I add this ATMEL chip driver to the u-boot.

Is it CFI conform?

>   -> SDRAM controller not read from EEPROM , i want to hardcode the values of the SDRAM using the sdram_init (i.e sdram.c) function instead of the spd_sdram.c file. Do i need to change the function implimentation init_func_ram() in the board.c file.

init_func_ram() is a static function in "lib_ppc/board.c"  which  you
should keep your fingers off. it is not affected by a new board port.

> --0-1855522460-1188986846=:51367
> Content-Type: text/html; charset=iso-8859-1
> Content-Transfer-Encoding: 8bit

And never post HTML on this list, please!

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If a group of N persons implements a COBOL compiler,  there  will  be
N-1 passes. Someone in the group has to be the manager. - T. Cheatham

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

* [U-Boot-Users] PPC 405 walnut
  2007-09-05 12:54 ` Wolfgang Denk
@ 2007-09-06  4:13   ` raj reddy
  2007-09-06 13:40   ` raj reddy
  1 sibling, 0 replies; 4+ messages in thread
From: raj reddy @ 2007-09-06  4:13 UTC (permalink / raw)
  To: u-boot


--- Wolfgang Denk <wd@denx.de> wrote:

> In message
> <570161.51367.qm@web7707.mail.in.yahoo.com> you
> wrote:
> > 
> > My board is close to PPC405 Walnut board. But
> there is slight modification in the FLASH chip and
> SDRAM.
> 
> close is not close enough. You have to do your own
> port.
> 
> >   -> FLASH chip on my custom board is AT49BV320C
> (flash interface 16Bits). How do I add this ATMEL
> chip driver to the u-boot.
> 
> Is it CFI conform?

yes it's Command Flash Interface only. Hope i answered
to you correctely....
> 
> >   -> SDRAM controller not read from EEPROM , i
> want to hardcode the values of the SDRAM using the
> sdram_init (i.e sdram.c) function instead of the
> spd_sdram.c file. Do i need to change the function
> implimentation init_func_ram() in the board.c file.
> 
> init_func_ram() is a static function in
> "lib_ppc/board.c"  which  you
> should keep your fingers off. it is not affected by
> a new board port.
> 
> > --0-1855522460-1188986846=:51367
> > Content-Type: text/html; charset=iso-8859-1
> > Content-Transfer-Encoding: 8bit
> 
> And never post HTML on this list, please!
> 
> Best regards,
> 
> Wolfgang Denk
> 
> -- 
> DENX Software Engineering GmbH,     MD: Wolfgang
> Denk & Detlev Zundel
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194
> Groebenzell, Germany
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80
> Email: wd at denx.de
> If a group of N persons implements a COBOL compiler,
>  there  will  be
> N-1 passes. Someone in the group has to be the
> manager. - T. Cheatham
> 



      Try the revolutionary next-gen Yahoo! Mail. Go to http://mrd.mail.yahoo.com/dc/landing

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

* [U-Boot-Users] PPC 405 walnut
  2007-09-05 12:54 ` Wolfgang Denk
  2007-09-06  4:13   ` raj reddy
@ 2007-09-06 13:40   ` raj reddy
  1 sibling, 0 replies; 4+ messages in thread
From: raj reddy @ 2007-09-06 13:40 UTC (permalink / raw)
  To: u-boot


--- Wolfgang Denk <wd@denx.de> wrote:

> In message
> <570161.51367.qm@web7707.mail.in.yahoo.com> you
> wrote:
> > 
> > My board is close to PPC405 Walnut board. But
> there is slight modification in the FLASH chip and
> SDRAM.
> 
> close is not close enough. You have to do your own
> port.
> 
> >   -> FLASH chip on my custom board is AT49BV320C
> (flash interface 16Bits). How do I add this ATMEL
> chip driver to the u-boot.
> 
> Is it CFI conform?

yes it Command Flash Interface only..I request someone
to please throw light to comeout of this loop.... 
> 
> >   -> SDRAM controller not read from EEPROM , i
> want to hardcode the values of the SDRAM using the
> sdram_init (i.e sdram.c) function instead of the
> spd_sdram.c file. Do i need to change the function
> implimentation init_func_ram() in the board.c file.
> 
> init_func_ram() is a static function in
> "lib_ppc/board.c"  which  you
> should keep your fingers off. it is not affected by
> a new board port.
> 
> > --0-1855522460-1188986846=:51367
> > Content-Type: text/html; charset=iso-8859-1
> > Content-Transfer-Encoding: 8bit
> 
> And never post HTML on this list, please!
> 
> Best regards,
> 
> Wolfgang Denk
> 
> -- 
> DENX Software Engineering GmbH,     MD: Wolfgang
> Denk & Detlev Zundel
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194
> Groebenzell, Germany
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80
> Email: wd at denx.de
> If a group of N persons implements a COBOL compiler,
>  there  will  be
> N-1 passes. Someone in the group has to be the
> manager. - T. Cheatham
> 



      Bollywood, fun, friendship, sports and more. You name it, we have it on http://in.groups.yahoo.com  

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

end of thread, other threads:[~2007-09-06 13:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-05 10:07 [U-Boot-Users] PPC 405 walnut raj reddy
2007-09-05 12:54 ` Wolfgang Denk
2007-09-06  4:13   ` raj reddy
2007-09-06 13:40   ` raj reddy

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