Home
last modified time | relevance | path

Searched full:scm (Results 1 – 25 of 548) sorted by relevance

12345678910>>...22

/openbmc/linux/Documentation/devicetree/bindings/firmware/
H A Dqcom,scm.yaml4 $id: http://devicetree.org/schemas/firmware/qcom,scm.yaml#
7 title: QCOM Secure Channel Manager (SCM)
24 - qcom,scm-apq8064
25 - qcom,scm-apq8084
26 - qcom,scm-ipq4019
27 - qcom,scm-ipq5332
28 - qcom,scm-ipq6018
29 - qcom,scm-ipq806x
30 - qcom,scm-ipq8074
31 - qcom,scm-ipq9574
[all …]
/openbmc/linux/include/net/
H A Dscm.h41 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm);
42 void scm_detach_fds_compat(struct msghdr *msg, struct scm_cookie *scm);
43 int __scm_send(struct socket *sock, struct msghdr *msg, struct scm_cookie *scm);
44 void __scm_destroy(struct scm_cookie *scm);
48 static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) in unix_get_peersec_dgram() argument
50 security_socket_getpeersec_dgram(sock, NULL, &scm->secid); in unix_get_peersec_dgram()
53 static __inline__ void unix_get_peersec_dgram(struct socket *sock, struct scm_cookie *scm) in unix_get_peersec_dgram() argument
57 static __inline__ void scm_set_cred(struct scm_cookie *scm, in scm_set_cred() argument
60 scm->pid = get_pid(pid); in scm_set_cred()
61 scm->creds.pid = pid_vnr(pid); in scm_set_cred()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/arm/omap/
H A Dctrl.txt16 "ti,am3-scm"
17 "ti,am4-scm"
20 "ti,omap2-scm"
21 "ti,omap3-scm"
22 "ti,omap4-scm-core"
23 "ti,omap4-scm-padconf-core"
24 "ti,omap4-scm-wkup"
25 "ti,omap4-scm-padconf-wkup"
26 "ti,omap5-scm-core"
27 "ti,omap5-scm-padconf-core"
[all …]
/openbmc/linux/net/unix/
H A Dscm.c9 #include <net/scm.h>
13 #include "scm.h"
107 int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb) in unix_attach_fds() argument
119 UNIXCB(skb).fp = scm_fp_dup(scm->fp); in unix_attach_fds()
123 for (i = scm->fp->count - 1; i >= 0; i--) in unix_attach_fds()
124 unix_inflight(scm->fp->user, scm->fp->fp[i]); in unix_attach_fds()
129 void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb) in unix_detach_fds() argument
133 scm->fp = UNIXCB(skb).fp; in unix_detach_fds()
136 for (i = scm->fp->count-1; i >= 0; i--) in unix_detach_fds()
137 unix_notinflight(scm->fp->user, scm->fp->fp[i]); in unix_detach_fds()
[all …]
H A Daf_unix.c108 #include <net/scm.h>
120 #include "scm.h"
188 static void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_get_secdata() argument
190 UNIXCB(skb).secid = scm->secid; in unix_get_secdata()
193 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_set_secdata() argument
195 scm->secid = UNIXCB(skb).secid; in unix_set_secdata()
198 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) in unix_secdata_eq() argument
200 return (scm->secid == UNIXCB(skb).secid); in unix_secdata_eq()
203 static inline void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_get_secdata() argument
206 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) in unix_set_secdata() argument
[all …]
H A Dscm.h7 int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb);
8 void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb);
/openbmc/linux/drivers/scsi/csiostor/
H A Dcsio_scsi.h202 csio_get_scsi_ioreq(struct csio_scsim *scm) in csio_get_scsi_ioreq() argument
206 if (likely(!list_empty(&scm->ioreq_freelist))) { in csio_get_scsi_ioreq()
207 req = list_first_entry(&scm->ioreq_freelist, in csio_get_scsi_ioreq()
210 CSIO_DEC_STATS(scm, n_free_ioreq); in csio_get_scsi_ioreq()
217 csio_put_scsi_ioreq(struct csio_scsim *scm, struct csio_ioreq *ioreq) in csio_put_scsi_ioreq() argument
219 list_add_tail(&ioreq->sm.sm_list, &scm->ioreq_freelist); in csio_put_scsi_ioreq()
220 CSIO_INC_STATS(scm, n_free_ioreq); in csio_put_scsi_ioreq()
224 csio_put_scsi_ioreq_list(struct csio_scsim *scm, struct list_head *reqlist, in csio_put_scsi_ioreq_list() argument
227 list_splice_init(reqlist, &scm->ioreq_freelist); in csio_put_scsi_ioreq_list()
228 scm->stats.n_free_ioreq += n; in csio_put_scsi_ioreq_list()
[all …]
H A Dcsio_scsi.c111 * @scm: SCSI module
118 csio_scsi_gather_active_ios(struct csio_scsim *scm, in csio_scsi_gather_active_ios() argument
124 if (list_empty(&scm->active_q)) in csio_scsi_gather_active_ios()
129 list_splice_tail_init(&scm->active_q, dest); in csio_scsi_gather_active_ios()
133 list_for_each_safe(tmp, next, &scm->active_q) { in csio_scsi_gather_active_ios()
776 struct csio_scsim *scm = csio_hw_to_scsim(hw); in csio_scsis_io_active() local
781 CSIO_DEC_STATS(scm, n_active); in csio_scsis_io_active()
834 CSIO_DEC_STATS(scm, n_active); in csio_scsis_io_active()
848 struct csio_scsim *scm = csio_hw_to_scsim(hw); in csio_scsis_tm_active() local
852 CSIO_DEC_STATS(scm, n_tm_active); in csio_scsis_tm_active()
[all …]
/openbmc/linux/drivers/firmware/
H A Dqcom_scm.c192 if (of_device_is_compatible(__scm ? __scm->dev->of_node : NULL, "qcom,scm-sc7180")) { in __get_convention()
223 * Sends a command to the SCM and waits for the command to finish processing.
237 pr_err("Unknown current SCM calling convention.\n"); in qcom_scm_call()
248 * Sends a command to the SCM and waits for the command to finish processing.
262 pr_err("Unknown current SCM calling convention.\n"); in qcom_scm_call_atomic()
347 * Set the Linux entry point for the SCM to transfer control to when coming
353 /* Fallback to old SCM call */ in qcom_scm_set_warm_boot_addr()
366 /* Fallback to old SCM call */ in qcom_scm_set_cold_boot_addr()
483 * During the scm call memory protection will be enabled for the meta in qcom_scm_pas_init_image()
1048 * Return: true iff the SCM calls wrapped by qcom_scm_ice_invalidate_key() and
[all …]
H A Dqcom_scm-legacy.c31 * struct scm_legacy_command - one SCM command buffer
38 * An SCM command is laid out in memory as follows:
63 * struct scm_legacy_response - one SCM response buffer
121 * scm_legacy_call() - Sends a command to the SCM and waits for the command to
215 * scm_legacy_call_atomic() - Send an atomic SCM command with up to 5 arguments
218 * @desc: SCM call descriptor containing arguments
219 * @res: SCM call return values
/openbmc/openbmc/poky/meta/recipes-devtools/python/
H A Dpython3-setuptools-scm_8.1.0.bb1 SUMMARY = "the blessed package to manage your versions by scm tags"
2 HOMEPAGE = "https://pypi.org/project/setuptools-scm/"
4 versions in SCM metadata instead of declaring them as the version \
5 argument or in a SCM managed file."
15 UPSTREAM_CHECK_REGEX = "scm-(?P<pver>.*)\.tar"
H A Dpython3-setuptools-rust_1.10.2.bb18 DEPENDS += "python3-setuptools-scm-native python3-wheel-native"
24 python3-setuptools-scm \
/openbmc/linux/net/core/
H A Dscm.c2 /* scm.c - Socket level control messages processing.
37 #include <net/scm.h>
122 void __scm_destroy(struct scm_cookie *scm) in __scm_destroy() argument
124 struct scm_fp_list *fpl = scm->fp; in __scm_destroy()
128 scm->fp = NULL; in __scm_destroy()
309 void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm) in scm_detach_fds() argument
314 int fdmax = min_t(int, scm_max_fds(msg), scm->fp->count); in scm_detach_fds()
323 scm_detach_fds_compat(msg, scm); in scm_detach_fds()
328 err = receive_fd_user(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds()
350 if (i < scm->fp->count || (scm->fp->count && fdmax <= 0)) in scm_detach_fds()
[all …]
/openbmc/linux/tools/testing/nvdimm/test/
H A Dndtest.h8 /* SCM device is unable to persist memory contents */
10 /* SCM device failed to persist memory contents */
12 /* SCM device contents are not persisted from previous IPL */
15 /* SCM device will be garded off next IPL due to failure */
17 /* SCM contents cannot persist due to current platform health status */
/openbmc/u-boot/arch/arm/mach-aspeed/ast2600/
H A DKconfig55 bool "QUALCOMM-DC-SCM-V1"
58 QUALCOMM-DC-SCM-V1 is a Qualcomm DC-SCM V1 board which is
69 source "board/qualcomm/dc-scm-v1/Kconfig"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/uim/uim/
H A Duim-module-manager.patch8 scm/Makefile.am | 2 +-
11 --- a/scm/Makefile.am
12 +++ b/scm/Makefile.am
/openbmc/linux/Documentation/devicetree/bindings/crypto/
H A Dfsl-imx-scc.yaml21 - description: SCC SCM interrupt
26 - const: scm
53 interrupt-names = "scm", "smn";
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dexternal-scm.rst3 Using an External SCM
7 Manager (SCM), it is possible to have the OpenEmbedded build system
8 notice new recipe changes added to the SCM and then build the resulting
/openbmc/linux/arch/arm/mach-omap2/
H A Dcontrol.c478 * Tell the SCM to start saving the padconf registers, then wait for
680 { .compatible = "ti,am3-scm", .data = &ctrl_data },
681 { .compatible = "ti,am4-scm", .data = &ctrl_data },
682 { .compatible = "ti,omap2-scm", .data = &omap2_ctrl_data },
683 { .compatible = "ti,omap3-scm", .data = &omap2_ctrl_data },
684 { .compatible = "ti,dm814-scm", .data = &ctrl_data },
686 { .compatible = "ti,omap4-scm-core", .data = &ctrl_data },
687 { .compatible = "ti,omap5-scm-core", .data = &ctrl_data },
688 { .compatible = "ti,omap5-scm-wkup-pad-conf", .data = &ctrl_aux_data },
689 { .compatible = "ti,dra7-scm-core", .data = &ctrl_data },
/openbmc/u-boot/scripts/
H A Dsetlocalversion163 # scm version string if not at a tagged commit
165 # full scm version string
173 scm=$(scm_version --short)
174 res="$res${scm:++}"
/openbmc/linux/drivers/s390/cio/
H A Dscm.c42 return add_uevent_var(env, "MODALIAS=scm:scmdev"); in scmdev_uevent()
46 .name = "scm",
53 * scm_driver_register() - register a scm driver
67 * scm_driver_unregister() - deregister a scm driver
281 scm_root = root_device_register("scm"); in scm_init()
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-schedutils_0.6.bb2 HOMEPAGE = "https://git.kernel.org/pub/scm/libs/python/python-schedutils/python-schedutils.git/"
7 SRC_URI = "git://git.kernel.org/pub/scm/libs/python/python-schedutils/python-schedutils.git;branch=…
H A Dpython3-linux-procfs_0.7.3.bb2 HOMEPAGE = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/"
7 SRC_URI = "git://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git;bra…
/openbmc/openbmc/meta-qualcomm/conf/machine/
H A Dqcom-dc-scm-v1.conf2 KERNEL_DEVICETREE = "aspeed/aspeed-bmc-qcom-dc-scm-v1.dtb"
4 UBOOT_DEVICETREE = "ast2600-qcom-dc-scm-v1"
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/f2fs-tools/
H A Df2fs-tools_1.16.0.bb2 HOMEPAGE = "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git"
11 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git;branch=master \

12345678910>>...22