Home | History | Annotate | Download | only in windermere

Lines Matching refs:fcr

746 	uint8_t fcr;
749 fcr = bus_space_read_1(sc->sc_iot, sc->sc_ioh, UARTFCR);
751 SET(fcr, FCR_BREAK);
753 CLR(fcr, FCR_BREAK);
754 bus_space_write_1(sc->sc_iot, sc->sc_ioh, UARTFCR, fcr);
829 int8_t fcr = FCR_UFIFOEN;
832 case CS5: SET(fcr, FCR_WLEN_5); break;
833 case CS6: SET(fcr, FCR_WLEN_6); break;
834 case CS7: SET(fcr, FCR_WLEN_7); break;
835 case CS8: SET(fcr, FCR_WLEN_8); break;
836 default: SET(fcr, FCR_WLEN_8); break;
839 SET(fcr, FCR_XSTOP);
841 SET(fcr, (FCR_PRTEN | FCR_EVENPRT));
843 CLR(fcr, FCR_EVENPRT);
845 return fcr;