Home
last modified time | relevance | path

Searched refs:ocs (Results 1 – 25 of 31) sorted by relevance

12

/linux-6.15/drivers/pci/
H A Dof_property.c95 struct of_changeset *ocs, in of_pci_prop_bus_range() argument
174 struct of_changeset *ocs, in of_pci_prop_interrupts() argument
320 struct of_changeset *ocs, in of_pci_prop_compatible() argument
356 ret = of_pci_prop_bus_range(pdev, ocs, np); in of_pci_add_properties()
360 ret = of_pci_prop_intr_map(pdev, ocs, np); in of_pci_add_properties()
364 ret = of_pci_prop_intr_ctrl(pdev, ocs, np); in of_pci_add_properties()
369 ret = of_pci_prop_ranges(pdev, ocs, np); in of_pci_add_properties()
383 ret = of_pci_prop_reg(pdev, ocs, np); in of_pci_add_properties()
387 ret = of_pci_prop_compatible(pdev, ocs, np); in of_pci_add_properties()
411 struct of_changeset *ocs, in of_pci_host_bridge_prop_ranges() argument
[all …]
/linux-6.15/drivers/crypto/intel/keembay/
H A DMakefile4 obj-$(CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4) += keembay-ocs-aes.o
5 keembay-ocs-aes-objs := keembay-ocs-aes-core.o ocs-aes.o
7 obj-$(CONFIG_CRYPTO_DEV_KEEMBAY_OCS_ECC) += keembay-ocs-ecc.o
9 obj-$(CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU) += keembay-ocs-hcu.o
10 keembay-ocs-hcu-objs := keembay-ocs-hcu-core.o ocs-hcu.o
H A DKconfig57 module will be called keembay-ocs-ecc.
76 as a module, the module will be called keembay-ocs-hcu.
/linux-6.15/drivers/of/
H A Ddynamic.c512 ret = of_changeset_attach_node(ocs, np); in of_changeset_create_node()
654 void of_changeset_init(struct of_changeset *ocs) in of_changeset_init() argument
656 memset(ocs, 0, sizeof(*ocs)); in of_changeset_init()
657 INIT_LIST_HEAD(&ocs->entries); in of_changeset_init()
705 list_for_each_entry(ce, &ocs->entries, node) { in __of_changeset_apply_entries()
737 list_for_each_entry(ce, &ocs->entries, node) { in __of_changeset_apply_notify()
762 ret = __of_changeset_apply_notify(ocs); in __of_changeset_apply()
785 ret = __of_changeset_apply(ocs); in of_changeset_apply()
857 ret = __of_changeset_revert_notify(ocs); in __of_changeset_revert()
879 ret = __of_changeset_revert(ocs); in of_changeset_revert()
[all …]
H A Dof_private.h53 extern int __of_changeset_apply_entries(struct of_changeset *ocs,
55 extern int __of_changeset_apply_notify(struct of_changeset *ocs);
56 extern int __of_changeset_revert_entries(struct of_changeset *ocs,
58 extern int __of_changeset_revert_notify(struct of_changeset *ocs);
/linux-6.15/arch/powerpc/platforms/pseries/
H A Ddlpar.c270 rc = of_changeset_attach_node(ocs, dn); in dlpar_changeset_attach_cc_nodes()
410 struct of_changeset ocs; in dlpar_hp_dt_add() local
442 of_changeset_init(&ocs); in dlpar_hp_dt_add()
446 rc = of_changeset_apply(&ocs); in dlpar_hp_dt_add()
450 of_changeset_destroy(&ocs); in dlpar_hp_dt_add()
471 return of_changeset_detach_node(ocs, node); in changeset_detach_node_recursive()
477 struct of_changeset ocs; in dlpar_hp_dt_remove() local
484 of_changeset_init(&ocs); in dlpar_hp_dt_remove()
496 rc = changeset_detach_node_recursive(&ocs, np); in dlpar_hp_dt_remove()
504 rc = of_changeset_apply(&ocs); in dlpar_hp_dt_remove()
[all …]
/linux-6.15/drivers/i2c/
H A Di2c-core-of-prober.c66 struct of_changeset *ocs __free(kfree) = kzalloc(sizeof(*ocs), GFP_KERNEL); in i2c_of_probe_enable_node()
67 if (!ocs) in i2c_of_probe_enable_node()
70 of_changeset_init(ocs); in i2c_of_probe_enable_node()
71 ret = of_changeset_update_prop_string(ocs, node, "status", "okay"); in i2c_of_probe_enable_node()
75 ret = of_changeset_apply(ocs); in i2c_of_probe_enable_node()
78 of_changeset_destroy(ocs); in i2c_of_probe_enable_node()
84 void *ptr __always_unused = no_free_ptr(ocs); in i2c_of_probe_enable_node()
/linux-6.15/drivers/media/platform/qcom/venus/
H A Dcore.c293 struct of_changeset *ocs = core->ocs; in venus_add_video_core() local
327 core->ocs = kmalloc(sizeof(*core->ocs), GFP_KERNEL); in venus_add_dynamic_nodes()
328 if (!core->ocs) in venus_add_dynamic_nodes()
331 of_changeset_init(core->ocs); in venus_add_dynamic_nodes()
349 of_changeset_destroy(core->ocs); in venus_add_dynamic_nodes()
350 kfree(core->ocs); in venus_add_dynamic_nodes()
351 core->ocs = NULL; in venus_add_dynamic_nodes()
357 if (core->ocs) { in venus_remove_dynamic_nodes()
358 of_changeset_revert(core->ocs); in venus_remove_dynamic_nodes()
359 of_changeset_destroy(core->ocs); in venus_remove_dynamic_nodes()
[all …]
/linux-6.15/include/linux/
H A Dof.h1605 extern void of_changeset_init(struct of_changeset *ocs);
1606 extern void of_changeset_destroy(struct of_changeset *ocs);
1607 extern int of_changeset_apply(struct of_changeset *ocs);
1608 extern int of_changeset_revert(struct of_changeset *ocs);
1609 extern int of_changeset_action(struct of_changeset *ocs,
1613 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1616 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1646 int of_changeset_add_prop_string(struct of_changeset *ocs,
1649 int of_changeset_add_prop_string_array(struct of_changeset *ocs,
1653 int of_changeset_add_prop_u32_array(struct of_changeset *ocs,
[all …]
/linux-6.15/Documentation/devicetree/bindings/crypto/
H A Dintel,keembay-ocs-aes.yaml4 $id: http://devicetree.org/schemas/crypto/intel,keembay-ocs-aes.yaml#
18 const: intel,keembay-ocs-aes
41 compatible = "intel,keembay-ocs-aes";
H A Dintel,keembay-ocs-hcu.yaml4 $id: http://devicetree.org/schemas/crypto/intel,keembay-ocs-hcu.yaml#
19 const: intel,keembay-ocs-hcu
42 compatible = "intel,keembay-ocs-hcu";
H A Dintel,keembay-ocs-ecc.yaml4 $id: http://devicetree.org/schemas/crypto/intel,keembay-ocs-ecc.yaml#
20 const: intel,keembay-ocs-ecc
43 compatible = "intel,keembay-ocs-ecc";
/linux-6.15/drivers/net/slip/
H A Dslhc.c230 struct cstate *ocs = &(comp->tstate[comp->xmit_oldest]); in slhc_compress() local
231 struct cstate *lcs = ocs; in slhc_compress()
304 if ( cs == ocs ) in slhc_compress()
327 if(lcs == ocs) { in slhc_compress()
329 } else if (cs == ocs) { in slhc_compress()
335 cs->next = ocs->next; in slhc_compress()
336 ocs->next = cs; in slhc_compress()
/linux-6.15/drivers/pci/hotplug/
H A Dpnv_php.c176 of_changeset_destroy(&php_slot->ocs); in pnv_php_rmv_devtree()
213 static int pnv_php_populate_changeset(struct of_changeset *ocs, in pnv_php_populate_changeset() argument
220 ret = of_changeset_attach_node(ocs, child); in pnv_php_populate_changeset()
226 ret = pnv_php_populate_changeset(ocs, child); in pnv_php_populate_changeset()
291 of_changeset_init(&php_slot->ocs); in pnv_php_add_devtree()
293 ret = pnv_php_populate_changeset(&php_slot->ocs, php_slot->dn); in pnv_php_add_devtree()
302 ret = of_changeset_apply(&php_slot->ocs); in pnv_php_add_devtree()
316 of_changeset_destroy(&php_slot->ocs); in pnv_php_add_devtree()
/linux-6.15/drivers/media/pci/saa7134/
H A Dsaa7134-tvaudio.c175 int ausel=0, ics=0, ocs=0; in mute_input_7134() local
215 case TV: ausel=0xc0; ics=0x00; ocs=0x02; break; in mute_input_7134()
216 case LINE1: ausel=0x80; ics=0x00; ocs=0x00; break; in mute_input_7134()
217 case LINE2: ausel=0x80; ics=0x08; ocs=0x01; break; in mute_input_7134()
218 case LINE2_LEFT: ausel=0x80; ics=0x08; ocs=0x05; break; in mute_input_7134()
222 saa_andorb(SAA7134_ANALOG_IO_SELECT, 0x07, ocs); in mute_input_7134()
/linux-6.15/scripts/ksymoops/
H A DREADME7 Keith Owens <kaos@ocs.com.au> Sat Jun 19 10:30:34 EST 1999
/linux-6.15/include/uapi/linux/
H A Dhdlcdrv.h57 struct hdlcdrv_old_channel_state ocs; member
/linux-6.15/arch/powerpc/include/asm/
H A Dpnv-pci.h52 struct of_changeset ocs; member
/linux-6.15/Documentation/devicetree/bindings/leds/
H A Dleds-sgm3140.yaml22 - ocs,ocp8110
/linux-6.15/Documentation/devicetree/bindings/usb/
H A Dfcs,fsa4480.yaml18 - ocs,ocp96011
/linux-6.15/drivers/net/hamradio/
H A Dhdlcdrv.c560 bi.data.ocs.ptt = hdlcdrv_ptt(s); in hdlcdrv_siocdevprivate()
561 bi.data.ocs.dcd = s->hdlcrx.dcd; in hdlcdrv_siocdevprivate()
562 bi.data.ocs.ptt_keyed = s->ptt_keyed; in hdlcdrv_siocdevprivate()
H A Dbaycom_epp.c1065 hi.data.ocs.ptt = !!(bc->stat & EPP_PTTBIT); in baycom_siocdevprivate()
1066 hi.data.ocs.dcd = !(bc->stat & EPP_DCDBIT); in baycom_siocdevprivate()
1067 hi.data.ocs.ptt_keyed = bc->ptt_keyed; in baycom_siocdevprivate()
/linux-6.15/include/ufs/
H A Dufshci.h522 u8 ocs; member
/linux-6.15/arch/arm64/boot/dts/qcom/
H A Dmsm8916-longcheer-l8910.dts39 compatible = "ocs,ocp8110";
H A Dmsm8916-wingtech-wt88047.dts53 compatible = "ocs,ocp8110";

12