From: Vitaly Bordug <vbordug@ru.mvista.com>
To: linuxppc-embedded@ozlabs.org
Subject: [PATCH][PPC32] SCC4 UART for MPC8272
Date: Fri, 18 Feb 2005 20:14:40 +0300 [thread overview]
Message-ID: <42162280.6040909@ru.mvista.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 179 bytes --]
This patch adds support for SCC4 UART on MPC8272ADS, it is created
against current linuxppc-2.4 tree.
Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
--
Sincerely, Vitaly
[-- Attachment #2: cpm2.diff --]
[-- Type: text/x-patch, Size: 3852 bytes --]
===== uart.c 1.19 vs 1.21 =====
--- 1.19/arch/ppc/cpm2_io/uart.c 2005-01-04 20:12:19 +03:00
+++ 1.21/arch/ppc/cpm2_io/uart.c 2005-02-18 13:57:22 +03:00
@@ -179,7 +179,11 @@
static struct serial_state rs_table[] = {
/* UART CLK PORT IRQ FLAGS NUM */
{ 0, 0, PROFF_SCC1, SIU_INT_SCC1, 0, SCC_NUM_BASE}, /* SCC1 ttyS2 */
+#ifdef CONFIG_ADS8272
+ { 0, 0, PROFF_SCC4, SIU_INT_SCC4, 0, SCC_NUM_BASE + 3 }, /* SCC4 ttyS1 */
+#else
{ 0, 0, PROFF_SCC2, SIU_INT_SCC2, 0, SCC_NUM_BASE + 1}, /* SCC2 ttyS3 */
+#endif
};
#endif /* SCC_CONSOLE */
@@ -2575,6 +2579,12 @@
volatile cpm2_map_t *immap;
volatile iop_cpm2_t *io;
+#ifdef CONFIG_ADS8272
+ /* Enable the RS-232 transceivers.
+ */
+ *(volatile uint *)(BCSR_ADDR + 4) &= ~(BCSR1_RS232_EN1 | BCSR1_RS232_EN2);
+#endif
+
init_bh(SERIAL_BH, do_serial_bh);
show_serial_version();
@@ -2693,7 +2703,14 @@
*/
immap->im_cpmux.cmx_scr &= ~0x00ffff00;
immap->im_cpmux.cmx_scr |= 0x00121b00;
-#else
+#else /* SCC_CONSOLE */
+#if !defined(CONFIG_ADS8272) /* SCC_CONSOLE && !ADS8272 */
+ /* Connect SCC1, SCC2, SCC3 to NMSI. Connect BRG1 to SCC1,
+ * BRG2 to SCC2, BRG3 to SCC3.
+ */
+ immap->im_cpmux.cmx_scr &= ~0xffffff00;
+ immap->im_cpmux.cmx_scr |= 0x00091200;
+
/* This configures SCC2 and SCC3 as the IO pins.
*/
#if !defined(CONFIG_MPC85xx_GP3)
@@ -2711,13 +2728,31 @@
io->iop_psord |= 0x00000002; /* Tx */
io->iop_pdird &= ~0x00000001; /* Rx */
io->iop_pdird |= 0x00000002; /* Tx */
-
- /* Connect SCC1, SCC2, SCC3 to NMSI. Connect BRG1 to SCC1,
- * BRG2 to SCC2, BRG3 to SCC3.
+#else /* SCC_CONSOLE && CONFIG_ADS8272 */
+ /* wire BRG1 to SCC1 and BRG4 to SCC4 */
+ immap->im_cpmux.cmx_scr &= ~0xff0000ff;
+ immap->im_cpmux.cmx_scr |= 0x0000001b;
+
+ /* The ADS8272 has serial ports on SCC1 and SCC2 configured as follows:
+ * TXD1 PD30 SCC1 Output
+ * RTS1 PD29 General Purpose Output
+ * RXD1 PD31 SCC1 Input
+ * DCD1 PC14 General Purpose Input
+ *
+ * TXD2 PD21 SCC4 Output
+ * RTS2 PD20 General Purpose Output
+ * RXD2 PD22 SCC4 Input
+ * DCD2 PC8 General Purpose Input
*/
- immap->im_cpmux.cmx_scr &= ~0xffffff00;
- immap->im_cpmux.cmx_scr |= 0x00091200;
+ io->iop_ppard |= 0x00000e07;
+ io->iop_psord &= ~0x00000e05; /* Rx */
+ io->iop_psord |= 0x00000002; /* Tx */
+ io->iop_pdird &= ~0x00000201; /* Rx */
+ io->iop_pdird |= 0x00000c06; /* Tx */
+ io->iop_pparc &= ~0x00820000;
+ io->iop_pdirc &= ~0x00820000;
#endif
+#endif /*SCC_CONSOLE*/
for (i = 0, state = rs_table; i < NR_PORTS; i++,state++) {
state->magic = SSTATE_MAGIC;
@@ -2916,6 +2951,11 @@
page = CPM_CR_SCC3_PAGE;
sblock = CPM_CR_SCC3_SBLOCK;
break;
+ case 3:
+ page = CPM_CR_SCC4_PAGE;
+ sblock = CPM_CR_SCC4_SBLOCK;
+ break;
+
}
#else
if (state->smc_scc_num == 2) {
@@ -3014,6 +3054,16 @@
scp->scc_gsmrl &= ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
#ifdef CONFIG_SCC1_CONSOLE
+#ifdef CONFIG_ADS8272
+ /* Use Port D for SCC1 and SCC4 */
+ io->iop_ppard |= 0x00000e07;
+ io->iop_psord &= ~0x00000e05; /* Rx */
+ io->iop_psord |= 0x00000002; /* Tx */
+ io->iop_pdird &= ~0x00000201; /* Rx */
+ io->iop_pdird |= 0x00000c06; /* Tx */
+ io->iop_pparc &= ~0x00820000;
+ io->iop_pdirc &= ~0x00820000;
+#else
/* Use Port D for SCC1 instead of other functions.
*/
io->iop_ppard |= 0x00000003;
@@ -3021,6 +3071,7 @@
io->iop_psord |= 0x00000002; /* Tx */
io->iop_pdird &= ~0x00000001; /* Rx */
io->iop_pdird |= 0x00000002; /* Tx */
+#endif /* CONFIG_ADS8272 */
#endif
#if defined(CONFIG_SCC2_CONSOLE) && !defined(CONFIG_MPC85xx_GP3)
/* Use Port B for SCC2.
@@ -3133,6 +3184,11 @@
page = CPM_CR_SCC3_PAGE;
sblock = CPM_CR_SCC3_SBLOCK;
break;
+ case 4:
+ page = CPM_CR_SCC4_PAGE;
+ sblock = CPM_CR_SCC4_SBLOCK;
+ break;
+
}
cp->cp_cpcr = mk_cr_cmd(page, sblock, 0,
reply other threads:[~2005-02-18 17:14 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=42162280.6040909@ru.mvista.com \
--to=vbordug@ru.mvista.com \
--cc=linuxppc-embedded@ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.