Searched refs:ch (Results 26 - 50 of 1047) sorted by relevance

1234567891011>>

/linux-master/tools/lib/api/
H A Dio.h101 int ch = io__get_char(io); local
103 if (ch < 0)
104 return ch;
105 if (ch >= '0' && ch <= '9')
106 *hex = (*hex << 4) | (ch - '0');
107 else if (ch >= 'a' && ch <= 'f')
108 *hex = (*hex << 4) | (ch - 'a' + 10);
109 else if (ch >
130 int ch = io__get_char(io); local
151 int ch = 0; local
[all...]
/linux-master/drivers/phy/renesas/
H A Dphy-rcar-gen3-usb2.c101 struct rcar_gen3_chan *ch; member in struct:rcar_gen3_phy
143 struct rcar_gen3_chan *ch = container_of(work, struct rcar_gen3_chan, local
146 if (ch->extcon_host) {
147 extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, true);
148 extcon_set_state_sync(ch->extcon, EXTCON_USB, false);
150 extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, false);
151 extcon_set_state_sync(ch->extcon, EXTCON_USB, true);
155 static void rcar_gen3_set_host_mode(struct rcar_gen3_chan *ch, int host) argument
157 void __iomem *usb2_base = ch->base;
160 dev_vdbg(ch
168 rcar_gen3_set_linectrl(struct rcar_gen3_chan *ch, int dp, int dm) argument
182 rcar_gen3_enable_vbus_ctrl(struct rcar_gen3_chan *ch, int vbus) argument
203 rcar_gen3_control_otg_irq(struct rcar_gen3_chan *ch, int enable) argument
215 rcar_gen3_init_for_host(struct rcar_gen3_chan *ch) argument
225 rcar_gen3_init_for_peri(struct rcar_gen3_chan *ch) argument
235 rcar_gen3_init_for_b_host(struct rcar_gen3_chan *ch) argument
251 rcar_gen3_init_for_a_peri(struct rcar_gen3_chan *ch) argument
258 rcar_gen3_init_from_a_peri_to_a_host(struct rcar_gen3_chan *ch) argument
268 rcar_gen3_check_id(struct rcar_gen3_chan *ch) argument
279 rcar_gen3_device_recognition(struct rcar_gen3_chan *ch) argument
287 rcar_gen3_is_host(struct rcar_gen3_chan *ch) argument
292 rcar_gen3_get_phy_mode(struct rcar_gen3_chan *ch) argument
300 rcar_gen3_is_any_rphy_initialized(struct rcar_gen3_chan *ch) argument
312 rcar_gen3_needs_init_otg(struct rcar_gen3_chan *ch) argument
324 rcar_gen3_are_all_rphys_power_off(struct rcar_gen3_chan *ch) argument
339 struct rcar_gen3_chan *ch = dev_get_drvdata(dev); local
379 struct rcar_gen3_chan *ch = dev_get_drvdata(dev); local
389 rcar_gen3_init_otg(struct rcar_gen3_chan *ch) argument
417 struct rcar_gen3_chan *ch = _ch; local
613 struct rcar_gen3_chan *ch = dev_get_drvdata(dev); local
[all...]
/linux-master/drivers/s390/net/
H A Dctcm_main.c72 * ch The channel where this skb has been received.
75 void ctcm_unpack_skb(struct channel *ch, struct sk_buff *pskb) argument
77 struct net_device *dev = ch->netdev;
91 if ((ch->protocol == CTCM_PROTO_S390) &&
93 if (!(ch->logflags & LOG_FLAG_ILLEGALPKT)) {
94 ch->logflags |= LOG_FLAG_ILLEGALPKT;
113 if (!(ch->logflags & LOG_FLAG_ILLEGALSIZE)) {
119 ch->logflags |= LOG_FLAG_ILLEGALSIZE;
130 if (!(ch->logflags & LOG_FLAG_OVERRUN)) {
135 ch
188 channel_free(struct channel *ch) argument
200 channel_remove(struct channel *ch) argument
255 struct channel *ch = channels; local
309 ccw_unit_check(struct channel *ch, __u8 sense) argument
382 ctcm_ch_alloc_buffer(struct channel *ch) argument
465 ctcm_transmit_skb(struct channel *ch, struct sk_buff *skb) argument
604 struct channel *ch; local
648 ctcmpc_transmit_skb(struct channel *ch, struct sk_buff *skb) argument
1150 struct channel *ch; local
1303 struct channel *ch; local
[all...]
/linux-master/drivers/tty/serial/jsm/
H A Djsm_tty.c25 static void jsm_carrier(struct jsm_channel *ch);
27 static inline int jsm_get_mstat(struct jsm_channel *ch) argument
32 jsm_dbg(IOCTL, &ch->ch_bd->pci_dev, "start\n");
34 mstat = (ch->ch_mostat | ch->ch_mistat);
51 jsm_dbg(IOCTL, &ch->ch_bd->pci_dev, "finish\n");
148 static void jsm_tty_send_xchar(struct uart_port *port, char ch) argument
157 if (ch == termios->c_cc[VSTART])
160 if (ch == termios->c_cc[VSTOP])
370 struct jsm_channel *ch; local
483 struct jsm_channel *ch; local
512 jsm_input(struct jsm_channel *ch) argument
646 jsm_carrier(struct jsm_channel *ch) argument
746 jsm_check_queue_flow_control(struct jsm_channel *ch) argument
[all...]
/linux-master/drivers/clk/berlin/
H A Dberlin2-avpll.c214 struct berlin2_avpll_channel *ch = to_avpll_channel(hw); local
217 if (ch->index == 7)
220 reg = readl_relaxed(ch->base + VCO_CTRL10);
221 reg &= VCO_POWERUP_CH1 << ch->index;
228 struct berlin2_avpll_channel *ch = to_avpll_channel(hw); local
231 reg = readl_relaxed(ch->base + VCO_CTRL10);
232 reg |= VCO_POWERUP_CH1 << ch->index;
233 writel_relaxed(reg, ch->base + VCO_CTRL10);
240 struct berlin2_avpll_channel *ch = to_avpll_channel(hw); local
243 reg = readl_relaxed(ch
254 struct berlin2_avpll_channel *ch = to_avpll_channel(hw); local
360 struct berlin2_avpll_channel *ch; local
[all...]
/linux-master/drivers/staging/media/atomisp/pci/
H A Dsh_css_hrt.c40 fifo_channel_t ch; local
52 for (ch = 0; ch < N_FIFO_CHANNEL; ch++) {
55 fifo_channel_get_state(FIFO_MONITOR0_ID, ch, &state);
57 IA_CSS_WARNING("FIFO channel %d is not empty", ch);
/linux-master/drivers/isdn/mISDN/
H A Dhwchannel.c46 if (likely(bch->ch.peer)) {
47 err = bch->ch.recv(bch->ch.peer, skb);
57 mISDN_initdchannel(struct dchannel *ch, int maxlen, void *phf) argument
59 test_and_set_bit(FLG_HDLC, &ch->Flags);
60 ch->maxlen = maxlen;
61 ch->hw = NULL;
62 ch->rx_skb = NULL;
63 ch->tx_skb = NULL;
64 ch
75 mISDN_initbchannel(struct bchannel *ch, unsigned short maxlen, unsigned short minlen) argument
98 mISDN_freedchannel(struct dchannel *ch) argument
116 mISDN_clear_bchannel(struct bchannel *ch) argument
148 mISDN_freebchannel(struct bchannel *ch) argument
384 queue_ch_frame(struct mISDNchannel *ch, u_int pr, int id, struct sk_buff *skb) argument
404 dchannel_senddata(struct dchannel *ch, struct sk_buff *skb) argument
430 bchannel_senddata(struct bchannel *ch, struct sk_buff *skb) argument
[all...]
/linux-master/drivers/gpu/ipu-v3/
H A Dipu-cpmem.c93 ipu_get_cpmem(struct ipuv3_channel *ch) argument
95 struct ipu_cpmem *cpmem = ch->ipu->cpmem_priv;
97 return cpmem->base + ch->num;
100 static void ipu_ch_param_write_field(struct ipuv3_channel *ch, u32 wbs, u32 v) argument
102 struct ipu_ch_param __iomem *base = ipu_get_cpmem(ch);
126 static u32 ipu_ch_param_read_field(struct ipuv3_channel *ch, u32 wbs) argument
128 struct ipu_ch_param __iomem *base = ipu_get_cpmem(ch);
228 void ipu_cpmem_zero(struct ipuv3_channel *ch) argument
230 struct ipu_ch_param __iomem *p = ipu_get_cpmem(ch);
239 void ipu_cpmem_set_resolution(struct ipuv3_channel *ch, in argument
246 ipu_cpmem_skip_odd_chroma_rows(struct ipuv3_channel *ch) argument
252 ipu_cpmem_set_stride(struct ipuv3_channel *ch, int stride) argument
258 ipu_cpmem_set_high_priority(struct ipuv3_channel *ch) argument
272 ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf) argument
283 ipu_cpmem_set_uv_offset(struct ipuv3_channel *ch, u32 u_off, u32 v_off) argument
292 ipu_cpmem_interlaced_scan(struct ipuv3_channel *ch, int stride, u32 pixelformat) argument
333 ipu_cpmem_set_axi_id(struct ipuv3_channel *ch, u32 id) argument
340 ipu_cpmem_get_burstsize(struct ipuv3_channel *ch) argument
346 ipu_cpmem_set_burstsize(struct ipuv3_channel *ch, int burstsize) argument
352 ipu_cpmem_set_block_mode(struct ipuv3_channel *ch) argument
358 ipu_cpmem_set_rotation(struct ipuv3_channel *ch, enum ipu_rotate_mode rot) argument
367 ipu_cpmem_set_format_rgb(struct ipuv3_channel *ch, const struct ipu_rgb *rgb) argument
422 ipu_cpmem_set_format_passthrough(struct ipuv3_channel *ch, int width) argument
455 ipu_cpmem_set_yuv_interleaved(struct ipuv3_channel *ch, u32 pixel_format) argument
472 ipu_cpmem_set_yuv_planar_full(struct ipuv3_channel *ch, unsigned int uv_stride, unsigned int u_offset, unsigned int v_offset) argument
622 ipu_cpmem_set_separate_alpha(struct ipuv3_channel *ch) argument
641 ipu_cpmem_set_fmt(struct ipuv3_channel *ch, u32 drm_fourcc) argument
764 ipu_cpmem_set_image(struct ipuv3_channel *ch, struct ipu_image *image) argument
889 ipu_cpmem_dump(struct ipuv3_channel *ch) argument
[all...]
/linux-master/drivers/video/fbdev/
H A Dsh_mobile_lcdcfb.c213 struct sh_mobile_lcdc_chan ch[2]; member in struct:sh_mobile_lcdc_priv
398 struct sh_mobile_lcdc_chan *ch = handle; local
400 lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT);
401 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
402 lcdc_write(ch->lcdc, _LDDWAR, LDDWAR_WA |
403 (lcdc_chan_is_sublcd(ch) ? 2 : 0));
404 lcdc_wait_bit(ch->lcdc, _LDSR, LDSR_AS, 0);
409 struct sh_mobile_lcdc_chan *ch = handle; local
411 lcdc_write(ch->lcdc, _LDDWD0R, data | LDDWDxR_WDACT | LDDWDxR_RSW);
412 lcdc_wait_bit(ch
420 struct sh_mobile_lcdc_chan *ch = handle; local
440 struct sh_mobile_lcdc_chan *ch = info->par; local
456 struct sh_mobile_lcdc_chan *ch = info->par; local
502 sh_mobile_lcdc_display_on(struct sh_mobile_lcdc_chan *ch) argument
522 sh_mobile_lcdc_display_off(struct sh_mobile_lcdc_chan *ch) argument
635 struct sh_mobile_lcdc_chan *ch; local
672 sh_mobile_lcdc_wait_for_vsync(struct sh_mobile_lcdc_chan *ch) argument
721 sh_mobile_lcdc_geometry(struct sh_mobile_lcdc_chan *ch) argument
872 struct sh_mobile_lcdc_chan *ch; local
983 struct sh_mobile_lcdc_chan *ch; local
1062 struct sh_mobile_lcdc_chan *ch; local
1681 struct sh_mobile_lcdc_chan *ch = info->par; local
1735 struct sh_mobile_lcdc_chan *ch = info->par; local
1752 struct sh_mobile_lcdc_chan *ch = info->par; local
1785 struct sh_mobile_lcdc_chan *ch = info->par; local
1806 struct sh_mobile_lcdc_chan *ch = info->par; local
1820 struct sh_mobile_lcdc_chan *ch = info->par; local
1875 struct sh_mobile_lcdc_chan *ch = info->par; local
1920 struct sh_mobile_lcdc_chan *ch = info->par; local
1956 struct sh_mobile_lcdc_chan *ch = info->par; local
1985 sh_mobile_lcdc_channel_fb_unregister(struct sh_mobile_lcdc_chan *ch) argument
1992 sh_mobile_lcdc_channel_fb_register(struct sh_mobile_lcdc_chan *ch) argument
2023 sh_mobile_lcdc_channel_fb_cleanup(struct sh_mobile_lcdc_chan *ch) argument
2037 sh_mobile_lcdc_channel_fb_init(struct sh_mobile_lcdc_chan *ch, const struct fb_videomode *modes, unsigned int num_modes) argument
2125 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev); local
2138 struct sh_mobile_lcdc_chan *ch = bl_get_data(bdev); local
2156 sh_mobile_lcdc_bl_probe(struct device *parent, struct sh_mobile_lcdc_chan *ch) argument
2275 struct sh_mobile_lcdc_chan *ch = &priv->ch[i]; local
2290 struct sh_mobile_lcdc_chan *ch = &priv->ch[i]; local
2310 sh_mobile_lcdc_check_interface(struct sh_mobile_lcdc_chan *ch) argument
2406 sh_mobile_lcdc_channel_init(struct sh_mobile_lcdc_chan *ch) argument
2548 struct sh_mobile_lcdc_chan *ch = priv->ch + num_channels; local
2605 struct sh_mobile_lcdc_chan *ch = &priv->ch[i]; local
2630 struct sh_mobile_lcdc_chan *ch = priv->ch + i; local
[all...]
/linux-master/arch/mips/ath25/
H A Dearly_printk.c19 unsigned char ch)
21 __raw_writel(ch, base + 4 * reg);
29 void prom_putchar(char ch) argument
42 prom_uart_wr(base, UART_TX, (unsigned char)ch);
18 prom_uart_wr(void __iomem *base, unsigned reg, unsigned char ch) argument
/linux-master/drivers/media/platform/amphion/
H A Dvpu_mbox.c27 struct mbox_chan *ch; local
32 if (mbox->ch)
46 ch = mbox_request_channel_byname(cl, mbox->name);
47 if (IS_ERR(ch))
48 return dev_err_probe(dev, PTR_ERR(ch),
52 mbox->ch = ch;
93 mbox_free_channel(core->tx_type.ch);
94 mbox_free_channel(core->tx_data.ch);
95 mbox_free_channel(core->rx.ch);
[all...]
/linux-master/arch/m68k/sun3/prom/
H A Dprintf.c27 char ch, *bptr; local
46 while((ch = *(bptr++)) != 0) {
47 if(ch == '\n')
50 prom_putchar(ch);
/linux-master/tools/lib/symbol/
H A Dkallsyms.c22 int ch; local
25 ch = io__get_char(io);
26 if (ch < 0 || ch == '\n')
49 int ch; local
64 ch = io__get_char(&io);
65 if (ch < 0 || ch == '\n')
67 symbol_name[i] = ch;
/linux-master/drivers/clocksource/
H A Dsh_mtu2.c156 static inline unsigned long sh_mtu2_read(struct sh_mtu2_channel *ch, int reg_nr) argument
161 return ioread8(ch->mtu->mapbase + 0x280);
166 return ioread16(ch->base + offs);
168 return ioread8(ch->base + offs);
171 static inline void sh_mtu2_write(struct sh_mtu2_channel *ch, int reg_nr, argument
177 return iowrite8(value, ch->mtu->mapbase + 0x280);
182 iowrite16(value, ch->base + offs);
184 iowrite8(value, ch->base + offs);
187 static void sh_mtu2_start_stop_ch(struct sh_mtu2_channel *ch, int start) argument
192 raw_spin_lock_irqsave(&ch
204 sh_mtu2_enable(struct sh_mtu2_channel *ch) argument
245 sh_mtu2_disable(struct sh_mtu2_channel *ch) argument
259 struct sh_mtu2_channel *ch = dev_id; local
277 struct sh_mtu2_channel *ch = ced_to_sh_mtu2(ced); local
287 struct sh_mtu2_channel *ch = ced_to_sh_mtu2(ced); local
308 sh_mtu2_register_clockevent(struct sh_mtu2_channel *ch, const char *name) argument
327 sh_mtu2_register(struct sh_mtu2_channel *ch, const char *name) argument
339 sh_mtu2_setup_channel(struct sh_mtu2_channel *ch, unsigned int index, struct sh_mtu2_device *mtu) argument
[all...]
/linux-master/drivers/net/ethernet/
H A Dlantiq_xrx200.c130 static void xrx200_flush_dma(struct xrx200_chan *ch) argument
135 struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
141 ch->priv->rx_buf_size;
142 ch->dma.desc++;
143 ch->dma.desc %= LTQ_DESC_NUM;
187 static int xrx200_alloc_buf(struct xrx200_chan *ch, void *(*alloc)(unsigned int size)) argument
189 void *buf = ch->rx_buff[ch->dma.desc];
190 struct xrx200_priv *priv = ch
220 xrx200_hw_receive(struct xrx200_chan *ch) argument
285 struct xrx200_chan *ch = container_of(napi, local
315 struct xrx200_chan *ch = container_of(napi, local
361 struct xrx200_chan *ch = &priv->chan_tx; local
472 struct xrx200_chan *ch = ptr; local
[all...]
/linux-master/drivers/gpu/host1x/hw/
H A Ddebug_hw_1x06.c15 struct host1x_channel *ch,
18 struct host1x_cdma *cdma = &ch->cdma;
25 dmastart = host1x_ch_readl(ch, HOST1X_CHANNEL_DMASTART_HI);
28 dmastart |= host1x_ch_readl(ch, HOST1X_CHANNEL_DMASTART);
31 dmaend = host1x_ch_readl(ch, HOST1X_CHANNEL_DMAEND_HI);
34 dmaend |= host1x_ch_readl(ch, HOST1X_CHANNEL_DMAEND);
36 dmaput = host1x_ch_readl(ch, HOST1X_CHANNEL_DMAPUT);
37 dmaget = host1x_ch_readl(ch, HOST1X_CHANNEL_DMAGET);
38 dmactrl = host1x_ch_readl(ch, HOST1X_CHANNEL_DMACTRL);
39 offset = host1x_ch_readl(ch, HOST1X_CHANNEL_CMDP_OFFSE
14 host1x_debug_show_channel_cdma(struct host1x *host, struct host1x_channel *ch, struct output *o) argument
66 host1x_debug_show_channel_fifo(struct host1x *host, struct host1x_channel *ch, struct output *o) argument
[all...]
/linux-master/include/linux/mfd/
H A Drz-mtu3.h154 static inline bool rz_mtu3_request_channel(struct rz_mtu3_channel *ch) argument
156 mutex_lock(&ch->lock);
157 if (ch->is_busy) {
158 mutex_unlock(&ch->lock);
162 ch->is_busy = true;
163 mutex_unlock(&ch->lock);
168 static inline void rz_mtu3_release_channel(struct rz_mtu3_channel *ch) argument
170 mutex_lock(&ch->lock);
171 ch->is_busy = false;
172 mutex_unlock(&ch
[all...]
/linux-master/arch/x86/boot/
H A Dtty.c28 static void __section(".inittext") serial_putchar(int ch) argument
35 outb(ch, early_serial_base + TXR);
38 static void __section(".inittext") bios_putchar(int ch) argument
46 ireg.al = ch;
50 void __section(".inittext") putchar(int ch) argument
52 if (ch == '\n')
55 bios_putchar(ch);
58 serial_putchar(ch);
/linux-master/arch/mips/lantiq/xway/
H A Ddma.c61 ltq_dma_enable_irq(struct ltq_dma_channel *ch) argument
66 ltq_dma_w32(ch->nr, LTQ_DMA_CS);
67 ltq_dma_w32_mask(0, 1 << ch->nr, LTQ_DMA_IRNEN);
73 ltq_dma_disable_irq(struct ltq_dma_channel *ch) argument
78 ltq_dma_w32(ch->nr, LTQ_DMA_CS);
79 ltq_dma_w32_mask(1 << ch->nr, 0, LTQ_DMA_IRNEN);
85 ltq_dma_ack_irq(struct ltq_dma_channel *ch) argument
90 ltq_dma_w32(ch->nr, LTQ_DMA_CS);
97 ltq_dma_open(struct ltq_dma_channel *ch) argument
102 ltq_dma_w32(ch
109 ltq_dma_close(struct ltq_dma_channel *ch) argument
122 ltq_dma_alloc(struct ltq_dma_channel *ch) argument
144 ltq_dma_alloc_tx(struct ltq_dma_channel *ch) argument
159 ltq_dma_alloc_rx(struct ltq_dma_channel *ch) argument
174 ltq_dma_free(struct ltq_dma_channel *ch) argument
[all...]
/linux-master/drivers/dma/dw-edma/
H A Ddw-hdma-v0-debugfs.c28 __ch_regs = REGS_ADDR(dw, ch[_ch].rd); \
30 __ch_regs = REGS_ADDR(dw, ch[_ch].wr); \
35 #define CTX_REGISTER(dw, name, dir, ch) \
36 {#name, REGS_CH_ADDR(dw, name, dir, ch)}
80 u16 ch, struct dentry *dent)
83 CTX_REGISTER(dw, ch_en, dir, ch),
84 CTX_REGISTER(dw, doorbell, dir, ch),
85 CTX_REGISTER(dw, prefetch, dir, ch),
86 CTX_REGISTER(dw, handshake, dir, ch),
87 CTX_REGISTER(dw, llp.lsb, dir, ch),
79 dw_hdma_debugfs_regs_ch(struct dw_edma *dw, enum dw_edma_dir dir, u16 ch, struct dentry *dent) argument
[all...]
/linux-master/arch/arm/boot/compressed/
H A Dmisc.c38 static void icedcc_putc(int ch) argument
49 asm("mcr p14, 0, %0, c0, c5, 0" : : "r" (ch));
55 static void icedcc_putc(int ch) argument
66 asm("mcr p14, 0, %0, c8, c0, 0" : : "r" (ch));
71 static void icedcc_putc(int ch) argument
82 asm("mcr p14, 0, %0, c1, c0, 0" : : "r" (ch));
87 #define putc(ch) icedcc_putc(ch)
/linux-master/sound/soc/codecs/
H A Didt821034.c38 } ch[IDT821034_NB_CHANNEL]; member in struct:idt821034::__anon4847
44 } ch[IDT821034_NB_CHANNEL]; member in struct:idt821034::__anon4849
119 static int idt821034_set_channel_power(struct idt821034 *idt821034, u8 ch, u8 power) argument
124 dev_dbg(&idt821034->spi->dev, "set_channel_power(%u, 0x%x)\n", ch, power);
126 conf = IDT821034_MODE_CODEC(ch) | idt821034->cache.codec_conf;
131 idt821034->cache.ch[ch].rx_slot);
138 idt821034->cache.ch[ch].tx_slot);
148 idt821034->cache.ch[c
153 idt821034_get_channel_power(struct idt821034 *idt821034, u8 ch) argument
208 idt821034_set_channel_ts(struct idt821034 *idt821034, u8 ch, u8 ch_dir, u8 ts_num) argument
245 idt821034_set_slic_conf(struct idt821034 *idt821034, u8 ch, u8 slic_dir) argument
262 idt821034_get_slic_conf(struct idt821034 *idt821034, u8 ch) argument
267 idt821034_write_slic_raw(struct idt821034 *idt821034, u8 ch, u8 slic_raw) argument
292 idt821034_get_written_slic_raw(struct idt821034 *idt821034, u8 ch) argument
297 idt821034_read_slic_raw(struct idt821034 *idt821034, u8 ch, u8 *slic_raw) argument
332 idt821034_set_gain_channel(struct idt821034 *idt821034, u8 ch, u8 gain_type, u16 gain_val) argument
412 u8 ch; local
446 u8 ch; local
494 u8 ch; local
519 u8 ch; local
627 u8 ch; local
704 u8 ch; local
962 u8 ch = IDT821034_GPIO_OFFSET_TO_SLIC_CHANNEL(offset); local
986 u8 ch = IDT821034_GPIO_OFFSET_TO_SLIC_CHANNEL(offset); local
1011 u8 ch = IDT821034_GPIO_OFFSET_TO_SLIC_CHANNEL(offset); local
1025 u8 ch = IDT821034_GPIO_OFFSET_TO_SLIC_CHANNEL(offset); local
1051 u8 ch = IDT821034_GPIO_OFFSET_TO_SLIC_CHANNEL(offset); local
[all...]
/linux-master/drivers/staging/most/dim2/
H A Dhal.h70 u8 dim_init_control(struct dim_channel *ch, u8 is_tx, u16 ch_address,
73 u8 dim_init_async(struct dim_channel *ch, u8 is_tx, u16 ch_address,
76 u8 dim_init_isoc(struct dim_channel *ch, u8 is_tx, u16 ch_address,
79 u8 dim_init_sync(struct dim_channel *ch, u8 is_tx, u16 ch_address,
82 u8 dim_destroy_channel(struct dim_channel *ch);
88 u8 dim_service_channel(struct dim_channel *ch);
90 struct dim_ch_state *dim_get_channel_state(struct dim_channel *ch,
93 u16 dim_dbr_space(struct dim_channel *ch);
95 bool dim_enqueue_buffer(struct dim_channel *ch, u32 buffer_addr,
98 bool dim_detach_buffers(struct dim_channel *ch, u1
[all...]
/linux-master/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-xsk.c13 struct dpaa2_eth_channel *ch,
25 if (fq->channel != ch)
33 struct dpaa2_eth_channel *ch,
44 xdp_prog = READ_ONCE(ch->xdp.prog);
49 ch->xsk_pool->umem->headroom);
56 xdp_buff->rxq = &ch->xdp_rxq;
58 xsk_buff_dma_sync_for_cpu(xdp_buff, ch->xsk_pool);
68 ch->stats.xdp_drop++;
69 dpaa2_eth_recycle_buf(priv, ch, addr);
71 ch
12 dpaa2_eth_setup_consume_func(struct dpaa2_eth_priv *priv, struct dpaa2_eth_channel *ch, enum dpaa2_eth_fq_type type, dpaa2_eth_consume_cb_t *consume) argument
32 dpaa2_xsk_run_xdp(struct dpaa2_eth_priv *priv, struct dpaa2_eth_channel *ch, struct dpaa2_eth_fq *rx_fq, struct dpaa2_fd *fd, void *vaddr) argument
103 dpaa2_xsk_rx(struct dpaa2_eth_priv *priv, struct dpaa2_eth_channel *ch, const struct dpaa2_fd *fd, struct dpaa2_eth_fq *fq) argument
178 struct dpaa2_eth_channel *ch; local
226 struct dpaa2_eth_channel *ch; local
312 struct dpaa2_eth_channel *ch = priv->channel[qid]; local
332 dpaa2_xsk_tx_build_fd(struct dpaa2_eth_priv *priv, struct dpaa2_eth_channel *ch, struct dpaa2_fd *fd, struct xdp_desc *xdp_desc) argument
390 dpaa2_xsk_tx(struct dpaa2_eth_priv *priv, struct dpaa2_eth_channel *ch) argument
[all...]
/linux-master/drivers/mfd/
H A Drz-mtu3.c65 u16 rz_mtu3_shared_reg_read(struct rz_mtu3_channel *ch, u16 offset) argument
67 struct rz_mtu3 *mtu = dev_get_drvdata(ch->dev->parent);
77 u8 rz_mtu3_8bit_ch_read(struct rz_mtu3_channel *ch, u16 offset) argument
79 struct rz_mtu3 *mtu = dev_get_drvdata(ch->dev->parent);
83 ch_offs = rz_mtu3_8bit_ch_reg_offs[ch->channel_number][offset];
89 u16 rz_mtu3_16bit_ch_read(struct rz_mtu3_channel *ch, u16 offset) argument
91 struct rz_mtu3 *mtu = dev_get_drvdata(ch->dev->parent);
96 if (ch->channel_number == RZ_MTU3_CHAN_8)
99 ch_offs = rz_mtu3_16bit_ch_reg_offs[ch->channel_number][offset];
105 u32 rz_mtu3_32bit_ch_read(struct rz_mtu3_channel *ch, u1 argument
120 rz_mtu3_8bit_ch_write(struct rz_mtu3_channel *ch, u16 offset, u8 val) argument
131 rz_mtu3_16bit_ch_write(struct rz_mtu3_channel *ch, u16 offset, u16 val) argument
146 rz_mtu3_32bit_ch_write(struct rz_mtu3_channel *ch, u16 offset, u32 val) argument
160 rz_mtu3_shared_reg_write(struct rz_mtu3_channel *ch, u16 offset, u16 value) argument
172 rz_mtu3_shared_reg_update_bit(struct rz_mtu3_channel *ch, u16 offset, u16 pos, u8 val) argument
187 rz_mtu3_get_tstr_offset(struct rz_mtu3_channel *ch) argument
215 rz_mtu3_get_tstr_bit_pos(struct rz_mtu3_channel *ch) argument
247 rz_mtu3_start_stop_ch(struct rz_mtu3_channel *ch, bool start) argument
268 rz_mtu3_is_enabled(struct rz_mtu3_channel *ch) argument
288 rz_mtu3_enable(struct rz_mtu3_channel *ch) argument
297 rz_mtu3_disable(struct rz_mtu3_channel *ch) argument
[all...]

Completed in 255 milliseconds

1234567891011>>