Home
last modified time | relevance | path

Searched refs:ocs (Results 1 - 25 of 30) sorted by relevance

12

/kernel/linux/linux-6.6/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
/kernel/linux/linux-6.6/drivers/pci/
H A Dof_property.c91 struct of_changeset *ocs, in of_pci_prop_bus_range()
97 return of_changeset_add_prop_u32_array(ocs, np, "bus-range", bus_range, in of_pci_prop_bus_range()
101 static int of_pci_prop_ranges(struct pci_dev *pdev, struct of_changeset *ocs, in of_pci_prop_ranges() argument
150 ret = of_changeset_add_prop_u32_array(ocs, np, "ranges", (u32 *)rp, in of_pci_prop_ranges()
157 static int of_pci_prop_reg(struct pci_dev *pdev, struct of_changeset *ocs, in of_pci_prop_reg() argument
165 return of_changeset_add_prop_u32_array(ocs, np, "reg", (u32 *)&reg, in of_pci_prop_reg()
170 struct of_changeset *ocs, in of_pci_prop_interrupts()
183 return of_changeset_add_prop_u32(ocs, np, "interrupts", (u32)pin); in of_pci_prop_interrupts()
186 static int of_pci_prop_intr_map(struct pci_dev *pdev, struct of_changeset *ocs, in of_pci_prop_intr_map() argument
270 ret = of_changeset_add_prop_u32_array(ocs, n in of_pci_prop_intr_map()
90 of_pci_prop_bus_range(struct pci_dev *pdev, struct of_changeset *ocs, struct device_node *np) of_pci_prop_bus_range() argument
169 of_pci_prop_interrupts(struct pci_dev *pdev, struct of_changeset *ocs, struct device_node *np) of_pci_prop_interrupts() argument
293 of_pci_prop_compatible(struct pci_dev *pdev, struct of_changeset *ocs, struct device_node *np) of_pci_prop_compatible() argument
315 of_pci_add_properties(struct pci_dev *pdev, struct of_changeset *ocs, struct device_node *np) of_pci_add_properties() argument
[all...]
/kernel/linux/linux-6.6/drivers/of/
H A Ddynamic.c491 * @ocs: Pointer to changeset
497 struct device_node *of_changeset_create_node(struct of_changeset *ocs, in of_changeset_create_node() argument
509 ret = of_changeset_attach_node(ocs, np); in of_changeset_create_node()
647 * @ocs: changeset pointer
651 void of_changeset_init(struct of_changeset *ocs) in of_changeset_init() argument
653 memset(ocs, 0, sizeof(*ocs)); in of_changeset_init()
654 INIT_LIST_HEAD(&ocs->entries); in of_changeset_init()
661 * @ocs: changeset pointer
666 void of_changeset_destroy(struct of_changeset *ocs) in of_changeset_destroy() argument
685 __of_changeset_apply_entries(struct of_changeset *ocs, int *ret_revert) __of_changeset_apply_entries() argument
714 __of_changeset_apply_notify(struct of_changeset *ocs) __of_changeset_apply_notify() argument
742 __of_changeset_apply(struct of_changeset *ocs) __of_changeset_apply() argument
766 of_changeset_apply(struct of_changeset *ocs) of_changeset_apply() argument
789 __of_changeset_revert_entries(struct of_changeset *ocs, int *ret_apply) __of_changeset_revert_entries() argument
815 __of_changeset_revert_notify(struct of_changeset *ocs) __of_changeset_revert_notify() argument
835 __of_changeset_revert(struct of_changeset *ocs) __of_changeset_revert() argument
860 of_changeset_revert(struct of_changeset *ocs) of_changeset_revert() argument
889 of_changeset_action(struct of_changeset *ocs, unsigned long action, struct device_node *np, struct property *prop) of_changeset_action() argument
912 of_changeset_add_prop_helper(struct of_changeset *ocs, struct device_node *np, const struct property *pp) of_changeset_add_prop_helper() argument
945 of_changeset_add_prop_string(struct of_changeset *ocs, struct device_node *np, const char *prop_name, const char *str) of_changeset_add_prop_string() argument
973 of_changeset_add_prop_string_array(struct of_changeset *ocs, struct device_node *np, const char *prop_name, const char **str_array, size_t sz) of_changeset_add_prop_string_array() argument
1018 of_changeset_add_prop_u32_array(struct of_changeset *ocs, struct device_node *np, const char *prop_name, const u32 *array, size_t sz) of_changeset_add_prop_u32_array() argument
[all...]
H A Dof_private.h49 extern int __of_changeset_apply_entries(struct of_changeset *ocs,
51 extern int __of_changeset_apply_notify(struct of_changeset *ocs);
52 extern int __of_changeset_revert_entries(struct of_changeset *ocs,
54 extern int __of_changeset_revert_notify(struct of_changeset *ocs);
/kernel/linux/linux-5.10/drivers/of/
H A Ddynamic.c655 * @ocs: changeset pointer
659 void of_changeset_init(struct of_changeset *ocs) in of_changeset_init() argument
661 memset(ocs, 0, sizeof(*ocs)); in of_changeset_init()
662 INIT_LIST_HEAD(&ocs->entries); in of_changeset_init()
669 * @ocs: changeset pointer
674 void of_changeset_destroy(struct of_changeset *ocs) in of_changeset_destroy() argument
678 list_for_each_entry_safe_reverse(ce, cen, &ocs->entries, node) in of_changeset_destroy()
684 * Apply the changeset entries in @ocs.
693 int __of_changeset_apply_entries(struct of_changeset *ocs, in argument
722 __of_changeset_apply_notify(struct of_changeset *ocs) __of_changeset_apply_notify() argument
750 __of_changeset_apply(struct of_changeset *ocs) __of_changeset_apply() argument
774 of_changeset_apply(struct of_changeset *ocs) of_changeset_apply() argument
797 __of_changeset_revert_entries(struct of_changeset *ocs, int *ret_apply) __of_changeset_revert_entries() argument
823 __of_changeset_revert_notify(struct of_changeset *ocs) __of_changeset_revert_notify() argument
843 __of_changeset_revert(struct of_changeset *ocs) __of_changeset_revert() argument
868 of_changeset_revert(struct of_changeset *ocs) of_changeset_revert() argument
897 of_changeset_action(struct of_changeset *ocs, unsigned long action, struct device_node *np, struct property *prop) of_changeset_action() argument
[all...]
H A Dof_private.h46 extern int __of_changeset_apply_entries(struct of_changeset *ocs,
48 extern int __of_changeset_apply_notify(struct of_changeset *ocs);
49 extern int __of_changeset_revert_entries(struct of_changeset *ocs,
51 extern int __of_changeset_revert_notify(struct of_changeset *ocs);
/kernel/linux/linux-6.6/include/linux/
H A Dof.h1545 extern void of_changeset_init(struct of_changeset *ocs);
1546 extern void of_changeset_destroy(struct of_changeset *ocs);
1547 extern int of_changeset_apply(struct of_changeset *ocs);
1548 extern int of_changeset_revert(struct of_changeset *ocs);
1549 extern int of_changeset_action(struct of_changeset *ocs,
1553 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1556 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1559 static inline int of_changeset_detach_node(struct of_changeset *ocs, in of_changeset_detach_node() argument
1562 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); in of_changeset_detach_node()
1565 static inline int of_changeset_add_property(struct of_changeset *ocs, in of_changeset_add_property() argument
1571 of_changeset_remove_property(struct of_changeset *ocs, struct device_node *np, struct property *prop) of_changeset_remove_property() argument
1577 of_changeset_update_property(struct of_changeset *ocs, struct device_node *np, struct property *prop) of_changeset_update_property() argument
1597 of_changeset_add_prop_u32(struct of_changeset *ocs, struct device_node *np, const char *prop_name, const u32 val) of_changeset_add_prop_u32() argument
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dof.h1389 extern void of_changeset_init(struct of_changeset *ocs);
1390 extern void of_changeset_destroy(struct of_changeset *ocs);
1391 extern int of_changeset_apply(struct of_changeset *ocs);
1392 extern int of_changeset_revert(struct of_changeset *ocs);
1393 extern int of_changeset_action(struct of_changeset *ocs,
1397 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1400 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1403 static inline int of_changeset_detach_node(struct of_changeset *ocs, in of_changeset_detach_node() argument
1406 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); in of_changeset_detach_node()
1409 static inline int of_changeset_add_property(struct of_changeset *ocs, in of_changeset_add_property() argument
1415 of_changeset_remove_property(struct of_changeset *ocs, struct device_node *np, struct property *prop) of_changeset_remove_property() argument
1421 of_changeset_update_property(struct of_changeset *ocs, struct device_node *np, struct property *prop) of_changeset_update_property() argument
[all...]
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-5.10/drivers/pci/hotplug/
H A Dpnv_php.c174 of_changeset_destroy(&php_slot->ocs); in pnv_php_rmv_devtree()
211 static int pnv_php_populate_changeset(struct of_changeset *ocs, in pnv_php_populate_changeset() argument
218 ret = of_changeset_attach_node(ocs, child); in pnv_php_populate_changeset()
224 ret = pnv_php_populate_changeset(ocs, child); in pnv_php_populate_changeset()
289 of_changeset_init(&php_slot->ocs); in pnv_php_add_devtree()
291 ret = pnv_php_populate_changeset(&php_slot->ocs, php_slot->dn); in pnv_php_add_devtree()
300 ret = of_changeset_apply(&php_slot->ocs); in pnv_php_add_devtree()
314 of_changeset_destroy(&php_slot->ocs); in pnv_php_add_devtree()
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-5.10/include/uapi/linux/
H A Dhdlcdrv.h57 struct hdlcdrv_old_channel_state ocs; member
/kernel/linux/linux-6.6/include/uapi/linux/
H A Dhdlcdrv.h57 struct hdlcdrv_old_channel_state ocs; member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/
H A Dhdlcdrv.h57 struct hdlcdrv_old_channel_state ocs; member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
H A Dhdlcdrv.h57 struct hdlcdrv_old_channel_state ocs; member
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
H A Dhdlcdrv.h45 struct hdlcdrv_old_channel_state ocs; member
/kernel/linux/linux-5.10/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()
/kernel/linux/linux-6.6/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()
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
H A Dpnv-pci.h68 struct of_changeset ocs; member
/kernel/linux/linux-6.6/arch/powerpc/include/asm/
H A Dpnv-pci.h69 struct of_changeset ocs; member
/kernel/linux/linux-5.10/drivers/gpu/drm/rcar-du/
H A Drcar_du_of.c66 static int __init rcar_du_of_add_property(struct of_changeset *ocs, in rcar_du_of_add_property() argument
90 ret = of_changeset_add_property(ocs, np, prop); in rcar_du_of_add_property()
/kernel/linux/linux-5.10/drivers/net/hamradio/
H A Dhdlcdrv.c557 bi.data.ocs.ptt = hdlcdrv_ptt(s); in hdlcdrv_ioctl()
558 bi.data.ocs.dcd = s->hdlcrx.dcd; in hdlcdrv_ioctl()
559 bi.data.ocs.ptt_keyed = s->ptt_keyed; in hdlcdrv_ioctl()
H A Dbaycom_epp.c1070 hi.data.ocs.ptt = !!(bc->stat & EPP_PTTBIT); in baycom_ioctl()
1071 hi.data.ocs.dcd = !(bc->stat & EPP_DCDBIT); in baycom_ioctl()
1072 hi.data.ocs.ptt_keyed = bc->ptt_keyed; in baycom_ioctl()
/kernel/linux/linux-6.6/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()

Completed in 21 milliseconds

12