| /OK3568_Linux_fs/kernel/drivers/media/pci/cx18/ |
| H A D | cx18-queue.c | 25 void _cx18_mdl_swap(struct cx18_mdl *mdl) in _cx18_mdl_swap() argument 29 list_for_each_entry(buf, &mdl->buf_list, list) { in _cx18_mdl_swap() 43 struct cx18_queue *_cx18_enqueue(struct cx18_stream *s, struct cx18_mdl *mdl, in _cx18_enqueue() argument 48 mdl->bytesused = 0; in _cx18_enqueue() 49 mdl->readpos = 0; in _cx18_enqueue() 50 mdl->m_flags = 0; in _cx18_enqueue() 51 mdl->skipped = 0; in _cx18_enqueue() 52 mdl->curr_buf = NULL; in _cx18_enqueue() 63 list_add(&mdl->list, &q->list); /* LIFO */ in _cx18_enqueue() 65 list_add_tail(&mdl->list, &q->list); /* FIFO */ in _cx18_enqueue() [all …]
|
| H A D | cx18-queue.h | 29 void _cx18_mdl_sync_for_device(struct cx18_stream *s, struct cx18_mdl *mdl); 32 struct cx18_mdl *mdl) in cx18_mdl_sync_for_device() argument 34 if (list_is_singular(&mdl->buf_list)) in cx18_mdl_sync_for_device() 35 cx18_buf_sync_for_device(s, list_first_entry(&mdl->buf_list, in cx18_mdl_sync_for_device() 39 _cx18_mdl_sync_for_device(s, mdl); in cx18_mdl_sync_for_device() 43 void _cx18_mdl_swap(struct cx18_mdl *mdl); 45 static inline void cx18_mdl_swap(struct cx18_mdl *mdl) in cx18_mdl_swap() argument 47 if (list_is_singular(&mdl->buf_list)) in cx18_mdl_swap() 48 cx18_buf_swap(list_first_entry(&mdl->buf_list, in cx18_mdl_swap() 51 _cx18_mdl_swap(mdl); in cx18_mdl_swap() [all …]
|
| H A D | cx18-fileops.c | 174 struct cx18_mdl *mdl; in cx18_get_mdl() local 187 while ((mdl = cx18_dequeue(s_vbi, in cx18_get_mdl() 190 cx18_process_vbi_data(cx, mdl, in cx18_get_mdl() 192 cx18_stream_put_mdl_fw(s_vbi, mdl); in cx18_get_mdl() 195 mdl = &cx->vbi.sliced_mpeg_mdl; in cx18_get_mdl() 196 if (mdl->readpos != mdl->bytesused) in cx18_get_mdl() 197 return mdl; in cx18_get_mdl() 201 mdl = cx18_dequeue(s, &s->q_full); in cx18_get_mdl() 202 if (mdl) { in cx18_get_mdl() 204 &mdl->m_flags)) in cx18_get_mdl() [all …]
|
| H A D | cx18-mailbox.c | 122 static void cx18_mdl_send_to_dvb(struct cx18_stream *s, struct cx18_mdl *mdl) in cx18_mdl_send_to_dvb() argument 126 if (s->dvb == NULL || !s->dvb->enabled || mdl->bytesused == 0) in cx18_mdl_send_to_dvb() 132 if (list_is_singular(&mdl->buf_list)) { in cx18_mdl_send_to_dvb() 133 buf = list_first_entry(&mdl->buf_list, struct cx18_buffer, in cx18_mdl_send_to_dvb() 141 list_for_each_entry(buf, &mdl->buf_list, list) { in cx18_mdl_send_to_dvb() 149 struct cx18_mdl *mdl) in cx18_mdl_send_to_videobuf() argument 157 if (mdl->bytesused == 0) in cx18_mdl_send_to_videobuf() 173 list_for_each_entry(buf, &mdl->buf_list, list) { in cx18_mdl_send_to_videobuf() 204 struct cx18_mdl *mdl) in cx18_mdl_send_to_alsa() argument 208 if (mdl->bytesused == 0) in cx18_mdl_send_to_alsa() [all …]
|
| H A D | cx18-ioctl.c | 724 static int cx18_process_idx_data(struct cx18_stream *s, struct cx18_mdl *mdl, in cx18_process_idx_data() argument 730 if (mdl->curr_buf == NULL) in cx18_process_idx_data() 731 mdl->curr_buf = list_first_entry(&mdl->buf_list, in cx18_process_idx_data() 734 if (list_entry_is_past_end(mdl->curr_buf, &mdl->buf_list, list)) { in cx18_process_idx_data() 740 mdl->readpos = mdl->bytesused; in cx18_process_idx_data() 744 list_for_each_entry_from(mdl->curr_buf, &mdl->buf_list, list) { in cx18_process_idx_data() 747 if (mdl->curr_buf->readpos >= mdl->curr_buf->bytesused) in cx18_process_idx_data() 750 mdl->readpos += _cx18_process_idx_data(mdl->curr_buf, idx); in cx18_process_idx_data() 754 mdl->curr_buf->readpos < mdl->curr_buf->bytesused || in cx18_process_idx_data() 755 mdl->readpos >= mdl->bytesused) in cx18_process_idx_data() [all …]
|
| H A D | cx18-streams.c | 650 struct cx18_mdl *mdl; in cx18_stream_rotate_idx_mdls() local 668 mdl = cx18_dequeue(s, &s->q_full); in cx18_stream_rotate_idx_mdls() 669 if (mdl != NULL) in cx18_stream_rotate_idx_mdls() 670 cx18_enqueue(s, mdl, &s->q_free); in cx18_stream_rotate_idx_mdls() 675 struct cx18_mdl *mdl) in _cx18_stream_put_mdl_fw() argument 684 return cx18_enqueue(s, mdl, &s->q_free); in _cx18_stream_put_mdl_fw() 686 q = cx18_enqueue(s, mdl, &s->q_busy); in _cx18_stream_put_mdl_fw() 690 cx18_mdl_sync_for_device(s, mdl); in _cx18_stream_put_mdl_fw() 692 (void __iomem *) &cx->scb->cpu_mdl[mdl->id] - cx->enc_mem, in _cx18_stream_put_mdl_fw() 693 s->bufs_per_mdl, mdl->id, s->mdl_size); in _cx18_stream_put_mdl_fw() [all …]
|
| H A D | cx18-streams.h | 35 struct cx18_mdl *mdl) in cx18_stream_put_mdl_fw() argument 38 cx18_enqueue(s, mdl, &s->q_free); in cx18_stream_put_mdl_fw()
|
| H A D | cx18-vbi.c | 237 void cx18_process_vbi_data(struct cx18 *cx, struct cx18_mdl *mdl, in cx18_process_vbi_data() argument 256 list_for_each_entry(buf, &mdl->buf_list, list) { in cx18_process_vbi_data() 261 mdl->bytesused -= (orig_used - buf->bytesused); in cx18_process_vbi_data()
|
| H A D | cx18-vbi.h | 10 void cx18_process_vbi_data(struct cx18 *cx, struct cx18_mdl *mdl,
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/ |
| H A D | phl_cmd_dispatcher.c | 1027 struct phl_bk_module *mdl, in feed_mdl_msg() argument 1033 PHL_TRACE(COMP_PHL_CMDDISP, _PHL_DEBUG_, "%s, id:%d \n", __FUNCTION__, mdl->id); in feed_mdl_msg() 1034 ret = mdl->ops.msg_hdlr(obj, mdl->priv, &(ex->msg)); in feed_mdl_msg() 1037 mdl->id, ex->msg.msg_id); in feed_mdl_msg() 1038 ex->msg.rsvd[0] = mdl; in feed_mdl_msg() 1042 mdl->id, ex->msg.msg_id); in feed_mdl_msg() 1049 _clr_bitmap_bit(bitmap, &(mdl->id), 1); in feed_mdl_msg() 1058 struct phl_bk_module *mdl = NULL; in msg_pre_phase_hdl() local 1085 mdl = (struct phl_bk_module*)node; in msg_pre_phase_hdl() 1086 if (!_chk_bitmap_bit(ex->premap, mdl->id) || in msg_pre_phase_hdl() [all …]
|
| H A D | phl_cmd_scan.c | 951 u32 mdl = 0; in rtw_phl_cmd_scan_inprogress() local 954 op_info.outbuf = (u8*)&mdl; in rtw_phl_cmd_scan_inprogress() 960 if(mdl == PHL_FG_MDL_SCAN) in rtw_phl_cmd_scan_inprogress()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/ |
| H A D | phl_cmd_dispatcher.c | 1028 struct phl_bk_module *mdl, in feed_mdl_msg() argument 1034 PHL_TRACE(COMP_PHL_CMDDISP, _PHL_DEBUG_, "%s, id:%d \n", __FUNCTION__, mdl->id); in feed_mdl_msg() 1035 ret = mdl->ops.msg_hdlr(obj, mdl->priv, &(ex->msg)); in feed_mdl_msg() 1038 mdl->id, ex->msg.msg_id); in feed_mdl_msg() 1039 ex->msg.rsvd[0] = mdl; in feed_mdl_msg() 1043 mdl->id, ex->msg.msg_id); in feed_mdl_msg() 1050 _clr_bitmap_bit(bitmap, &(mdl->id), 1); in feed_mdl_msg() 1059 struct phl_bk_module *mdl = NULL; in msg_pre_phase_hdl() local 1086 mdl = (struct phl_bk_module*)node; in msg_pre_phase_hdl() 1087 if (!_chk_bitmap_bit(ex->premap, mdl->id) || in msg_pre_phase_hdl() [all …]
|
| H A D | phl_cmd_scan.c | 951 u32 mdl = 0; in rtw_phl_cmd_scan_inprogress() local 954 op_info.outbuf = (u8*)&mdl; in rtw_phl_cmd_scan_inprogress() 960 if(mdl == PHL_FG_MDL_SCAN) in rtw_phl_cmd_scan_inprogress()
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/brocade/bna/ |
| H A D | bna_tx_rx.c | 628 res_info[BNA_RX_RES_MEM_T_RIT].res_u.mem_info.mdl[0].kva; in bna_rxf_init() 2035 res_info[BNA_MOD_RES_MEM_T_RX_ARRAY].res_u.mem_info.mdl[0].kva; in bna_rx_mod_init() 2037 res_info[BNA_MOD_RES_MEM_T_RXP_ARRAY].res_u.mem_info.mdl[0].kva; in bna_rx_mod_init() 2039 res_info[BNA_MOD_RES_MEM_T_RXQ_ARRAY].res_u.mem_info.mdl[0].kva; in bna_rx_mod_init() 2284 ccb_mem = &res_info[BNA_RX_RES_MEM_T_CCB].res_u.mem_info.mdl[0]; in bna_rx_create() 2285 rcb_mem = &res_info[BNA_RX_RES_MEM_T_RCB].res_u.mem_info.mdl[0]; in bna_rx_create() 2286 dqunmap_mem = &res_info[BNA_RX_RES_MEM_T_UNMAPDQ].res_u.mem_info.mdl[0]; in bna_rx_create() 2287 hqunmap_mem = &res_info[BNA_RX_RES_MEM_T_UNMAPHQ].res_u.mem_info.mdl[0]; in bna_rx_create() 2288 cqpt_mem = &res_info[BNA_RX_RES_MEM_T_CQPT].res_u.mem_info.mdl[0]; in bna_rx_create() 2289 cswqpt_mem = &res_info[BNA_RX_RES_MEM_T_CSWQPT].res_u.mem_info.mdl[0]; in bna_rx_create() [all …]
|
| H A D | bna_enet.c | 1705 &res_info[BNA_RES_MEM_T_ATTR].res_u.mem_info.mdl[0].dma, dma); in bna_ioceth_init() 1706 kva = res_info[BNA_RES_MEM_T_ATTR].res_u.mem_info.mdl[0].kva; in bna_ioceth_init() 1709 kva = res_info[BNA_RES_MEM_T_FWTRC].res_u.mem_info.mdl[0].kva; in bna_ioceth_init() 1717 &res_info[BNA_RES_MEM_T_COM].res_u.mem_info.mdl[0].dma, dma); in bna_ioceth_init() 1718 kva = res_info[BNA_RES_MEM_T_COM].res_u.mem_info.mdl[0].kva; in bna_ioceth_init() 1784 res_info[BNA_MOD_RES_MEM_T_UCMAC_ARRAY].res_u.mem_info.mdl[0].kva; in bna_ucam_mod_init() 1811 res_info[BNA_MOD_RES_MEM_T_MCMAC_ARRAY].res_u.mem_info.mdl[0].kva; in bna_mcam_mod_init() 1818 res_info[BNA_MOD_RES_MEM_T_MCHANDLE_ARRAY].res_u.mem_info.mdl[0].kva; in bna_mcam_mod_init() 1973 res_info[BNA_RES_MEM_T_STATS].res_u.mem_info.mdl[0].kva; in bna_init() 1975 res_info[BNA_RES_MEM_T_STATS].res_u.mem_info.mdl[0].dma.msb; in bna_init() [all …]
|
| H A D | bnad.c | 1317 if (mem_info->mdl == NULL) in bnad_mem_free() 1321 if (mem_info->mdl[i].kva != NULL) { in bnad_mem_free() 1323 BNA_GET_DMA_ADDR(&(mem_info->mdl[i].dma), in bnad_mem_free() 1326 mem_info->mdl[i].len, in bnad_mem_free() 1327 mem_info->mdl[i].kva, dma_pa); in bnad_mem_free() 1329 kfree(mem_info->mdl[i].kva); in bnad_mem_free() 1332 kfree(mem_info->mdl); in bnad_mem_free() 1333 mem_info->mdl = NULL; in bnad_mem_free() 1344 mem_info->mdl = NULL; in bnad_mem_alloc() 1348 mem_info->mdl = kcalloc(mem_info->num, sizeof(struct bna_mem_descr), in bnad_mem_alloc() [all …]
|
| H A D | bna_types.h | 272 struct bna_mem_descr *mdl; member
|
| /OK3568_Linux_fs/kernel/sound/drivers/ |
| H A D | dummy.c | 1025 const struct dummy_model *m = NULL, **mdl; in snd_dummy_probe() local 1035 for (mdl = dummy_models; *mdl && model[dev]; mdl++) { in snd_dummy_probe() 1036 if (strcmp(model[dev], (*mdl)->name) == 0) { in snd_dummy_probe() 1039 (*mdl)->name, card->number); in snd_dummy_probe() 1040 m = dummy->model = *mdl; in snd_dummy_probe()
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-uniphier/dram/ |
| H A D | cmd_ddrphy.c | 187 u32 mdl = readl(dx_base + PHY_DX_MDLR); in __mdl_dump() local 190 printf(FS PRINTF_FORMAT, (mdl >> (8 * i)) & 0xff); in __mdl_dump()
|
| H A D | cmd_ddrmphy.c | 213 u32 mdl = readl(dx_base + MPHY_DX_MDLR); in __mdl_dump() local 216 printf(FS PRINTF_FORMAT, (mdl >> (8 * i)) & 0xff); in __mdl_dump()
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/leds/ |
| H A D | leds-cpcap.txt | 9 * "motorola,cpcap-led-mdl" (Main Display Lighting)
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | chrono | 588 operator/(const year& y, const month_day_last& mdl) noexcept; 590 operator/(int y, const month_day_last& mdl) noexcept; 592 operator/(const month_day_last& mdl, const year& y) noexcept; 594 operator/(const month_day_last& mdl, int y) noexcept;
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | chrono | 588 operator/(const year& y, const month_day_last& mdl) noexcept; 590 operator/(int y, const month_day_last& mdl) noexcept; 592 operator/(const month_day_last& mdl, const year& y) noexcept; 594 operator/(const month_day_last& mdl, int y) noexcept;
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/ |
| H A D | parport-lowlevel.rst | 1066 int parport_find_device (const char *mfg, const char *mdl, int from);
|
| /OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/ |
| H A D | yuv420_p352x288.yuv | 370 …eYi������������������������{br�����ycZ~������������������je���|CA���������mdl�����������������O7=…
|