Home
last modified time | relevance | path

Searched refs:rpm (Results 1 – 25 of 464) sorted by relevance

12345678910>>...19

/openbmc/linux/drivers/gpu/drm/i915/
H A Dintel_runtime_pm.c68 static void init_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm) in init_intel_runtime_pm_wakeref() argument
70 spin_lock_init(&rpm->debug.lock); in init_intel_runtime_pm_wakeref()
75 track_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm) in track_intel_runtime_pm_wakeref() argument
80 if (rpm->no_wakeref_tracking) in track_intel_runtime_pm_wakeref()
87 spin_lock_irqsave(&rpm->debug.lock, flags); in track_intel_runtime_pm_wakeref()
89 if (!rpm->debug.count) in track_intel_runtime_pm_wakeref()
90 rpm->debug.last_acquire = stack; in track_intel_runtime_pm_wakeref()
92 stacks = krealloc(rpm->debug.owners, in track_intel_runtime_pm_wakeref()
93 (rpm->debug.count + 1) * sizeof(*stacks), in track_intel_runtime_pm_wakeref()
96 stacks[rpm->debug.count++] = stack; in track_intel_runtime_pm_wakeref()
[all …]
H A Dintel_runtime_pm.h111 assert_rpm_device_not_suspended(struct intel_runtime_pm *rpm) in assert_rpm_device_not_suspended() argument
113 WARN_ONCE(rpm->suspended, in assert_rpm_device_not_suspended()
118 __assert_rpm_raw_wakeref_held(struct intel_runtime_pm *rpm, int wakeref_count) in __assert_rpm_raw_wakeref_held() argument
120 assert_rpm_device_not_suspended(rpm); in __assert_rpm_raw_wakeref_held()
126 __assert_rpm_wakelock_held(struct intel_runtime_pm *rpm, int wakeref_count) in __assert_rpm_wakelock_held() argument
128 __assert_rpm_raw_wakeref_held(rpm, wakeref_count); in __assert_rpm_wakelock_held()
134 assert_rpm_raw_wakeref_held(struct intel_runtime_pm *rpm) in assert_rpm_raw_wakeref_held() argument
136 __assert_rpm_raw_wakeref_held(rpm, atomic_read(&rpm->wakeref_count)); in assert_rpm_raw_wakeref_held()
140 assert_rpm_wakelock_held(struct intel_runtime_pm *rpm) in assert_rpm_wakelock_held() argument
142 __assert_rpm_wakelock_held(rpm, atomic_read(&rpm->wakeref_count)); in assert_rpm_wakelock_held()
[all …]
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/af/
H A Drpm.c83 rpm_t *rpm = rpmd; in is_dev_rpm2() local
85 return (rpm->pdev->device == PCI_DEVID_CN10KB_RPM); in is_dev_rpm2()
88 struct mac_ops *rpm_get_mac_ops(rpm_t *rpm) in rpm_get_mac_ops() argument
90 if (is_dev_rpm2(rpm)) in rpm_get_mac_ops()
96 static void rpm_write(rpm_t *rpm, u64 lmac, u64 offset, u64 val) in rpm_write() argument
98 cgx_write(rpm, lmac, offset, val); in rpm_write()
101 static u64 rpm_read(rpm_t *rpm, u64 lmac, u64 offset) in rpm_read() argument
103 return cgx_read(rpm, lmac, offset); in rpm_read()
111 rpm_t *rpm = rpmd; in is_mac_rpmusx() local
113 return rpm_read(rpm, 0, RPMX_CONST1) & 0x700ULL; in is_mac_rpmusx()
[all …]
/openbmc/linux/drivers/mfd/
H A Dqcom_rpm.c58 #define RPM_STATUS_REG(rpm, i) ((rpm)->status_regs + (i) * 4) argument
59 #define RPM_CTRL_REG(rpm, i) ((rpm)->ctrl_regs + (i) * 4) argument
60 #define RPM_REQ_REG(rpm, i) ((rpm)->req_regs + (i) * 4) argument
445 int qcom_rpm_write(struct qcom_rpm *rpm, in qcom_rpm_write() argument
451 const struct qcom_rpm_data *data = rpm->data; in qcom_rpm_write()
464 mutex_lock(&rpm->lock); in qcom_rpm_write()
467 writel_relaxed(buf[i], RPM_REQ_REG(rpm, res->target_id + i)); in qcom_rpm_write()
470 for (i = 0; i < rpm->data->req_sel_size; i++) { in qcom_rpm_write()
472 RPM_CTRL_REG(rpm, rpm->data->req_sel_off + i)); in qcom_rpm_write()
475 writel_relaxed(BIT(state), RPM_CTRL_REG(rpm, rpm->data->req_ctx_off)); in qcom_rpm_write()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/rpm/
H A Drpm_4.20.0.bb16 SUMMARY:python3-rpm = "Python bindings for apps which will manupulate RPM packages"
17 DESCRIPTION:python3-rpm = "The python3-rpm package contains a module that permits applications \
21 HOMEPAGE = "http://www.rpm.org"
27 SRC_URI = "git://github.com/rpm-software-management/rpm;branch=rpm-4.20.x;protocol=https \
33 file://0001-Do-not-hardcode-lib-rpm-as-the-installation-path-for.patch \
37 file://0001-build-pack.c-do-not-insert-payloadflags-into-.rpm-me.patch \
55 # --sysconfdir prevents rpm from attempting to access machine-specific configuration in sysroot/etc…
56 # --localstatedir prevents rpm from writing its database to native sysroot when building images
71 PACKAGECONFIG[sequoia] = "-DWITH_SEQUOIA=ON,-DWITH_SEQUOIA=OFF,rpm-sequoia"
84 # Direct rpm-native to read configuration from our sysroot, not the one it was compiled in
[all …]
/openbmc/linux/drivers/rpmsg/
H A Dqcom_glink_rpm.c198 struct glink_rpm *rpm = container_of(pipe, struct glink_rpm, tx_pipe); in glink_rpm_tx_kick() local
200 mbox_send_message(rpm->mbox_chan, NULL); in glink_rpm_tx_kick()
201 mbox_client_txdone(rpm->mbox_chan, 0); in glink_rpm_tx_kick()
206 struct glink_rpm *rpm = data; in qcom_glink_rpm_intr() local
208 qcom_glink_native_rx(rpm->glink); in qcom_glink_rpm_intr()
291 struct glink_rpm *rpm; in glink_rpm_probe() local
299 rpm = devm_kzalloc(&pdev->dev, sizeof(*rpm), GFP_KERNEL); in glink_rpm_probe()
300 if (!rpm) in glink_rpm_probe()
315 &rpm->rx_pipe, &rpm->tx_pipe); in glink_rpm_probe()
319 rpm->irq = of_irq_get(dev->of_node, 0); in glink_rpm_probe()
[all …]
/openbmc/linux/drivers/soc/qcom/
H A Dsmd-rpm.c94 int qcom_rpm_smd_write(struct qcom_smd_rpm *rpm, in qcom_rpm_smd_write() argument
118 mutex_lock(&rpm->lock); in qcom_rpm_smd_write()
130 ret = rpmsg_send(rpm->rpm_channel, pkt, size); in qcom_rpm_smd_write()
134 left = wait_for_completion_timeout(&rpm->ack, RPM_REQUEST_TIMEOUT); in qcom_rpm_smd_write()
138 ret = rpm->ack_status; in qcom_rpm_smd_write()
142 mutex_unlock(&rpm->lock); in qcom_rpm_smd_write()
156 struct qcom_smd_rpm *rpm = dev_get_drvdata(&rpdev->dev); in qcom_smd_rpm_callback() local
165 dev_err(rpm->dev, "invalid request\n"); in qcom_smd_rpm_callback()
190 rpm->ack_status = status; in qcom_smd_rpm_callback()
191 complete(&rpm->ack); in qcom_smd_rpm_callback()
[all …]
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/grubby/grubby/
H A D0004-rpm-sort-include-string.h-for-strverscmp.patch4 Subject: [PATCH] rpm-sort: include string.h for strverscmp
7 rpm-sort.c: In function 'package_version_compare':
8 rpm-sort.c:156:13: error: 'strverscmp' undeclared (first use in this function)
16 rpm-sort.c | 1 +
19 diff --git a/rpm-sort.c b/rpm-sort.c
21 --- a/rpm-sort.c
22 +++ b/rpm-sort.c
25 #include <rpm/rpmlib.h>
H A D0002-Add-another-variable-LIBS-to-provides-libraries-from.patch23 +rpm-sort_LIBS = ${LIBS}
25 all: grubby rpm-sort
30 rpm-sort::rpm-sort.o
32 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ -lrpmio $(rpm-sort_LIBS)
35 rm -f *.o grubby rpm-sort *~
/openbmc/openbmc/poky/meta/recipes-devtools/rpm/files/
H A D0001-Do-not-hardcode-lib-rpm-as-the-installation-path-for.patch4 Subject: [PATCH] Do not hardcode "lib/rpm" as the installation path for
7 Upstream-Status: Denied [https://github.com/rpm-software-management/rpm/pull/263]
22 -set(RPM_CONFIGDIR "${CMAKE_INSTALL_PREFIX}/lib/rpm" CACHE PATH "rpm home")
23 +set(RPM_CONFIGDIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/rpm" CACHE PATH "rpm home")
25 set(RPM_VENDOR "vendor" CACHE STRING "rpm vendor string")
H A D0002-Add-support-for-prefixing-etc-from-RPM_ETCCONFIGDIR-.patch7 This is needed so that rpm can pick up target-specific configuration
40 - SYSCONFDIR "/rpm/macros.*", ":",
41 - SYSCONFDIR "/rpm/macros", ":",
42 - SYSCONFDIR "/rpm/%{_target}/macros", NULL);
43 + etcconfdir, SYSCONFDIR "/rpm/macros.*", ":",
44 + etcconfdir, SYSCONFDIR "/rpm/macros", ":",
45 + etcconfdir, SYSCONFDIR "/rpm/%{_target}/macros", NULL);
53 - const char * const platform_path = SYSCONFDIR "/rpm/platform";
58 + const char * const platform_path = rstrscat(NULL, etcconfdir, SYSCONFDIR "/rpm/platform", NULL…
H A D0001-Set-RPM_PLUGINDIR-in-top-level-CMakeLists.txt.patch14 error: /usr/lib64/rpm/macros: line 1183: Macro %__plugindir has empty body
15 error: /usr/lib64/rpm/macros: line 1183: Macro %__plugindir has empty body
19 Upstream-Status: Submitted [https://github.com/rpm-software-management/rpm/pull/3496]
35 +set(RPM_PLUGINDIR ${CMAKE_INSTALL_FULL_LIBDIR}/rpm-plugins
36 + CACHE PATH "rpm plugin directory")
49 -set(RPM_PLUGINDIR ${CMAKE_INSTALL_FULL_LIBDIR}/rpm-plugins
50 - CACHE PATH "rpm plugin directory")
H A D0001-CMakeLists.txt-set-libdir-to-CMAKE_INSTALL_FULL_LIBD.patch14 $ rpm --showrc | grep _libdir
20 an invalid regular expression when building rpm packages. This results a
28 …mbedded.org/openembedded-core/tree/meta/recipes-devtools/rpm/files/0001-Do-not-hardcode-lib-rpm-as…
29 [2] https://github.com/rpm-software-management/rpm/commit/d2abb7a48760418aacd7f17c8b64e39c25ca50c9
H A D0001-Do-not-read-config-files-from-HOME.patch28 SYSCONFDIR "/rpm/macros.*", ":",
29 SYSCONFDIR "/rpm/macros", ":",
30 - SYSCONFDIR "/rpm/%{_target}/macros", ":",
32 + SYSCONFDIR "/rpm/%{_target}/macros", NULL);
/openbmc/ipmitool/control/
H A Drpmrc1 macrofiles: /usr/lib/rpm/macros:/usr/lib/rpm/%{_target}/macros:/etc/rpm/macros.specspo:/etc/rpm/mac…
/openbmc/openbmc/poky/meta/recipes-devtools/createrepo-c/
H A Dcreaterepo-c_1.2.0.bb2 HOMEPAGE = "https://github.com/rpm-software-management/createrepo_c/wiki"
7 SRC_URI = "git://github.com/rpm-software-management/createrepo_c;branch=master;protocol=https \
9 file://0001-include-rpm-rpmstring.h.patch \
16 DEPENDS = "expat curl glib-2.0 libxml2 openssl bzip2 zlib file sqlite3 xz rpm"
25 # Direct createrepo to read rpm configuration from our sysroot, not the one it was compiled in
28 RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \
36 RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \
/openbmc/openbmc/poky/meta/recipes-core/meta/
H A Dsigning-keys.bb15 PACKAGES =+ "${PN}-ipk ${PN}-rpm ${PN}-packagefeed"
17 FILES:${PN}-rpm = "${sysconfdir}/pki/rpm-gpg"
27 # Export public key of the rpm signing key
29 signer.export_pubkey(os.path.join(d.expand('${B}'), 'rpm-key'),
49 if [ -f "${B}/rpm-key" ]; then
50 …install -D -m 0644 "${B}/rpm-key" "${D}${sysconfdir}/pki/rpm-gpg/RPM-GPG-KEY-${DISTRO}-${DISTRO_CO…
61 if [ -f "${B}/rpm-key" ]; then
62 install -D -m 0644 "${B}/rpm-key" "${DEPLOYDIR}/RPM-GPG-KEY-${DISTRO}-${DISTRO_CODENAME}"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/satyr/
H A Dsatyr_0.43.bb29 PACKAGECONFIG ??= "python3 rpm"
31 PACKAGECONFIG[rpm] = "--with-rpm, --without-rpm, rpm"
/openbmc/linux/drivers/hwmon/
H A Dmax31790.c48 #define RPM_TO_REG(rpm, sr) ((60 * (sr) * 8192) / ((rpm) * 2)) argument
145 static u8 bits_for_tach_period(int rpm) in bits_for_tach_period() argument
149 if (rpm < 500) in bits_for_tach_period()
151 else if (rpm < 1000) in bits_for_tach_period()
153 else if (rpm < 2000) in bits_for_tach_period()
155 else if (rpm < 4000) in bits_for_tach_period()
157 else if (rpm < 8000) in bits_for_tach_period()
169 int sr, rpm; in max31790_read_fan() local
178 rpm = 0; in max31790_read_fan()
180 rpm = RPM_FROM_REG(data->tach[channel], sr); in max31790_read_fan()
[all …]
H A Daspeed-pwm-tacho.c615 int rpm; in rpm_show() local
618 rpm = aspeed_get_fan_tach_ch_rpm(priv, index); in rpm_show()
619 if (rpm < 0) in rpm_show()
620 return rpm; in rpm_show()
622 return sprintf(buf, "%d\n", rpm); in rpm_show()
672 static SENSOR_DEVICE_ATTR_RO(fan1_input, rpm, 0);
673 static SENSOR_DEVICE_ATTR_RO(fan2_input, rpm, 1);
674 static SENSOR_DEVICE_ATTR_RO(fan3_input, rpm, 2);
675 static SENSOR_DEVICE_ATTR_RO(fan4_input, rpm, 3);
676 static SENSOR_DEVICE_ATTR_RO(fan5_input, rpm, 4);
[all …]
/openbmc/linux/drivers/clk/qcom/
H A Dclk-rpm.c96 struct qcom_rpm *rpm; member
101 struct qcom_rpm *rpm; member
128 ret = qcom_rpm_write(r->rpm, QCOM_RPM_ACTIVE_STATE, in clk_rpm_handoff()
132 ret = qcom_rpm_write(r->rpm, QCOM_RPM_SLEEP_STATE, in clk_rpm_handoff()
144 return qcom_rpm_write(r->rpm, QCOM_RPM_ACTIVE_STATE, in clk_rpm_set_rate_active()
152 return qcom_rpm_write(r->rpm, QCOM_RPM_SLEEP_STATE, in clk_rpm_set_rate_sleep()
264 ret = qcom_rpm_write(r->rpm, QCOM_RPM_ACTIVE_STATE, clk_id, &value, 1); in clk_rpm_xo_prepare()
285 ret = qcom_rpm_write(r->rpm, QCOM_RPM_ACTIVE_STATE, clk_id, &value, 1); in clk_rpm_xo_unprepare()
300 ret = qcom_rpm_write(r->rpm, QCOM_RPM_ACTIVE_STATE, in clk_rpm_fixed_prepare()
314 ret = qcom_rpm_write(r->rpm, QCOM_RPM_ACTIVE_STATE, in clk_rpm_fixed_unprepare()
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/dnf/
H A Ddnf_4.22.0.bb5 HOMEPAGE = "https://github.com/rpm-software-management/dnf"
11 SRC_URI = "git://github.com/rpm-software-management/dnf.git;branch=master;protocol=https \
51 python3-rpm \
69 # Direct dnf-native to read rpm configuration from our sysroot, not the one it was compiled in
72 RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm \
78 RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm \
90 …', '', 'does not build without package_rpm in PACKAGE_CLASSES due disabled rpm support in libsolv'…
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Dno-gplv3.inc18 # dnf pulls in gpg which is gpl3; it also pulls in python3-rpm which pulls in rpm-build which pulls…
19 # so install rpm but not dnf
21 CORE_IMAGE_EXTRA_INSTALL:pn-core-image-weston += "rpm"
23 CORE_IMAGE_EXTRA_INSTALL:pn-core-image-full-cmdline += "rpm"
/openbmc/openbmc/poky/meta/recipes-devtools/createrepo-c/createrepo-c/
H A D0001-include-rpm-rpmstring.h.patch4 Subject: [PATCH] include rpm/rpmstring.h
12 Upstream-Status: Submitted [https://github.com/rpm-software-management/createrepo_c/pull/340]
26 +#include <rpm/rpmstring.h>
28 #include <rpm/rpmstring.h>
/openbmc/openbmc/poky/meta/recipes-devtools/libdnf/
H A Dlibdnf_0.73.4.bb2 HOMEPAGE = "https://github.com/rpm-software-management/libdnf"
3 …des a high level package-manager. It's core library of dnf, PackageKit and rpm-ostree. It's replac…
7 SRC_URI = "git://github.com/rpm-software-management/libdnf;branch=dnf-4-master;protocol=https \
22 DEPENDS = "glib-2.0 libsolv libcheck librepo rpm gtk-doc libmodulemd json-c swig-native util-linux"
36 …', '', 'Does not build without package_rpm in PACKAGE_CLASSES due disabled rpm support in libsolv'…

12345678910>>...19