Searched refs:channel (Results 1 - 25 of 1958) sorted by relevance

1234567891011>>

/linux-master/drivers/staging/rtl8723bs/core/
H A Drtw_rf.c28 u32 rtw_ch2freq(u32 channel) argument
30 if (channel == 0 || channel > ARRAY_SIZE(ch_freq_map))
33 return ch_freq_map[channel - 1];
/linux-master/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddispc-compat.h10 void dispc_mgr_enable_sync(enum omap_channel channel);
11 void dispc_mgr_disable_sync(enum omap_channel channel);
/linux-master/drivers/firmware/tegra/
H A Dbpmp-private.h14 bool (*is_response_ready)(struct tegra_bpmp_channel *channel);
15 bool (*is_request_ready)(struct tegra_bpmp_channel *channel);
16 int (*ack_response)(struct tegra_bpmp_channel *channel);
17 int (*ack_request)(struct tegra_bpmp_channel *channel);
18 bool (*is_response_channel_free)(struct tegra_bpmp_channel *channel);
19 bool (*is_request_channel_free)(struct tegra_bpmp_channel *channel);
20 int (*post_response)(struct tegra_bpmp_channel *channel);
21 int (*post_request)(struct tegra_bpmp_channel *channel);
/linux-master/drivers/net/ethernet/sfc/
H A Defx_channels.c156 * We need a channel per event queue, plus a VI per tx queue.
273 /* Fall back to single channel MSI */
366 struct efx_channel *channel; local
374 efx_for_each_channel(channel, efx) {
378 irq_set_affinity_hint(channel->irq, cpumask_of(cpu));
384 struct efx_channel *channel; local
386 efx_for_each_channel(channel, efx)
387 irq_set_affinity_hint(channel->irq, NULL);
403 struct efx_channel *channel; local
406 efx_for_each_channel(channel, ef
424 efx_probe_eventq(struct efx_channel *channel) argument
443 efx_init_eventq(struct efx_channel *channel) argument
463 efx_start_eventq(struct efx_channel *channel) argument
477 efx_stop_eventq(struct efx_channel *channel) argument
486 efx_fini_eventq(struct efx_channel *channel) argument
498 efx_remove_eventq(struct efx_channel *channel) argument
516 struct efx_channel *channel; local
534 struct efx_channel *channel; local
604 struct efx_channel *channel; local
639 efx_probe_channel(struct efx_channel *channel) argument
677 efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len) argument
703 struct efx_channel *channel; local
713 struct efx_channel *channel; local
739 efx_remove_channel(struct efx_channel *channel) argument
757 struct efx_channel *channel; local
782 struct efx_channel *channel; local
846 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel, local
930 struct efx_channel *channel; local
959 efx_default_channel_want_txqs(struct efx_channel *channel) argument
971 struct efx_channel *channel, *end_channel; local
1006 struct efx_channel *channel; local
1034 struct efx_channel *channel, *end_channel; local
1077 struct efx_channel *channel; local
1093 struct efx_channel *channel; local
1119 struct efx_channel *channel; local
1177 efx_process_channel(struct efx_channel *channel, int budget) argument
1221 efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel) argument
1249 struct efx_channel *channel = local
1292 efx_init_napi_channel(struct efx_channel *channel) argument
1302 struct efx_channel *channel; local
1308 efx_fini_napi_channel(struct efx_channel *channel) argument
1318 struct efx_channel *channel; local
1328 efx_channel_dummy_op_int(struct efx_channel *channel) argument
1333 efx_channel_dummy_op_void(struct efx_channel *channel) argument
[all...]
H A Def100_rx.h18 void efx_ef100_ev_rx(struct efx_channel *channel, const efx_qword_t *p_event);
20 void __ef100_rx_packet(struct efx_channel *channel);
H A Defx_channels.h27 int efx_probe_eventq(struct efx_channel *channel);
28 int efx_init_eventq(struct efx_channel *channel);
29 void efx_start_eventq(struct efx_channel *channel);
30 void efx_stop_eventq(struct efx_channel *channel);
31 void efx_fini_eventq(struct efx_channel *channel);
32 void efx_remove_eventq(struct efx_channel *channel);
39 void efx_remove_channel(struct efx_channel *channel);
46 void efx_init_napi_channel(struct efx_channel *channel);
48 void efx_fini_napi_channel(struct efx_channel *channel);
51 void efx_channel_dummy_op_void(struct efx_channel *channel);
[all...]
/linux-master/drivers/char/xillybus/
H A Dxillybus_core.c102 "Malformed message (skipping): opcode=%d, channel=%03x, dir=%d, bufno=%03x, data=%07x\n",
120 struct xilly_channel *channel; local
177 channel = ep->channels[msg_channel];
179 if (msg_dir) { /* Write channel */
180 if (msg_bufno >= channel->num_wr_buffers) {
184 spin_lock(&channel->wr_spinlock);
185 channel->wr_buffers[msg_bufno]->end_offset =
187 channel->wr_fpga_buf_idx = msg_bufno;
188 channel->wr_empty = 0;
189 channel
433 struct xilly_channel *channel; local
634 struct xilly_channel *channel; local
698 struct xilly_channel *channel = filp->private_data; local
1014 xillybus_myflush(struct xilly_channel *channel, long timeout) argument
1189 struct xilly_channel *channel = container_of( local
1208 struct xilly_channel *channel = filp->private_data; local
1432 struct xilly_channel *channel; local
1567 struct xilly_channel *channel = filp->private_data; local
1667 struct xilly_channel *channel = filp->private_data; local
1741 struct xilly_channel *channel = filp->private_data; local
[all...]
/linux-master/drivers/hsi/controllers/
H A Domap_ssi_regs.h33 # define SSI_DATAACCEPT(channel) (1 << (channel))
34 # define SSI_DATAAVAILABLE(channel) (1 << ((channel) + 8))
35 # define SSI_DATAOVERRUN(channel) (1 << ((channel) + 16))
40 # define SSI_GDD_LCH(channel) (1 << (channel))
44 # define SSI_WAKE(channel) (1 << (channel))
[all...]
/linux-master/arch/sh/include/asm/
H A Dadc.h10 int adc_single(unsigned int channel);
/linux-master/drivers/net/ethernet/sfc/siena/
H A Defx_channels.c157 * We need a channel per event queue, plus a VI per tx queue.
274 /* Fall back to single channel MSI */
367 struct efx_channel *channel; local
375 efx_for_each_channel(channel, efx) {
379 irq_set_affinity_hint(channel->irq, cpumask_of(cpu));
385 struct efx_channel *channel; local
387 efx_for_each_channel(channel, efx)
388 irq_set_affinity_hint(channel->irq, NULL);
404 struct efx_channel *channel; local
407 efx_for_each_channel(channel, ef
425 efx_probe_eventq(struct efx_channel *channel) argument
444 efx_init_eventq(struct efx_channel *channel) argument
464 efx_siena_start_eventq(struct efx_channel *channel) argument
478 efx_siena_stop_eventq(struct efx_channel *channel) argument
487 efx_fini_eventq(struct efx_channel *channel) argument
499 efx_remove_eventq(struct efx_channel *channel) argument
517 struct efx_channel *channel; local
536 struct efx_channel *channel; local
607 struct efx_channel *channel; local
642 efx_probe_channel(struct efx_channel *channel) argument
680 efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len) argument
706 struct efx_channel *channel; local
716 struct efx_channel *channel; local
745 efx_siena_remove_channel(struct efx_channel *channel) argument
763 struct efx_channel *channel; local
788 struct efx_channel *channel; local
858 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel; local
962 struct efx_channel *channel; local
991 efx_default_channel_want_txqs(struct efx_channel *channel) argument
1003 struct efx_channel *channel, *end_channel; local
1038 struct efx_channel *channel; local
1066 struct efx_channel *channel, *end_channel; local
1109 struct efx_channel *channel; local
1125 struct efx_channel *channel; local
1149 struct efx_channel *channel; local
1202 efx_process_channel(struct efx_channel *channel, int budget) argument
1246 efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel) argument
1274 struct efx_channel *channel = local
1317 efx_init_napi_channel(struct efx_channel *channel) argument
1327 struct efx_channel *channel; local
1333 efx_fini_napi_channel(struct efx_channel *channel) argument
1343 struct efx_channel *channel; local
1353 efx_channel_dummy_op_int(struct efx_channel *channel) argument
1358 efx_siena_channel_dummy_op_void(struct efx_channel *channel) argument
[all...]
/linux-master/arch/sh/include/cpu-sh3/cpu/
H A Ddac.h18 static __inline__ void sh_dac_enable(int channel) argument
22 if(channel) v |= DACR_DAOE1;
27 static __inline__ void sh_dac_disable(int channel) argument
31 if(channel) v &= ~DACR_DAOE1;
36 static __inline__ void sh_dac_output(u8 value, int channel) argument
38 if(channel) __raw_writeb(value,DADR1);
/linux-master/drivers/net/ipa/
H A Dgsi_private.h41 * @channel: Channel associated with the transaction
46 struct gsi_trans *gsi_channel_trans_mapped(struct gsi_channel *channel,
50 * gsi_channel_trans_complete() - Return a channel's next completed transaction
51 * @channel: Channel whose next transaction is to be returned
55 struct gsi_trans *gsi_channel_trans_complete(struct gsi_channel *channel);
59 * @channel: Channel whose pending transactions should be cancelled
61 * Cancel all pending transactions on a channel. These are transactions
63 * the channel gets reset. At that time all pending transactions will be
69 void gsi_channel_trans_cancel_pending(struct gsi_channel *channel);
72 * gsi_channel_trans_init() - Initialize a channel'
[all...]
/linux-master/drivers/phy/renesas/
H A Dr8a779f0-ether-serdes.c37 struct r8a779f0_eth_serdes_channel channel[R8A779F0_ETH_SERDES_NUM]; member in struct:r8a779f0_eth_serdes_drv_data
53 r8a779f0_eth_serdes_reg_wait(struct r8a779f0_eth_serdes_channel *channel, argument
59 iowrite32(bank, channel->addr + R8A779F0_ETH_SERDES_BANK_SELECT);
61 ret = readl_poll_timeout_atomic(channel->addr + offs, val,
65 dev_dbg(&channel->phy->dev,
67 __func__, channel->index, offs, bank, mask, expected);
75 struct r8a779f0_eth_serdes_channel *channel; local
79 channel = &dd->channel[i];
80 ret = r8a779f0_eth_serdes_reg_wait(channel,
91 r8a779f0_eth_serdes_common_setting(struct r8a779f0_eth_serdes_channel *channel) argument
109 r8a779f0_eth_serdes_chan_setting(struct r8a779f0_eth_serdes_channel *channel) argument
166 r8a779f0_eth_serdes_chan_speed(struct r8a779f0_eth_serdes_channel *channel) argument
190 r8a779f0_eth_serdes_monitor_linkup(struct r8a779f0_eth_serdes_channel *channel) argument
209 r8a779f0_eth_serdes_hw_init(struct r8a779f0_eth_serdes_channel *channel) argument
254 struct r8a779f0_eth_serdes_channel *channel = phy_get_drvdata(p); local
266 struct r8a779f0_eth_serdes_channel *channel = phy_get_drvdata(p); local
273 r8a779f0_eth_serdes_hw_init_late(struct r8a779f0_eth_serdes_channel *channel) argument
295 struct r8a779f0_eth_serdes_channel *channel = phy_get_drvdata(p); local
303 struct r8a779f0_eth_serdes_channel *channel = phy_get_drvdata(p); local
321 struct r8a779f0_eth_serdes_channel *channel = phy_get_drvdata(p); local
374 struct r8a779f0_eth_serdes_channel *channel = &dd->channel[i]; local
[all...]
/linux-master/drivers/net/wireless/mediatek/mt76/mt7996/
H A Deeprom.h55 mt7996_get_channel_group_5g(int channel) argument
57 if (channel <= 64)
59 if (channel <= 96)
61 if (channel <= 128)
63 if (channel <= 144)
69 mt7996_get_channel_group_6g(int channel) argument
71 if (channel <= 29)
74 return DIV_ROUND_UP(channel - 29, 32);
/linux-master/include/linux/iio/
H A Dbuffer-dmaengine.h14 const char *channel);
18 const char *channel);
/linux-master/arch/powerpc/boot/dts/fsl/
H A Delo3-dma-0.dtsi42 dma-channel@0 {
43 compatible = "fsl,eloplus-dma-channel";
47 dma-channel@80 {
48 compatible = "fsl,eloplus-dma-channel";
52 dma-channel@100 {
53 compatible = "fsl,eloplus-dma-channel";
57 dma-channel@180 {
58 compatible = "fsl,eloplus-dma-channel";
62 dma-channel@300 {
63 compatible = "fsl,eloplus-dma-channel";
[all...]
H A Delo3-dma-1.dtsi42 dma-channel@0 {
43 compatible = "fsl,eloplus-dma-channel";
47 dma-channel@80 {
48 compatible = "fsl,eloplus-dma-channel";
52 dma-channel@100 {
53 compatible = "fsl,eloplus-dma-channel";
57 dma-channel@180 {
58 compatible = "fsl,eloplus-dma-channel";
62 dma-channel@300 {
63 compatible = "fsl,eloplus-dma-channel";
[all...]
H A Delo3-dma-2.dtsi42 dma-channel@0 {
43 compatible = "fsl,eloplus-dma-channel";
47 dma-channel@80 {
48 compatible = "fsl,eloplus-dma-channel";
52 dma-channel@100 {
53 compatible = "fsl,eloplus-dma-channel";
57 dma-channel@180 {
58 compatible = "fsl,eloplus-dma-channel";
62 dma-channel@300 {
63 compatible = "fsl,eloplus-dma-channel";
[all...]
/linux-master/drivers/rpmsg/
H A Dqcom_smd.c30 * Each channel consists of a control item (channel info) and a ring buffer
31 * pair. The channel info carry information related to channel state, flow
37 * Upon creating a new channel the remote processor allocates channel info and
39 * interrupt is sent to the other end of the channel and a scan for new
40 * channels should be done. A channel never goes away, it will only change
44 * channel by setting the state of its end of the channel t
370 qcom_smd_signal_channel(struct qcom_smd_channel *channel) argument
390 qcom_smd_channel_reset(struct qcom_smd_channel *channel) argument
413 qcom_smd_channel_set_callback(struct qcom_smd_channel *channel, rpmsg_rx_cb_t cb) argument
427 qcom_smd_channel_get_rx_avail(struct qcom_smd_channel *channel) argument
441 qcom_smd_channel_set_state(struct qcom_smd_channel *channel, int state) argument
497 qcom_smd_channel_peek(struct qcom_smd_channel *channel, void *buf, size_t count) argument
528 qcom_smd_channel_advance(struct qcom_smd_channel *channel, size_t count) argument
542 qcom_smd_channel_recv_single(struct qcom_smd_channel *channel) argument
576 qcom_smd_channel_intr(struct qcom_smd_channel *channel) argument
645 struct qcom_smd_channel *channel; local
683 qcom_smd_get_tx_avail(struct qcom_smd_channel *channel) argument
698 qcom_smd_write_fifo(struct qcom_smd_channel *channel, const void *data, size_t count) argument
743 __qcom_smd_send(struct qcom_smd_channel *channel, const void *data, int len, bool wait) argument
815 qcom_smd_channel_open(struct qcom_smd_channel *channel, rpmsg_rx_cb_t cb) argument
864 qcom_smd_channel_close(struct qcom_smd_channel *channel) argument
878 struct qcom_smd_channel *channel; local
906 struct qcom_smd_channel *channel; local
995 struct qcom_smd_channel *channel = qsept->qsch; local
1009 qcom_smd_match_channel(struct device_node *edge_node, const char *channel) argument
1033 struct qcom_smd_channel *channel = qept->qsch; local
1072 qcom_smd_create_device(struct qcom_smd_channel *channel) argument
1128 struct qcom_smd_channel *channel; local
1210 struct qcom_smd_channel *channel; local
1274 struct qcom_smd_channel *channel; local
1442 struct qcom_smd_channel *channel, *tmp; local
[all...]
/linux-master/drivers/dma/sh/
H A Drz-dmac.c192 static void rz_dmac_ch_writel(struct rz_dmac_chan *channel, unsigned int val, argument
196 writel(val, channel->ch_base + offset);
198 writel(val, channel->ch_cmn_base + offset);
201 static u32 rz_dmac_ch_readl(struct rz_dmac_chan *channel, argument
205 return readl(channel->ch_base + offset);
207 return readl(channel->ch_cmn_base + offset);
215 static void rz_lmdesc_setup(struct rz_dmac_chan *channel, argument
220 channel->lmdesc.base = lmdesc;
221 channel->lmdesc.head = lmdesc;
222 channel
240 rz_dmac_lmdesc_recycle(struct rz_dmac_chan *channel) argument
253 rz_dmac_enable_hw(struct rz_dmac_chan *channel) argument
284 rz_dmac_disable_hw(struct rz_dmac_chan *channel) argument
310 rz_dmac_prepare_desc_for_memcpy(struct rz_dmac_chan *channel) argument
333 rz_dmac_prepare_descs_for_slave_sg(struct rz_dmac_chan *channel) argument
418 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
439 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
475 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
503 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
535 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
552 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
601 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
637 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
655 rz_dmac_irq_handle_channel(struct rz_dmac_chan *channel) argument
677 struct rz_dmac_chan *channel = dev_id; local
689 struct rz_dmac_chan *channel = dev_id; local
723 struct rz_dmac_chan *channel = to_rz_dmac_chan(chan); local
756 rz_dmac_chan_probe(struct rz_dmac *dmac, struct rz_dmac_chan *channel, u8 index) argument
955 struct rz_dmac_chan *channel = &dmac->channels[i]; local
980 struct rz_dmac_chan *channel = &dmac->channels[i]; local
[all...]
/linux-master/arch/mips/include/asm/
H A Djazzdma.h17 extern void vdma_enable(int channel);
18 extern void vdma_disable(int channel);
19 extern void vdma_set_mode(int channel, int mode);
20 extern void vdma_set_addr(int channel, long addr);
21 extern void vdma_set_count(int channel, int count);
22 extern int vdma_get_residue(int channel);
23 extern int vdma_get_enable(int channel);
50 * DMA channel control registers
62 /* channel enable register bits */
/linux-master/drivers/most/
H A Dmost_snd.c28 * struct channel - private structure to keep channel specific data
31 * @iface: interface for which the channel belongs to
32 * @cfg: channel configuration
35 * @id: channel index
44 struct channel { struct
152 * get_channel - get pointer to channel
154 * @channel_id: channel ID
156 * This traverses the channel list and returns the channel matchin
165 struct channel *channel; local
181 copy_data(struct channel *channel, struct mbo *mbo) argument
229 struct channel *const channel = data; local
267 struct channel *channel = substream->private_data; local
307 struct channel *channel = substream->private_data; local
326 struct channel *channel = substream->private_data; local
372 struct channel *channel = substream->private_data; local
400 struct channel *channel = substream->private_data; local
489 struct channel *channel, *tmp; local
517 struct channel *channel; local
643 struct channel *channel; local
669 struct channel *channel = get_channel(mbo->ifp, mbo->hdm_channel_id); local
695 struct channel *channel = get_channel(iface, channel_id); local
[all...]
/linux-master/drivers/staging/greybus/
H A Dlight.c65 static void gb_lights_channel_free(struct gb_channel *channel);
67 static struct gb_connection *get_conn_from_channel(struct gb_channel *channel) argument
69 return channel->light->glights->connection;
77 static bool is_channel_flash(struct gb_channel *channel) argument
79 return !!(channel->mode & (GB_CHANNEL_MODE_FLASH | GB_CHANNEL_MODE_TORCH
90 static struct led_classdev *get_channel_cdev(struct gb_channel *channel) argument
92 return &channel->fled.led_cdev;
98 struct gb_channel *channel; local
102 channel = &light->channels[i];
103 if (channel
109 __gb_lights_flash_intensity_set(struct gb_channel *channel, u32 intensity) argument
136 __gb_lights_flash_brightness_set(struct gb_channel *channel) argument
218 struct gb_channel *channel = get_channel_from_cdev(cdev); local
227 struct gb_channel *channel = get_channel_from_cdev(cdev); local
254 channel_attr_groups_set(struct gb_channel *channel, struct led_classdev *cdev) argument
296 gb_lights_fade_set(struct gb_channel *channel) argument
322 gb_lights_color_set(struct gb_channel *channel, u32 color) argument
347 __gb_lights_led_brightness_set(struct gb_channel *channel) argument
395 __gb_lights_brightness_set(struct gb_channel *channel) argument
413 struct gb_channel *channel = get_channel_from_cdev(cdev); local
423 struct gb_channel *channel = get_channel_from_cdev(cdev); local
431 struct gb_channel *channel = get_channel_from_cdev(cdev); local
485 gb_lights_led_operations_set(struct gb_channel *channel, struct led_classdev *cdev) argument
587 struct gb_channel *channel = container_of(fcdev, struct gb_channel, local
611 struct gb_channel *channel = container_of(fcdev, struct gb_channel, local
642 struct gb_channel *channel = container_of(fcdev, struct gb_channel, local
652 struct gb_channel *channel = container_of(fcdev, struct gb_channel, local
683 struct gb_channel *channel = container_of(fcdev, struct gb_channel, local
720 __gb_lights_channel_torch_attach(struct gb_channel *channel, struct gb_channel *channel_torch) argument
745 __gb_lights_flash_led_register(struct gb_channel *channel) argument
795 __gb_lights_flash_led_unregister(struct gb_channel *channel) argument
803 gb_lights_channel_flash_config(struct gb_channel *channel) argument
846 gb_lights_channel_flash_config(struct gb_channel *channel) argument
854 __gb_lights_flash_led_register(struct gb_channel *channel) argument
859 __gb_lights_flash_led_unregister(struct gb_channel *channel) argument
865 __gb_lights_led_register(struct gb_channel *channel) argument
879 gb_lights_channel_register(struct gb_channel *channel) argument
895 __gb_lights_led_unregister(struct gb_channel *channel) argument
908 gb_lights_channel_unregister(struct gb_channel *channel) argument
922 gb_lights_channel_config(struct gb_light *light, struct gb_channel *channel) argument
1056 gb_lights_channel_free(struct gb_channel *channel) argument
1066 gb_lights_channel_release(struct gb_channel *channel) argument
[all...]
/linux-master/drivers/gpu/host1x/
H A Dchannel.c11 #include "channel.h"
43 struct host1x *host = dev_get_drvdata(job->channel->dev->parent);
49 struct host1x_channel *host1x_channel_get(struct host1x_channel *channel) argument
51 kref_get(&channel->refcount);
53 return channel;
58 * host1x_channel_get_index() - Attempt to get channel reference by index
60 * @index: Index of channel
62 * If channel number @index is currently allocated, increase its refcount
76 void host1x_channel_stop(struct host1x_channel *channel) argument
78 struct host1x *host = dev_get_drvdata(channel
105 struct host1x_channel *channel = local
116 host1x_channel_put(struct host1x_channel *channel) argument
157 struct host1x_channel *channel; local
[all...]
/linux-master/drivers/firmware/arm_scmi/
H A Doptee.c23 * PTA_SCMI_CMD_CAPABILITIES - Get channel capabilities
36 * already identified and bound to channel handle in both SCMI agent
58 * PTA_SCMI_CMD_GET_CHANNEL - Get channel handle
63 * [out] value[0].a: Returned channel handle
104 * struct scmi_optee_channel - Description of an OP-TEE SCMI channel
106 * @channel_id: OP-TEE channel ID used for this transport
108 * @caps: OP-TEE SCMI channel capabilities
110 * @mu: Mutex protection on channel access
111 * @cinfo: SCMI channel information
117 * @link: Reference in agent's channel lis
223 get_channel(struct scmi_optee_channel *channel) argument
258 invoke_process_smt_channel(struct scmi_optee_channel *channel) argument
281 invoke_process_msg_channel(struct scmi_optee_channel *channel, size_t msg_size) argument
343 struct scmi_optee_channel *channel = cinfo->transport_info; local
349 setup_dynamic_shmem(struct device *dev, struct scmi_optee_channel *channel) argument
368 setup_static_shmem(struct device *dev, struct scmi_chan_info *cinfo, struct scmi_optee_channel *channel) argument
405 setup_shmem(struct device *dev, struct scmi_chan_info *cinfo, struct scmi_optee_channel *channel) argument
416 struct scmi_optee_channel *channel; local
474 struct scmi_optee_channel *channel = cinfo->transport_info; local
496 struct scmi_optee_channel *channel = cinfo->transport_info; local
518 struct scmi_optee_channel *channel = cinfo->transport_info; local
529 struct scmi_optee_channel *channel = cinfo->transport_info; local
[all...]

Completed in 364 milliseconds

1234567891011>>