Lines Matching refs:ip_uart

109     ioc4_uart_t        *ip_uart;  member
797 lcr = PCI_INB(&port->ip_uart->i4u_lcr); in set_baud_ti()
799 PCI_OUTB(&port->ip_uart->i4u_lcr, lcr | LCR_DLAB); in set_baud_ti()
801 PCI_OUTB(&port->ip_uart->i4u_dll, (char) divisor); in set_baud_ti()
803 PCI_OUTB(&port->ip_uart->i4u_dlm, (char) (divisor >> 8)); in set_baud_ti()
805 PCI_OUTB(&port->ip_uart->i4u_lcr, lcr); in set_baud_ti()
840 PCI_OUTB(&port->ip_uart->i4u_lcr, 0); /* clear DLAB */ in hardware_init()
841 PCI_OUTB(&port->ip_uart->i4u_ier, 0); in hardware_init()
847 PCI_OUTB(&port->ip_uart->i4u_lcr, LCR_BITS8 | LCR_1_STOP_BITS); in hardware_init()
850 PCI_OUTB(&port->ip_uart->i4u_fcr, FCR_FIFOEN); in hardware_init()
852 PCI_OUTB(&port->ip_uart->i4u_fcr, in hardware_init()
856 PCI_OUTB(&port->ip_uart->i4u_mcr, 0); in hardware_init()
859 PCI_INB(&port->ip_uart->i4u_msr); in hardware_init()
1031 port->ip_uart = &(port->ip_ioc4->uart_0); in ioc4_serial_attach()
1034 __FUNCTION__, (void *)port->ip_serial, (void *)port->ip_uart); in ioc4_serial_attach()
1104 port->ip_uart = &(port->ip_ioc4->uart_1); in ioc4_serial_attach()
1107 __FUNCTION__, (void *)port->ip_serial, (void *)port->ip_uart); in ioc4_serial_attach()
1150 port->ip_uart = &(port->ip_ioc4->uart_2); in ioc4_serial_attach()
1153 __FUNCTION__, (void *)port->ip_serial, (void *)port->ip_uart); in ioc4_serial_attach()
1225 port->ip_uart = &(port->ip_ioc4->uart_3); in ioc4_serial_attach()
1228 __FUNCTION__, (void *)port->ip_serial, (void *)port->ip_uart); in ioc4_serial_attach()
1324 PCI_OUTB(&p->ip_uart->i4u_fcr, FCR_FIFOEN | FCR_RxFIFO); in ioc4_open()
1329 PCI_OUTB(&p->ip_uart->i4u_lcr, LCR_BITS8 | LCR_1_STOP_BITS); in ioc4_open()
1402 lcr = PCI_INB(&p->ip_uart->i4u_lcr); in ioc4_config()
1420 PCI_OUTB(&p->ip_uart->i4u_lcr, lcr); in ioc4_config()
1662 lcr = PCI_INB(&p->ip_uart->i4u_lcr); in ioc4_break()
1665 PCI_OUTB(&p->ip_uart->i4u_lcr, lcr | LCR_SNDBRK); in ioc4_break()
1669 PCI_OUTB(&p->ip_uart->i4u_lcr, lcr & ~LCR_SNDBRK); in ioc4_break()
2144 PCI_OUTB(&p->ip_uart->i4u_mcr, mcr); in set_DTRRTS()