Home
last modified time | relevance | path

Searched defs:ch (Results 1 – 25 of 780) sorted by relevance

12345678910>>...32

/linux/drivers/gpu/drm/i915/display/
H A Dvlv_dpio_phy_regs.h13 #define _VLV_PLL(ch, dw) (0x8000 + (ch) * 0x20 + (dw) * 4) /* dw 0-7,16-23 */ argument
14 #define _CHV_PLL(ch, dw) (0x8000 + (ch) * 0x180 + (dw) * 4) argument
16 #define _VLV_PCS(ch, spline, dw) (0x200 + (ch) * 0x2400 + (spline) * 0x200 + (dw) * 4) argument
17 #define _VLV_PCS_GRP(ch, dw) (0x8200 + (ch) * 0x200 + (dw) * 4) argument
19 #define _VLV_TX(ch, lane, dw) (0x80 + (ch) * 0x2400 + (lane) * 0x200 + (dw) * 4) argument
20 #define _VLV_TX_GRP(ch, dw) (0x8280 + (ch) * 0x200 + (dw) * 4) argument
26 #define VLV_PLL_DW3(ch) _VLV_PLL((ch), 3) argument
47 #define VLV_PLL_DW5(ch) _VLV_PLL((ch), 5) argument
55 #define VLV_PLL_DW7(ch) _VLV_PLL((ch), 7) argument
57 #define VLV_PLL_DW16(ch) _VLV_PLL((ch), 16) argument
[all …]
H A Dbxt_dpio_phy_regs.h23 #define _BXT_PHY_CH(phy, ch, reg_ch0, reg_ch1) \ argument
26 #define _MMIO_BXT_PHY_CH(phy, ch, reg_ch0, reg_ch1) \ argument
30 #define _MMIO_BXT_PHY_CH_LN(phy, ch, lane, reg_ch0, reg_ch1) \ argument
51 #define BXT_PORT_PLL_EBB_0(phy, ch) _MMIO_BXT_PHY_CH(phy, ch, \ argument
60 #define BXT_PORT_PLL_EBB_4(phy, ch) _MMIO_BXT_PHY_CH(phy, ch, \ argument
95 #define _PORT_PLL_BASE(phy, ch) _BXT_PHY_CH(phy, ch, \ argument
98 #define BXT_PORT_PLL(phy, ch, idx) _MMIO(_PORT_PLL_BASE(phy, ch) + \ argument
171 #define BXT_PORT_PCS_DW10_LN01(phy, ch) _MMIO_BXT_PHY_CH(phy, ch, \ argument
174 #define BXT_PORT_PCS_DW10_GRP(phy, ch) _MMIO_BXT_PHY_CH(phy, ch, \ argument
192 #define BXT_PORT_PCS_DW12_LN01(phy, ch) _MMIO_BXT_PHY_CH(phy, ch, \ argument
[all …]
/linux/include/linux/mfd/
H A Dmax5970.h31 #define MAX5970_REG_CURRENT_L(ch) (0x01 + (ch) * 4) argument
32 #define MAX5970_REG_CURRENT_H(ch) (0x00 + (ch) * 4) argument
33 #define MAX5970_REG_VOLTAGE_L(ch) (0x03 + (ch) * 4) argument
34 #define MAX5970_REG_VOLTAGE_H(ch) (0x02 + (ch) * 4) argument
37 #define MAX5970_MON(reg, ch) (((reg) >> ((ch) * 2)) & MAX5970_MON_MASK) argument
40 #define MAX5970_REG_CH_UV_WARN_H(ch) (0x1A + (ch) * 10) argument
41 #define MAX5970_REG_CH_UV_WARN_L(ch) (0x1B + (ch) * 10) argument
42 #define MAX5970_REG_CH_UV_CRIT_H(ch) (0x1C + (ch) * 10) argument
43 #define MAX5970_REG_CH_UV_CRIT_L(ch) (0x1D + (ch) * 10) argument
44 #define MAX5970_REG_CH_OV_WARN_H(ch) (0x1E + (ch) * 10) argument
[all …]
/linux/drivers/clocksource/
H A Dsh_tmu.c84 static inline unsigned long sh_tmu_read(struct sh_tmu_channel *ch, int reg_nr) in sh_tmu_read()
105 static inline void sh_tmu_write(struct sh_tmu_channel *ch, int reg_nr, in sh_tmu_write()
127 static void sh_tmu_start_stop_ch(struct sh_tmu_channel *ch, int start) in sh_tmu_start_stop_ch()
144 static int __sh_tmu_enable(struct sh_tmu_channel *ch) in __sh_tmu_enable()
172 static int sh_tmu_enable(struct sh_tmu_channel *ch) in sh_tmu_enable()
183 static void __sh_tmu_disable(struct sh_tmu_channel *ch) in __sh_tmu_disable()
195 static void sh_tmu_disable(struct sh_tmu_channel *ch) in sh_tmu_disable()
209 static void sh_tmu_set_next(struct sh_tmu_channel *ch, unsigned long delta, in sh_tmu_set_next()
235 struct sh_tmu_channel *ch = dev_id; in sh_tmu_interrupt() local
255 struct sh_tmu_channel *ch = cs_to_sh_tmu(cs); in sh_tmu_clocksource_read() local
[all …]
H A Dsh_cmt.c241 static inline u32 sh_cmt_read_cmstr(struct sh_cmt_channel *ch) in sh_cmt_read_cmstr()
249 static inline void sh_cmt_write_cmstr(struct sh_cmt_channel *ch, u32 value) in sh_cmt_write_cmstr()
264 static inline u32 sh_cmt_read_cmcsr(struct sh_cmt_channel *ch) in sh_cmt_read_cmcsr()
269 static inline void sh_cmt_write_cmcsr(struct sh_cmt_channel *ch, u32 value) in sh_cmt_write_cmcsr()
279 static inline u32 sh_cmt_read_cmcnt(struct sh_cmt_channel *ch) in sh_cmt_read_cmcnt()
284 static inline int sh_cmt_write_cmcnt(struct sh_cmt_channel *ch, u32 value) in sh_cmt_write_cmcnt()
303 static inline void sh_cmt_write_cmcor(struct sh_cmt_channel *ch, u32 value) in sh_cmt_write_cmcor()
313 static u32 sh_cmt_get_counter(struct sh_cmt_channel *ch, u32 *has_wrapped) in sh_cmt_get_counter()
334 static void sh_cmt_start_stop_ch(struct sh_cmt_channel *ch, int start) in sh_cmt_start_stop_ch()
352 static int sh_cmt_enable(struct sh_cmt_channel *ch) in sh_cmt_enable()
[all …]
/linux/drivers/mfd/
H A Drz-mtu3.c65 u16 rz_mtu3_shared_reg_read(struct rz_mtu3_channel *ch, u16 offset) in rz_mtu3_shared_reg_read()
77 u8 rz_mtu3_8bit_ch_read(struct rz_mtu3_channel *ch, u16 offset) in rz_mtu3_8bit_ch_read()
89 u16 rz_mtu3_16bit_ch_read(struct rz_mtu3_channel *ch, u16 offset) in rz_mtu3_16bit_ch_read()
105 u32 rz_mtu3_32bit_ch_read(struct rz_mtu3_channel *ch, u16 offset) in rz_mtu3_32bit_ch_read()
120 void rz_mtu3_8bit_ch_write(struct rz_mtu3_channel *ch, u16 offset, u8 val) in rz_mtu3_8bit_ch_write()
131 void rz_mtu3_16bit_ch_write(struct rz_mtu3_channel *ch, u16 offset, u16 val) in rz_mtu3_16bit_ch_write()
146 void rz_mtu3_32bit_ch_write(struct rz_mtu3_channel *ch, u16 offset, u32 val) in rz_mtu3_32bit_ch_write()
160 void rz_mtu3_shared_reg_write(struct rz_mtu3_channel *ch, u16 offset, u16 value) in rz_mtu3_shared_reg_write()
172 void rz_mtu3_shared_reg_update_bit(struct rz_mtu3_channel *ch, u16 offset, in rz_mtu3_shared_reg_update_bit()
187 static u16 rz_mtu3_get_tstr_offset(struct rz_mtu3_channel *ch) in rz_mtu3_get_tstr_offset()
[all …]
/linux/sound/soc/codecs/
H A Drk3308_codec.h24 #define RK3308_ADC_DIG_OFFSET(ch) (((ch) & 0x3) * 0xc0 + 0x0) argument
26 #define RK3308_ADC_DIG_CON01(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x04) argument
27 #define RK3308_ADC_DIG_CON02(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x08) argument
28 #define RK3308_ADC_DIG_CON03(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x0c) argument
29 #define RK3308_ADC_DIG_CON04(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x10) argument
30 #define RK3308_ADC_DIG_CON05(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x14) // ver.C only argument
31 #define RK3308_ADC_DIG_CON06(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x18) // ver.C only argument
32 #define RK3308_ADC_DIG_CON07(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x1c) argument
34 #define RK3308_ALC_L_DIG_CON00(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x40) argument
35 #define RK3308_ALC_L_DIG_CON01(ch) (RK3308_ADC_DIG_OFFSET((ch)) + 0x44) argument
[all …]
H A Didt821034.c38 } ch[IDT821034_NB_CHANNEL]; member
44 } ch[IDT821034_NB_CHANNEL]; member
119 static int idt821034_set_channel_power(struct idt821034 *idt821034, u8 ch, u8 power) in idt821034_set_channel_power()
153 static u8 idt821034_get_channel_power(struct idt821034 *idt821034, u8 ch) in idt821034_get_channel_power()
208 static int idt821034_set_channel_ts(struct idt821034 *idt821034, u8 ch, u8 ch_dir, u8 ts_num) in idt821034_set_channel_ts()
245 static int idt821034_set_slic_conf(struct idt821034 *idt821034, u8 ch, u8 slic_dir) in idt821034_set_slic_conf()
262 static u8 idt821034_get_slic_conf(struct idt821034 *idt821034, u8 ch) in idt821034_get_slic_conf()
267 static int idt821034_write_slic_raw(struct idt821034 *idt821034, u8 ch, u8 slic_raw) in idt821034_write_slic_raw()
292 static u8 idt821034_get_written_slic_raw(struct idt821034 *idt821034, u8 ch) in idt821034_get_written_slic_raw()
297 static int idt821034_read_slic_raw(struct idt821034 *idt821034, u8 ch, u8 *slic_raw) in idt821034_read_slic_raw()
[all …]
/linux/drivers/misc/sgi-xp/
H A Dxpc_channel.c27 xpc_process_connect(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_process_connect()
80 xpc_process_disconnect(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_process_disconnect()
189 struct xpc_channel *ch = &part->channels[ch_number]; in xpc_process_openclose_chctl_flags() local
465 xpc_connect_channel(struct xpc_channel *ch) in xpc_connect_channel()
550 struct xpc_channel *ch; in xpc_process_sent_chctl_flags() local
621 struct xpc_channel *ch; in xpc_partition_going_down() local
677 xpc_connected_callout(struct xpc_channel *ch) in xpc_connected_callout()
712 struct xpc_channel *ch; in xpc_initiate_disconnect() local
753 xpc_disconnect_channel(const int line, struct xpc_channel *ch, in xpc_disconnect_channel()
801 xpc_disconnect_callout(struct xpc_channel *ch, enum xp_retval reason) in xpc_disconnect_callout()
[all …]
H A Dxpc_uv.c672 xpc_send_activate_IRQ_ch_uv(struct xpc_channel *ch, unsigned long *irq_flags, in xpc_send_activate_IRQ_ch_uv()
1001 xpc_allocate_send_msg_slot_uv(struct xpc_channel *ch) in xpc_allocate_send_msg_slot_uv()
1035 xpc_allocate_recv_msg_slot_uv(struct xpc_channel *ch) in xpc_allocate_recv_msg_slot_uv()
1071 xpc_setup_msg_structures_uv(struct xpc_channel *ch) in xpc_setup_msg_structures_uv()
1101 xpc_teardown_msg_structures_uv(struct xpc_channel *ch) in xpc_teardown_msg_structures_uv()
1119 xpc_send_chctl_closerequest_uv(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_send_chctl_closerequest_uv()
1130 xpc_send_chctl_closereply_uv(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_send_chctl_closereply_uv()
1140 xpc_send_chctl_openrequest_uv(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_send_chctl_openrequest_uv()
1152 xpc_send_chctl_openreply_uv(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_send_chctl_openreply_uv()
1165 xpc_send_chctl_opencomplete_uv(struct xpc_channel *ch, unsigned long *irq_flags) in xpc_send_chctl_opencomplete_uv()
[all …]
/linux/drivers/isdn/mISDN/
H A Dstack.c36 mISDN_queue_message(struct mISDNchannel *ch, struct sk_buff *skb) in mISDN_queue_message()
45 struct mISDNchannel *ch; in get_channel4id() local
86 struct mISDNchannel *ch; in send_layer2() local
143 struct mISDNchannel *ch; in send_msg_to_layer() local
325 l1_receive(struct mISDNchannel *ch, struct sk_buff *skb) in l1_receive()
335 set_channel_address(struct mISDNchannel *ch, u_int sapi, u_int tei) in set_channel_address()
341 __add_layer2(struct mISDNchannel *ch, struct mISDNstack *st) in __add_layer2()
347 add_layer2(struct mISDNchannel *ch, struct mISDNstack *st) in add_layer2()
355 st_own_ctrl(struct mISDNchannel *ch, u_int cmd, void *arg) in st_own_ctrl()
417 connect_layer1(struct mISDNdevice *dev, struct mISDNchannel *ch, in connect_layer1()
[all …]
/linux/drivers/gpu/host1x/hw/
H A Dcdma_hw.c45 struct host1x_channel *ch = cdma_to_channel(cdma); in cdma_start() local
92 struct host1x_channel *ch = cdma_to_channel(cdma); in cdma_timeout_restart() local
145 struct host1x_channel *ch = cdma_to_channel(cdma); in cdma_flush() local
156 struct host1x_channel *ch = cdma_to_channel(cdma); in cdma_stop() local
170 static void cdma_hw_cmdproc_stop(struct host1x *host, struct host1x_channel *ch, in cdma_hw_cmdproc_stop()
185 static void cdma_hw_teardown(struct host1x *host, struct host1x_channel *ch) in cdma_hw_teardown()
201 struct host1x_channel *ch = cdma_to_channel(cdma); in cdma_freeze() local
229 struct host1x_channel *ch = cdma_to_channel(cdma); in cdma_resume() local
252 struct host1x_channel *ch = cdma_to_channel(cdma); in timeout_release_mlock() local
282 struct host1x_channel *ch; in cdma_timeout_handler() local
/linux/drivers/media/platform/ti/davinci/
H A Dvpif_display.c74 struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue); in vpif_buffer_prepare() local
115 struct channel_obj *ch = vb2_get_drv_priv(vq); in vpif_buffer_queue_setup() local
148 struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue); in vpif_buffer_queue() local
169 struct channel_obj *ch = vb2_get_drv_priv(vq); in vpif_start_streaming() local
254 struct channel_obj *ch = vb2_get_drv_priv(vq); in vpif_stop_streaming() local
365 struct channel_obj *ch; in vpif_channel_isr() local
430 static int vpif_update_std_info(struct channel_obj *ch) in vpif_update_std_info()
458 static int vpif_update_resolution(struct channel_obj *ch) in vpif_update_resolution()
501 static void vpif_calculate_offsets(struct channel_obj *ch) in vpif_calculate_offsets()
562 static void vpif_config_addr(struct channel_obj *ch, int muxmode) in vpif_config_addr()
[all …]
/linux/drivers/s390/net/
H A Dctcm_fsms.c191 void ctcm_ccw_check_rc(struct channel *ch, int rc, char *msg) in ctcm_ccw_check_rc()
248 struct channel *ch = arg; in chx_txdone() local
336 struct channel *ch = arg; in ctcm_chx_txidle() local
357 struct channel *ch = arg; in chx_rx() local
434 struct channel *ch = arg; in chx_firstio() local
511 struct channel *ch = arg; in chx_rxidle() local
550 struct channel *ch = arg; in ctcm_chx_setmode() local
590 struct channel *ch = arg; in ctcm_chx_start() local
653 struct channel *ch = arg; in ctcm_chx_haltio() local
694 struct channel *ch) in ctcm_chx_cleanup()
[all …]
/linux/drivers/gpu/ipu-v3/
H A Dipu-cpmem.c93 ipu_get_cpmem(struct ipuv3_channel *ch) in ipu_get_cpmem()
100 static void ipu_ch_param_write_field(struct ipuv3_channel *ch, u32 wbs, u32 v) in ipu_ch_param_write_field()
126 static u32 ipu_ch_param_read_field(struct ipuv3_channel *ch, u32 wbs) in ipu_ch_param_read_field()
228 void ipu_cpmem_zero(struct ipuv3_channel *ch) in ipu_cpmem_zero()
239 void ipu_cpmem_set_resolution(struct ipuv3_channel *ch, int xres, int yres) in ipu_cpmem_set_resolution()
246 void ipu_cpmem_skip_odd_chroma_rows(struct ipuv3_channel *ch) in ipu_cpmem_skip_odd_chroma_rows()
252 void ipu_cpmem_set_stride(struct ipuv3_channel *ch, int stride) in ipu_cpmem_set_stride()
258 void ipu_cpmem_set_high_priority(struct ipuv3_channel *ch) in ipu_cpmem_set_high_priority()
272 void ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf) in ipu_cpmem_set_buffer()
283 void ipu_cpmem_set_uv_offset(struct ipuv3_channel *ch, u32 u_off, u32 v_off) in ipu_cpmem_set_uv_offset()
[all …]
/linux/drivers/gpu/drm/tidss/
H A Dtidss_irq.h36 #define DSS_IRQ_VP_BIT_N(ch, bit) (4 + 4 * (ch) + (bit)) argument
40 #define DSS_IRQ_VP_BIT(ch, bit) BIT(DSS_IRQ_VP_BIT_N((ch), (bit))) argument
44 static inline dispc_irq_t DSS_IRQ_VP_MASK(u32 ch) in DSS_IRQ_VP_MASK()
55 #define DSS_IRQ_VP_FRAME_DONE(ch) DSS_IRQ_VP_BIT((ch), 0) argument
56 #define DSS_IRQ_VP_VSYNC_EVEN(ch) DSS_IRQ_VP_BIT((ch), 1) argument
57 #define DSS_IRQ_VP_VSYNC_ODD(ch) DSS_IRQ_VP_BIT((ch), 2) argument
58 #define DSS_IRQ_VP_SYNC_LOST(ch) DSS_IRQ_VP_BIT((ch), 3) argument
/linux/drivers/isdn/hardware/mISDN/
H A DmISDNisar.c402 deliver_status(struct isar_ch *ch, int status) in deliver_status()
409 isar_rcv_frame(struct isar_ch *ch) in isar_rcv_frame()
574 isar_fill_fifo(struct isar_ch *ch) in isar_fill_fifo()
675 send_next(struct isar_ch *ch) in send_next()
722 struct isar_ch *ch; in check_send() local
754 isar_pump_status_rsp(struct isar_ch *ch) { in isar_pump_status_rsp()
804 isar_pump_statev_modem(struct isar_ch *ch, u8 devt) { in isar_pump_statev_modem()
859 isar_pump_statev_fax(struct isar_ch *ch, u8 devt) { in isar_pump_statev_fax()
1039 struct isar_ch *ch; in mISDNisar_irq() local
1138 struct isar_ch *ch = from_timer(ch, t, ftimer); in ftimer_handler() local
[all …]
/linux/drivers/gpu/drm/imx/dcss/
H A Ddcss-dpr.c118 struct dcss_dpr_ch ch[3]; member
121 static void dcss_dpr_write(struct dcss_dpr_ch *ch, u32 val, u32 ofs) in dcss_dpr_write()
130 struct dcss_dpr_ch *ch; in dcss_dpr_ch_init_all() local
179 struct dcss_dpr_ch *ch = &dpr->ch[ch_no]; in dcss_dpr_exit() local
185 static u32 dcss_dpr_x_pix_wide_adjust(struct dcss_dpr_ch *ch, u32 pix_wide, in dcss_dpr_x_pix_wide_adjust()
205 static u32 dcss_dpr_y_pix_high_adjust(struct dcss_dpr_ch *ch, u32 pix_high, in dcss_dpr_y_pix_high_adjust()
219 struct dcss_dpr_ch *ch = &dpr->ch[ch_num]; in dcss_dpr_set_res() local
247 struct dcss_dpr_ch *ch = &dpr->ch[ch_num]; in dcss_dpr_addr_set() local
257 static void dcss_dpr_argb_comp_sel(struct dcss_dpr_ch *ch, int a_sel, int r_sel, in dcss_dpr_argb_comp_sel()
272 static void dcss_dpr_pix_size_set(struct dcss_dpr_ch *ch, in dcss_dpr_pix_size_set()
[all …]
/linux/drivers/scsi/
H A Dch.c87 #define ch_printk(prefix, ch, fmt, a...) \ argument
187 ch_do_scsi(scsi_changer *ch, unsigned char *cmd, int cmd_len, in ch_do_scsi()
228 ch_elem_to_typecode(scsi_changer *ch, u_int elem) in ch_elem_to_typecode()
242 ch_read_element_status(scsi_changer *ch, u_int elem, char *data) in ch_read_element_status()
284 ch_init_elem(scsi_changer *ch) in ch_init_elem()
299 ch_readconfig(scsi_changer *ch) in ch_readconfig()
428 ch_position(scsi_changer *ch, u_int trans, u_int elem, int rotate) in ch_position()
447 ch_move(scsi_changer *ch, u_int trans, u_int src, u_int dest, int rotate) in ch_move()
468 ch_exchange(scsi_changer *ch, u_int trans, u_int src, in ch_exchange()
510 ch_set_voltag(scsi_changer *ch, u_int elem, in ch_set_voltag()
[all …]
/linux/arch/mips/lantiq/xway/
H A Ddma.c61 ltq_dma_enable_irq(struct ltq_dma_channel *ch) in ltq_dma_enable_irq()
73 ltq_dma_disable_irq(struct ltq_dma_channel *ch) in ltq_dma_disable_irq()
85 ltq_dma_ack_irq(struct ltq_dma_channel *ch) in ltq_dma_ack_irq()
97 ltq_dma_open(struct ltq_dma_channel *ch) in ltq_dma_open()
109 ltq_dma_close(struct ltq_dma_channel *ch) in ltq_dma_close()
122 ltq_dma_alloc(struct ltq_dma_channel *ch) in ltq_dma_alloc()
144 ltq_dma_alloc_tx(struct ltq_dma_channel *ch) in ltq_dma_alloc_tx()
159 ltq_dma_alloc_rx(struct ltq_dma_channel *ch) in ltq_dma_alloc_rx()
174 ltq_dma_free(struct ltq_dma_channel *ch) in ltq_dma_free()
/linux/drivers/counter/
H A Drz-mtu3-cnt.c78 struct rz_mtu3_channel *ch; member
124 struct rz_mtu3_channel *const ch, in rz_mtu3_lock_if_counter_is_valid()
143 static int rz_mtu3_lock_if_count_is_enabled(struct rz_mtu3_channel *const ch, in rz_mtu3_lock_if_count_is_enabled()
160 struct rz_mtu3_channel *const ch = rz_mtu3_get_ch(counter, count->id); in rz_mtu3_count_read() local
182 struct rz_mtu3_channel *const ch = rz_mtu3_get_ch(counter, count->id); in rz_mtu3_count_write() local
201 static int rz_mtu3_count_function_read_helper(struct rz_mtu3_channel *const ch, in rz_mtu3_count_function_read_helper()
235 struct rz_mtu3_channel *const ch = rz_mtu3_get_ch(counter, count->id); in rz_mtu3_count_function_read() local
253 struct rz_mtu3_channel *const ch = rz_mtu3_get_ch(counter, count->id); in rz_mtu3_count_function_write() local
294 struct rz_mtu3_channel *const ch = rz_mtu3_get_ch(counter, count->id); in rz_mtu3_count_direction_read() local
318 struct rz_mtu3_channel *const ch = rz_mtu3_get_ch(counter, count->id); in rz_mtu3_count_ceiling_read() local
[all …]
/linux/drivers/infiniband/ulp/srp/
H A Dib_srp.c303 static int srp_new_ib_cm_id(struct srp_rdma_ch *ch) in srp_new_ib_cm_id()
329 static int srp_new_rdma_cm_id(struct srp_rdma_ch *ch) in srp_new_rdma_cm_id()
373 static int srp_new_cm_id(struct srp_rdma_ch *ch) in srp_new_cm_id()
513 static void srp_destroy_qp(struct srp_rdma_ch *ch) in srp_destroy_qp()
523 static int srp_create_ch_ib(struct srp_rdma_ch *ch) in srp_create_ch_ib()
637 struct srp_rdma_ch *ch) in srp_free_ch_ib()
699 struct srp_rdma_ch *ch = ch_ptr; in srp_path_rec_completion() local
711 static int srp_ib_lookup_path(struct srp_rdma_ch *ch) in srp_ib_lookup_path()
750 static int srp_rdma_lookup_path(struct srp_rdma_ch *ch) in srp_rdma_lookup_path()
770 static int srp_lookup_path(struct srp_rdma_ch *ch) in srp_lookup_path()
[all …]
/linux/drivers/dma/
H A Dmoxart-dma.c180 struct moxart_chan *ch = to_moxart_dma_chan(chan); in moxart_terminate_all() local
208 struct moxart_chan *ch = to_moxart_dma_chan(chan); in moxart_slave_config() local
266 struct moxart_chan *ch = to_moxart_dma_chan(chan); in moxart_prep_slave_sg() local
328 struct moxart_chan *ch; in moxart_of_xlate() local
342 struct moxart_chan *ch = to_moxart_dma_chan(chan); in moxart_alloc_chan_resources() local
353 struct moxart_chan *ch = to_moxart_dma_chan(chan); in moxart_free_chan_resources() local
362 static void moxart_dma_set_params(struct moxart_chan *ch, dma_addr_t src_addr, in moxart_dma_set_params()
369 static void moxart_set_transfer_params(struct moxart_chan *ch, unsigned int len) in moxart_set_transfer_params()
386 static void moxart_start_dma(struct moxart_chan *ch) in moxart_start_dma()
395 static void moxart_dma_start_sg(struct moxart_chan *ch, unsigned int idx) in moxart_dma_start_sg()
[all …]
/linux/arch/nios2/boot/compressed/
H A Dconsole.c26 static void jtag_putc(int ch) in jtag_putc()
33 static void jtag_putc(int ch) in jtag_putc()
42 static int putchar(int ch) in putchar()
64 static void uart_putc(int ch) in uart_putc()
76 static int putchar(int ch) in putchar()
96 static int putchar(int ch) in putchar()
/linux/drivers/infiniband/ulp/srpt/
H A Dib_srpt.c112 static bool srpt_set_ch_state(struct srpt_rdma_ch *ch, enum rdma_ch_state new) in srpt_set_ch_state()
221 struct srpt_rdma_ch *ch = ptr; in srpt_qp_event() local
828 static int srpt_post_recv(struct srpt_device *sdev, struct srpt_rdma_ch *ch, in srpt_post_recv()
860 static int srpt_zerolength_write(struct srpt_rdma_ch *ch) in srpt_zerolength_write()
879 struct srpt_rdma_ch *ch = wc->qp->qp_context; in srpt_zerolength_write_done() local
900 struct srpt_rdma_ch *ch = ioctx->ch; in srpt_alloc_rw_ctxs() local
963 static void srpt_free_rw_ctxs(struct srpt_rdma_ch *ch, in srpt_free_rw_ctxs()
1117 static int srpt_init_ch_qp(struct srpt_rdma_ch *ch, struct ib_qp *qp) in srpt_init_ch_qp()
1157 static int srpt_ch_qp_rtr(struct srpt_rdma_ch *ch, struct ib_qp *qp) in srpt_ch_qp_rtr()
1189 static int srpt_ch_qp_rts(struct srpt_rdma_ch *ch, struct ib_qp *qp) in srpt_ch_qp_rts()
[all …]

12345678910>>...32