Home
last modified time | relevance | path

Searched refs:pctrl (Results 1 – 12 of 12) sorted by relevance

/freebsd-14-stable/sys/contrib/device-tree/Bindings/phy/
HDphy-hi3660-usb3.txt8 - hisilicon,pctrl-syscon: phandle of syscon used to control phy.
23 hisilicon,pctrl-syscon = <&pctrl>;
/freebsd-14-stable/sys/contrib/device-tree/Bindings/arm/hisilicon/
HDhisilicon.txt292 - compatible: "hisilicon,pctrl"
293 - reg: Address and size of pctrl.
298 pctrl: pctrl@fca09000 {
299 compatible = "hisilicon,pctrl";
/freebsd-14-stable/crypto/openssl/engines/
HDe_dasync.c994 static int (*pctrl)(EVP_PKEY_CTX *ctx, int type, int p1, void *p2); in dasync_rsa_ctrl() local
996 if (pctrl == NULL) in dasync_rsa_ctrl()
997 EVP_PKEY_meth_get_ctrl(dasync_rsa_orig, &pctrl, NULL); in dasync_rsa_ctrl()
998 return pctrl(ctx, type, p1, p2); in dasync_rsa_ctrl()
/freebsd-14-stable/sys/contrib/device-tree/Bindings/clock/
HDhi3670-clock.txt12 - "hisilicon,hi3670-pctrl"
HDhi3660-clock.txt12 - "hisilicon,hi3660-pctrl"
/freebsd-14-stable/sys/contrib/device-tree/src/arm64/hisilicon/
HDhi3660.dtsi354 pctrl: pctrl@e8a09000 { label
355 compatible = "hisilicon,hi3660-pctrl", "syscon";
1169 hisilicon,pctrl-syscon = <&pctrl>;
HDhi3670.dtsi161 pctrl: pctrl@e8a09000 { label
162 compatible = "hisilicon,hi3670-pctrl", "syscon";
/freebsd-14-stable/sys/dev/bhnd/cores/pmu/
HDbhnd_pmu_subr.c435 uint32_t pctrl; in bhnd_pmu_force_ilp() local
437 pctrl = BHND_PMU_READ_4(sc, BHND_PMU_CTRL); in bhnd_pmu_force_ilp()
438 orig = pctrl; in bhnd_pmu_force_ilp()
441 pctrl &= ~(BHND_PMU_CTRL_HT_REQ_EN | BHND_PMU_CTRL_ALP_REQ_EN); in bhnd_pmu_force_ilp()
443 pctrl |= (BHND_PMU_CTRL_HT_REQ_EN | BHND_PMU_CTRL_ALP_REQ_EN); in bhnd_pmu_force_ilp()
445 BHND_PMU_WRITE_4(sc, BHND_PMU_CTRL, pctrl); in bhnd_pmu_force_ilp()
/freebsd-14-stable/crypto/openssl/crypto/evp/
HDpmeth_lib.c2083 int (**pctrl) (EVP_PKEY_CTX *ctx, int type, int p1, in EVP_PKEY_meth_get_ctrl()
2089 if (pctrl) in EVP_PKEY_meth_get_ctrl()
2090 *pctrl = pmeth->ctrl; in EVP_PKEY_meth_get_ctrl()
/freebsd-14-stable/crypto/openssl/doc/man3/
HDEVP_PKEY_meth_new.pod218 int (**pctrl) (EVP_PKEY_CTX *ctx, int type, int p1,
/freebsd-14-stable/crypto/openssl/test/
HDevp_extra_test.c4485 int (*pctrl)(EVP_PKEY_CTX *ctx, int type, int p1, void *p2); in custom_pmeth_ctrl() local
4487 EVP_PKEY_meth_get_ctrl(orig_pmeth, &pctrl, NULL); in custom_pmeth_ctrl()
4494 return pctrl(ctx, type, p1, p2); in custom_pmeth_ctrl()
/freebsd-14-stable/crypto/openssl/include/openssl/
HDevp.h2118 int (**pctrl) (EVP_PKEY_CTX *ctx, int type, int p1, void *p2),