/Linux-v5.4/drivers/usb/typec/tcpm/ |
D | tcpm.c | 336 struct tcpm_port *port; member 344 #define tcpm_port_is_sink(port) \ argument 345 ((tcpm_cc_is_sink((port)->cc1) && !tcpm_cc_is_sink((port)->cc2)) || \ 346 (tcpm_cc_is_sink((port)->cc2) && !tcpm_cc_is_sink((port)->cc1))) 352 #define tcpm_port_is_source(port) \ argument 353 ((tcpm_cc_is_source((port)->cc1) && \ 354 !tcpm_cc_is_source((port)->cc2)) || \ 355 (tcpm_cc_is_source((port)->cc2) && \ 356 !tcpm_cc_is_source((port)->cc1))) 358 #define tcpm_port_is_debug(port) \ argument [all …]
|
/Linux-v5.4/drivers/tty/ |
D | tty_port.c | 22 static int tty_port_default_receive_buf(struct tty_port *port, in tty_port_default_receive_buf() argument 30 tty = READ_ONCE(port->itty); in tty_port_default_receive_buf() 45 static void tty_port_default_wakeup(struct tty_port *port) in tty_port_default_wakeup() argument 47 struct tty_struct *tty = tty_port_tty_get(port); in tty_port_default_wakeup() 60 void tty_port_init(struct tty_port *port) in tty_port_init() argument 62 memset(port, 0, sizeof(*port)); in tty_port_init() 63 tty_buffer_init(port); in tty_port_init() 64 init_waitqueue_head(&port->open_wait); in tty_port_init() 65 init_waitqueue_head(&port->delta_msr_wait); in tty_port_init() 66 mutex_init(&port->mutex); in tty_port_init() [all …]
|
/Linux-v5.4/drivers/mmc/core/ |
D | sdio_uart.c | 64 struct tty_port port; member 86 static int sdio_uart_add_port(struct sdio_uart_port *port) in sdio_uart_add_port() argument 90 mutex_init(&port->func_lock); in sdio_uart_add_port() 91 spin_lock_init(&port->write_lock); in sdio_uart_add_port() 92 if (kfifo_alloc(&port->xmit_fifo, FIFO_SIZE, GFP_KERNEL)) in sdio_uart_add_port() 98 port->index = index; in sdio_uart_add_port() 99 sdio_uart_table[index] = port; in sdio_uart_add_port() 111 struct sdio_uart_port *port; in sdio_uart_port_get() local 117 port = sdio_uart_table[index]; in sdio_uart_port_get() 118 if (port) in sdio_uart_port_get() [all …]
|
/Linux-v5.4/drivers/tty/serial/ |
D | vr41xx_siu.c | 59 #define siu_read(port, offset) readb((port)->membase + (offset)) argument 60 #define siu_write(port, offset, value) writeb((value), (port)->membase + (offset)) argument 64 struct uart_port *port; in vr41xx_select_siu_interface() local 68 port = &siu_uart_ports[0]; in vr41xx_select_siu_interface() 70 spin_lock_irqsave(&port->lock, flags); in vr41xx_select_siu_interface() 72 irsel = siu_read(port, SIUIRSEL); in vr41xx_select_siu_interface() 77 siu_write(port, SIUIRSEL, irsel); in vr41xx_select_siu_interface() 79 spin_unlock_irqrestore(&port->lock, flags); in vr41xx_select_siu_interface() 85 struct uart_port *port; in vr41xx_use_irda() local 89 port = &siu_uart_ports[0]; in vr41xx_use_irda() [all …]
|
D | mvebu-uart.c | 128 struct uart_port *port; member 138 static struct mvebu_uart *to_mvuart(struct uart_port *port) in to_mvuart() argument 140 return (struct mvebu_uart *)port->private_data; in to_mvuart() 143 #define IS_EXTENDED(port) (to_mvuart(port)->data->is_ext) argument 145 #define UART_RBR(port) (to_mvuart(port)->data->regs.rbr) argument 146 #define UART_TSH(port) (to_mvuart(port)->data->regs.tsh) argument 147 #define UART_CTRL(port) (to_mvuart(port)->data->regs.ctrl) argument 148 #define UART_INTR(port) (to_mvuart(port)->data->regs.intr) argument 150 #define CTRL_TX_RDY_INT(port) (to_mvuart(port)->data->flags.ctrl_tx_rdy_int) argument 151 #define CTRL_RX_RDY_INT(port) (to_mvuart(port)->data->flags.ctrl_rx_rdy_int) argument [all …]
|
D | mpc52xx_uart.c | 77 #define PSC(port) ((struct mpc52xx_psc __iomem *)((port)->membase)) argument 82 static irqreturn_t mpc5xxx_uart_process_int(struct uart_port *port); 89 void (*fifo_init)(struct uart_port *port); 90 int (*raw_rx_rdy)(struct uart_port *port); 91 int (*raw_tx_rdy)(struct uart_port *port); 92 int (*rx_rdy)(struct uart_port *port); 93 int (*tx_rdy)(struct uart_port *port); 94 int (*tx_empty)(struct uart_port *port); 95 void (*stop_rx)(struct uart_port *port); 96 void (*start_tx)(struct uart_port *port); [all …]
|
D | bcm63xx_uart.c | 77 static inline unsigned int bcm_uart_readl(struct uart_port *port, in bcm_uart_readl() argument 80 return __raw_readl(port->membase + offset); in bcm_uart_readl() 83 static inline void bcm_uart_writel(struct uart_port *port, in bcm_uart_writel() argument 86 __raw_writel(value, port->membase + offset); in bcm_uart_writel() 92 static unsigned int bcm_uart_tx_empty(struct uart_port *port) in bcm_uart_tx_empty() argument 96 val = bcm_uart_readl(port, UART_IR_REG); in bcm_uart_tx_empty() 103 static void bcm_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) in bcm_uart_set_mctrl() argument 107 val = bcm_uart_readl(port, UART_MCTL_REG); in bcm_uart_set_mctrl() 114 bcm_uart_writel(port, val, UART_MCTL_REG); in bcm_uart_set_mctrl() 116 val = bcm_uart_readl(port, UART_CTL_REG); in bcm_uart_set_mctrl() [all …]
|
D | timbuart.c | 25 struct uart_port port; member 35 static void timbuart_mctrl_check(struct uart_port *port, u32 isr, u32 *ier); 39 static void timbuart_stop_rx(struct uart_port *port) in timbuart_stop_rx() argument 42 u32 ier = ioread32(port->membase + TIMBUART_IER) & ~RXFLAGS; in timbuart_stop_rx() 43 iowrite32(ier, port->membase + TIMBUART_IER); in timbuart_stop_rx() 46 static void timbuart_stop_tx(struct uart_port *port) in timbuart_stop_tx() argument 49 u32 ier = ioread32(port->membase + TIMBUART_IER) & ~TXBAE; in timbuart_stop_tx() 50 iowrite32(ier, port->membase + TIMBUART_IER); in timbuart_stop_tx() 53 static void timbuart_start_tx(struct uart_port *port) in timbuart_start_tx() argument 56 container_of(port, struct timbuart_port, port); in timbuart_start_tx() [all …]
|
D | mcf.c | 53 struct uart_port port; member 60 static unsigned int mcf_tx_empty(struct uart_port *port) in mcf_tx_empty() argument 62 return (readb(port->membase + MCFUART_USR) & MCFUART_USR_TXEMPTY) ? in mcf_tx_empty() 68 static unsigned int mcf_get_mctrl(struct uart_port *port) in mcf_get_mctrl() argument 70 struct mcf_uart *pp = container_of(port, struct mcf_uart, port); in mcf_get_mctrl() 73 sigs = (readb(port->membase + MCFUART_UIPR) & MCFUART_UIPR_CTS) ? in mcf_get_mctrl() 76 sigs |= (mcf_getppdcd(port->line) ? TIOCM_CD : 0); in mcf_get_mctrl() 77 sigs |= (mcf_getppdtr(port->line) ? TIOCM_DTR : 0); in mcf_get_mctrl() 84 static void mcf_set_mctrl(struct uart_port *port, unsigned int sigs) in mcf_set_mctrl() argument 86 struct mcf_uart *pp = container_of(port, struct mcf_uart, port); in mcf_set_mctrl() [all …]
|
D | apbuart.c | 43 static void apbuart_tx_chars(struct uart_port *port); 45 static void apbuart_stop_tx(struct uart_port *port) in apbuart_stop_tx() argument 49 cr = UART_GET_CTRL(port); in apbuart_stop_tx() 51 UART_PUT_CTRL(port, cr); in apbuart_stop_tx() 54 static void apbuart_start_tx(struct uart_port *port) in apbuart_start_tx() argument 58 cr = UART_GET_CTRL(port); in apbuart_start_tx() 60 UART_PUT_CTRL(port, cr); in apbuart_start_tx() 62 if (UART_GET_STATUS(port) & UART_STATUS_THE) in apbuart_start_tx() 63 apbuart_tx_chars(port); in apbuart_start_tx() 66 static void apbuart_stop_rx(struct uart_port *port) in apbuart_stop_rx() argument [all …]
|
D | altera_uart.c | 78 struct uart_port port; member 84 static u32 altera_uart_readl(struct uart_port *port, int reg) in altera_uart_readl() argument 86 return readl(port->membase + (reg << port->regshift)); in altera_uart_readl() 89 static void altera_uart_writel(struct uart_port *port, u32 dat, int reg) in altera_uart_writel() argument 91 writel(dat, port->membase + (reg << port->regshift)); in altera_uart_writel() 94 static unsigned int altera_uart_tx_empty(struct uart_port *port) in altera_uart_tx_empty() argument 96 return (altera_uart_readl(port, ALTERA_UART_STATUS_REG) & in altera_uart_tx_empty() 100 static unsigned int altera_uart_get_mctrl(struct uart_port *port) in altera_uart_get_mctrl() argument 102 struct altera_uart *pp = container_of(port, struct altera_uart, port); in altera_uart_get_mctrl() 105 sigs = (altera_uart_readl(port, ALTERA_UART_STATUS_REG) & in altera_uart_get_mctrl() [all …]
|
D | atmel_serial.c | 63 static void atmel_start_rx(struct uart_port *port); 64 static void atmel_stop_rx(struct uart_port *port); 188 int (*prepare_rx)(struct uart_port *port); 189 int (*prepare_tx)(struct uart_port *port); 190 void (*schedule_rx)(struct uart_port *port); 191 void (*schedule_tx)(struct uart_port *port); 192 void (*release_rx)(struct uart_port *port); 193 void (*release_tx)(struct uart_port *port); 216 static inline u32 atmel_uart_readl(struct uart_port *port, u32 reg) in atmel_uart_readl() argument 218 return __raw_readl(port->membase + reg); in atmel_uart_readl() [all …]
|
D | altera_jtaguart.c | 57 struct uart_port port; member 62 static unsigned int altera_jtaguart_tx_empty(struct uart_port *port) in altera_jtaguart_tx_empty() argument 64 return (readl(port->membase + ALTERA_JTAGUART_CONTROL_REG) & in altera_jtaguart_tx_empty() 68 static unsigned int altera_jtaguart_get_mctrl(struct uart_port *port) in altera_jtaguart_get_mctrl() argument 73 static void altera_jtaguart_set_mctrl(struct uart_port *port, unsigned int sigs) in altera_jtaguart_set_mctrl() argument 77 static void altera_jtaguart_start_tx(struct uart_port *port) in altera_jtaguart_start_tx() argument 80 container_of(port, struct altera_jtaguart, port); in altera_jtaguart_start_tx() 83 writel(pp->imr, port->membase + ALTERA_JTAGUART_CONTROL_REG); in altera_jtaguart_start_tx() 86 static void altera_jtaguart_stop_tx(struct uart_port *port) in altera_jtaguart_stop_tx() argument 89 container_of(port, struct altera_jtaguart, port); in altera_jtaguart_stop_tx() [all …]
|
D | meson_uart.c | 84 static void meson_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) in meson_uart_set_mctrl() argument 88 static unsigned int meson_uart_get_mctrl(struct uart_port *port) in meson_uart_get_mctrl() argument 93 static unsigned int meson_uart_tx_empty(struct uart_port *port) in meson_uart_tx_empty() argument 97 val = readl(port->membase + AML_UART_STATUS); in meson_uart_tx_empty() 102 static void meson_uart_stop_tx(struct uart_port *port) in meson_uart_stop_tx() argument 106 val = readl(port->membase + AML_UART_CONTROL); in meson_uart_stop_tx() 108 writel(val, port->membase + AML_UART_CONTROL); in meson_uart_stop_tx() 111 static void meson_uart_stop_rx(struct uart_port *port) in meson_uart_stop_rx() argument 115 val = readl(port->membase + AML_UART_CONTROL); in meson_uart_stop_rx() 117 writel(val, port->membase + AML_UART_CONTROL); in meson_uart_stop_rx() [all …]
|
/Linux-v5.4/drivers/net/bonding/ |
D | bond_3ad.c | 102 static int ad_lacpdu_send(struct port *port); 103 static int ad_marker_send(struct port *port, struct bond_marker *marker); 104 static void ad_mux_machine(struct port *port, bool *update_slave_arr); 105 static void ad_rx_machine(struct lacpdu *lacpdu, struct port *port); 106 static void ad_tx_machine(struct port *port); 107 static void ad_periodic_machine(struct port *port); 108 static void ad_port_selection_logic(struct port *port, bool *update_slave_arr); 113 static void ad_initialize_port(struct port *port, int lacp_fast); 114 static void ad_enable_collecting_distributing(struct port *port, 116 static void ad_disable_collecting_distributing(struct port *port, [all …]
|
/Linux-v5.4/drivers/parport/ |
D | ieee1284.c | 42 static void parport_ieee1284_wakeup (struct parport *port) in parport_ieee1284_wakeup() argument 44 up (&port->physport->ieee1284.irq); in parport_ieee1284_wakeup() 49 struct parport *port = from_timer(port, t, timer); in timeout_waiting_on_port() local 51 parport_ieee1284_wakeup (port); in timeout_waiting_on_port() 70 int parport_wait_event (struct parport *port, signed long timeout) in parport_wait_event() argument 74 if (!port->physport->cad->timeout) in parport_wait_event() 79 timer_setup(&port->timer, timeout_waiting_on_port, 0); in parport_wait_event() 80 mod_timer(&port->timer, jiffies + timeout); in parport_wait_event() 81 ret = down_interruptible (&port->physport->ieee1284.irq); in parport_wait_event() 82 if (!del_timer_sync(&port->timer) && !ret) in parport_wait_event() [all …]
|
D | ieee1284_ops.c | 41 size_t parport_ieee1284_write_compat (struct parport *port, in parport_ieee1284_write_compat() argument 49 struct pardevice *dev = port->physport->cad; in parport_ieee1284_write_compat() 53 if (port->irq != PARPORT_IRQ_NONE) { in parport_ieee1284_write_compat() 54 parport_enable_irq (port); in parport_ieee1284_write_compat() 58 port->physport->ieee1284.phase = IEEE1284_PH_FWD_DATA; in parport_ieee1284_write_compat() 59 parport_write_control (port, ctl); in parport_ieee1284_write_compat() 60 parport_data_forward (port); in parport_ieee1284_write_compat() 72 if (!parport_wait_peripheral (port, mask, val)) in parport_ieee1284_write_compat() 77 if ((parport_read_status (port) & in parport_ieee1284_write_compat() 105 parport_wait_event (port, wait); in parport_ieee1284_write_compat() [all …]
|
/Linux-v5.4/drivers/scsi/libsas/ |
D | sas_port.c | 15 static bool phy_is_wideport_member(struct asd_sas_port *port, struct asd_sas_phy *phy) in phy_is_wideport_member() argument 19 if (memcmp(port->attached_sas_addr, phy->attached_sas_addr, in phy_is_wideport_member() 21 memcmp(port->sas_addr, phy->sas_addr, SAS_ADDR_SIZE) != 0)) in phy_is_wideport_member() 29 struct asd_sas_port *port = phy->port; in sas_resume_port() local 36 if (port->suspended) in sas_resume_port() 37 port->suspended = 0; in sas_resume_port() 47 list_for_each_entry(dev, &port->dev_list, dev_list_node) { in sas_resume_port() 52 sas_unregister_dev(port, dev); in sas_resume_port() 53 sas_destruct_devices(port); in sas_resume_port() 67 sas_discover_event(port, DISCE_RESUME); in sas_resume_port() [all …]
|
/Linux-v5.4/drivers/usb/gadget/function/ |
D | u_serial.c | 86 struct gs_port *port; member 100 struct tty_port port; member 129 struct gs_port *port; member 200 gs_send_packet(struct gs_port *port, char *packet, unsigned size) in gs_send_packet() argument 204 len = kfifo_len(&port->port_write_buf); in gs_send_packet() 208 size = kfifo_out(&port->port_write_buf, packet, size); in gs_send_packet() 223 static int gs_start_tx(struct gs_port *port) in gs_start_tx() argument 229 struct list_head *pool = &port->write_pool; in gs_start_tx() 234 if (!port->port_usb) in gs_start_tx() 237 in = port->port_usb->in; in gs_start_tx() [all …]
|
/Linux-v5.4/drivers/usb/host/ |
D | xhci-dbgtty.c | 18 dbc_send_packet(struct dbc_port *port, char *packet, unsigned int size) in dbc_send_packet() argument 22 len = kfifo_len(&port->write_fifo); in dbc_send_packet() 26 size = kfifo_out(&port->write_fifo, packet, size); in dbc_send_packet() 30 static int dbc_start_tx(struct dbc_port *port) in dbc_start_tx() argument 31 __releases(&port->port_lock) in dbc_start_tx() 32 __acquires(&port->port_lock) in dbc_start_tx() 38 struct list_head *pool = &port->write_pool; in dbc_start_tx() 42 len = dbc_send_packet(port, req->buf, DBC_MAX_PACKET); in dbc_start_tx() 50 spin_unlock(&port->port_lock); in dbc_start_tx() 51 status = dbc_ep_queue(port->out, req, GFP_ATOMIC); in dbc_start_tx() [all …]
|
/Linux-v5.4/drivers/char/ |
D | virtio_console.c | 172 struct port { struct 242 static struct port *find_port_by_vtermno(u32 vtermno) in find_port_by_vtermno() argument 244 struct port *port; in find_port_by_vtermno() local 251 port = container_of(cons, struct port, cons); in find_port_by_vtermno() 255 port = NULL; in find_port_by_vtermno() 258 return port; in find_port_by_vtermno() 261 static struct port *find_port_by_devt_in_portdev(struct ports_device *portdev, in find_port_by_devt_in_portdev() 264 struct port *port; in find_port_by_devt_in_portdev() local 268 list_for_each_entry(port, &portdev->ports, list) { in find_port_by_devt_in_portdev() 269 if (port->cdev->dev == dev) { in find_port_by_devt_in_portdev() [all …]
|
/Linux-v5.4/drivers/usb/serial/ |
D | generic.c | 106 int usb_serial_generic_open(struct tty_struct *tty, struct usb_serial_port *port) in usb_serial_generic_open() argument 110 clear_bit(USB_SERIAL_THROTTLED, &port->flags); in usb_serial_generic_open() 112 if (port->bulk_in_size) in usb_serial_generic_open() 113 result = usb_serial_generic_submit_read_urbs(port, GFP_KERNEL); in usb_serial_generic_open() 119 void usb_serial_generic_close(struct usb_serial_port *port) in usb_serial_generic_close() argument 124 if (port->bulk_out_size) { in usb_serial_generic_close() 125 for (i = 0; i < ARRAY_SIZE(port->write_urbs); ++i) in usb_serial_generic_close() 126 usb_kill_urb(port->write_urbs[i]); in usb_serial_generic_close() 128 spin_lock_irqsave(&port->lock, flags); in usb_serial_generic_close() 129 kfifo_reset_out(&port->write_fifo); in usb_serial_generic_close() [all …]
|
/Linux-v5.4/drivers/tty/serial/8250/ |
D | 8250_core.c | 121 struct uart_port *port; in serial8250_interrupt() local 124 port = &up->port; in serial8250_interrupt() 126 if (port->handle_irq(port)) { in serial8250_interrupt() 177 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0; in serial_link_irq_chain() 181 h = &irq_lists[up->port.irq % NR_IRQ_HASH]; in serial_link_irq_chain() 185 if (i->irq == up->port.irq) in serial_link_irq_chain() 196 i->irq = up->port.irq; in serial_link_irq_chain() 212 irq_flags |= up->port.irqflags; in serial_link_irq_chain() 213 ret = request_irq(up->port.irq, serial8250_interrupt, in serial_link_irq_chain() 214 irq_flags, up->port.name, i); in serial_link_irq_chain() [all …]
|
/Linux-v5.4/drivers/net/wan/ |
D | hd64572.c | 44 #define get_msci(port) (port->chan ? MSCI1_OFFSET : MSCI0_OFFSET) argument 45 #define get_dmac_rx(port) (port->chan ? DMAC1RX_OFFSET : DMAC0RX_OFFSET) argument 46 #define get_dmac_tx(port) (port->chan ? DMAC1TX_OFFSET : DMAC0TX_OFFSET) argument 62 static inline void enable_intr(port_t *port) in enable_intr() argument 65 sca_outl(sca_inl(IER0, port->card) | in enable_intr() 66 (port->chan ? 0x08002200 : 0x00080022), IER0, port->card); in enable_intr() 69 static inline void disable_intr(port_t *port) in disable_intr() argument 71 sca_outl(sca_inl(IER0, port->card) & in disable_intr() 72 (port->chan ? 0x00FF00FF : 0xFF00FF00), IER0, port->card); in disable_intr() 75 static inline u16 desc_abs_number(port_t *port, u16 desc, int transmit) in desc_abs_number() argument [all …]
|
/Linux-v5.4/drivers/staging/fwserial/ |
D | fwserial.c | 67 #define loop_idx(port) (((port)->index) / num_ports) argument 89 struct fwtty_port *port; member 108 static inline void debug_short_write(struct fwtty_port *port, int c, int n) in debug_short_write() argument 113 spin_lock_bh(&port->lock); in debug_short_write() 114 avail = dma_fifo_avail(&port->tx_fifo); in debug_short_write() 115 spin_unlock_bh(&port->lock); in debug_short_write() 116 fwtty_dbg(port, "short write: avail:%d req:%d wrote:%d\n", in debug_short_write() 121 #define debug_short_write(port, c, n) argument 129 static void fwtty_profile_fifo(struct fwtty_port *port, unsigned int *stat) in fwtty_profile_fifo() argument 131 spin_lock_bh(&port->lock); in fwtty_profile_fifo() [all …]
|