/linux-4.4.14/drivers/tty/serial/ |
D | omap-serial.c | 180 static void serial_omap_mdr1_errataset(struct uart_omap_port *up, u8 mdr1); 182 static inline unsigned int serial_in(struct uart_omap_port *up, int offset) in serial_in() argument 184 offset <<= up->port.regshift; in serial_in() 185 return readw(up->port.membase + offset); in serial_in() 188 static inline void serial_out(struct uart_omap_port *up, int offset, int value) in serial_out() argument 190 offset <<= up->port.regshift; in serial_out() 191 writew(value, up->port.membase + offset); in serial_out() 194 static inline void serial_omap_clear_fifos(struct uart_omap_port *up) in serial_omap_clear_fifos() argument 196 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO); in serial_omap_clear_fifos() 197 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | in serial_omap_clear_fifos() [all …]
|
D | sunsu.c | 107 static unsigned int serial_in(struct uart_sunsu_port *up, int offset) in serial_in() argument 109 offset <<= up->port.regshift; in serial_in() 111 switch (up->port.iotype) { in serial_in() 113 outb(up->port.hub6 - 1 + offset, up->port.iobase); in serial_in() 114 return inb(up->port.iobase + 1); in serial_in() 117 return readb(up->port.membase + offset); in serial_in() 120 return inb(up->port.iobase + offset); in serial_in() 124 static void serial_out(struct uart_sunsu_port *up, int offset, int value) in serial_out() argument 138 offset <<= up->port.regshift; in serial_out() 140 switch (up->port.iotype) { in serial_out() [all …]
|
D | sunsab.c | 94 static __inline__ void sunsab_tec_wait(struct uart_sunsab_port *up) in sunsab_tec_wait() argument 96 int timeout = up->tec_timeout; in sunsab_tec_wait() 98 while ((readb(&up->regs->r.star) & SAB82532_STAR_TEC) && --timeout) in sunsab_tec_wait() 102 static __inline__ void sunsab_cec_wait(struct uart_sunsab_port *up) in sunsab_cec_wait() argument 104 int timeout = up->cec_timeout; in sunsab_cec_wait() 106 while ((readb(&up->regs->r.star) & SAB82532_STAR_CEC) && --timeout) in sunsab_cec_wait() 111 receive_chars(struct uart_sunsab_port *up, in receive_chars() argument 121 if (up->port.state != NULL) /* Unopened serial console */ in receive_chars() 122 port = &up->port.state->port; in receive_chars() 131 count = readb(&up->regs->r.rbcl) & (SAB82532_RECV_FIFO_SIZE - 1); in receive_chars() [all …]
|
D | bfin_sport_uart.c | 59 static int sport_uart_tx_chars(struct sport_uart_port *up); 62 static inline void tx_one_byte(struct sport_uart_port *up, unsigned int value) in tx_one_byte() argument 65 up->txmask1, up->txmask2); in tx_one_byte() 73 : [mask1]"d"(up->txmask1), [mask2]"d"(up->txmask2) in tx_one_byte() 78 SPORT_PUT_TX(up, value); in tx_one_byte() 81 static inline unsigned char rx_one_byte(struct sport_uart_port *up) in rx_one_byte() argument 87 if ((up->csize + up->stopb) > 7) in rx_one_byte() 88 value = SPORT_GET_RX32(up); in rx_one_byte() 90 value = SPORT_GET_RX(up); in rx_one_byte() 93 up->csize, up->rxmask); in rx_one_byte() [all …]
|
D | pxa.c | 60 static inline unsigned int serial_in(struct uart_pxa_port *up, int offset) in serial_in() argument 63 return readl(up->port.membase + offset); in serial_in() 66 static inline void serial_out(struct uart_pxa_port *up, int offset, int value) in serial_out() argument 69 writel(value, up->port.membase + offset); in serial_out() 74 struct uart_pxa_port *up = (struct uart_pxa_port *)port; in serial_pxa_enable_ms() local 76 up->ier |= UART_IER_MSI; in serial_pxa_enable_ms() 77 serial_out(up, UART_IER, up->ier); in serial_pxa_enable_ms() 82 struct uart_pxa_port *up = (struct uart_pxa_port *)port; in serial_pxa_stop_tx() local 84 if (up->ier & UART_IER_THRI) { in serial_pxa_stop_tx() 85 up->ier &= ~UART_IER_THRI; in serial_pxa_stop_tx() [all …]
|
D | nwpserial.c | 44 static void wait_for_bits(struct nwpserial_port *up, int bits) in wait_for_bits() argument 50 status = dcr_read(up->dcr_host, UART_LSR); in wait_for_bits() 61 struct nwpserial_port *up; in nwpserial_console_putchar() local 62 up = container_of(port, struct nwpserial_port, port); in nwpserial_console_putchar() 64 wait_for_bits(up, UART_LSR_THRE); in nwpserial_console_putchar() 65 dcr_write(up->dcr_host, UART_TX, c); in nwpserial_console_putchar() 66 up->port.icount.tx++; in nwpserial_console_putchar() 72 struct nwpserial_port *up = &nwpserial_ports[co->index]; in nwpserial_console_write() local 77 locked = spin_trylock_irqsave(&up->port.lock, flags); in nwpserial_console_write() 79 spin_lock_irqsave(&up->port.lock, flags); in nwpserial_console_write() [all …]
|
D | sunzilog.c | 271 static void sunzilog_maybe_update_regs(struct uart_sunzilog_port *up, in sunzilog_maybe_update_regs() argument 274 if (!ZS_REGS_HELD(up)) { in sunzilog_maybe_update_regs() 275 if (ZS_TX_ACTIVE(up)) { in sunzilog_maybe_update_regs() 276 up->flags |= SUNZILOG_FLAG_REGS_HELD; in sunzilog_maybe_update_regs() 278 __load_zsregs(channel, up->curregs); in sunzilog_maybe_update_regs() 283 static void sunzilog_change_mouse_baud(struct uart_sunzilog_port *up) in sunzilog_change_mouse_baud() argument 285 unsigned int cur_cflag = up->cflag; in sunzilog_change_mouse_baud() 288 up->cflag &= ~CBAUD; in sunzilog_change_mouse_baud() 289 up->cflag |= suncore_mouse_baud_cflag_next(cur_cflag, &new_baud); in sunzilog_change_mouse_baud() 292 up->curregs[R12] = (brg & 0xff); in sunzilog_change_mouse_baud() [all …]
|
D | ar933x_uart.c | 60 static inline unsigned int ar933x_uart_read(struct ar933x_uart_port *up, in ar933x_uart_read() argument 63 return readl(up->port.membase + offset); in ar933x_uart_read() 66 static inline void ar933x_uart_write(struct ar933x_uart_port *up, in ar933x_uart_write() argument 69 writel(value, up->port.membase + offset); in ar933x_uart_write() 72 static inline void ar933x_uart_rmw(struct ar933x_uart_port *up, in ar933x_uart_rmw() argument 79 t = ar933x_uart_read(up, offset); in ar933x_uart_rmw() 82 ar933x_uart_write(up, offset, t); in ar933x_uart_rmw() 85 static inline void ar933x_uart_rmw_set(struct ar933x_uart_port *up, in ar933x_uart_rmw_set() argument 89 ar933x_uart_rmw(up, offset, 0, val); in ar933x_uart_rmw_set() 92 static inline void ar933x_uart_rmw_clear(struct ar933x_uart_port *up, in ar933x_uart_rmw_clear() argument [all …]
|
D | serial_txx9.c | 173 static inline unsigned int sio_in(struct uart_txx9_port *up, int offset) in sio_in() argument 175 switch (up->port.iotype) { in sio_in() 177 return __raw_readl(up->port.membase + offset); in sio_in() 179 return inl(up->port.iobase + offset); in sio_in() 184 sio_out(struct uart_txx9_port *up, int offset, int value) in sio_out() argument 186 switch (up->port.iotype) { in sio_out() 188 __raw_writel(value, up->port.membase + offset); in sio_out() 191 outl(value, up->port.iobase + offset); in sio_out() 197 sio_mask(struct uart_txx9_port *up, int offset, unsigned int value) in sio_mask() argument 199 sio_out(up, offset, sio_in(up, offset) & ~value); in sio_mask() [all …]
|
D | ip22zilog.c | 236 static void ip22zilog_maybe_update_regs(struct uart_ip22zilog_port *up, in ip22zilog_maybe_update_regs() argument 239 if (!ZS_REGS_HELD(up)) { in ip22zilog_maybe_update_regs() 240 if (ZS_TX_ACTIVE(up)) { in ip22zilog_maybe_update_regs() 241 up->flags |= IP22ZILOG_FLAG_REGS_HELD; in ip22zilog_maybe_update_regs() 243 __load_zsregs(channel, up->curregs); in ip22zilog_maybe_update_regs() 251 static bool ip22zilog_receive_chars(struct uart_ip22zilog_port *up, in ip22zilog_receive_chars() argument 256 bool push = up->port.state != NULL; in ip22zilog_receive_chars() 274 ch &= up->parity_mask; in ip22zilog_receive_chars() 278 r1 |= up->tty_break; in ip22zilog_receive_chars() 282 up->port.icount.rx++; in ip22zilog_receive_chars() [all …]
|
D | m32r_sio.c | 224 static unsigned int sio_in(struct uart_sio_port *up, int offset) in sio_in() argument 226 return __sio_in(up->port.iobase + offset); in sio_in() 229 static void sio_out(struct uart_sio_port *up, int offset, int value) in sio_out() argument 231 __sio_out(value, up->port.iobase + offset); in sio_out() 234 static unsigned int serial_in(struct uart_sio_port *up, int offset) in serial_in() argument 242 static void serial_out(struct uart_sio_port *up, int offset, int value) in serial_out() argument 252 struct uart_sio_port *up = in m32r_sio_stop_tx() local 255 if (up->ier & UART_IER_THRI) { in m32r_sio_stop_tx() 256 up->ier &= ~UART_IER_THRI; in m32r_sio_stop_tx() 257 serial_out(up, UART_IER, up->ier); in m32r_sio_stop_tx() [all …]
|
D | etraxfs-uart.c | 51 struct uart_cris_port *up; in cris_console_write() local 56 up = etraxfs_uart_ports[co->index]; in cris_console_write() 58 if (!up) in cris_console_write() 62 tr_dma_en = old = REG_RD(ser, up->regi_ser, rw_tr_dma_en); in cris_console_write() 65 REG_WR(ser, up->regi_ser, rw_tr_dma_en, tr_dma_en); in cris_console_write() 73 stat = REG_RD(ser, up->regi_ser, r_stat_din); in cris_console_write() 75 REG_WR_INT(ser, up->regi_ser, rw_dout, '\r'); in cris_console_write() 79 stat = REG_RD(ser, up->regi_ser, r_stat_din); in cris_console_write() 81 REG_WR_INT(ser, up->regi_ser, rw_dout, s[i]); in cris_console_write() 86 REG_WR(ser, up->regi_ser, rw_tr_dma_en, old); in cris_console_write() [all …]
|
D | rp2.c | 237 static void rp2_rmw(struct rp2_uart_port *up, int reg, in rp2_rmw() argument 240 u32 tmp = readl(up->base + reg); in rp2_rmw() 243 writel(tmp, up->base + reg); in rp2_rmw() 246 static void rp2_rmw_clr(struct rp2_uart_port *up, int reg, u32 val) in rp2_rmw_clr() argument 248 rp2_rmw(up, reg, val, 0); in rp2_rmw_clr() 251 static void rp2_rmw_set(struct rp2_uart_port *up, int reg, u32 val) in rp2_rmw_set() argument 253 rp2_rmw(up, reg, 0, val); in rp2_rmw_set() 256 static void rp2_mask_ch_irq(struct rp2_uart_port *up, int ch_num, in rp2_mask_ch_irq() argument 261 spin_lock_irqsave(&up->card->card_lock, flags); in rp2_mask_ch_irq() 263 irq_mask = readl(up->asic_base + RP2_CH_IRQ_MASK); in rp2_mask_ch_irq() [all …]
|
D | sprd_serial.c | 688 struct uart_port *up; in sprd_probe() local 708 up = &sprd_port[index]->port; in sprd_probe() 709 up->dev = &pdev->dev; in sprd_probe() 710 up->line = index; in sprd_probe() 711 up->type = PORT_SPRD; in sprd_probe() 712 up->iotype = UPIO_MEM; in sprd_probe() 713 up->uartclk = SPRD_DEF_RATE; in sprd_probe() 714 up->fifosize = SPRD_FIFO_SIZE; in sprd_probe() 715 up->ops = &serial_sprd_ops; in sprd_probe() 716 up->flags = UPF_BOOT_AUTOCONF; in sprd_probe() [all …]
|
D | lpc32xx_hs.c | 142 struct lpc32xx_hsuart_port *up = &lpc32xx_hs_ports[co->index]; in lpc32xx_hsuart_console_write() local 148 if (up->port.sysrq) in lpc32xx_hsuart_console_write() 151 locked = spin_trylock(&up->port.lock); in lpc32xx_hsuart_console_write() 153 spin_lock(&up->port.lock); in lpc32xx_hsuart_console_write() 155 uart_console_write(&up->port, s, count, lpc32xx_hsuart_console_putchar); in lpc32xx_hsuart_console_write() 156 wait_for_xmit_empty(&up->port); in lpc32xx_hsuart_console_write() 159 spin_unlock(&up->port.lock); in lpc32xx_hsuart_console_write()
|
/linux-4.4.14/drivers/tty/serial/8250/ |
D | 8250_port.c | 275 static int default_serial_dl_read(struct uart_8250_port *up) in default_serial_dl_read() argument 277 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8; in default_serial_dl_read() 281 static void default_serial_dl_write(struct uart_8250_port *up, int value) in default_serial_dl_write() argument 283 serial_out(up, UART_DLL, value & 0xff); in default_serial_dl_write() 284 serial_out(up, UART_DLM, value >> 8 & 0xff); in default_serial_dl_write() 333 static int au_serial_dl_read(struct uart_8250_port *up) in au_serial_dl_read() argument 335 return __raw_readl(up->port.membase + 0x28); in au_serial_dl_read() 338 static void au_serial_dl_write(struct uart_8250_port *up, int value) in au_serial_dl_write() argument 340 __raw_writel(value, up->port.membase + 0x28); in au_serial_dl_write() 412 struct uart_8250_port *up = up_to_u8250p(p); in set_io_from_upio() local [all …]
|
D | 8250_omap.c | 118 static u32 uart_read(struct uart_8250_port *up, u32 reg) in uart_read() argument 120 return readl(up->port.membase + (reg << up->port.regshift)); in uart_read() 125 struct uart_8250_port *up = up_to_u8250p(port); in omap8250_set_mctrl() local 126 struct omap8250_priv *priv = up->port.private_data; in omap8250_set_mctrl() 135 lcr = serial_in(up, UART_LCR); in omap8250_set_mctrl() 136 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); in omap8250_set_mctrl() 141 serial_out(up, UART_EFR, priv->efr); in omap8250_set_mctrl() 142 serial_out(up, UART_LCR, lcr); in omap8250_set_mctrl() 154 static void omap_8250_mdr1_errataset(struct uart_8250_port *up, in omap_8250_mdr1_errataset() argument 160 old_mdr1 = serial_in(up, UART_OMAP_MDR1); in omap_8250_mdr1_errataset() [all …]
|
D | 8250_core.c | 123 struct uart_8250_port *up; in serial8250_interrupt() local 126 up = list_entry(l, struct uart_8250_port, list); in serial8250_interrupt() 127 port = &up->port; in serial8250_interrupt() 159 static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up) in serial_do_unlink() argument 164 if (i->head == &up->list) in serial_do_unlink() 166 list_del(&up->list); in serial_do_unlink() 168 BUG_ON(i->head != &up->list); in serial_do_unlink() 179 static int serial_link_irq_chain(struct uart_8250_port *up) in serial_link_irq_chain() argument 184 int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? IRQF_SHARED : 0; in serial_link_irq_chain() 188 h = &irq_lists[up->port.irq % NR_IRQ_HASH]; in serial_link_irq_chain() [all …]
|
D | 8250_em.c | 79 static int serial8250_em_serial_dl_read(struct uart_8250_port *up) in serial8250_em_serial_dl_read() argument 81 return serial_in(up, UART_DLL_EM) | serial_in(up, UART_DLM_EM) << 8; in serial8250_em_serial_dl_read() 84 static void serial8250_em_serial_dl_write(struct uart_8250_port *up, int value) in serial8250_em_serial_dl_write() argument 86 serial_out(up, UART_DLL_EM, value & 0xff); in serial8250_em_serial_dl_write() 87 serial_out(up, UART_DLM_EM, value >> 8 & 0xff); in serial8250_em_serial_dl_write() 95 struct uart_8250_port up; in serial8250_em_probe() local 113 memset(&up, 0, sizeof(up)); in serial8250_em_probe() 114 up.port.mapbase = regs->start; in serial8250_em_probe() 115 up.port.irq = irq->start; in serial8250_em_probe() 116 up.port.type = PORT_UNKNOWN; in serial8250_em_probe() [all …]
|
D | 8250_fsl.c | 31 struct uart_8250_port *up = up_to_u8250p(port); in fsl8250_handle_irq() local 33 spin_lock_irqsave(&up->port.lock, flags); in fsl8250_handle_irq() 37 spin_unlock_irqrestore(&up->port.lock, flags); in fsl8250_handle_irq() 42 if (unlikely(up->lsr_saved_flags & UART_LSR_BI)) { in fsl8250_handle_irq() 43 up->lsr_saved_flags &= ~UART_LSR_BI; in fsl8250_handle_irq() 45 spin_unlock_irqrestore(&up->port.lock, flags); in fsl8250_handle_irq() 49 lsr = orig_lsr = up->port.serial_in(&up->port, UART_LSR); in fsl8250_handle_irq() 52 lsr = serial8250_rx_chars(up, lsr); in fsl8250_handle_irq() 54 serial8250_modem_status(up); in fsl8250_handle_irq() 57 serial8250_tx_chars(up); in fsl8250_handle_irq() [all …]
|
D | 8250_uniphier.c | 116 static int uniphier_serial_dl_read(struct uart_8250_port *up) in uniphier_serial_dl_read() argument 118 int offset = UNIPHIER_UART_DLR << up->port.regshift; in uniphier_serial_dl_read() 120 return readl(up->port.membase + offset); in uniphier_serial_dl_read() 123 static void uniphier_serial_dl_write(struct uart_8250_port *up, int value) in uniphier_serial_dl_write() argument 125 int offset = UNIPHIER_UART_DLR << up->port.regshift; in uniphier_serial_dl_write() 127 writel(value, up->port.membase + offset); in uniphier_serial_dl_write() 169 struct uart_8250_port up; in uniphier_uart_probe() local 196 memset(&up, 0, sizeof(up)); in uniphier_uart_probe() 198 ret = uniphier_of_serial_setup(dev, &up.port, priv); in uniphier_uart_probe() 204 up.port.dev = dev; in uniphier_uart_probe() [all …]
|
D | 8250.h | 95 static inline int serial_in(struct uart_8250_port *up, int offset) in serial_in() argument 97 return up->port.serial_in(&up->port, offset); in serial_in() 100 static inline void serial_out(struct uart_8250_port *up, int offset, int value) in serial_out() argument 102 up->port.serial_out(&up->port, offset, value); in serial_out() 107 static inline int serial_dl_read(struct uart_8250_port *up) in serial_dl_read() argument 109 return up->dl_read(up); in serial_dl_read() 112 static inline void serial_dl_write(struct uart_8250_port *up, int value) in serial_dl_write() argument 114 up->dl_write(up, value); in serial_dl_write() 198 static inline int ns16550a_goto_highspeed(struct uart_8250_port *up) in ns16550a_goto_highspeed() argument 202 status = serial_in(up, 0x04); /* EXCR2 */ in ns16550a_goto_highspeed() [all …]
|
D | 8250_lpc18xx.c | 42 struct uart_8250_port *up = up_to_u8250p(port); in lpc18xx_rs485_config() local 68 baud_clk = port->uartclk / up->dl_read(up); in lpc18xx_rs485_config() 83 serial_out(up, LPC18XX_UART_RS485CTRL, rs485_ctrl_reg); in lpc18xx_rs485_config() 84 serial_out(up, LPC18XX_UART_RS485DLY, rs485_dly_reg); in lpc18xx_rs485_config()
|
D | 8250_mtk.c | 47 struct uart_8250_port *up = in mtk8250_set_termios() local 95 serial_port_out(port, UART_LCR, up->lcr | UART_LCR_DLAB); in mtk8250_set_termios() 96 serial_dl_write(up, quot); in mtk8250_set_termios() 99 serial_port_out(port, UART_LCR, up->lcr); in mtk8250_set_termios()
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-compat-ioctl32.c | 48 static int get_v4l2_window32(struct v4l2_window *kp, struct v4l2_window32 __user *up) in get_v4l2_window32() argument 50 if (!access_ok(VERIFY_READ, up, sizeof(struct v4l2_window32)) || in get_v4l2_window32() 51 copy_from_user(&kp->w, &up->w, sizeof(up->w)) || in get_v4l2_window32() 52 get_user(kp->field, &up->field) || in get_v4l2_window32() 53 get_user(kp->chromakey, &up->chromakey) || in get_v4l2_window32() 54 get_user(kp->clipcount, &up->clipcount)) in get_v4l2_window32() 64 if (get_user(p, &up->clips)) in get_v4l2_window32() 82 static int put_v4l2_window32(struct v4l2_window *kp, struct v4l2_window32 __user *up) in put_v4l2_window32() argument 84 if (copy_to_user(&up->w, &kp->w, sizeof(kp->w)) || in put_v4l2_window32() 85 put_user(kp->field, &up->field) || in put_v4l2_window32() [all …]
|
/linux-4.4.14/drivers/mtd/maps/ |
D | sun_uflash.c | 52 struct uflash_dev *up; in uflash_devinit() local 64 up = kzalloc(sizeof(struct uflash_dev), GFP_KERNEL); in uflash_devinit() 65 if (!up) { in uflash_devinit() 71 memcpy(&up->map, &uflash_map_templ, sizeof(uflash_map_templ)); in uflash_devinit() 73 up->map.size = resource_size(&op->resource[0]); in uflash_devinit() 75 up->name = of_get_property(dp, "model", NULL); in uflash_devinit() 76 if (up->name && 0 < strlen(up->name)) in uflash_devinit() 77 up->map.name = up->name; in uflash_devinit() 79 up->map.phys = op->resource[0].start; in uflash_devinit() 81 up->map.virt = of_ioremap(&op->resource[0], 0, up->map.size, in uflash_devinit() [all …]
|
/linux-4.4.14/arch/mips/pmcs-msp71xx/ |
D | msp_serial.c | 95 struct uart_port up; in msp_serial_setup() local 98 memset(&up, 0, sizeof(up)); in msp_serial_setup() 107 up.mapbase = MSP_UART0_BASE; in msp_serial_setup() 108 up.membase = ioremap_nocache(up.mapbase, MSP_UART_REG_LEN); in msp_serial_setup() 109 up.irq = MSP_INT_UART0; in msp_serial_setup() 110 up.uartclk = uartclk; in msp_serial_setup() 111 up.regshift = 2; in msp_serial_setup() 112 up.iotype = UPIO_MEM; in msp_serial_setup() 113 up.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST; in msp_serial_setup() 114 up.type = PORT_16550A; in msp_serial_setup() [all …]
|
/linux-4.4.14/lib/mpi/ |
D | mpih-mul.c | 34 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \ argument 37 mul_n_basecase(prodp, up, vp, size); \ 39 mul_n(prodp, up, vp, size, tspace); \ 42 #define MPN_SQR_N_RECURSE(prodp, up, size, tspace) \ argument 45 mpih_sqr_n_basecase(prodp, up, size); \ 47 mpih_sqr_n(prodp, up, size, tspace); \ 68 mul_n_basecase(mpi_ptr_t prodp, mpi_ptr_t up, mpi_ptr_t vp, mpi_size_t size) in mul_n_basecase() argument 79 MPN_COPY(prodp, up, size); in mul_n_basecase() 84 cy = mpihelp_mul_1(prodp, up, size, v_limb); in mul_n_basecase() 96 cy = mpihelp_add_n(prodp, prodp, up, size); in mul_n_basecase() [all …]
|
D | mpi-internal.h | 123 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \ argument 126 mul_n_basecase(prodp, up, vp, size); \ 128 mul_n(prodp, up, vp, size, tspace); \ 205 int mpihelp_mul_n(mpi_ptr_t prodp, mpi_ptr_t up, mpi_ptr_t vp, mpi_size_t size); 206 int mpihelp_mul(mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t usize, 208 void mpih_sqr_n_basecase(mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t size); 209 void mpih_sqr_n(mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t size, 213 mpi_ptr_t up, mpi_size_t usize, 232 mpi_limb_t mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, 234 mpi_limb_t mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize,
|
D | generic_mpih-lshift.c | 41 mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned int cnt) in mpihelp_lshift() argument 52 low_limb = up[i]; in mpihelp_lshift() 56 low_limb = up[i]; in mpihelp_lshift()
|
D | generic_mpih-rshift.c | 42 mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned cnt) in mpihelp_rshift() argument 52 high_limb = up[0]; in mpihelp_rshift() 56 high_limb = up[i]; in mpihelp_rshift()
|
/linux-4.4.14/arch/x86/platform/ce4100/ |
D | ce4100.c | 93 static void ce4100_serial_fixup(int port, struct uart_port *up, in ce4100_serial_fixup() argument 102 if (up->iotype != UPIO_MEM32) { in ce4100_serial_fixup() 103 up->uartclk = 14745600; in ce4100_serial_fixup() 104 up->mapbase = 0xdffe0200; in ce4100_serial_fixup() 106 up->mapbase & PAGE_MASK); in ce4100_serial_fixup() 107 up->membase = in ce4100_serial_fixup() 109 up->membase += up->mapbase & ~PAGE_MASK; in ce4100_serial_fixup() 110 up->mapbase += port * 0x100; in ce4100_serial_fixup() 111 up->membase += port * 0x100; in ce4100_serial_fixup() 112 up->iotype = UPIO_MEM32; in ce4100_serial_fixup() [all …]
|
/linux-4.4.14/drivers/scsi/ |
D | aha1740.h | 84 #define any2scsi(up, p) \ argument 85 (up)[0] = (((unsigned long)(p)) >> 16) ; \ 86 (up)[1] = (((unsigned long)(p)) >> 8); \ 87 (up)[2] = ((unsigned long)(p)); 89 #define scsi2int(up) ( (((long)*(up)) << 16) + (((long)(up)[1]) << 8) + ((long)(up)[2]) ) argument 91 #define xany2scsi(up, p) \ argument 92 (up)[0] = ((long)(p)) >> 24; \ 93 (up)[1] = ((long)(p)) >> 16; \ 94 (up)[2] = ((long)(p)) >> 8; \ 95 (up)[3] = ((long)(p)); [all …]
|
D | aha1542.h | 72 #define scsi2int(up) ( (((long)*(up)) << 16) + (((long)(up)[1]) << 8) + ((long)(up)[2]) ) argument 74 #define xscsi2int(up) ( (((long)(up)[0]) << 24) + (((long)(up)[1]) << 16) \ argument 75 + (((long)(up)[2]) << 8) + ((long)(up)[3]) )
|
/linux-4.4.14/kernel/ |
D | user.c | 102 static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent) in uid_hash_insert() argument 104 hlist_add_head(&up->uidhash_node, hashent); in uid_hash_insert() 107 static void uid_hash_remove(struct user_struct *up) in uid_hash_remove() argument 109 hlist_del_init(&up->uidhash_node); in uid_hash_remove() 130 static void free_user(struct user_struct *up, unsigned long flags) in free_user() argument 133 uid_hash_remove(up); in free_user() 135 key_put(up->uid_keyring); in free_user() 136 key_put(up->session_keyring); in free_user() 137 kmem_cache_free(uid_cachep, up); in free_user() 157 void free_uid(struct user_struct *up) in free_uid() argument [all …]
|
/linux-4.4.14/include/net/ |
D | udplite.h | 73 const struct udp_sock *up = udp_sk(skb->sk); in udplite_csum_outgoing() local 74 int cscov = up->len; in udplite_csum_outgoing() 77 if (up->pcflag & UDPLITE_SEND_CC) { in udplite_csum_outgoing() 82 if (up->pcslen < up->len) { in udplite_csum_outgoing() 83 if (0 < up->pcslen) in udplite_csum_outgoing() 84 cscov = up->pcslen; in udplite_csum_outgoing() 85 udp_hdr(skb)->len = htons(up->pcslen); in udplite_csum_outgoing() 116 const struct udp_sock *up = udp_sk(skb->sk); in udplite_csum() local 120 if ((up->pcflag & UDPLITE_SEND_CC) && up->pcslen < len) { in udplite_csum() 121 if (0 < up->pcslen) in udplite_csum() [all …]
|
/linux-4.4.14/ipc/ |
D | compat.c | 148 struct compat_ipc_perm __user *up) in __get_compat_ipc_perm() argument 152 err = __get_user(p->uid, &up->uid); in __get_compat_ipc_perm() 153 err |= __get_user(p->gid, &up->gid); in __get_compat_ipc_perm() 154 err |= __get_user(p->mode, &up->mode); in __get_compat_ipc_perm() 203 struct compat_semid_ds __user *up) in get_compat_semid_ds() argument 205 if (!access_ok(VERIFY_READ, up, sizeof(*up))) in get_compat_semid_ds() 207 return __get_compat_ipc_perm(&s->sem_perm, &up->sem_perm); in get_compat_semid_ds() 225 struct compat_semid_ds __user *up) in put_compat_semid_ds() argument 229 if (!access_ok(VERIFY_WRITE, up, sizeof(*up))) in put_compat_semid_ds() 231 err = __put_compat_ipc_perm(&s->sem_perm, &up->sem_perm); in put_compat_semid_ds() [all …]
|
/linux-4.4.14/net/caif/ |
D | cfsrvl.c | 33 if (layr->up == NULL || layr->up->ctrlcmd == NULL) in cfservl_ctrlcmd() 39 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd() 44 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd() 50 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd() 58 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd() 66 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd() 73 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd() 80 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd() 84 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd() 89 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd()
|
D | cfmuxl.c | 86 int cfmuxl_set_uplayer(struct cflayer *layr, struct cflayer *up, u8 linkid) in cfmuxl_set_uplayer() argument 98 list_add_rcu(&up->node, &muxl->srvl_list); in cfmuxl_set_uplayer() 125 struct cflayer *up; in get_up() local 127 up = rcu_dereference(muxl->up_cache[idx]); in get_up() 128 if (up == NULL || up->id != id) { in get_up() 130 up = get_from_id(&muxl->srvl_list, id); in get_up() 131 rcu_assign_pointer(muxl->up_cache[idx], up); in get_up() 134 return up; in get_up() 153 struct cflayer *up; in cfmuxl_remove_uplayer() local 163 up = get_from_id(&muxl->srvl_list, id); in cfmuxl_remove_uplayer() [all …]
|
D | cffrml.c | 64 void cffrml_set_uplayer(struct cflayer *this, struct cflayer *up) in cffrml_set_uplayer() argument 66 this->up = up; in cffrml_set_uplayer() 128 if (layr->up == NULL) { in cffrml_receive() 134 return layr->up->receive(layr->up, pkt); in cffrml_receive() 172 if (layr->up && layr->up->ctrlcmd) in cffrml_ctrlcmd() 173 layr->up->ctrlcmd(layr->up, ctrl, layr->id); in cffrml_ctrlcmd()
|
D | caif_dev.c | 157 caifd->layer.up-> in caif_flow_cb() 158 ctrlcmd(caifd->layer.up, in caif_flow_cb() 222 caifd->layer.up->ctrlcmd(caifd->layer.up, in transmit() 251 if (!caifd || !caifd->layer.up || !caifd->layer.up->receive || in receive() 262 err = caifd->layer.up->receive(caifd->layer.up, pkt); in receive() 288 if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd) { in dev_flowctrl() 296 caifd->layer.up->ctrlcmd(caifd->layer.up, in dev_flowctrl() 414 if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd) { in caif_device_notify() 423 caifd->layer.up->ctrlcmd(caifd->layer.up, in caif_device_notify()
|
D | cfutill.c | 45 caif_assert(layr->up != NULL); in cfutill_receive() 46 caif_assert(layr->up->receive != NULL); in cfutill_receive() 47 caif_assert(layr->up->ctrlcmd != NULL); in cfutill_receive() 56 return layr->up->receive(layr->up, pkt); in cfutill_receive()
|
D | caif_usb.c | 46 return layr->up->receive(layr->up, pkt); in cfusbl_receive() 81 if (layr->up && layr->up->ctrlcmd) in cfusbl_ctrlcmd() 82 layr->up->ctrlcmd(layr->up, ctrl, layr->id); in cfusbl_ctrlcmd()
|
D | cfrfml.c | 106 caif_assert(layr->up != NULL); in cfrfml_receive() 167 err = rfml->serv.layer.up->receive(rfml->serv.layer.up, pkt); in cfrfml_receive() 183 layr->up->ctrlcmd(layr->up, CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND, in cfrfml_receive() 291 layr->up->ctrlcmd(layr->up, CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND, in cfrfml_transmit()
|
D | cfserl.c | 153 ret = layr->layer.up->receive(layr->layer.up, pkt); in cfserl_receive() 187 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfserl_ctrlcmd()
|
D | cfveil.c | 43 caif_assert(layr->up != NULL); in cfvei_receive() 55 ret = layr->up->receive(layr->up, pkt); in cfvei_receive()
|
D | cfcnfg.c | 31 bool up; member 155 if (phy->up && phy->pref == phy_pref && in cfcnfg_get_phyid() 163 if (phy->up) in cfcnfg_get_phyid() 174 if (phy->ifindex == ifi && phy->up) in cfcnfg_get_id_from_ifi() 528 bool up) in cfcnfg_set_phy_state() argument 539 if (phyinfo->up == up) { in cfcnfg_set_phy_state() 543 phyinfo->up = up; in cfcnfg_set_phy_state() 545 if (up) { in cfcnfg_set_phy_state()
|
D | cfdgml.c | 46 caif_assert(layr->up != NULL); in cfdgml_receive() 62 ret = layr->up->receive(layr->up, pkt); in cfdgml_receive()
|
D | cfdbgl.c | 35 return layr->up->receive(layr->up, pkt); in cfdbgl_receive()
|
D | cfvidl.c | 44 return layr->up->receive(layr->up, pkt); in cfvidl_receive()
|
/linux-4.4.14/include/linux/ |
D | serial_8250.h | 127 static inline struct uart_8250_port *up_to_u8250p(struct uart_port *up) in up_to_u8250p() argument 129 return container_of(up, struct uart_8250_port, port); in up_to_u8250p() 150 unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr); 151 void serial8250_tx_chars(struct uart_8250_port *up); 152 unsigned int serial8250_modem_status(struct uart_8250_port *up); 153 void serial8250_init_port(struct uart_8250_port *up); 154 void serial8250_set_defaults(struct uart_8250_port *up); 155 void serial8250_console_write(struct uart_8250_port *up, const char *s, 160 (int port, struct uart_port *up,
|
D | serial_core.h | 252 static inline int serial_port_in(struct uart_port *up, int offset) in serial_port_in() argument 254 return up->serial_in(up, offset); in serial_port_in() 257 static inline void serial_port_out(struct uart_port *up, int offset, int value) in serial_port_out() argument 259 up->serial_out(up, offset, value); in serial_port_out()
|
/linux-4.4.14/fs/hpfs/ |
D | dnode.c | 221 if (le32_to_cpu(dd->up) != dno || dd->root_dnode) { in fix_up_ptrs() 222 dd->up = cpu_to_le32(dno); in fix_up_ptrs() 300 if (!(ad = hpfs_alloc_dnode(i->i_sb, le32_to_cpu(d->up), &adno, &qbh1))) { in hpfs_add_to_dnode() 329 ad->up = d->up; in hpfs_add_to_dnode() 330 dno = le32_to_cpu(ad->up); in hpfs_add_to_dnode() 337 if (!(rd = hpfs_alloc_dnode(i->i_sb, le32_to_cpu(d->up), &rdno, &qbh2))) { in hpfs_add_to_dnode() 348 rd->up = d->up; in hpfs_add_to_dnode() 349 if (!(fnode = hpfs_map_fnode(i->i_sb, le32_to_cpu(d->up), &bh))) { in hpfs_add_to_dnode() 362 d->up = ad->up = cpu_to_le32(rdno); in hpfs_add_to_dnode() 447 if (le32_to_cpu(dnode->up) != chk_up) { in move_to_top() [all …]
|
D | anode.c | 65 anode_secno a, na = -1, ra, up = -1; in hpfs_add_sector_to_btree() local 124 up = a != node ? le32_to_cpu(anode->up) : -1; in hpfs_add_sector_to_btree() 131 anode->up = cpu_to_le32(node); in hpfs_add_sector_to_btree() 164 while (up != (anode_secno)-1) { in hpfs_add_sector_to_btree() 167 if (hpfs_stop_cycles(s, up, &c1, &c2, "hpfs_add_sector_to_btree #2")) return -1; in hpfs_add_sector_to_btree() 168 if (up != node || !fnod) { in hpfs_add_sector_to_btree() 169 if (!(anode = hpfs_map_anode(s, up, &bh))) return -1; in hpfs_add_sector_to_btree() 172 if (!(fnode = hpfs_map_fnode(s, up, &bh))) return -1; in hpfs_add_sector_to_btree() 186 anode->up = cpu_to_le32(up); in hpfs_add_sector_to_btree() 187 if (up == node && fnod) in hpfs_add_sector_to_btree() [all …]
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | imx28.dtsi | 219 fsl,pull-up = <MXS_PULL_DISABLE>; 230 fsl,pull-up = <MXS_PULL_DISABLE>; 243 fsl,pull-up = <MXS_PULL_DISABLE>; 267 fsl,pull-up = <MXS_PULL_DISABLE>; 289 fsl,pull-up = <MXS_PULL_DISABLE>; 300 fsl,pull-up = <MXS_PULL_DISABLE>; 313 fsl,pull-up = <MXS_PULL_DISABLE>; 324 fsl,pull-up = <MXS_PULL_DISABLE>; 335 fsl,pull-up = <MXS_PULL_DISABLE>; 346 fsl,pull-up = <MXS_PULL_DISABLE>; [all …]
|
D | imx28-cfa10049.dts | 32 fsl,pull-up = <MXS_PULL_DISABLE>; 43 fsl,pull-up = <MXS_PULL_DISABLE>; 53 fsl,pull-up = <MXS_PULL_DISABLE>; 63 fsl,pull-up = <MXS_PULL_ENABLE>; 74 fsl,pull-up = <MXS_PULL_ENABLE>; 84 fsl,pull-up = <MXS_PULL_ENABLE>; 97 fsl,pull-up = <MXS_PULL_ENABLE>; 111 fsl,pull-up = <MXS_PULL_ENABLE>; 138 fsl,pull-up = <MXS_PULL_DISABLE>; 151 fsl,pull-up = <MXS_PULL_DISABLE>; [all …]
|
D | imx23.dtsi | 147 fsl,pull-up = <MXS_PULL_DISABLE>; 160 fsl,pull-up = <MXS_PULL_DISABLE>; 171 fsl,pull-up = <MXS_PULL_DISABLE>; 197 fsl,pull-up = <MXS_PULL_DISABLE>; 221 fsl,pull-up = <MXS_PULL_ENABLE>; 241 fsl,pull-up = <MXS_PULL_ENABLE>; 249 fsl,pull-up = <MXS_PULL_DISABLE>; 259 fsl,pull-up = <MXS_PULL_DISABLE>; 296 fsl,pull-up = <MXS_PULL_DISABLE>; 309 fsl,pull-up = <MXS_PULL_ENABLE>; [all …]
|
D | imx28-eukrea-mbmx28lc.dtsi | 202 fsl,pull-up = <MXS_PULL_DISABLE>; 212 fsl,pull-up = <MXS_PULL_DISABLE>; 225 fsl,pull-up = <MXS_PULL_DISABLE>; 235 fsl,pull-up = <MXS_PULL_DISABLE>; 245 fsl,pull-up = <MXS_PULL_DISABLE>; 255 fsl,pull-up = <MXS_PULL_DISABLE>; 265 fsl,pull-up = <MXS_PULL_DISABLE>; 275 fsl,pull-up = <MXS_PULL_DISABLE>;
|
D | imx28-cfa10036.dts | 33 fsl,pull-up = <MXS_PULL_DISABLE>; 43 fsl,pull-up = <MXS_PULL_DISABLE>; 53 fsl,pull-up = <MXS_PULL_DISABLE>; 64 fsl,pull-up = <0>;
|
D | imx28-cfa10055.dts | 36 fsl,pull-up = <MXS_PULL_ENABLE>; 63 fsl,pull-up = <MXS_PULL_DISABLE>; 76 fsl,pull-up = <MXS_PULL_DISABLE>; 86 fsl,pull-up = <MXS_PULL_ENABLE>;
|
D | zynq-zc702.dts | 52 linux,code = <103>; /* up */ 263 conf-pull-up { 265 bias-pull-up; 282 bias-pull-up; 309 bias-pull-up; 322 bias-pull-up;
|
D | imx28-tx28.dts | 512 fsl,pull-up = <MXS_PULL_DISABLE>; 523 fsl,pull-up = <MXS_PULL_DISABLE>; 532 fsl,pull-up = <MXS_PULL_DISABLE>; 564 fsl,pull-up = <MXS_PULL_DISABLE>; 574 fsl,pull-up = <MXS_PULL_DISABLE>; 591 fsl,pull-up = <MXS_PULL_DISABLE>; 600 fsl,pull-up = <MXS_PULL_DISABLE>; 614 fsl,pull-up = <MXS_PULL_DISABLE>; 623 fsl,pull-up = <MXS_PULL_DISABLE>; 634 fsl,pull-up = <MXS_PULL_DISABLE>; [all …]
|
D | zynq-zc706.dts | 184 conf-pull-up { 186 bias-pull-up; 203 bias-pull-up; 230 bias-pull-up; 243 bias-pull-up;
|
D | imx28-cfa10056.dts | 35 fsl,pull-up = <MXS_PULL_ENABLE>; 48 fsl,pull-up = <MXS_PULL_DISABLE>; 58 fsl,pull-up = <MXS_PULL_ENABLE>;
|
D | imx28-apx4devkit.dts | 53 fsl,pull-up = <MXS_PULL_DISABLE>; 66 fsl,pull-up = <MXS_PULL_DISABLE>; 81 fsl,pull-up = <MXS_PULL_ENABLE>; 89 fsl,pull-up = <MXS_PULL_DISABLE>;
|
D | ste-href-ab8500.dtsi | 257 * This sets up the YCBCR connector pins, i.e. analog video out. 276 /* This sets up the PWM pins 14 and 15 */ 291 /* This sets up audio interface 1 */ 308 /* This sets up the USB UICC pins */ 324 /* This sets up the microphone pins */
|
D | imx28-cfa10057.dts | 33 fsl,pull-up = <MXS_PULL_DISABLE>; 60 fsl,pull-up = <MXS_PULL_DISABLE>; 73 fsl,pull-up = <MXS_PULL_DISABLE>;
|
D | at91sam9m10g45ek.dts | 133 …<AT91_PIOD 10 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>; /* PD10 gpio CD pin pull up and deg… 140 …<AT91_PIOD 11 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH /* PD11 gpio CD pin pull up and degli… 141 AT91_PIOD 29 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP>; /* PD29 gpio WP pin pull up */ 339 up {
|
D | rk3288-evb.dtsi | 146 * NOTE: vcc_sd isn't hooked up on v1.0 boards where power comes from 185 disable-wp; /* wp not hooked up */ 241 pcfg_pull_up_drv_8ma: pcfg-pull-up-drv-8ma { 242 bias-pull-up; 267 * high-speed mode on EVB board so bump up to 8ma.
|
D | imx28-cfa10037.dts | 32 fsl,pull-up = <MXS_PULL_DISABLE>; 42 fsl,pull-up = <MXS_PULL_DISABLE>;
|
/linux-4.4.14/fs/cifs/ |
D | cifs_unicode.h | 364 register __le16 *up; in UniStrupr() local 366 up = upin; in UniStrupr() 367 while (*up) { /* For all characters */ in UniStrupr() 368 *up = cpu_to_le16(UniToupper(le16_to_cpu(*up))); in UniStrupr() 369 up++; in UniStrupr() 406 register wchar_t *up; in UniStrlwr() local 408 up = upin; in UniStrlwr() 409 while (*up) { /* For all characters */ in UniStrlwr() 410 *up = UniTolower(*up); in UniStrlwr() 411 up++; in UniStrlwr()
|
/linux-4.4.14/Documentation/aoe/ |
D | aoe.txt | 70 state, mac, and netif. The state attribute is "up" when the device 73 cannot come up again until it has been closed. 84 e10.0 eth3 up 85 e10.1 eth3 up 86 e10.2 eth3 up 87 e10.3 eth3 up 88 e10.4 eth3 up 89 e10.5 eth3 up 90 e10.6 eth3 up 91 e10.7 eth3 up [all …]
|
/linux-4.4.14/fs/nfsd/ |
D | nfsfh.h | 89 u32 *up; in mk_fsid() local 112 up = (u32*)uuid; in mk_fsid() 114 fsidv[1] = up[0] ^ up[1] ^ up[2] ^ up[3]; in mk_fsid() 119 up = (u32*)uuid; in mk_fsid() 120 fsidv[0] = up[0] ^ up[2]; in mk_fsid() 121 fsidv[1] = up[1] ^ up[3]; in mk_fsid()
|
/linux-4.4.14/scripts/ |
D | bloat-o-meter | 33 grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0 variable 49 up += new[name] 54 if d>0: grow, up = grow+1, up+d 62 (add, remove, grow, shrink, up, -down, up-down))
|
/linux-4.4.14/drivers/thunderbolt/ |
D | tunnel_pci.c | 58 struct tb_pci_tunnel *tb_pci_alloc(struct tb *tb, struct tb_port *up, in tb_pci_alloc() argument 66 tunnel->up_port = up; in tb_pci_alloc() 68 tunnel->path_to_up = tb_path_alloc(up->sw->tb, 2); in tb_pci_alloc() 71 tunnel->path_to_down = tb_path_alloc(up->sw->tb, 2); in tb_pci_alloc() 80 tunnel->path_to_up->hops[0].out_port = tb_upstream_port(up->sw)->remote; in tb_pci_alloc() 83 tunnel->path_to_up->hops[1].in_port = tb_upstream_port(up->sw); in tb_pci_alloc() 86 tunnel->path_to_up->hops[1].out_port = up; in tb_pci_alloc() 89 tunnel->path_to_down->hops[0].in_port = up; in tb_pci_alloc() 92 tunnel->path_to_down->hops[0].out_port = tb_upstream_port(up->sw); in tb_pci_alloc() 96 tb_upstream_port(up->sw)->remote; in tb_pci_alloc()
|
/linux-4.4.14/fs/jfs/ |
D | jfs_unicode.h | 146 wchar_t *up; in UniStrupr() local 148 up = upin; in UniStrupr() 149 while (*up) { /* For all characters */ in UniStrupr() 150 *up = UniToupper(*up); in UniStrupr() 151 up++; in UniStrupr()
|
/linux-4.4.14/drivers/usb/host/ |
D | uhci-debug.c | 560 struct uhci_debug *up; in uhci_debug_open() local 563 up = kmalloc(sizeof(*up), GFP_KERNEL); in uhci_debug_open() 564 if (!up) in uhci_debug_open() 567 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL); in uhci_debug_open() 568 if (!up->data) { in uhci_debug_open() 569 kfree(up); in uhci_debug_open() 573 up->size = 0; in uhci_debug_open() 576 up->size = uhci_sprint_schedule(uhci, up->data, in uhci_debug_open() 580 file->private_data = up; in uhci_debug_open() 587 struct uhci_debug *up; in uhci_debug_lseek() local [all …]
|
/linux-4.4.14/sound/firewire/digi00x/ |
D | digi00x-midi.c | 44 int up) in midi_phys_capture_trigger() argument 51 if (up) in midi_phys_capture_trigger() 62 int up) in midi_phys_playback_trigger() argument 69 if (up) in midi_phys_playback_trigger() 113 int up) in midi_ctl_capture_trigger() argument 120 if (up) in midi_ctl_capture_trigger() 129 int up) in midi_ctl_playback_trigger() argument 136 if (up) in midi_ctl_playback_trigger()
|
/linux-4.4.14/drivers/tty/vt/ |
D | vt_ioctl.c | 342 void __user *up = (void __user *)arg; in vt_ioctl() local 445 if (copy_from_user(&kbrep, up, sizeof(struct kbd_repeat))) { in vt_ioctl() 452 if (copy_to_user(up, &kbrep, sizeof(struct kbd_repeat))) in vt_ioctl() 540 ret = vt_do_kbkeycode_ioctl(cmd, up, perm); in vt_ioctl() 545 ret = vt_do_kdsk_ioctl(cmd, up, perm, console); in vt_ioctl() 550 ret = vt_do_kdgkb_ioctl(cmd, up, perm); in vt_ioctl() 559 ret = vt_do_diacrit(cmd, up, perm); in vt_ioctl() 600 if (copy_from_user(&tmp, up, sizeof(struct vt_mode))) { in vt_ioctl() 629 rc = copy_to_user(up, &tmp, sizeof(struct vt_mode)); in vt_ioctl() 642 struct vt_stat __user *vtstat = up; in vt_ioctl() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | fsl,mxs-pinctrl.txt | 6 voltage and pull-up. 20 information about pull-up. For this reason, even seemingly boolean values are 26 One is to set up a group of pins for a function, both mux selection and pin 52 since config node is only meant to set up pin configurations. 69 - fsl,pull-up: Integer. 70 0: MXS_PULL_DISABLE - Disable the internal pull-up 71 1: MXS_PULL_ENABLE - Enable the internal pull-up 73 Note that when enabling the pull-up, the internal pad keeper gets disabled. 74 Also, some pins doesn't have a pull up, in that case, setting the fsl,pull-up 102 fsl,pull-up = <MXS_PULL_ENABLE>; [all …]
|
D | ste,nomadik.txt | 18 parameters, such as input, output, pull up, pull down... 30 set-up. 40 1: input with pull up, 54 1: sleep input with pull up, 56 3: sleep input and keep last input configuration (no pull, pull up or pull down). 68 0: wake-up detection enabled, 69 1: wake-up detection disabled. 72 0: GPIO pull-up or pull-down resistor is enabled, when pin is an input, 73 1: GPIO pull-up and pull-down resistor are disabled.
|
D | pinctrl-mt65xx.txt | 58 bias-pull-down, bias-pull-up, input-enable, input-disable, output-low, output-high, 61 Some special pins have extra pull up strength, there are R0 and R1 pull-up 63 So when config bias-pull-up, it support arguments for those special pins. 111 bias-pull-up = <55>; 123 bias-pull-up; 131 bias-pull-up = <55>; 138 bias-pull-up = <55>;
|
D | atmel,at91-pio4-pinctrl.txt | 37 bias-pull-down, bias-pull-up, drive-open-drain, input-schmitt-enable, 68 bias-pull-up; 78 bias-pull-up;
|
D | nvidia,tegra20-pinmux.txt | 6 the tri-state, mux, pull-up/down, and pad control register sets. 16 parameters, such as pull-up, tristate, drive strength, etc. 38 - nvidia,pull: Integer, representing the pull-down/up to apply to the pin. 39 0: none, 1: down, 2: up. 52 - nvidia,pull-up-strength: Integer. Controls drive strength. 0 is weakest. 96 nvidia,pull-up-strength, nvidia,slew-rate-rising, nvidia,slew-rate-falling. 123 0x700000a0 0x14 /* Pull-up/down registers */
|
D | pinctrl-bindings.txt | 4 such as pull-up/down, tri-state, drive-strength etc are designated as pin 13 set up certain specific pin configurations. Some client devices need a 14 single static pin configuration, e.g. set up during initialization. Others 25 For example, a pin controller may set up its own "active" state when the 180 bias-pull-up - pull up the pin 204 bias-pull-up; 216 bias-pull-up; 227 - bias-pull-up, -down and -pin-default take as optional argument on hardware
|
D | qcom,pmic-gpio.txt | 108 - bias-pull-up: 111 Definition: The specified pins should be configured as pull up. 113 - qcom,pull-up-strength: 116 Definition: Specifies the strength to use for pull up, if selected. 124 pull up is selected 211 bias-pull-up;
|
D | brcm,cygnus-gpio.txt | 46 - bias-pull-up: 47 Enable internal pull up resistor 73 bias-pull-up;
|
D | pinctrl-vt8500.txt | 24 more of the mux functions to select on those pin(s), and pull-up/down 39 - wm,pull: Integer, representing the pull-down/up to apply to the pin(s): 42 2: up
|
D | fsl,imx-pinctrl.txt | 5 multiplexing the PAD input/output signals. For each PAD there are up to 7 different PAD settings (like pull up, keeper, etc) the IOMUXC controls 18 such as pull-up, open drain, drive strength, etc. 29 the pad setting value like pull-up on this pin. And that's why fsl,pins entry
|
D | img,tz1090-pdc-pinctrl.txt | 16 parameters, such as pull-up, drive strength, etc. 43 - bias-pull-up 64 These all support bias-high-impediance, bias-pull-up, bias-pull-down, and 109 pull-up;
|
/linux-4.4.14/drivers/staging/rtl8192e/rtl8192e/ |
D | rtl_wx.c | 72 up(&priv->wx_sem); in _rtl92e_wx_set_rate() 91 up(&priv->wx_sem); in _rtl92e_wx_set_rts() 121 up(&priv->wx_sem); in _rtl92e_wx_set_power() 149 up(&priv->wx_sem); in _rtl92e_wx_set_rawtx() 166 up(&priv->wx_sem); in _rtl92e_wx_force_reset() 196 up(&priv->wx_sem); in _rtl92e_wx_adapter_power_status() 216 up(&priv->wx_sem); in _rtl92e_wx_set_lps_awake_interval() 232 up(&priv->wx_sem); in _rtl92e_wx_set_force_lps() 278 up(&priv->wx_sem); in _rtl92e_wx_set_mode() 286 up(&priv->rtllib->ips_sem); in _rtl92e_wx_set_mode() [all …]
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | r8192U_wx.c | 78 up(&priv->wx_sem); in r8192_wx_set_rate() 95 up(&priv->wx_sem); in r8192_wx_set_rts() 120 up(&priv->wx_sem); in r8192_wx_set_power() 144 up(&priv->wx_sem); in r8192_wx_force_reset() 161 up(&priv->wx_sem); in r8192_wx_set_rawtx() 185 up(&priv->wx_sem); in r8192_wx_set_crcmon() 202 up(&priv->wx_sem); in r8192_wx_set_mode() 335 if (!priv->up) in r8192_wx_set_scan() 357 up(&priv->wx_sem); in r8192_wx_set_scan() 369 if (!priv->up) in r8192_wx_get_scan() [all …]
|
/linux-4.4.14/sound/pci/echoaudio/ |
D | midi.c | 166 int up) in snd_echo_midi_input_trigger() argument 170 if (up != chip->midi_input_enabled) { in snd_echo_midi_input_trigger() 172 enable_midi_input(chip, up); in snd_echo_midi_input_trigger() 174 chip->midi_input_enabled = up; in snd_echo_midi_input_trigger() 252 int up) in snd_echo_midi_output_trigger() argument 256 dev_dbg(chip->card->dev, "snd_echo_midi_output_trigger(%d)\n", up); in snd_echo_midi_output_trigger() 258 if (up) { in snd_echo_midi_output_trigger() 275 if (up && !chip->midi_full) in snd_echo_midi_output_trigger()
|
/linux-4.4.14/drivers/isdn/mISDN/ |
D | dsp_core.c | 594 if (dsp->up) { in dsp_control_req() 595 if (dsp->up->send(dsp->up, nskb)) in dsp_control_req() 709 if (dsp->up) in dsp_function() 710 return dsp->up->send(dsp->up, skb); in dsp_function() 753 if (dsp->up) { in dsp_function() 754 if (dsp->up->send( in dsp_function() 755 dsp->up, nskb)) in dsp_function() 768 if (dsp->up) in dsp_function() 769 return dsp->up->send(dsp->up, skb); in dsp_function() 799 if (dsp->up) { in dsp_function() [all …]
|
D | layer2.h | 32 struct mISDNchannel *up; member 57 struct mISDNchannel *up; member
|
/linux-4.4.14/kernel/locking/ |
D | semaphore.c | 178 void up(struct semaphore *sem) in up() function 189 EXPORT_SYMBOL(up); 196 bool up; member 212 waiter.up = false; in __down_common() 223 if (waiter.up) in __down_common() 261 waiter->up = true; in __up()
|
/linux-4.4.14/drivers/input/serio/ |
D | hp_sdc_mlc.c | 70 up(&mlc->isem); in hp_sdc_mlc_isr() 135 up(&mlc->isem); in hp_sdc_mlc_isr() 171 up(&mlc->isem); in hp_sdc_mlc_in() 176 up(&mlc->isem); in hp_sdc_mlc_in() 192 up(&mlc->isem); in hp_sdc_mlc_cts() 193 up(&mlc->osem); in hp_sdc_mlc_cts() 221 up(&mlc->csem); in hp_sdc_mlc_cts() 239 up(&mlc->osem); in hp_sdc_mlc_out() 244 up(&mlc->csem); in hp_sdc_mlc_out()
|
/linux-4.4.14/drivers/tty/serial/cpm_uart/ |
D | cpm_uart_cpm1.h | 24 static inline void cpm_set_smc_fcr(smc_uart_t __iomem * up) in cpm_set_smc_fcr() argument 26 out_8(&up->smc_rfcr, SMC_EB); in cpm_set_smc_fcr() 27 out_8(&up->smc_tfcr, SMC_EB); in cpm_set_smc_fcr()
|
D | cpm_uart_cpm2.h | 24 static inline void cpm_set_smc_fcr(smc_uart_t __iomem *up) in cpm_set_smc_fcr() argument 26 out_8(&up->smc_rfcr, CPMFCR_GBL | CPMFCR_EB); in cpm_set_smc_fcr() 27 out_8(&up->smc_tfcr, CPMFCR_GBL | CPMFCR_EB); in cpm_set_smc_fcr()
|
D | cpm_uart_core.c | 864 smc_uart_t __iomem *up; in cpm_uart_init_smc() local 869 up = pinfo->smcup; in cpm_uart_init_smc() 881 out_be16(&up->smc_rbptr, in_be16(&pinfo->smcup->smc_rbase)); in cpm_uart_init_smc() 882 out_be16(&up->smc_tbptr, in_be16(&pinfo->smcup->smc_tbase)); in cpm_uart_init_smc() 883 out_be32(&up->smc_rstate, 0); in cpm_uart_init_smc() 884 out_be32(&up->smc_tstate, 0); in cpm_uart_init_smc() 885 out_be16(&up->smc_brkcr, 1); /* number of break chars */ in cpm_uart_init_smc() 886 out_be16(&up->smc_brkec, 0); in cpm_uart_init_smc() 892 cpm_set_smc_fcr(up); in cpm_uart_init_smc() 895 out_be16(&up->smc_mrblr, pinfo->rx_fifosize); in cpm_uart_init_smc() [all …]
|
/linux-4.4.14/include/net/caif/ |
D | cfsrvl.h | 51 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_get() 54 s->hold(layr->up); in cfsrvl_get() 60 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_put() 63 s->put(layr->up); in cfsrvl_put()
|
D | cfmuxl.h | 15 int cfmuxl_set_uplayer(struct cflayer *layr, struct cflayer *up, u8 linkid); 17 int cfmuxl_set_dnlayer(struct cflayer *layr, struct cflayer *up, u8 phyid);
|
D | caif_layer.h | 149 struct cflayer *up; member 240 #define layer_set_up(layr, above) ((layr)->up = (struct cflayer *)(above))
|
/linux-4.4.14/arch/arm/include/asm/ |
D | processor.h | 94 #define __ALT_SMP_ASM(smp, up) \ argument 98 " " up "\n" \ 101 #define __ALT_SMP_ASM(smp, up) up argument
|
/linux-4.4.14/drivers/media/usb/uvc/ |
D | uvc_v4l2.c | 1255 const struct uvc_xu_control_mapping32 __user *up) in uvc_v4l2_get_xu_mapping() argument 1261 if (!access_ok(VERIFY_READ, up, sizeof(*up)) || in uvc_v4l2_get_xu_mapping() 1262 __copy_from_user(kp, up, offsetof(typeof(*up), menu_info)) || in uvc_v4l2_get_xu_mapping() 1263 __get_user(kp->menu_count, &up->menu_count)) in uvc_v4l2_get_xu_mapping() 1273 if (__get_user(p, &up->menu_info)) in uvc_v4l2_get_xu_mapping() 1291 struct uvc_xu_control_mapping32 __user *up) in uvc_v4l2_put_xu_mapping() argument 1297 if (!access_ok(VERIFY_WRITE, up, sizeof(*up)) || in uvc_v4l2_put_xu_mapping() 1298 __copy_to_user(up, kp, offsetof(typeof(*up), menu_info)) || in uvc_v4l2_put_xu_mapping() 1299 __put_user(kp->menu_count, &up->menu_count)) in uvc_v4l2_put_xu_mapping() 1302 if (__clear_user(up->reserved, sizeof(up->reserved))) in uvc_v4l2_put_xu_mapping() [all …]
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | rtl871x_pwrctrl.c | 110 up(&(pcmdpriv->cmd_queue_sema)); in r8712_cpwm_int_hdl() 113 up(&pwrpriv->lock); in r8712_cpwm_int_hdl() 147 up(&pwrpriv->lock); in SetPSModeWorkItemCallback() 162 up(&pwrpriv->lock); in rpwm_workitem_callback() 216 up(&pwrctrl->lock); in r8712_register_cmd_alive() 242 up(&pwrctrl->lock); in r8712_unregister_cmd_alive()
|
/linux-4.4.14/drivers/staging/panel/ |
D | lcd-panel-cgram.txt | 1 Some LCDs allow you to define up to 8 characters, mapped to ASCII 4 number, and up to 8 couples of hex digits terminated by a semi-colon 13 printf "\e[LG1040E1F0000000000;" => 1 = [up] 15 printf "\e[LG3040E1F001F0E0400;" => 3 = [up-down]
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-devices-power | 14 space to check if the device is enabled to wake up the system 33 be enabled to wake up the system from sleep states. 52 the device is suspended causes it to be woken up. 86 attribute is read-only. If the device is not capable to wake up 88 If the device is not enabled to wake up the system from sleep 98 is read-only. If the device is not capable to wake up the 100 the device is not enabled to wake up the system from sleep 111 is not capable to wake up the system from sleep states, this 113 up the system from sleep states, this attribute is empty. 122 read-only. If the device is not capable to wake up the system [all …]
|
/linux-4.4.14/arch/x86/boot/ |
D | pmjump.S | 52 # Set up data segments for flat 32-bit mode 58 # The 32-bit code sets up its own stack, but this way we do have 62 # Set up TR to make Intel VT happy 73 # Set up LDTR to make Intel VT happy
|
/linux-4.4.14/drivers/clk/ |
D | clk-divider.c | 176 int up = INT_MAX; in _round_up_table() local 184 if ((clkt->div - div) < (up - div)) in _round_up_table() 185 up = clkt->div; in _round_up_table() 188 return up; in _round_up_table() 227 int up, down; in _div_round_closest() local 230 up = DIV_ROUND_UP_ULL((u64)parent_rate, rate); in _div_round_closest() 234 up = __roundup_pow_of_two(up); in _div_round_closest() 237 up = _round_up_table(table, up); in _div_round_closest() 241 up_rate = DIV_ROUND_UP_ULL((u64)parent_rate, up); in _div_round_closest() 244 return (rate - up_rate) <= (down_rate - rate) ? up : down; in _div_round_closest()
|
/linux-4.4.14/net/ipv4/ |
D | udp.c | 706 struct udp_sock *up = udp_sk(sk); in udp_flush_pending_frames() local 708 if (up->pending) { in udp_flush_pending_frames() 709 up->len = 0; in udp_flush_pending_frames() 710 up->pending = 0; in udp_flush_pending_frames() 860 struct udp_sock *up = udp_sk(sk); in udp_push_pending_frames() local 873 up->len = 0; in udp_push_pending_frames() 874 up->pending = 0; in udp_push_pending_frames() 882 struct udp_sock *up = udp_sk(sk); in udp_sendmsg() local 894 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; in udp_sendmsg() 917 if (up->pending) { in udp_sendmsg() [all …]
|
D | xfrm4_input.c | 71 struct udp_sock *up = udp_sk(sk); in xfrm4_udp_encap_rcv() local 78 __u16 encap_type = up->encap_type; in xfrm4_udp_encap_rcv()
|
/linux-4.4.14/Documentation/networking/ |
D | vxge.txt | 32 i) Single function mode (up to 17 queues) 34 ii) Multi function mode (up to 17 functions) 37 - Single Root mode: v1.0 (up to 17 functions) 38 - Multi-Root mode: v1.0 (up to 17 functions) 41 X3100 Series supports MTU up to 9600 bytes, modifiable using 50 Resulting in noticeable performance improvement (up to 7% on certain
|
D | netdevices.txt | 21 (netdev_priv(dev)) then it is up to the module exit handler to free that. 30 actual skb will contain up to 1514 bytes because of the Ethernet 35 transmit routine, and the device will break that up into separate 42 standard Ethernet mtu of 1500 bytes, the device should allow up to 44 drop, truncate, or pass up oversize packets, but dropping oversize
|
D | eql.txt | 46 Here I describe the general steps of getting a kernel up and working 98 managers is up to you. Most other connection managers that I've seen 110 command that sets up the eql device: 122 Once the eql device is up and running, add a static default route to 177 The general idea is to bring up and keep up as many SLIP connections 232 I tried to fix up a PPP script/system for redialing lost PPP 242 up of the driver was tuned to handle slaves with wildly different 350 single connection. This allows one to improve dial-up network 472 transfer of up to 7.5 Kbyte/s on one go, but averaged around
|
D | ip_dynaddr.txt | 16 going up. So, the *same* (local AND masqueraded) connections requests that 17 bring the link up will be able to get established.
|
/linux-4.4.14/arch/mips/cavium-octeon/ |
D | flash_setup.c | 36 up(&octeon_bootbus_sem); in octeon_flash_map_read() 46 up(&octeon_bootbus_sem); in octeon_flash_map_write() 54 up(&octeon_bootbus_sem); in octeon_flash_map_copy_from() 62 up(&octeon_bootbus_sem); in octeon_flash_map_copy_to()
|
/linux-4.4.14/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_dcb.c | 227 u8 ixgbe_dcb_get_tc_from_up(struct ixgbe_dcb_config *cfg, int direction, u8 up) in ixgbe_dcb_get_tc_from_up() argument 230 u8 prio_mask = 1 << up; in ixgbe_dcb_get_tc_from_up() 252 u8 up; in ixgbe_dcb_unpack_map() local 254 for (up = 0; up < MAX_USER_PRIORITY; up++) in ixgbe_dcb_unpack_map() 255 map[up] = ixgbe_dcb_get_tc_from_up(cfg, direction, up); in ixgbe_dcb_unpack_map()
|
D | ixgbe_dcb_nl.c | 63 u8 up = dcb_getapp(adapter->netdev, &app); in ixgbe_copy_dcb_cfg() local 65 if (up && !(up & (1 << adapter->fcoe.up))) in ixgbe_copy_dcb_cfg() 398 u8 up = dcb_getapp(netdev, &app); in ixgbe_dcbnl_set_all() local 400 adapter->fcoe.up = ffs(up) - 1; in ixgbe_dcbnl_set_all() 660 if (app_mask & (1 << adapter->fcoe.up)) in ixgbe_dcbnl_ieee_setapp() 663 adapter->fcoe.up = app->priority; in ixgbe_dcbnl_ieee_setapp() 703 if (app_mask & (1 << adapter->fcoe.up)) in ixgbe_dcbnl_ieee_delapp() 706 adapter->fcoe.up = app_mask ? in ixgbe_dcbnl_ieee_delapp()
|
/linux-4.4.14/net/batman-adv/ |
D | gateway_common.c | 44 u32 *down, u32 *up) in batadv_parse_gw_bandwidth() argument 149 *up = lup; in batadv_parse_gw_bandwidth() 163 u32 down, up; in batadv_gw_tvlv_container_update() local 175 up = atomic_read(&bat_priv->gw.bandwidth_up); in batadv_gw_tvlv_container_update() 177 gw.bandwidth_up = htonl(up); in batadv_gw_tvlv_container_update()
|
/linux-4.4.14/Documentation/ |
D | btmrvl.txt | 19 where GPIO is the pin number of GPIO used to wake up the host. 27 # Use SDIO interface to wake up the host and set GAP to 0x80: 31 # Use GPIO pin #3 to wake up the host and set GAP to 0xff: 55 These commands are used to enable host sleep or wake up firmware 59 0 -- Wake up firmware 66 # Wake up firmware
|
D | workqueue.txt | 43 up. 81 wants a function to be executed asynchronously it has to set up a work 122 whenever an active worker wakes up or sleeps and keeps track of the 151 for execution contexts to free up. 180 expected and using bound wq may end up creating large number 273 15 w0 wakes up and burns CPU 277 35 w1 wakes up and finishes 280 50 w2 wakes up and finishes 291 15 w0 wakes up and burns CPU 293 20 w1 wakes up and finishes [all …]
|
D | robust-futexes.txt | 16 creates a 'futex queue' internally, so that it can later on match up the 20 sys_futex(FUTEX_WAKE) syscall to wake them up. Once all waiters have 42 then the kernel has no information to clean up after the held lock! 43 Userspace has no chance to clean up after the lock either - userspace is 44 the one that crashes, so it has no opportunity to clean up. Catch-22. 72 are to be cleaned up, because a robust futex might have been registered 90 locks to be cleaned up? 98 this thread with the FUTEX_OWNER_DIED bit, and wakes up one waiter (if 109 kernel to clean up if the thread dies after acquiring the lock, but just 192 and wakes up the next futex waiter (if any). User-space does the rest of [all …]
|
D | ManagementStyle | 4 This is a short document describing the preferred (or made up, depending 91 the first place, and your decision ended up being a big one after 95 admitting up-front that you don't have a friggin' clue, and telling 120 answer may end up being that both teams get so frustrated by the 121 situation that they just give up. 125 couldn't decide was that they were both wrong. You end up coming up 127 have screwed up on. 158 right), the harder it ends up being to apologize afterwards. 162 - spread the "love" out so evenly that nobody really ends up feeling 186 Suck up to them, because they are the people who will make your job [all …]
|
D | numastat.txt | 12 but ended up with memory from this node. 15 but ended up with memory from another one.
|
D | sgi-ioc4.txt | 16 PS/2 controller driver as this functionality has never been wired up 38 up to the ioc4 driver via the appropriate registration, probe, and 44 other than it hooks up to the ioc4 driver via the appropriate registration,
|
/linux-4.4.14/net/ipv6/ |
D | udp.c | 627 struct udp_sock *up = udp_sk(sk); in udpv6_queue_rcv_skb() local 634 if (static_key_false(&udpv6_encap_needed) && up->encap_type) { in udpv6_queue_rcv_skb() 649 encap_rcv = ACCESS_ONCE(up->encap_rcv); in udpv6_queue_rcv_skb() 674 if (up->pcrlen == 0) { /* full coverage was set */ in udpv6_queue_rcv_skb() 679 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) { in udpv6_queue_rcv_skb() 681 UDP_SKB_CB(skb)->cscov, up->pcrlen); in udpv6_queue_rcv_skb() 968 struct udp_sock *up = udp_sk(sk); in udp_v6_flush_pending_frames() local 970 if (up->pending == AF_INET) in udp_v6_flush_pending_frames() 972 else if (up->pending) { in udp_v6_flush_pending_frames() 973 up->len = 0; in udp_v6_flush_pending_frames() [all …]
|
/linux-4.4.14/Documentation/power/ |
D | swsusp-dmcrypt.txt | 14 Now your system is properly set up, your disk is encrypted except for 24 up dm-crypt and then asks swsusp to resume from the encrypted 27 The most important thing is that you set up dm-crypt in such 31 to always set up this swap device first with dmsetup, so that 36 Now set up your kernel to use /dev/mapper/swap0 as the default 62 /dev/hda1 contains an unencrypted mini system that sets up all 123 Then we need to set up dmcrypt with the setup data from the 132 mini system on /dev/hda1 to set the whole crypto up (it is up to 137 the initrd prior to continue booting but it is up to you to modify
|
/linux-4.4.14/sound/firewire/tascam/ |
D | tascam-midi.c | 42 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument 49 if (up) in midi_capture_trigger() 57 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument 64 if (up) in midi_playback_trigger()
|
/linux-4.4.14/sound/usb/caiaq/ |
D | midi.c | 39 static void snd_usb_caiaq_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_usb_caiaq_midi_input_trigger() argument 46 cdev->midi_receive_substream = up ? substream : NULL; in snd_usb_caiaq_midi_input_trigger() 91 static void snd_usb_caiaq_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_usb_caiaq_midi_output_trigger() argument 95 if (up) { in snd_usb_caiaq_midi_output_trigger()
|
/linux-4.4.14/arch/arm64/boot/dts/qcom/ |
D | msm8916-pins.dtsi | 349 bias-pull-up; 395 bias-pull-up; 405 bias-pull-up; 418 bias-pull-up; 428 bias-pull-up; 464 bias-pull-up; 474 bias-pull-up; 487 bias-pull-up; 497 bias-pull-up;
|
/linux-4.4.14/Documentation/hwmon/ |
D | ucd9000 | 23 sequences up to 12 independent voltage rails. The device integrates a 12-bit 24 ADC with a 2.5V internal reference for monitoring up to 13 power supply voltage, 28 system-health monitor. The device integrates a 12-bit ADC for monitoring up to 36 monitor. The device integrates a 12-bit ADC for monitoring up to 10 power-supply 43 system-health monitor. The device integrates a 12-bit ADC for monitoring up to 109 Note that even though UCD90910 supports up to 10 fans, 110 only up to four fans are currently supported.
|
D | max16065 | 36 current-sense amplifier. The MAX16065 manages up to twelve system voltages 37 simultaneously, and the MAX16066 manages up to eight supply voltages. 40 system voltages. The MAX16067 manages up to six system voltages simultaneously. 42 The MAX16068 flash-configurable system manager monitors and manages up to six 48 MAX16070 monitors up to twelve system voltages simultaneously, and the MAX16071 49 monitors up to eight supply voltages.
|
D | nct7904 | 17 The NCT7904D is a hardware monitor supporting up to 20 voltage sensors, 19 interface, up to 12 fan tachometer inputs, up to 4 fan control channels
|
D | tmp421 | 34 implement one local and up to one (TMP421, TMP441), up to two (TMP422, 35 TMP442) or up to three (TMP423) remote sensors. Temperature is measured
|
D | nct6683 | 18 The chips implement up to shared 32 temperature and voltage sensors. 19 It supports up to 16 fan rotation sensors and up to 8 fan control engines.
|
D | pc87427 | 12 Thanks to Amir Habibi at Candelis for setting up a test system, and to 20 monitoring capabilities. It can monitor up to 18 voltages, 8 fans and 24 This chip also has fan controlling features (up to 4 PWM outputs),
|
D | adm1031 | 25 They sense their own temperature as well as the temperature of up to one 34 The ADM1030 monitors a single fan speed, while the ADM1031 monitors up to
|
D | emc6w201 | 20 This ACPI compliant device provides hardware monitoring for up to six 22 measures the speed of up to five fans, and controls the speed of
|
/linux-4.4.14/drivers/staging/comedi/drivers/ |
D | vmk80xx.c | 285 up(&devpriv->limit_sem); in vmk80xx_ai_insn_read() 326 up(&devpriv->limit_sem); in vmk80xx_ao_insn_write() 355 up(&devpriv->limit_sem); in vmk80xx_ao_insn_read() 394 up(&devpriv->limit_sem); in vmk80xx_di_insn_bits() 438 up(&devpriv->limit_sem); in vmk80xx_do_insn_bits() 482 up(&devpriv->limit_sem); in vmk80xx_cnt_insn_read() 519 up(&devpriv->limit_sem); in vmk80xx_cnt_insn_config() 563 up(&devpriv->limit_sem); in vmk80xx_cnt_insn_write() 596 up(&devpriv->limit_sem); in vmk80xx_pwm_insn_read() 642 up(&devpriv->limit_sem); in vmk80xx_pwm_insn_write() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/input/ |
D | qcom,pm8941-pwrkey.txt | 29 - bias-pull-up: 33 should be configured for pull up. 42 bias-pull-up;
|
D | qcom,pm8xxx-pwrkey.txt | 31 - pull-up: 35 should be configured for pull up. 45 pull-up;
|
/linux-4.4.14/Documentation/devicetree/bindings/phy/ |
D | apm-xgene-phy.txt | 19 Two set of 3-tuple setting for each (up to 3) 25 Two set of 3-tuple setting for each (up to 3) 29 (up to 3) supported link speed on the host. Range is 32 each (up to 3) supported link speed on the host. 36 3-tuple setting for each (up to 3) supported link 40 3-tuple setting for each (up to 3) supported link
|
D | phy-miphy28lp.txt | 59 reg-names = "sata-up", 60 "pcie-up", 74 reg-names = "sata-up", 75 "pcie-up", 90 "usb3-up";
|
/linux-4.4.14/arch/sh/drivers/ |
D | heartbeat.c | 65 static unsigned bit = 0, up = 1; in heartbeat_timer() local 69 bit += up; in heartbeat_timer() 71 up = -up; in heartbeat_timer()
|
/linux-4.4.14/sound/firewire/dice/ |
D | dice-midi.c | 47 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument 54 if (up) in midi_capture_trigger() 64 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument 71 if (up) in midi_playback_trigger()
|
/linux-4.4.14/arch/alpha/lib/ |
D | strcpy.S | 18 mov $16, $0 # set up return value 19 mov $26, $23 # set up return address
|
/linux-4.4.14/sound/isa/msnd/ |
D | msnd_midi.c | 97 int up) in snd_msndmidi_input_trigger() argument 102 snd_printdd("snd_msndmidi_input_trigger(, %i)\n", up); in snd_msndmidi_input_trigger() 106 if (up) { in snd_msndmidi_input_trigger() 114 if (up) in snd_msndmidi_input_trigger()
|
/linux-4.4.14/sound/firewire/fireworks/ |
D | fireworks_midi.c | 68 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument 75 if (up) in midi_capture_trigger() 85 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument 92 if (up) in midi_playback_trigger()
|
/linux-4.4.14/sound/firewire/bebob/ |
D | bebob_midi.c | 67 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument 74 if (up) in midi_capture_trigger() 84 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument 91 if (up) in midi_playback_trigger()
|
/linux-4.4.14/drivers/char/ |
D | snsc.c | 192 up(&sd->sd_rbs); in scdrv_read() 206 up(&sd->sd_rbs); in scdrv_read() 231 up(&sd->sd_rbs); in scdrv_read() 275 up(&sd->sd_wbs); in scdrv_write() 289 up(&sd->sd_wbs); in scdrv_write() 302 up(&sd->sd_wbs); in scdrv_write() 312 up(&sd->sd_wbs); in scdrv_write()
|
/linux-4.4.14/drivers/net/wan/ |
D | hdlc_cisco.c | 59 int up; member 229 if (!st->up) { in cisco_rx() 238 st->up = 1; in cisco_rx() 267 if (st->up && in cisco_timer() 269 st->up = 0; in cisco_timer() 293 st->up = st->txseq = st->rxseq = 0; in cisco_start() 315 st->up = st->txseq = 0; in cisco_stop()
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | nau8825.txt | 14 - nuvoton,jkdet-pull-up: Pull-up JKDET pin. If set then JKDET pin is pull up, otherwise pull down. 34 …- nuvoton,sar-threshold: Impedance threshold for each button. Array that contains up to 8 buttons … 85 nuvoton,jkdet-pull-up;
|
/linux-4.4.14/Documentation/arm/ |
D | mem_alignment | 1 Too many problems poped up because of unnoticed misaligned memory access in 5 doing so on some f***ed up ARM architectures like the EBSA110. However 27 /proc/cpu/alignment. The number is made up from various bits: 37 1 The kernel will attempt to fix up the user process 49 fixing up or sending SIGBUS signals:
|
D | cluster-pm-race-avoidance.txt | 1 Cluster-wide Power-up/power-down race avoidance algorithm 33 are not immediately enabled when a cluster powers up. Since enabling or 37 power-down and power-up at the cluster level. 144 a) an explicit hardware power-up operation, resulting 153 cluster is set up and coherent. If the cluster is not ready, 155 cluster has been set up. 203 CPU can start up while another CPU is tearing the cluster down. 207 view of the cluster state as seen by a CPU setting the CPU up. 210 that a CPU which is setting up the cluster can advertise its state 292 a) an explicit hardware power-up operation, resulting [all …]
|
/linux-4.4.14/Documentation/video4linux/ |
D | cpia2_overview.txt | 5 STV0672, which is capable of up to 30 frames per second (fps) in frame sizes 6 up to CIF, and 15 fps for VGA frames. The STV0676 is an improved version, 7 which can handle up to 30 fps VGA. Both coprocessors can be attached to two 19 interdependant, such as the sequence required to power up the camera. I will 24 registers that control housekeeping functions such as powering up the video
|
/linux-4.4.14/drivers/char/hw_random/ |
D | n2-drv.c | 337 struct n2rng_unit *up = &np->units[i]; in n2rng_control_swstate_init() local 339 up->control[0] = CONTROL_DEFAULT_0; in n2rng_control_swstate_init() 340 up->control[1] = CONTROL_DEFAULT_1; in n2rng_control_swstate_init() 341 up->control[2] = CONTROL_DEFAULT_2; in n2rng_control_swstate_init() 342 up->control[3] = CONTROL_DEFAULT_3; in n2rng_control_swstate_init() 557 struct n2rng_unit *up = &np->units[unit]; in n2rng_control_configure_units() local 558 unsigned long ctl_ra = __pa(&up->control[0]); in n2rng_control_configure_units() 572 up->control[esrc] = base | in n2rng_control_configure_units() 576 up->control[3] = base | in n2rng_control_configure_units()
|
/linux-4.4.14/sound/firewire/oxfw/ |
D | oxfw-midi.c | 85 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument 92 if (up) in midi_capture_trigger() 102 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument 109 if (up) in midi_playback_trigger()
|
/linux-4.4.14/arch/arm/common/ |
D | mcpm_head.S | 111 cmp r0, #CLUSTER_UP @ cluster already up? 112 bne mcpm_setup @ if not, set up the cluster 122 @ Signal that the cluster is being brought up: 142 @ If the outbound gave up before teardown started, skip cluster setup: 147 @ power_up_setup is now responsible for setting up the cluster: 188 @ Mark the CPU as up:
|
/linux-4.4.14/Documentation/ioctl/ |
D | 00-INDEX | 3 botching-up-ioctls.txt 4 - how to avoid botching up ioctls
|
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_softmac_wx.c | 82 up(&ieee->wx_sem); in ieee80211_wx_set_freq() 176 up(&ieee->wx_sem); in ieee80211_wx_set_wap() 296 up(&ieee->wx_sem); in ieee80211_wx_set_mode() 356 up(&ieee->wx_sem); in ieee80211_wx_sync_scan_wq() 379 up(&ieee->wx_sem); in ieee80211_wx_set_scan() 433 up(&ieee->wx_sem); in ieee80211_wx_set_essid() 478 up(&ieee->wx_sem); in ieee80211_wx_set_rawtx() 556 up(&ieee->wx_sem); in ieee80211_wx_set_power() 595 up(&ieee->wx_sem); in ieee80211_wx_get_power()
|
/linux-4.4.14/drivers/staging/skein/ |
D | skein_api.c | 181 u8 *up; in skein_update_bits() local 202 up = (u8 *)ctx->m.s256.x + ctx->skein_size / 8; in skein_update_bits() 215 up[length - 1] = (u8)((up[length - 1] & (0 - mask)) | mask); in skein_update_bits()
|
/linux-4.4.14/sound/usb/6fire/ |
D | midi.c | 75 struct snd_rawmidi_substream *alsa_sub, int up) in usb6fire_midi_out_trigger() argument 83 if (up) { /* start transfer */ in usb6fire_midi_out_trigger() 129 struct snd_rawmidi_substream *alsa_sub, int up) in usb6fire_midi_in_trigger() argument 135 if (up) in usb6fire_midi_in_trigger()
|
/linux-4.4.14/sound/isa/sb/ |
D | sb8_midi.c | 153 static void snd_sb8dsp_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_sb8dsp_midi_input_trigger() argument 160 if (up) { in snd_sb8dsp_midi_input_trigger() 224 static void snd_sb8dsp_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_sb8dsp_midi_output_trigger() argument 231 if (up) { in snd_sb8dsp_midi_output_trigger() 246 if (up) in snd_sb8dsp_midi_output_trigger()
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | rtllib_softmac_wx.c | 84 up(&ieee->wx_sem); in rtllib_wx_set_freq() 188 up(&ieee->wx_sem); in rtllib_wx_set_wap() 325 up(&ieee->wx_sem); in rtllib_wx_set_mode() 415 up(&ieee->wx_sem); in rtllib_wx_sync_scan_wq() 438 up(&ieee->wx_sem); in rtllib_wx_set_scan() 495 up(&ieee->wx_sem); in rtllib_wx_set_essid() 539 up(&ieee->wx_sem); in rtllib_wx_set_rawtx() 614 up(&ieee->wx_sem); in rtllib_wx_set_power() 651 up(&ieee->wx_sem); in rtllib_wx_get_power()
|
/linux-4.4.14/drivers/staging/wilc1000/ |
D | wilc_msgqueue.c | 36 up(&pHandle->hSem); in wilc_mq_destroy() 102 up(&pHandle->hSem); in wilc_mq_send() 160 up(&pHandle->hSem); in wilc_mq_recv()
|
/linux-4.4.14/Documentation/filesystems/ |
D | files.txt | 61 4. To look up the file structure given an fd, a reader 76 5. Handling of the file structures is special. Since the look-up 78 that look-up may race with the last put() operation on the 99 6. Since both fdtable and file structures can be looked up 101 API. If they are looked up lock-free, rcu_dereference() 105 7. While updating, the fdtable pointer must be looked up while
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | jack.txt | 17 This is done by splitting the jacks up into three things working 32 user space. The jack itself is completely passive, it is set up by the 54 be set up by the machine driver, taking configuration for the jack to 69 system hardware. The machine driver will set up the snd_soc_jack and 70 the list of pins to update then set up one or more jack detection
|
D | machine.txt | 53 also be used to set up the DAI system clock and for any machine related DAI 57 struct snd_soc_dai_link is used to set up each DAI in your machine. e.g. 71 struct snd_soc_card then sets up the machine with its DAIs. e.g. 85 audio power map of the audio subsystem. This allows for automatic power up/down
|
/linux-4.4.14/net/ |
D | compat.c | 335 struct compat_timeval __user *up = (struct compat_timeval __user *)optval; in do_set_sock_timeout() local 340 if (optlen < sizeof(*up)) in do_set_sock_timeout() 342 if (!access_ok(VERIFY_READ, up, sizeof(*up)) || in do_set_sock_timeout() 343 __get_user(ktime.tv_sec, &up->tv_sec) || in do_set_sock_timeout() 344 __get_user(ktime.tv_usec, &up->tv_usec)) in do_set_sock_timeout() 396 struct compat_timeval __user *up; in do_get_sock_timeout() local 401 up = (struct compat_timeval __user *) optval; in do_get_sock_timeout() 404 if (len < sizeof(*up)) in do_get_sock_timeout() 413 if (put_user(sizeof(*up), optlen) || in do_get_sock_timeout() 414 !access_ok(VERIFY_WRITE, up, sizeof(*up)) || in do_get_sock_timeout() [all …]
|
/linux-4.4.14/drivers/staging/lustre/ |
D | TODO | 5 * Clean up libcfs layer. Ideally we can remove include/linux/libcfs entirely. 6 * Clean up CLIO layer. Lustre client readahead/writeback control needs to better
|
/linux-4.4.14/drivers/input/keyboard/ |
D | hil_kbd.c | 171 int up = key & HIL_KBD_SET1_UPBIT; in hil_dev_handle_kbd_events() local 175 input_report_key(dev, key, !up); in hil_dev_handle_kbd_events() 182 int up = key & HIL_KBD_SET2_UPBIT; in hil_dev_handle_kbd_events() local 186 input_report_key(dev, key, !up); in hil_dev_handle_kbd_events() 193 int up = key & HIL_KBD_SET3_UPBIT; in hil_dev_handle_kbd_events() local 197 input_report_key(dev, key, !up); in hil_dev_handle_kbd_events() 252 int up = btn & 1; in hil_dev_handle_ptr_events() local 261 input_report_key(dev, btn, !up); in hil_dev_handle_ptr_events()
|
/linux-4.4.14/arch/arm64/boot/dts/mediatek/ |
D | mt8173-evb.dts | 107 bias-pull-up; 117 bias-pull-up; 130 bias-pull-up = <MTK_PUPD_SET_R1R0_10>; 141 bias-pull-up; 158 bias-pull-up = <MTK_PUPD_SET_R1R0_01>; 169 bias-pull-up; 182 bias-pull-up = <MTK_PUPD_SET_R1R0_10>;
|
/linux-4.4.14/drivers/staging/gdm724x/ |
D | TODO | 2 - Clean up coding style to meet kernel standard. (80 line limit, netdev_err) 12 - fix up static tty port allocation to be dynamic
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | arm,vic.txt | 26 configured as wake up source for the system. Order of bits is the same as for 28 configured as a wake up source for the system. If unspecied, defaults to all 29 interrupt sources configurable as wake up sources.
|
/linux-4.4.14/drivers/zorro/ |
D | Kconfig | 11 15KB, but it gets freed after the system boots up, so it doesn't 12 take up kernel memory. Anyway, if you are building an installation
|
/linux-4.4.14/drivers/iio/buffer/ |
D | Kconfig | 16 no buffer events so it is up to userspace to work out how 24 Provides helper functions for setting up triggered buffers.
|
/linux-4.4.14/sound/isa/gus/ |
D | gus_uart.c | 174 static void snd_gf1_uart_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_gf1_uart_input_trigger() argument 182 if (up) { in snd_gf1_uart_input_trigger() 192 static void snd_gf1_uart_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_gf1_uart_output_trigger() argument 202 if (up) { in snd_gf1_uart_output_trigger()
|
/linux-4.4.14/Documentation/isdn/ |
D | README.x25 | 21 Backing up important data will never harm. 64 by an ISDN B-channel (leased line as well as dial up connection should 108 In order to set up a conforming protocol stack you also need to 129 corresponding isdn connection is set up by you. At least one test 135 How to set up a test installation? 156 ifconfig the network interfaces up and add X.25-routes to them. Use 159 ifconfig <iface-name> up 162 is needed to set up X.25 routes. I.e. 178 provide useful examples for setting up X.25 on top of isdn.
|
/linux-4.4.14/Documentation/device-mapper/ |
D | dm-flakey.txt | 9 <up interval> seconds, then exhibits unreliable behaviour for <down 18 <dev path> <offset> <up interval> <down interval> \ 25 <up interval>: Number of seconds device is available.
|
/linux-4.4.14/arch/arm/mach-omap1/ |
D | serial.c | 34 static inline unsigned int omap_serial_in(struct plat_serial8250_port *up, in omap_serial_in() argument 37 offset <<= up->regshift; in omap_serial_in() 38 return (unsigned int)__raw_readb(up->membase + offset); in omap_serial_in()
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | sram242x.S | 56 mov r9, #0x1 @ set up for L1 voltage call 116 str r5, [r4] @ set up for change. 126 cmp r5, r7 @ time up? 160 movne r9, #0x0 @ if up set flag up for pre up, hi volt 211 str r8, [r10] @ set up for change. 221 cmp r8, r7 @ time up?
|
D | sram243x.S | 56 mov r9, #0x1 @ set up for L1 voltage call 116 str r5, [r4] @ set up for change. 126 cmp r5, r7 @ time up? 160 movne r9, #0x0 @ if up set flag up for pre up, hi volt 211 str r8, [r10] @ set up for change. 221 cmp r8, r7 @ time up?
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | PROBLEMS | 10 Start up X11 like this: "XF86_S3 -probeonly" and write down where the 16 Some S3 cards even take up 64MB of memory but only report 32MB to the BIOS. 37 Looks like XFree does something different when setting up the video memory? 54 can sometimes lock up if you use more than 1 bt848 card at the same time.
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | atmel-at91.txt | 130 - atmel,wakeup-counter: Counter on Wake-up 0 (between 0x0 and 0xf). 133 - atmel,wakeup-rtt-timer: boolean to enable Real-time Timer Wake-up. 136 - atmel,wakeup-rtc-timer: boolean to enable Real-time Clock Wake-up. 137 - atmel,wakeup-rtt-timer: boolean to enable Real-time Timer Wake-up. 140 - atmel,wakeup-rtc-timer: boolean to enable Real-time Clock Wake-up.
|
/linux-4.4.14/Documentation/misc-devices/ |
D | spear-pcie-gadget.txt | 94 go for link up now. 97 It will have to be insured that, once link up is done on gadget, then only host 100 /*wait till link is up*/ 116 go for link up now 119 wait till link is up
|
/linux-4.4.14/Documentation/input/ |
D | sentelic.txt | 103 Bit4 => scroll up 144 Bit5 => Valid bit, 0 means that the coordinate is invalid or finger up. 145 When both fingers are up, the last two reports have zero valid 169 Bit5 => Valid bit, 0 means that the coordinate is invalid or finger up. 170 When both fingers are up, the last two reports have zero valid 210 Bit4 => scroll up button 234 Bit5 => Valid bit, 0 means that the coordinate is invalid or finger up. 235 When both fingers are up, the last two reports have zero valid 237 Bit4 => finger up/down information. 1: finger down, 0: finger up. 247 Bit5 => scroll up button [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/hwmon/ |
D | ntc_thermistor.txt | 21 - "pullup-uv" Pull up voltage in micro volts 22 - "pullup-ohm" Pull up resistor value in ohms
|
/linux-4.4.14/drivers/gpu/drm/msm/edp/ |
D | edp_phy.c | 76 void msm_edp_phy_lane_power_ctrl(struct edp_phy *phy, bool up, u32 max_lane) in msm_edp_phy_lane_power_ctrl() argument 81 if (up) in msm_edp_phy_lane_power_ctrl()
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
D | ti-tsc-adc.txt | 35 in order to avoid false pen-up events. This value 37 kept as low as possible, while avoiding false pen-up 39 increase value until false pen-up events are avoided. 40 The pen-up detection happens immediately after the
|
/linux-4.4.14/Documentation/fb/ |
D | internals.txt | 68 The pixel value is broken up into red, green, and blue fields. 73 The pixel value is broken up into red, green, and blue fields, each of which 74 are looked up in separate red, green, and blue lookup tables.
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | st-rc.txt | 12 be present iff the rx pins are wired up. 15 be present iff the tx pins are wired up.
|
/linux-4.4.14/Documentation/scsi/ |
D | sym53c8xx_2.txt | 169 named LOAD and STORE that allow to move up to 1 DWORD from/to an IO register 228 maximum number of queued commands up to 32. The Symbios Setup only allows 236 This driver supports up to 255 commands per device, and but using more than 276 corresponding to your controller after boot-up. 378 th driver verbose level after boot-up. 401 features supported by the driver can be enabled at start-up. However, 403 support by the driver of this feature at linux start-up and enable 404 this feature after boot-up only for devices that support it safely. 436 - enable tagged commands, up to 4 tagged commands queued. 466 diff=0 never set up diff mode [all …]
|
/linux-4.4.14/drivers/net/can/softing/ |
D | softing.h | 46 int up; member 97 int softing_startstop(struct net_device *netdev, int up);
|
/linux-4.4.14/sound/pci/ca0106/ |
D | ca_midi.c | 206 static void ca_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in ca_midi_input_trigger() argument 213 if (up) { in ca_midi_input_trigger() 220 static void ca_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in ca_midi_output_trigger() argument 228 if (up) { in ca_midi_output_trigger()
|
/linux-4.4.14/Documentation/cris/ |
D | README | 43 * four serial-ports (up to 6 Mbit/s) 82 Setting up paging and the MMU. 131 Init starts up... 133 Setting up eth0 with ip 10.13.9.116 and mac 00:40:8c:18:04:60 135 Setting up lo with ip 127.0.0.1 140 sftpd[15]: sftpd $Revision: 1.7 $ starting up
|
/linux-4.4.14/Documentation/s390/ |
D | DASD | 8 below. Thus you may have up to 64 DASD devices in your system. 16 covered by the supplied range up to 64 volumes. Additional DASDs are 31 volume, skipping the first blocks up to the volume label. These are 54 up to the last track. blksize can be any power of two between 512 and
|
/linux-4.4.14/drivers/nfc/ |
D | nfcsim.c | 50 u8 up; member 105 dev->up = 1; in nfcsim_dev_up() 120 dev->up = 0; in nfcsim_dev_down() 263 if (dev->shutting_down || !dev->up || !dev->clone_skb) { in nfcsim_wq_recv() 297 if (dev->shutting_down || !dev->up) { in nfcsim_tx()
|
/linux-4.4.14/sound/isa/wavefront/ |
D | wavefront_midi.c | 325 static void snd_wavefront_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_wavefront_midi_input_trigger() argument 344 if (up) { in snd_wavefront_midi_input_trigger() 364 static void snd_wavefront_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_wavefront_midi_output_trigger() argument 383 if (up) { in snd_wavefront_midi_output_trigger() 399 if (up) in snd_wavefront_midi_output_trigger()
|
/linux-4.4.14/drivers/staging/media/bcm2048/ |
D | TODO | 20 Finally this driver should probably be split up into two parts: one 23 until the rest of the driver is cleaned up. Then I have a better idea of
|