* [U-Boot] [PATCH] ppc4xx: Enable auto RS485 mode on PLU405 boards
@ 2008-12-28 18:23 Matthias Fuchs
2009-01-02 11:16 ` [U-Boot] [PATCH V2] " Matthias Fuchs
0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fuchs @ 2008-12-28 18:23 UTC (permalink / raw)
To: u-boot
This patch turns on the auto RS485 mode in the 2nd external
uart on PLU405 boards. This is a special mode of the used
Exar XR16C2850 uart. Because these boards only have a 485 physical
layer connected it's a good idea to turn it on by default.
Signed-off-by: Matthias Fuchs <mf@esd.eu>
---
board/esd/plu405/plu405.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/board/esd/plu405/plu405.c b/board/esd/plu405/plu405.c
index 61186a8..4a152c3 100644
--- a/board/esd/plu405/plu405.c
+++ b/board/esd/plu405/plu405.c
@@ -104,6 +104,7 @@ int misc_init_r (void)
unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
unsigned char *dst;
+ unsigned char fctr;
ulong len = sizeof(fpgadata);
int status;
int index;
@@ -203,6 +204,15 @@ int misc_init_r (void)
out_8(duart0_mcr, 0x08);
out_8(duart1_mcr, 0x08);
+ /*
+ * Enable auto RS485 mode in 2nd external uart
+ */
+ out_8((void *)DUART1_BA + 3, 0xbf); /* write LCR */
+ fctr = in_8((void *)DUART1_BA + 1); /* read FCTR */
+ fctr |= 0x08; /* enable RS485 mode */
+ out_8((void *)DUART1_BA + 1, fctr); /* write FCTR */
+ out_8((void *)DUART1_BA + 3, 0); /* write LCR */
+
return (0);
}
--
1.5.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH V2] ppc4xx: Enable auto RS485 mode on PLU405 boards
2008-12-28 18:23 [U-Boot] [PATCH] ppc4xx: Enable auto RS485 mode on PLU405 boards Matthias Fuchs
@ 2009-01-02 11:16 ` Matthias Fuchs
2009-01-14 10:36 ` Stefan Roese
0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fuchs @ 2009-01-02 11:16 UTC (permalink / raw)
To: u-boot
2nd version of this patch eliminates a whitespace issue :-(
This patch turns on the auto RS485 mode in the 2nd external
uart on PLU405 boards. This is a special mode of the used
Exar XR16C2850 uart. Because these boards only have a 485 physical
layer connected it's a good idea to turn it on by default.
Signed-off-by: Matthias Fuchs <mf@esd.eu>
---
board/esd/plu405/plu405.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/board/esd/plu405/plu405.c b/board/esd/plu405/plu405.c
index 61186a8..85057a2 100644
--- a/board/esd/plu405/plu405.c
+++ b/board/esd/plu405/plu405.c
@@ -104,6 +104,7 @@ int misc_init_r (void)
unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
unsigned char *dst;
+ unsigned char fctr;
ulong len = sizeof(fpgadata);
int status;
int index;
@@ -203,6 +204,15 @@ int misc_init_r (void)
out_8(duart0_mcr, 0x08);
out_8(duart1_mcr, 0x08);
+ /*
+ * Enable auto RS485 mode in 2nd external uart
+ */
+ out_8((void *)DUART1_BA + 3, 0xbf); /* write LCR */
+ fctr = in_8((void *)DUART1_BA + 1); /* read FCTR */
+ fctr |= 0x08; /* enable RS485 mode */
+ out_8((void *)DUART1_BA + 1, fctr); /* write FCTR */
+ out_8((void *)DUART1_BA + 3, 0); /* write LCR */
+
return (0);
}
--
1.5.6.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH V2] ppc4xx: Enable auto RS485 mode on PLU405 boards
2009-01-02 11:16 ` [U-Boot] [PATCH V2] " Matthias Fuchs
@ 2009-01-14 10:36 ` Stefan Roese
0 siblings, 0 replies; 3+ messages in thread
From: Stefan Roese @ 2009-01-14 10:36 UTC (permalink / raw)
To: u-boot
On Friday 02 January 2009, Matthias Fuchs wrote:
> 2nd version of this patch eliminates a whitespace issue :-(
Please put such statements below the "---" next time. They don't really should
be included in the commit text. And it's always helpful to have a patch
revision description (changes in ver1: ... changes in ver2: ... etc) below
the "---".
I removed this line for now so no need to resend now.
> This patch turns on the auto RS485 mode in the 2nd external
> uart on PLU405 boards. This is a special mode of the used
> Exar XR16C2850 uart. Because these boards only have a 485 physical
> layer connected it's a good idea to turn it on by default.
>
> Signed-off-by: Matthias Fuchs <mf@esd.eu>
Added to u-boot/master.
Thanks.
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] 3+ messages in thread
end of thread, other threads:[~2009-01-14 10:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-28 18:23 [U-Boot] [PATCH] ppc4xx: Enable auto RS485 mode on PLU405 boards Matthias Fuchs
2009-01-02 11:16 ` [U-Boot] [PATCH V2] " Matthias Fuchs
2009-01-14 10:36 ` Stefan Roese
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox