public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
@ 2007-11-10 15:47 Michael Schwingen
  2007-12-08 15:32 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 13+ messages in thread
From: Michael Schwingen @ 2007-11-10 15:47 UTC (permalink / raw)
  To: u-boot

Hi,

the following patch
 - adds support for 230400bps
 - enables the RTS signal. No handshaking is done, but the active RTS signal
   allows to connect to the target using a PC which is using RTS/CTS
   handshake, and does no harm if the PC is set to ignore RTS.

Signed-off-by: Michael Schwingen <michael@schwingen.org>

diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
index 2015958..e0f56fe 100644
--- a/cpu/ixp/serial.c
+++ b/cpu/ixp/serial.c
@@ -50,6 +50,8 @@ void serial_setbrg (void)
 		quot = 16;
 	else if (gd->baudrate == 115200)
 		quot = 8;
+	else if (gd->baudrate == 230400)
+		quot = 4;
 	else
 		hang ();
 
@@ -61,6 +63,7 @@ void serial_setbrg (void)
 	DLL(uart) = quot & 0xff;
 	DLH(uart) = quot >> 8;
 	LCR(uart) = LCR_WLS0 | LCR_WLS1;
+	MCR(uart) = MCR_RTS;				/* set RTS active */
 
 	IER(uart) = IER_UUE;
 }

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2007-11-10 15:47 [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS Michael Schwingen
@ 2007-12-08 15:32 ` Jean-Christophe PLAGNIOL-VILLARD
  2007-12-08 15:35   ` [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x Jean-Christophe PLAGNIOL-VILLARD
                     ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2007-12-08 15:32 UTC (permalink / raw)
  To: u-boot

On 16:47 Sat 10 Nov     , Michael Schwingen wrote:
> Hi,
> 
> the following patch
>  - adds support for 230400bps
>  - enables the RTS signal. No handshaking is done, but the active RTS signal
>    allows to connect to the target using a PC which is using RTS/CTS
>    handshake, and does no harm if the PC is set to ignore RTS.
> 
> Signed-off-by: Michael Schwingen <michael@schwingen.org>
> 
> diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
> index 2015958..e0f56fe 100644
> --- a/cpu/ixp/serial.c
> +++ b/cpu/ixp/serial.c
> @@ -50,6 +50,8 @@ void serial_setbrg (void)
>  		quot = 16;
>  	else if (gd->baudrate == 115200)
>  		quot = 8;
> +	else if (gd->baudrate == 230400)
> +		quot = 4;
>  	else
>  		hang ();
>  
> @@ -61,6 +63,7 @@ void serial_setbrg (void)
>  	DLL(uart) = quot & 0xff;
>  	DLH(uart) = quot >> 8;
>  	LCR(uart) = LCR_WLS0 | LCR_WLS1;
> +	MCR(uart) = MCR_RTS;				/* set RTS active */
>  
>  	IER(uart) = IER_UUE;
>  }
Hi,

	2 points about this patch

	1) I will send a patch to support all baud rates for ipx42x, ixp45x and ixp46x

	2) Cou you make the RTS part configurable by a MACRO like
	CONFIG_SERIAL_RTS?

Best Regards,
J.

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

* [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
  2007-12-08 15:32 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2007-12-08 15:35   ` Jean-Christophe PLAGNIOL-VILLARD
  2007-12-08 16:13     ` Stefan Roese
  2007-12-08 16:58     ` Wolfgang Denk
  2007-12-08 22:37   ` [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS Michael Schwingen
  2007-12-09 17:00   ` Michael Schwingen
  2 siblings, 2 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2007-12-08 15:35 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
index 2015958..1f13077 100644
--- a/cpu/ixp/serial.c
+++ b/cpu/ixp/serial.c
@@ -31,25 +31,22 @@
 #include <common.h>
 #include <asm/arch/ixp425.h>
 
+/*
+ *               14.7456 MHz
+ * Baud Rate = --------------
+ *              16 x Divisor
+ */
+#define SERIAL_CLOCK 921600 
+
 DECLARE_GLOBAL_DATA_PTR;
 
 void serial_setbrg (void)
 {
 	unsigned int quot = 0;
 	int uart = CFG_IXP425_CONSOLE;
-
-	if (gd->baudrate == 1200)
-		quot = 192;
-	else if (gd->baudrate == 9600)
-		quot = 96;
-	else if (gd->baudrate == 19200)
-		quot = 48;
-	else if (gd->baudrate == 38400)
-		quot = 24;
-	else if (gd->baudrate == 57600)
-		quot = 16;
-	else if (gd->baudrate == 115200)
-		quot = 8;
+	
+	if(gd->baudrate < SERIAL_CLOCK && SERIAL_CLOCK % gd->baudrate == 0)
+		quot = SERIAL_CLOCK / gd->baudrate;
 	else
 		hang ();
 
@@ -65,7 +62,6 @@ void serial_setbrg (void)
 	IER(uart) = IER_UUE;
 }
 
-
 /*
  * Initialise the serial port with the given baudrate. The settings
  * are always 8 data bits, no parity, 1 stop bit, no start bits.
-- 
1.5.3.7

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

* [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
  2007-12-08 15:35   ` [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x Jean-Christophe PLAGNIOL-VILLARD
@ 2007-12-08 16:13     ` Stefan Roese
  2007-12-08 16:58     ` Wolfgang Denk
  1 sibling, 0 replies; 13+ messages in thread
From: Stefan Roese @ 2007-12-08 16:13 UTC (permalink / raw)
  To: u-boot

On Saturday 08 December 2007, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
>
> diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
> index 2015958..1f13077 100644
> --- a/cpu/ixp/serial.c
> +++ b/cpu/ixp/serial.c
> @@ -31,25 +31,22 @@
>  #include <common.h>
>  #include <asm/arch/ixp425.h>
>
> +/*
> + *               14.7456 MHz
> + * Baud Rate = --------------
> + *              16 x Divisor
> + */
> +#define SERIAL_CLOCK 921600
> +
>  DECLARE_GLOBAL_DATA_PTR;
>
>  void serial_setbrg (void)
>  {
>  	unsigned int quot = 0;
>  	int uart = CFG_IXP425_CONSOLE;
> -
> -	if (gd->baudrate == 1200)
> -		quot = 192;
> -	else if (gd->baudrate == 9600)
> -		quot = 96;
> -	else if (gd->baudrate == 19200)
> -		quot = 48;
> -	else if (gd->baudrate == 38400)
> -		quot = 24;
> -	else if (gd->baudrate == 57600)
> -		quot = 16;
> -	else if (gd->baudrate == 115200)
> -		quot = 8;
> +
> +	if(gd->baudrate < SERIAL_CLOCK && SERIAL_CLOCK % gd->baudrate == 0)

Space after "if" please. And some braces would make this line more readable.

Best regards,
Stefan

=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: office at denx.de
=====================================================================

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

* [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
  2007-12-08 15:35   ` [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x Jean-Christophe PLAGNIOL-VILLARD
  2007-12-08 16:13     ` Stefan Roese
@ 2007-12-08 16:58     ` Wolfgang Denk
  2007-12-08 17:03       ` Jean-Christophe PLAGNIOL-VILLARD
  1 sibling, 1 reply; 13+ messages in thread
From: Wolfgang Denk @ 2007-12-08 16:58 UTC (permalink / raw)
  To: u-boot

In message <1197128128-13438-1-git-send-email-plagnioj@jcrosoft.com> you wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> 
> diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
> index 2015958..1f13077 100644
> --- a/cpu/ixp/serial.c
> +++ b/cpu/ixp/serial.c
> @@ -31,25 +31,22 @@
>  #include <common.h>
>  #include <asm/arch/ixp425.h>
>  
> +/*
> + *               14.7456 MHz
> + * Baud Rate = --------------
> + *              16 x Divisor
> + */
> +#define SERIAL_CLOCK 921600 
> +
>  DECLARE_GLOBAL_DATA_PTR;
>  
>  void serial_setbrg (void)
>  {
>  	unsigned int quot = 0;
>  	int uart = CFG_IXP425_CONSOLE;
> -
> -	if (gd->baudrate == 1200)
> -		quot = 192;
> -	else if (gd->baudrate == 9600)
> -		quot = 96;
> -	else if (gd->baudrate == 19200)
> -		quot = 48;
> -	else if (gd->baudrate == 38400)
> -		quot = 24;
> -	else if (gd->baudrate == 57600)
> -		quot = 16;
> -	else if (gd->baudrate == 115200)
> -		quot = 8;
> +	
> +	if(gd->baudrate < SERIAL_CLOCK && SERIAL_CLOCK % gd->baudrate == 0)
> +		quot = SERIAL_CLOCK / gd->baudrate;

Is it correct to assume that the old "quot" for 1200 bps was actually
wrong, and you now fix this?

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
The trouble with our times is that the future is not what it used  to
be.                                                     - Paul Valery

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

* [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
  2007-12-08 16:58     ` Wolfgang Denk
@ 2007-12-08 17:03       ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2007-12-08 17:03 UTC (permalink / raw)
  To: u-boot

On 17:58 Sat 08 Dec     , Wolfgang Denk wrote:
> In message <1197128128-13438-1-git-send-email-plagnioj@jcrosoft.com> you wrote:
> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > 
> > diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
> > index 2015958..1f13077 100644
> > --- a/cpu/ixp/serial.c
> > +++ b/cpu/ixp/serial.c
> > @@ -31,25 +31,22 @@
> >  #include <common.h>
> >  #include <asm/arch/ixp425.h>
> >  
> > +/*
> > + *               14.7456 MHz
> > + * Baud Rate = --------------
> > + *              16 x Divisor
> > + */
> > +#define SERIAL_CLOCK 921600 
> > +
> >  DECLARE_GLOBAL_DATA_PTR;
> >  
> >  void serial_setbrg (void)
> >  {
> >  	unsigned int quot = 0;
> >  	int uart = CFG_IXP425_CONSOLE;
> > -
> > -	if (gd->baudrate == 1200)
> > -		quot = 192;
> > -	else if (gd->baudrate == 9600)
> > -		quot = 96;
> > -	else if (gd->baudrate == 19200)
> > -		quot = 48;
> > -	else if (gd->baudrate == 38400)
> > -		quot = 24;
> > -	else if (gd->baudrate == 57600)
> > -		quot = 16;
> > -	else if (gd->baudrate == 115200)
> > -		quot = 8;
> > +	
> > +	if(gd->baudrate < SERIAL_CLOCK && SERIAL_CLOCK % gd->baudrate == 0)
there is a missing '='
	if(gd->baudrate <= SERIAL_CLOCK && SERIAL_CLOCK % gd->baudrate == 0)
> > +		quot = SERIAL_CLOCK / gd->baudrate;
> 
> Is it correct to assume that the old "quot" for 1200 bps was actually
> wrong, and you now fix this?

Yes you're right, according to the cpu datasheet the quot for 1200 must
be 768 and not 192

Best Regards,
J.

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2007-12-08 15:32 ` Jean-Christophe PLAGNIOL-VILLARD
  2007-12-08 15:35   ` [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x Jean-Christophe PLAGNIOL-VILLARD
@ 2007-12-08 22:37   ` Michael Schwingen
  2007-12-09  8:40     ` Jean-Christophe PLAGNIOL-VILLARD
  2007-12-09 17:00   ` Michael Schwingen
  2 siblings, 1 reply; 13+ messages in thread
From: Michael Schwingen @ 2007-12-08 22:37 UTC (permalink / raw)
  To: u-boot

Jean-Christophe PLAGNIOL-VILLARD wrote:
> 	2 points about this patch
>
> 	1) I will send a patch to support all baud rates for ipx42x, ixp45x and ixp46x
>   
Great!
> 	2) Cou you make the RTS part configurable by a MACRO like
> 	CONFIG_SERIAL_RTS?
>   
Is this really necessary? I do not like to add configuration switches 
for stuff that does not need to be configurable. It is not like we are 
adding full hardware handshake ...

Currently, RTS is always inactive, so it must be ignored by anyone 
talking to such a target board.

If we make RTS always active, this should cause no harm, but make it 
possible to talk to the board using a terminal program that has RTS/CTS 
handshaking activated.


cu
Michael

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2007-12-08 22:37   ` [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS Michael Schwingen
@ 2007-12-09  8:40     ` Jean-Christophe PLAGNIOL-VILLARD
  2007-12-09 15:58       ` Michael Schwingen
  0 siblings, 1 reply; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2007-12-09  8:40 UTC (permalink / raw)
  To: u-boot

On 23:37 Sat 08 Dec     , Michael Schwingen wrote:
> Jean-Christophe PLAGNIOL-VILLARD wrote:
> > 	2) Cou you make the RTS part configurable by a MACRO like
> > 	CONFIG_SERIAL_RTS?
> >   
> Is this really necessary? I do not like to add configuration switches 
> for stuff that does not need to be configurable. It is not like we are 
> adding full hardware handshake ...
> 
> Currently, RTS is always inactive, so it must be ignored by anyone 
> talking to such a target board.
> 
> If we make RTS always active, this should cause no harm, but make it 
> possible to talk to the board using a terminal program that has RTS/CTS 
> handshaking activated.

I've already have problem when using usb <=> serial device when you have
RTS active on the board and not on the Host.

Best Regards,
J.

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2007-12-09  8:40     ` Jean-Christophe PLAGNIOL-VILLARD
@ 2007-12-09 15:58       ` Michael Schwingen
  0 siblings, 0 replies; 13+ messages in thread
From: Michael Schwingen @ 2007-12-09 15:58 UTC (permalink / raw)
  To: u-boot

Jean-Christophe PLAGNIOL-VILLARD wrote:
> I've already have problem when using usb <=> serial device when you have
> RTS active on the board and not on the Host.
>   
Hm - one more reason why I don't like those USB-RS232 thingies.
Okay, I'll make it conditional then.

cu
Michael

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2007-12-08 15:32 ` Jean-Christophe PLAGNIOL-VILLARD
  2007-12-08 15:35   ` [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x Jean-Christophe PLAGNIOL-VILLARD
  2007-12-08 22:37   ` [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS Michael Schwingen
@ 2007-12-09 17:00   ` Michael Schwingen
  2008-01-10 10:56     ` Jean-Christophe PLAGNIOL-VILLARD
  2 siblings, 1 reply; 13+ messages in thread
From: Michael Schwingen @ 2007-12-09 17:00 UTC (permalink / raw)
  To: u-boot

On Sat, Dec 08, 2007 at 04:32:45PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> 	2 points about this patch
> 
> 	1) I will send a patch to support all baud rates for ipx42x, ixp45x and ixp46x
> 
> 	2) Cou you make the RTS part configurable by a MACRO like
> 	CONFIG_SERIAL_RTS?

Okay - how about this:

Signed-off-by: Michael Schwingen <michael@schwingen.org>

diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
index 62b1f24..190641a 100644
--- a/cpu/ixp/serial.c
+++ b/cpu/ixp/serial.c
@@ -63,8 +63,11 @@ void serial_setbrg (void)
 	DLL(uart) = quot & 0xff;
 	DLH(uart) = quot >> 8;
 	LCR(uart) = LCR_WLS0 | LCR_WLS1;
+#ifdef CONFIG_SERIAL_RTS_ACTIVE
 	MCR(uart) = MCR_RTS;				/* set RTS active */
-
+#else
+	MCR(uart) = 0;					/* set RTS inactive */
+#endif
 	IER(uart) = IER_UUE;
 }
 
This also adds code to initialize RTS to off in case you did not set
CONFIG_SERIAL_RTS_ACTIVE.

cu
Michael

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2007-12-09 17:00   ` Michael Schwingen
@ 2008-01-10 10:56     ` Jean-Christophe PLAGNIOL-VILLARD
  2008-01-10 21:59       ` Michael Schwingen
  0 siblings, 1 reply; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-01-10 10:56 UTC (permalink / raw)
  To: u-boot

On 18:00 Sun 09 Dec     , Michael Schwingen wrote:
> On Sat, Dec 08, 2007 at 04:32:45PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > 	2 points about this patch
> > 
> > 	1) I will send a patch to support all baud rates for ipx42x, ixp45x and ixp46x
> > 
> > 	2) Cou you make the RTS part configurable by a MACRO like
> > 	CONFIG_SERIAL_RTS?
> 
> Okay - how about this:
> 
> Signed-off-by: Michael Schwingen <michael@schwingen.org>
> 
> diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
> index 62b1f24..190641a 100644
> --- a/cpu/ixp/serial.c
> +++ b/cpu/ixp/serial.c
> @@ -63,8 +63,11 @@ void serial_setbrg (void)
>  	DLL(uart) = quot & 0xff;
>  	DLH(uart) = quot >> 8;
>  	LCR(uart) = LCR_WLS0 | LCR_WLS1;
> +#ifdef CONFIG_SERIAL_RTS_ACTIVE
>  	MCR(uart) = MCR_RTS;				/* set RTS active */
> -
> +#else
> +	MCR(uart) = 0;					/* set RTS inactive */
> +#endif
>  	IER(uart) = IER_UUE;
>  }
>  
> This also adds code to initialize RTS to off in case you did not set
> CONFIG_SERIAL_RTS_ACTIVE.
Hi Michael,

Could resend this patch?

Best Regards,
J.

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2008-01-10 10:56     ` Jean-Christophe PLAGNIOL-VILLARD
@ 2008-01-10 21:59       ` Michael Schwingen
  2008-01-11  0:25         ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 13+ messages in thread
From: Michael Schwingen @ 2008-01-10 21:59 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 10, 2008 at 11:56:03AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi Michael,
> 
> Could resend this patch?

Sure - this is from my local tree with the lastest changes from master
pulled in, although I don't see much differences - but maybe git does.

Signed-off-by: Michael Schwingen <michael@schwingen.org>

diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
index cf520b6..4549631 100644
--- a/cpu/ixp/serial.c
+++ b/cpu/ixp/serial.c
@@ -58,7 +58,11 @@ void serial_setbrg (void)
 	DLL(uart) = quot & 0xff;
 	DLH(uart) = quot >> 8;
 	LCR(uart) = LCR_WLS0 | LCR_WLS1;
-
+#ifdef CONFIG_SERIAL_RTS_ACTIVE
+	MCR(uart) = MCR_RTS;				/* set RTS active */
+#else
+	MCR(uart) = 0;					/* set RTS inactive */
+#endif
 	IER(uart) = IER_UUE;
 }
 

cu
Michael

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

* [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS
  2008-01-10 21:59       ` Michael Schwingen
@ 2008-01-11  0:25         ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 13+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-01-11  0:25 UTC (permalink / raw)
  To: u-boot

On 22:59 Thu 10 Jan     , Michael Schwingen wrote:
> On Thu, Jan 10, 2008 at 11:56:03AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > Hi Michael,
> > 
> > Could resend this patch?
> 
> Sure - this is from my local tree with the lastest changes from master
> pulled in, although I don't see much differences - but maybe git does.
> 
> Signed-off-by: Michael Schwingen <michael@schwingen.org>
> 
> diff --git a/cpu/ixp/serial.c b/cpu/ixp/serial.c
> index cf520b6..4549631 100644
Apply in testing ixp repos

Best Regards,
J.

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

end of thread, other threads:[~2008-01-11  0:25 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-10 15:47 [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS Michael Schwingen
2007-12-08 15:32 ` Jean-Christophe PLAGNIOL-VILLARD
2007-12-08 15:35   ` [U-Boot-Users] [PATCH] IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x Jean-Christophe PLAGNIOL-VILLARD
2007-12-08 16:13     ` Stefan Roese
2007-12-08 16:58     ` Wolfgang Denk
2007-12-08 17:03       ` Jean-Christophe PLAGNIOL-VILLARD
2007-12-08 22:37   ` [U-Boot-Users] PATCH: ixp42x UART: support 230400bps, enable RTS Michael Schwingen
2007-12-09  8:40     ` Jean-Christophe PLAGNIOL-VILLARD
2007-12-09 15:58       ` Michael Schwingen
2007-12-09 17:00   ` Michael Schwingen
2008-01-10 10:56     ` Jean-Christophe PLAGNIOL-VILLARD
2008-01-10 21:59       ` Michael Schwingen
2008-01-11  0:25         ` Jean-Christophe PLAGNIOL-VILLARD

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