Home | History | Annotate | Line # | Download | only in mpcsa
mpcsa_usart.c revision 1.2
      1  1.2  matt /*	$Id: mpcsa_usart.c,v 1.2 2008/07/03 01:15:39 matt Exp $	*/
      2  1.2  matt /*	$NetBSD: mpcsa_usart.c,v 1.2 2008/07/03 01:15:39 matt Exp $	*/
      3  1.2  matt 
      4  1.2  matt /*
      5  1.2  matt  * Copyright (c) 2007 Embedtronics Oy. All rights reserved.
      6  1.2  matt  *
      7  1.2  matt  * Redistribution and use in source and binary forms, with or without
      8  1.2  matt  * modification, are permitted provided that the following conditions
      9  1.2  matt  * are met:
     10  1.2  matt  * 1. Redistributions of source code must retain the above copyright
     11  1.2  matt  *    notice, this list of conditions and the following disclaimer.
     12  1.2  matt  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.2  matt  *    notice, this list of conditions and the following disclaimer in the
     14  1.2  matt  *    documentation and/or other materials provided with the distribution.
     15  1.2  matt  *
     16  1.2  matt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.2  matt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.2  matt  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.2  matt  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.2  matt  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.2  matt  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.2  matt  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.2  matt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.2  matt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.2  matt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.2  matt  * SUCH DAMAGE.
     27  1.2  matt  */
     28  1.2  matt 
     29  1.2  matt #include <sys/cdefs.h>
     30  1.2  matt __KERNEL_RCSID(0, "$NetBSD: mpcsa_usart.c,v 1.2 2008/07/03 01:15:39 matt Exp $");
     31  1.2  matt 
     32  1.2  matt #include <sys/types.h>
     33  1.2  matt #include <sys/param.h>
     34  1.2  matt #include <sys/systm.h>
     35  1.2  matt #include <sys/kernel.h>
     36  1.2  matt #include <sys/device.h>
     37  1.2  matt #include <sys/proc.h>
     38  1.2  matt #include <arm/at91/at91reg.h>
     39  1.2  matt #include <arm/at91/at91var.h>
     40  1.2  matt #include <arm/at91/at91usartvar.h>
     41  1.2  matt #include <arm/at91/at91piovar.h>
     42  1.2  matt #include <arm/at91/at91rm9200reg.h>
     43  1.2  matt #include <evbarm/mpcsa/mpcsa_io.h>
     44  1.2  matt #include <evbarm/mpcsa/mpcsa_leds_var.h>
     45  1.2  matt #include <sys/unistd.h>
     46  1.2  matt 
     47  1.2  matt #ifdef MPCSA_USART_DEBUG
     48  1.2  matt int mpcsa_usart_debug = MPCSA_USART_DEBUG;
     49  1.2  matt #define DPRINTFN(n,x)	if (mpcsa_usart_debug>(n)) printf x;
     50  1.2  matt #else
     51  1.2  matt #define DPRINTFN(n,x)
     52  1.2  matt #endif
     53  1.2  matt 
     54  1.2  matt struct at91pio_softc;
     55  1.2  matt 
     56  1.2  matt struct mpcsa_usart_softc {
     57  1.2  matt 	struct at91usart_softc	sc_dev;
     58  1.2  matt 	struct at91pio_softc	*sc_pioa, *sc_piob, *sc_piod;
     59  1.2  matt 	void *sc_cts_ih;
     60  1.2  matt 	int sc_tx_busy, sc_rx_busy;
     61  1.2  matt };
     62  1.2  matt 
     63  1.2  matt static int mpcsa_usart_match(struct device *, struct cfdata *, void *);
     64  1.2  matt static void mpcsa_usart_attach(struct device *, struct device *, void *);
     65  1.2  matt 
     66  1.2  matt CFATTACH_DECL(mpcsa_usart, sizeof(struct mpcsa_usart_softc),
     67  1.2  matt 	      mpcsa_usart_match, mpcsa_usart_attach, NULL, NULL);
     68  1.2  matt 
     69  1.2  matt static int mpcsa_usart_enable(struct at91usart_softc *sc);
     70  1.2  matt static int mpcsa_usart_disable(struct at91usart_softc *sc);
     71  1.2  matt static void mpcsa_usart_hwflow(struct at91usart_softc *sc, int cflags);
     72  1.2  matt static void mpcsa_usart_start_tx(struct at91usart_softc *sc);
     73  1.2  matt static void mpcsa_usart_stop_tx(struct at91usart_softc *sc);
     74  1.2  matt static void mpcsa_usart_rx_started(struct at91usart_softc *sc);
     75  1.2  matt static void mpcsa_usart_rx_stopped(struct at91usart_softc *sc);
     76  1.2  matt static void mpcsa_usart_rx_rts_ctl(struct at91usart_softc *sc, int enabled);
     77  1.2  matt 
     78  1.2  matt static int mpcsa_gsm_cts_intr(void *);
     79  1.2  matt 
     80  1.2  matt static __inline int
     81  1.2  matt led_num(struct mpcsa_usart_softc *mpsc)
     82  1.2  matt {
     83  1.2  matt 	return (mpsc->sc_dev.sc_pid == PID_US3 ? LED_GSM : LED_SER1 + mpsc->sc_dev.sc_pid - PID_US0);
     84  1.2  matt }
     85  1.2  matt 
     86  1.2  matt static __inline void
     87  1.2  matt comm_led(struct mpcsa_usart_softc *mpsc, int count)
     88  1.2  matt {
     89  1.2  matt 	mpcsa_comm_led(led_num(mpsc), count);
     90  1.2  matt }
     91  1.2  matt 
     92  1.2  matt static __inline void
     93  1.2  matt conn_led(struct mpcsa_usart_softc *mpsc, int count)
     94  1.2  matt {
     95  1.2  matt 	mpcsa_conn_led(led_num(mpsc), count);
     96  1.2  matt }
     97  1.2  matt 
     98  1.2  matt static int
     99  1.2  matt mpcsa_usart_match(struct device *parent, struct cfdata *match, void *aux)
    100  1.2  matt {
    101  1.2  matt 	if (strcmp(match->cf_name, "at91usart") == 0 && strcmp(match->cf_atname, "mpcsa_usart") == 0)
    102  1.2  matt 		return 2;
    103  1.2  matt 	return 0;
    104  1.2  matt }
    105  1.2  matt 
    106  1.2  matt 
    107  1.2  matt static void
    108  1.2  matt mpcsa_usart_attach(struct device *parent, struct device *self, void *aux)
    109  1.2  matt {
    110  1.2  matt 	struct mpcsa_usart_softc *sc = (struct mpcsa_usart_softc *)self;
    111  1.2  matt 	struct at91bus_attach_args *sa = aux;
    112  1.2  matt 
    113  1.2  matt 	// initialize softc
    114  1.2  matt 	if ((sc->sc_pioa = at91pio_sc(AT91_PIOA)) == NULL) {
    115  1.2  matt 		printf("no PIOA!\n");
    116  1.2  matt 		return;
    117  1.2  matt 	}
    118  1.2  matt 	if ((sc->sc_piob = at91pio_sc(AT91_PIOB)) == NULL) {
    119  1.2  matt 		printf("no PIOB!\n");
    120  1.2  matt 		return;
    121  1.2  matt 	}
    122  1.2  matt 	if ((sc->sc_piod = at91pio_sc(AT91_PIOD)) == NULL) {
    123  1.2  matt 		printf("no PIOD!\n");
    124  1.2  matt 		return;
    125  1.2  matt 	}
    126  1.2  matt 
    127  1.2  matt 	// calculate unit number...
    128  1.2  matt 	switch (sa->sa_pid) {
    129  1.2  matt 	case PID_US0:
    130  1.2  matt 	case PID_US1:
    131  1.2  matt 	case PID_US2:
    132  1.2  matt 	case PID_US3:
    133  1.2  matt 		sc->sc_dev.enable = mpcsa_usart_enable;
    134  1.2  matt 		sc->sc_dev.disable = mpcsa_usart_disable;
    135  1.2  matt 		sc->sc_dev.hwflow = mpcsa_usart_hwflow;
    136  1.2  matt 		sc->sc_dev.start_tx = mpcsa_usart_start_tx;
    137  1.2  matt 		sc->sc_dev.stop_tx = mpcsa_usart_stop_tx;
    138  1.2  matt 		sc->sc_dev.rx_started = mpcsa_usart_rx_started;
    139  1.2  matt 		sc->sc_dev.rx_stopped = mpcsa_usart_rx_stopped;
    140  1.2  matt 		sc->sc_dev.rx_rts_ctl = mpcsa_usart_rx_rts_ctl;
    141  1.2  matt 		break;
    142  1.2  matt 	}
    143  1.2  matt 
    144  1.2  matt 	/* configure pins */
    145  1.2  matt 	switch (sa->sa_pid) {
    146  1.2  matt 	case PID_US0:
    147  1.2  matt 		at91pio_set(sc->sc_piob, PB_RTS1);
    148  1.2  matt 		at91pio_set(sc->sc_piod, PD_DTR1);
    149  1.2  matt 		at91pio_in(sc->sc_piob, PB_CTS1);
    150  1.2  matt 		at91pio_out(sc->sc_piob, PB_RTS1);
    151  1.2  matt 		at91pio_in(sc->sc_piod, PD_DSR1);
    152  1.2  matt 		at91pio_out(sc->sc_piod, PD_DTR1);
    153  1.2  matt 		at91pio_per(sc->sc_piob, PB_CTS1, -1);
    154  1.2  matt 		at91pio_per(sc->sc_piob, PB_RTS1, -1);
    155  1.2  matt 		at91pio_per(sc->sc_piod, PD_DSR1, -1);
    156  1.2  matt 		at91pio_per(sc->sc_piod, PD_DTR1, -1);
    157  1.2  matt 		break;
    158  1.2  matt 	case PID_US1:
    159  1.2  matt 		at91pio_set(sc->sc_piob, PB_RTS2);
    160  1.2  matt 		at91pio_set(sc->sc_piod, PD_DTR2);
    161  1.2  matt 		at91pio_in(sc->sc_piob, PB_CTS2);
    162  1.2  matt 		at91pio_out(sc->sc_piob, PB_RTS2);
    163  1.2  matt 		at91pio_in(sc->sc_piod, PD_DSR2);
    164  1.2  matt 		at91pio_out(sc->sc_piod, PD_DTR2);
    165  1.2  matt 		at91pio_per(sc->sc_piob, PB_CTS2, -1);
    166  1.2  matt 		at91pio_per(sc->sc_piob, PB_RTS2, -1);
    167  1.2  matt 		at91pio_per(sc->sc_piod, PD_DSR2, -1);
    168  1.2  matt 		at91pio_per(sc->sc_piod, PD_DTR2, -1);
    169  1.2  matt 		break;
    170  1.2  matt 	case PID_US2:
    171  1.2  matt 		at91pio_set(sc->sc_piob, PB_RTS3);
    172  1.2  matt 		at91pio_set(sc->sc_piod, PD_DTR3);
    173  1.2  matt 		at91pio_in(sc->sc_piob, PB_CTS3);
    174  1.2  matt 		at91pio_out(sc->sc_piob, PB_RTS3);
    175  1.2  matt 		at91pio_in(sc->sc_piod, PD_DSR3);
    176  1.2  matt 		at91pio_out(sc->sc_piod, PD_DTR3);
    177  1.2  matt 		at91pio_per(sc->sc_piob, PB_CTS3, -1);
    178  1.2  matt 		at91pio_per(sc->sc_piob, PB_RTS3, -1);
    179  1.2  matt 		at91pio_per(sc->sc_piod, PD_DSR3, -1);
    180  1.2  matt 		at91pio_per(sc->sc_piod, PD_DTR3, -1);
    181  1.2  matt 		break;
    182  1.2  matt 	case PID_US3:
    183  1.2  matt 		/* configure pin states... */
    184  1.2  matt 		at91pio_clear(sc->sc_pioa, PA_GSMON);
    185  1.2  matt 		at91pio_set(sc->sc_pioa, PA_GSMOFF);
    186  1.2  matt 		at91pio_set(sc->sc_piob, PB_RTS4);
    187  1.2  matt 		at91pio_set(sc->sc_piod, PD_DTR4);
    188  1.2  matt 
    189  1.2  matt 		/* configure pin directions.. */
    190  1.2  matt 		at91pio_out(sc->sc_pioa, PA_GSMOFF);
    191  1.2  matt 		at91pio_out(sc->sc_pioa, PA_GSMON);
    192  1.2  matt 		at91pio_in(sc->sc_pioa, PA_TXD4);
    193  1.2  matt 		at91pio_in(sc->sc_piob, PB_RTS4);
    194  1.2  matt 		at91pio_in(sc->sc_piob, PB_CTS4);
    195  1.2  matt 		at91pio_in(sc->sc_piod, PD_DTR4);
    196  1.2  matt 		at91pio_in(sc->sc_piod, PD_DSR4);
    197  1.2  matt 		at91pio_in(sc->sc_piod, PD_DCD4);
    198  1.2  matt 
    199  1.2  matt 		/* make sure all related pins are configured as PIO */
    200  1.2  matt 		at91pio_per(sc->sc_pioa, PA_GSMOFF, -1);
    201  1.2  matt 		at91pio_per(sc->sc_pioa, PA_GSMON, -1);
    202  1.2  matt 		at91pio_per(sc->sc_pioa, PA_TXD4, -1);
    203  1.2  matt 		at91pio_per(sc->sc_piob, PB_CTS4, -1);
    204  1.2  matt 		at91pio_per(sc->sc_piob, PB_RTS4, -1);
    205  1.2  matt 		at91pio_per(sc->sc_piod, PD_DSR4, -1);
    206  1.2  matt 		at91pio_per(sc->sc_piod, PD_DTR4, -1);
    207  1.2  matt 		at91pio_per(sc->sc_piod, PD_DCD4, -1);
    208  1.2  matt 		break;
    209  1.2  matt 	}
    210  1.2  matt 
    211  1.2  matt 	// and call common routine
    212  1.2  matt 	at91usart_attach_subr(&sc->sc_dev, sa);
    213  1.2  matt }
    214  1.2  matt 
    215  1.2  matt static int
    216  1.2  matt mpcsa_usart_enable(struct at91usart_softc *dev)
    217  1.2  matt {
    218  1.2  matt 	struct mpcsa_usart_softc *sc = (struct mpcsa_usart_softc *)dev;
    219  1.2  matt 	conn_led(sc, 1);
    220  1.2  matt 	switch (sc->sc_dev.sc_pid) {
    221  1.2  matt 	case PID_US3:
    222  1.2  matt 		/* turn gsm on */
    223  1.2  matt 		at91pio_clear(sc->sc_pioa, PA_GSMOFF);
    224  1.2  matt 		ltsleep(sc, 0, "gsmond", 4 * hz, NULL);
    225  1.2  matt 		at91pio_set(sc->sc_pioa, PA_GSMON);
    226  1.2  matt 		ltsleep(sc, 0, "gsmon", 2 * hz, NULL);
    227  1.2  matt 		at91pio_clear(sc->sc_pioa, PA_GSMON);
    228  1.2  matt 		/* then attach pins to devices etc */
    229  1.2  matt 		at91pio_per(sc->sc_pioa, PA_TXD4, 1);
    230  1.2  matt 		at91pio_clear(sc->sc_piob, PB_RTS4);
    231  1.2  matt 		at91pio_clear(sc->sc_piod, PD_DTR4);
    232  1.2  matt 		at91pio_out(sc->sc_piob, PB_RTS4);
    233  1.2  matt 		at91pio_out(sc->sc_piod, PD_DTR4);
    234  1.2  matt 		/* catch CTS interrupt */
    235  1.2  matt 		sc->sc_cts_ih = at91pio_intr_establish(sc->sc_piob, PB_CTS4,
    236  1.2  matt 						       IPL_TTY, mpcsa_gsm_cts_intr,
    237  1.2  matt 						       sc);
    238  1.2  matt 		break;
    239  1.2  matt 	}
    240  1.2  matt 	return 0;
    241  1.2  matt }
    242  1.2  matt 
    243  1.2  matt static int
    244  1.2  matt mpcsa_usart_disable(struct at91usart_softc *dev)
    245  1.2  matt {
    246  1.2  matt 	struct mpcsa_usart_softc *sc = (struct mpcsa_usart_softc *)dev;
    247  1.2  matt 	if (sc->sc_tx_busy || sc->sc_rx_busy) {
    248  1.2  matt 		sc->sc_tx_busy = sc->sc_rx_busy = 0;
    249  1.2  matt 		comm_led(sc, 1);
    250  1.2  matt 	}
    251  1.2  matt 	switch (sc->sc_dev.sc_pid) {
    252  1.2  matt 	case PID_US3:
    253  1.2  matt 		at91pio_intr_disestablish(sc->sc_piob, PB_CTS4, sc->sc_cts_ih);
    254  1.2  matt 
    255  1.2  matt 		at91pio_clear(sc->sc_pioa, PA_GSMON);
    256  1.2  matt 		ltsleep(sc, 0, "gsmoffd", (hz * 350 + 999) / 1000, NULL);
    257  1.2  matt 
    258  1.2  matt 		at91pio_per(sc->sc_pioa, PA_TXD4, -1);
    259  1.2  matt 		at91pio_in(sc->sc_piob, PB_RTS4);
    260  1.2  matt 		at91pio_in(sc->sc_piod, PD_DTR4);
    261  1.2  matt 
    262  1.2  matt 		at91pio_set(sc->sc_pioa, PA_GSMOFF);
    263  1.2  matt 		ltsleep(sc, 0, "gsmoff", hz * 4, NULL);
    264  1.2  matt 		at91pio_clear(sc->sc_pioa, PA_GSMOFF);
    265  1.2  matt 
    266  1.2  matt 		break;
    267  1.2  matt 	}
    268  1.2  matt 	conn_led(sc, 0);
    269  1.2  matt 	return 0;
    270  1.2  matt }
    271  1.2  matt 
    272  1.2  matt static int mpcsa_gsm_cts_intr(void *cookie)
    273  1.2  matt {
    274  1.2  matt 	struct mpcsa_usart_softc *sc = (struct mpcsa_usart_softc *)cookie;
    275  1.2  matt 	if (ISSET(sc->sc_dev.sc_swflags, TIOCFLAG_CRTSCTS)) {
    276  1.2  matt 		/* hardware flow control is enabled */
    277  1.2  matt 		if (!(PIOB_READ(PIO_PDSR) & (1U << PB_CTS4))) {
    278  1.2  matt 			if (bus_space_read_4(sc->sc_dev.sc_iot, sc->sc_dev.sc_ioh,
    279  1.2  matt 					     US_PDC + PDC_TCR) && !sc->sc_tx_busy) {
    280  1.2  matt 				sc->sc_tx_busy = 1;
    281  1.2  matt 				if (!sc->sc_rx_busy)
    282  1.2  matt 					comm_led(sc, INFINITE_BLINK);
    283  1.2  matt 			}
    284  1.2  matt 
    285  1.2  matt 			bus_space_write_4(sc->sc_dev.sc_iot, sc->sc_dev.sc_ioh,
    286  1.2  matt 					  US_PDC + PDC_PTCR, PDC_PTCR_TXTEN);
    287  1.2  matt 			SET(sc->sc_dev.sc_ier, US_CSR_TXEMPTY | US_CSR_ENDTX);
    288  1.2  matt 			bus_space_write_4(sc->sc_dev.sc_iot, sc->sc_dev.sc_ioh,
    289  1.2  matt 					  US_IER, US_CSR_ENDTX);
    290  1.2  matt 		} else {
    291  1.2  matt 			bus_space_write_4(sc->sc_dev.sc_iot, sc->sc_dev.sc_ioh,
    292  1.2  matt 					  US_PDC + PDC_PTCR, PDC_PTCR_TXTDIS);
    293  1.2  matt 			if (sc->sc_tx_busy) {
    294  1.2  matt 				sc->sc_tx_busy = 0;
    295  1.2  matt 				if (!sc->sc_rx_busy)
    296  1.2  matt 					comm_led(sc, 1);
    297  1.2  matt 			}
    298  1.2  matt 		}
    299  1.2  matt 	}
    300  1.2  matt 	return 0;
    301  1.2  matt }
    302  1.2  matt 
    303  1.2  matt static void
    304  1.2  matt mpcsa_usart_hwflow(struct at91usart_softc *dev, int flags)
    305  1.2  matt {
    306  1.2  matt }
    307  1.2  matt 
    308  1.2  matt static void
    309  1.2  matt mpcsa_usart_start_tx(struct at91usart_softc *sc)
    310  1.2  matt {
    311  1.2  matt 	if (!ISSET(sc->sc_swflags, TIOCFLAG_CRTSCTS)
    312  1.2  matt 	    || bus_space_read_4(sc->sc_iot, sc->sc_ioh, US_PDC + PDC_PTSR) & PDC_PTSR_TXTEN) {
    313  1.2  matt 		bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    314  1.2  matt 				  US_PDC + PDC_PTCR, PDC_PTCR_TXTEN);
    315  1.2  matt 		struct mpcsa_usart_softc *mpsc = (void*)sc;
    316  1.2  matt 		if (!mpsc->sc_tx_busy) {
    317  1.2  matt 			mpsc->sc_tx_busy = 1;
    318  1.2  matt 			if (!mpsc->sc_rx_busy)
    319  1.2  matt 				comm_led(mpsc, INFINITE_BLINK);
    320  1.2  matt 		}
    321  1.2  matt 		return;
    322  1.2  matt 	}
    323  1.2  matt }
    324  1.2  matt 
    325  1.2  matt static void
    326  1.2  matt mpcsa_usart_stop_tx(struct at91usart_softc *sc)
    327  1.2  matt {
    328  1.2  matt 	struct mpcsa_usart_softc *mpsc = (void*)sc;
    329  1.2  matt 	mpsc->sc_tx_busy = 0;
    330  1.2  matt 	if (!mpsc->sc_rx_busy)
    331  1.2  matt 		comm_led(mpsc, 1);
    332  1.2  matt 	if (!ISSET(sc->sc_swflags, TIOCFLAG_CRTSCTS)) {
    333  1.2  matt 		bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    334  1.2  matt 				  US_PDC + PDC_PTCR, PDC_PTCR_TXTDIS);
    335  1.2  matt 	}
    336  1.2  matt }
    337  1.2  matt 
    338  1.2  matt static void
    339  1.2  matt mpcsa_usart_rx_started(struct at91usart_softc *sc)
    340  1.2  matt {
    341  1.2  matt 	struct mpcsa_usart_softc *mpsc = (void*)sc;
    342  1.2  matt 	if (!mpsc->sc_rx_busy) {
    343  1.2  matt 		mpsc->sc_rx_busy = 1;
    344  1.2  matt 		if (!mpsc->sc_tx_busy)
    345  1.2  matt 			comm_led(mpsc, INFINITE_BLINK);
    346  1.2  matt 	}
    347  1.2  matt }
    348  1.2  matt 
    349  1.2  matt static void
    350  1.2  matt mpcsa_usart_rx_stopped(struct at91usart_softc *sc)
    351  1.2  matt {
    352  1.2  matt 	struct mpcsa_usart_softc *mpsc = (void*)sc;
    353  1.2  matt 	mpsc->sc_rx_busy = 0;
    354  1.2  matt 	if (!mpsc->sc_tx_busy)
    355  1.2  matt 		comm_led(mpsc, 1);
    356  1.2  matt }
    357  1.2  matt 
    358  1.2  matt static void
    359  1.2  matt mpcsa_usart_rx_rts_ctl(struct at91usart_softc *sc, int enabled)
    360  1.2  matt {
    361  1.2  matt 	struct mpcsa_usart_softc *mpsc = (void*)sc;
    362  1.2  matt 
    363  1.2  matt 	switch (mpsc->sc_dev.sc_pid) {
    364  1.2  matt 	case PID_US0:
    365  1.2  matt 		if (enabled)
    366  1.2  matt 			at91pio_set(mpsc->sc_piob, PB_RTS1);
    367  1.2  matt 		else
    368  1.2  matt 			at91pio_clear(mpsc->sc_piob, PB_RTS1);
    369  1.2  matt 		break;
    370  1.2  matt 
    371  1.2  matt 	case PID_US1:
    372  1.2  matt 		if (enabled)
    373  1.2  matt 			at91pio_set(mpsc->sc_piob, PB_RTS2);
    374  1.2  matt 		else
    375  1.2  matt 			at91pio_clear(mpsc->sc_piob, PB_RTS2);
    376  1.2  matt 		break;
    377  1.2  matt 
    378  1.2  matt 	case PID_US2:
    379  1.2  matt 		if (enabled)
    380  1.2  matt 			at91pio_set(mpsc->sc_piob, PB_RTS3);
    381  1.2  matt 		else
    382  1.2  matt 			at91pio_clear(mpsc->sc_piob, PB_RTS3);
    383  1.2  matt 		break;
    384  1.2  matt 
    385  1.2  matt 	case PID_US3:
    386  1.2  matt 		if (enabled)
    387  1.2  matt 			at91pio_set(mpsc->sc_piob, PB_RTS4);
    388  1.2  matt 		else
    389  1.2  matt 			at91pio_clear(mpsc->sc_piob, PB_RTS4);
    390  1.2  matt 		break;
    391  1.2  matt 
    392  1.2  matt 	}
    393  1.2  matt 
    394  1.2  matt }
    395  1.2  matt 
    396