All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] Hi all...
@ 2005-09-23  9:03 Kiran Jammula
  2005-09-23  9:55 ` Wolfgang Denk
  0 siblings, 1 reply; 6+ messages in thread
From: Kiran Jammula @ 2005-09-23  9:03 UTC (permalink / raw)
  To: u-boot

Hi,
I am using Hms30c7202 from Hynix. I supports to serial ports. At the time of 
Booting U boot
uses one seial port as console. How to use another serail pot while bootng.
In /boards/serial.c there is only one seial port initialization is there..
Please help me in this....

Thanks in advance.
Kiran Jammula.

_________________________________________________________________
Stock Market?Made Easy! 
http://www.sharekhan.com/campaign/OpenNewAccount.asp?ProdID=23&SrcID=59 Join 
Sharekhan?s FirstStep. learn the basics.

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

* [U-Boot-Users] Hi all...
  2005-09-23  9:03 [U-Boot-Users] Hi all Kiran Jammula
@ 2005-09-23  9:55 ` Wolfgang Denk
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2005-09-23  9:55 UTC (permalink / raw)
  To: u-boot

In message <BAY23-F129B722C68FA3EE902FD34C3960@phx.gbl> you wrote:
>
> I am using Hms30c7202 from Hynix. I supports to serial ports. At the time of 
> Booting U boot
> uses one seial port as console. How to use another serail pot while bootng.

What would you like to use it for? U-Boot does not need more than one
serial port.

> In /boards/serial.c there is only one seial port initialization is there..

??? boards/serial.c ??? There is no such file.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Our business is run on trust.  We trust you will pay in advance.

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

* [U-Boot-Users] Hi All
@ 2008-06-16  6:23 harshadnimje
  2008-06-16 10:30 ` Nobuhiro Iwamatsu
  0 siblings, 1 reply; 6+ messages in thread
From: harshadnimje @ 2008-06-16  6:23 UTC (permalink / raw)
  To: u-boot

Hi All;

I want to write U-boot for Hitachi SH4 HD6417751 board.
The board contais following peripherals.
1.Real time clock
2.Timer Unit
3.Bus state controller
4.DMA cotroller
5.Serial communication interface
6.I/O Ports
7.Interrupt controller
8.PCI conroller.

For which peripherals I need to write the driver as far as U-boot is
concerned?
In generic U-Boot1.3.2 directory structure where do I need to make the
change?
At what places the config files and make files will have undergo
changes?

Thanks in advance!!!!

Thanks & Regards
Harshad D. Nimje
mail: harshadnimje at tataelxsi.co.in


The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments contained in it.

Contact your Administrator for further information.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.denx.de/pipermail/u-boot/attachments/20080616/ab54797a/attachment.htm 

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

* [U-Boot-Users] Hi All
  2008-06-16  6:23 [U-Boot-Users] Hi All harshadnimje
@ 2008-06-16 10:30 ` Nobuhiro Iwamatsu
  2008-06-16 10:55   ` harshadnimje
  0 siblings, 1 reply; 6+ messages in thread
From: Nobuhiro Iwamatsu @ 2008-06-16 10:30 UTC (permalink / raw)
  To: u-boot

Hi,

2008/6/16 harshadnimje <harshadnimje@tataelxsi.co.in>:
>
> For which peripherals I need to write the driver as far as U-boot is
> concerned?

1.Real time clock
 Not Supported
2.Timer Unit
 Supported
3.Bus state controller
 Supported
4.DMA cotroller
 Not Supported
5.Serial communication interface
 Not Suported
6.I/O Ports
 Supported
7.Interrupt controller
 Not Supported
8.PCI conroller.
 Supported. But check on SH7751R only.

> In generic U-Boot1.3.2 directory structure where do I need to make the
> change?
> At what places the config files and make files will have undergo
> changes?
>
You need create your board configration file and Bus state controller
initialization file(lowleve_init.S).

You can take a source code of r2d board into account.
This board has SH7751R cpu too.
board/r2dplus/*

Best reagards,
 Nobuhiro

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

* [U-Boot-Users] Hi All
  2008-06-16 10:30 ` Nobuhiro Iwamatsu
@ 2008-06-16 10:55   ` harshadnimje
  2008-06-16 10:56     ` Nobuhiro Iwamatsu
  0 siblings, 1 reply; 6+ messages in thread
From: harshadnimje @ 2008-06-16 10:55 UTC (permalink / raw)
  To: u-boot

Hi Nobuhiro;

Thanks for your support.

I am not able to see the /board/r2dplus/* in uboot directory stucture.
Can you please send me the link for this board specific source code.

Thanks in Advance

Regards;
Harshad	

-----Original Message-----
From: Nobuhiro Iwamatsu [mailto:iwamatsu at nigauri.org]
Sent: Monday, June 16, 2008 4:00 PM
To: harshadnimje at tataelxsi.co.in
Cc: u-boot-users at lists.sourceforge.net
Subject: Re: [U-Boot-Users] Hi All


Hi,

2008/6/16 harshadnimje <harshadnimje@tataelxsi.co.in>:
>
> For which peripherals I need to write the driver as far as U-boot is
> concerned?

1.Real time clock
 Not Supported
2.Timer Unit
 Supported
3.Bus state controller
 Supported
4.DMA cotroller
 Not Supported
5.Serial communication interface
 Not Suported
6.I/O Ports
 Supported
7.Interrupt controller
 Not Supported
8.PCI conroller.
 Supported. But check on SH7751R only.

> In generic U-Boot1.3.2 directory structure where do I need to make the
> change?
> At what places the config files and make files will have undergo
> changes?
>
You need create your board configration file and Bus state controller
initialization file(lowleve_init.S).

You can take a source code of r2d board into account.
This board has SH7751R cpu too.
board/r2dplus/*

Best reagards,
 Nobuhiro

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments contained in it.

Contact your Administrator for further information.

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

* [U-Boot-Users] Hi All
  2008-06-16 10:55   ` harshadnimje
@ 2008-06-16 10:56     ` Nobuhiro Iwamatsu
  0 siblings, 0 replies; 6+ messages in thread
From: Nobuhiro Iwamatsu @ 2008-06-16 10:56 UTC (permalink / raw)
  To: u-boot

2008/6/16 harshadnimje <harshadnimje@tataelxsi.co.in>:
> Hi Nobuhiro;
>
> Thanks for your support.
>
> I am not able to see the /board/r2dplus/* in uboot directory stucture.
> Can you please send me the link for this board specific source code.
>
Please check u-boot 1.3.3 source code.

Best regards,
 Nobuhiro.

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

end of thread, other threads:[~2008-06-16 10:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-16  6:23 [U-Boot-Users] Hi All harshadnimje
2008-06-16 10:30 ` Nobuhiro Iwamatsu
2008-06-16 10:55   ` harshadnimje
2008-06-16 10:56     ` Nobuhiro Iwamatsu
  -- strict thread matches above, loose matches on Subject: below --
2005-09-23  9:03 [U-Boot-Users] Hi all Kiran Jammula
2005-09-23  9:55 ` Wolfgang Denk

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.