/openbmc/u-boot/drivers/clk/ |
H A D | clk-ti-sci.c | 78 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops; in ti_sci_clk_get_rate() local 84 ret = cops->get_freq(sci, clk->id, clk->data, ¤t_freq); in ti_sci_clk_get_rate() 99 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops; in ti_sci_clk_set_rate() local 105 ret = cops->set_freq(sci, clk->id, clk->data, rate, rate, rate); in ti_sci_clk_set_rate() 116 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops; in ti_sci_clk_set_parent() local 128 ret = cops->get_num_parents(sci, clk->id, clk->data, &num_parents); in ti_sci_clk_set_parent() 148 ret = cops->set_parent(sci, clk->id, clk->data, parent->data); in ti_sci_clk_set_parent() 160 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops; in ti_sci_clk_enable() local 169 ret = cops->put_clock(sci, clk->id, clk->data); in ti_sci_clk_enable() 180 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops; in ti_sci_clk_disable() local [all …]
|
/openbmc/linux/sound/soc/ |
H A D | soc-dai.c | 741 if (dai->driver->cops && in snd_soc_dai_compr_startup() 742 dai->driver->cops->startup) in snd_soc_dai_compr_startup() 743 ret = dai->driver->cops->startup(cstream, dai); in snd_soc_dai_compr_startup() 760 if (dai->driver->cops && in snd_soc_dai_compr_shutdown() 761 dai->driver->cops->shutdown) in snd_soc_dai_compr_shutdown() 762 dai->driver->cops->shutdown(cstream, dai); in snd_soc_dai_compr_shutdown() 774 if (dai->driver->cops && in snd_soc_dai_compr_trigger() 775 dai->driver->cops->trigger) in snd_soc_dai_compr_trigger() 776 ret = dai->driver->cops->trigger(cstream, cmd, dai); in snd_soc_dai_compr_trigger() 788 if (dai->driver->cops && in snd_soc_dai_compr_set_params() [all …]
|
/openbmc/linux/net/sched/ |
H A D | sch_api.c | 153 const struct Qdisc_class_ops *cops = qops->cl_ops; in register_qdisc() local 155 if (!(cops->find && cops->walk && cops->leaf)) in register_qdisc() 158 if (cops->tcf_block && !(cops->bind_tcf && cops->unbind_tcf)) in register_qdisc() 340 const struct Qdisc_class_ops *cops = p->ops->cl_ops; in qdisc_leaf() local 342 if (cops == NULL) in qdisc_leaf() 344 cl = cops->find(p, classid); in qdisc_leaf() 348 return cops->leaf(p, cl); in qdisc_leaf() 783 const struct Qdisc_class_ops *cops; in qdisc_tree_reduce_backlog() local 816 cops = sch->ops->cl_ops; in qdisc_tree_reduce_backlog() 817 if (notify && cops->qlen_notify) { in qdisc_tree_reduce_backlog() [all …]
|
H A D | cls_api.c | 1153 const struct Qdisc_class_ops *cops; in __tcf_qdisc_find() local 1190 cops = (*q)->ops->cl_ops; in __tcf_qdisc_find() 1191 if (!cops) { in __tcf_qdisc_find() 1197 if (!cops->tcf_block) { in __tcf_qdisc_find() 1232 const struct Qdisc_class_ops *cops = q->ops->cl_ops; in __tcf_qdisc_cl_find() local 1234 *cl = cops->find(q, parent); in __tcf_qdisc_cl_find() 1258 const struct Qdisc_class_ops *cops = q->ops->cl_ops; in __tcf_block_find() local 1260 block = cops->tcf_block(q, cl, extack); in __tcf_block_find() 2765 const struct Qdisc_class_ops *cops; in tc_dump_tfilter() local 2780 cops = q->ops->cl_ops; in tc_dump_tfilter() [all …]
|
/openbmc/linux/Documentation/networking/device_drivers/appletalk/ |
H A D | cops.rst | 4 The COPS LocalTalk Linux driver (cops.c) 37 Use modprobe like this: /sbin/modprobe cops.o (IO #) (IRQ #) 43 insmod cops io=0x240 irq=5 44 insmod -o cops2 cops io=0x260 irq=3 62 it work with the cops.c driver.
|
H A D | index.rst | 11 cops
|
/openbmc/u-boot/drivers/sysreset/ |
H A D | sysreset-ti-sci.c | 44 const struct ti_sci_core_ops *cops = &sci->ops.core_ops; in ti_sci_sysreset_request() local 49 ret = cops->reboot_device(sci); in ti_sci_sysreset_request()
|
/openbmc/linux/fs/f2fs/ |
H A D | compress.c | 557 const struct f2fs_compress_ops *cops = f2fs_cops[alg]; in f2fs_is_compress_level_valid() local 559 if (cops->is_level_valid) in f2fs_is_compress_level_valid() 560 return cops->is_level_valid(lvl); in f2fs_is_compress_level_valid() 621 const struct f2fs_compress_ops *cops = in f2fs_compress_pages() local 630 if (cops->init_compress_ctx) { in f2fs_compress_pages() 631 ret = cops->init_compress_ctx(cc); in f2fs_compress_pages() 661 ret = cops->compress_pages(cc); in f2fs_compress_pages() 697 if (cops->destroy_compress_ctx) in f2fs_compress_pages() 698 cops->destroy_compress_ctx(cc); in f2fs_compress_pages() 718 if (cops->destroy_compress_ctx) in f2fs_compress_pages() [all …]
|
/openbmc/u-boot/drivers/firmware/ |
H A D | ti_sci.c | 1815 struct ti_sci_clk_ops *cops = &ops->clk_ops; in ti_sci_setup_ops() local 1836 cops->get_clock = ti_sci_cmd_get_clock; in ti_sci_setup_ops() 1837 cops->idle_clock = ti_sci_cmd_idle_clock; in ti_sci_setup_ops() 1838 cops->put_clock = ti_sci_cmd_put_clock; in ti_sci_setup_ops() 1839 cops->is_auto = ti_sci_cmd_clk_is_auto; in ti_sci_setup_ops() 1840 cops->is_on = ti_sci_cmd_clk_is_on; in ti_sci_setup_ops() 1841 cops->is_off = ti_sci_cmd_clk_is_off; in ti_sci_setup_ops() 1843 cops->set_parent = ti_sci_cmd_clk_set_parent; in ti_sci_setup_ops() 1844 cops->get_parent = ti_sci_cmd_clk_get_parent; in ti_sci_setup_ops() 1845 cops->get_num_parents = ti_sci_cmd_clk_get_num_parents; in ti_sci_setup_ops() [all …]
|
/openbmc/linux/drivers/video/fbdev/ |
H A D | amifb.c | 2055 copins *copl, *cops; in ami_set_sprite() local 2060 cops = copdisplay.list[currentcop][0]; in ami_set_sprite() 2096 cops[cop_spr0ptrh].w[1] = highw(ps); in ami_set_sprite() 2097 cops[cop_spr0ptrl].w[1] = loww(ps); in ami_set_sprite() 2151 copins *copl, *cops; in ami_rebuild_copper() local 2194 cops = copdisplay.rebuild[0]; in ami_rebuild_copper() 2204 (cops++)->l = CMOVE(highw(p), bplpt[i]); in ami_rebuild_copper() 2205 (cops++)->l = CMOVE2(loww(p), bplpt[i]); in ami_rebuild_copper() 2209 (cops++)->l = CWAIT(h_end1, 510); in ami_rebuild_copper() 2213 (cops++)->l = CWAIT(h_end1, line); in ami_rebuild_copper() [all …]
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_engine.h | 297 GEM_BUG_ON(!engines[0]->cops->create_parallel); in intel_engine_create_parallel() 298 return engines[0]->cops->create_parallel(engines, num_engines, width); in intel_engine_create_parallel() 331 return engine->cops->get_sibling(engine, sibling); in intel_engine_get_sibling()
|
H A D | intel_context.c | 378 GEM_BUG_ON(!engine->cops); in intel_context_init() 384 ce->ops = engine->cops; in intel_context_init()
|
H A D | intel_engine_types.h | 516 const struct intel_context_ops *cops; member
|
H A D | mock_engine.c | 365 engine->base.cops = &mock_context_ops; in mock_engine()
|
H A D | intel_engine_cs.c | 2462 GEM_BUG_ON(!siblings[0]->cops->create_virtual); in intel_engine_create_virtual() 2463 return siblings[0]->cops->create_virtual(siblings, count, flags); in intel_engine_create_virtual()
|
H A D | intel_ring_submission.c | 1139 engine->cops = &ring_context_ops; in setup_common()
|
H A D | intel_execlists_submission.c | 3436 engine->cops = &execlists_context_ops; in logical_ring_default_vfuncs() 3980 ve->base.cops = &virtual_context_ops; in execlists_create_virtual()
|
/openbmc/linux/drivers/net/appletalk/ |
H A D | Makefile | 7 obj-$(CONFIG_COPS) += cops.o
|
H A D | Kconfig | 54 <file:Documentation/networking/device_drivers/appletalk/cops.rst>.
|
/openbmc/linux/drivers/firmware/ |
H A D | ti_sci.c | 2795 struct ti_sci_clk_ops *cops = &ops->clk_ops; in ti_sci_setup_ops() local 2820 cops->get_clock = ti_sci_cmd_get_clock; in ti_sci_setup_ops() 2821 cops->idle_clock = ti_sci_cmd_idle_clock; in ti_sci_setup_ops() 2822 cops->put_clock = ti_sci_cmd_put_clock; in ti_sci_setup_ops() 2823 cops->is_auto = ti_sci_cmd_clk_is_auto; in ti_sci_setup_ops() 2824 cops->is_on = ti_sci_cmd_clk_is_on; in ti_sci_setup_ops() 2825 cops->is_off = ti_sci_cmd_clk_is_off; in ti_sci_setup_ops() 2827 cops->set_parent = ti_sci_cmd_clk_set_parent; in ti_sci_setup_ops() 2828 cops->get_parent = ti_sci_cmd_clk_get_parent; in ti_sci_setup_ops() 2829 cops->get_num_parents = ti_sci_cmd_clk_get_num_parents; in ti_sci_setup_ops() [all …]
|
/openbmc/linux/sound/soc/intel/avs/ |
H A D | probes.c | 275 .cops = &avs_probe_cdai_ops,
|
/openbmc/linux/include/sound/ |
H A D | soc-dai.h | 420 const struct snd_soc_cdai_ops *cops; member
|
/openbmc/linux/sound/soc/sof/ |
H A D | sof-client-probes.c | 365 .cops = &sof_probes_compr_ops,
|
/openbmc/linux/net/core/ |
H A D | rtnetlink.c | 4631 const struct net_device_ops *cops = NULL; in rtnl_fdb_dump() local 4672 cops = br_dev->netdev_ops; in rtnl_fdb_dump() 4682 cops = ops; in rtnl_fdb_dump() 4689 if (cops && cops->ndo_fdb_dump) { in rtnl_fdb_dump() 4690 err = cops->ndo_fdb_dump(skb, cb, in rtnl_fdb_dump() 4708 cops = NULL; in rtnl_fdb_dump()
|
/openbmc/qemu/tests/data/qobject/ |
H A D | qdict.txt | 3191 cops.c: 29453 3193 cops.h: 1400 3195 cops.txt: 2768
|