Home
last modified time | relevance | path

Searched full:engines (Results 1 – 25 of 497) sorted by relevance

12345678910>>...20

/openbmc/linux/drivers/gpu/drm/i915/gem/
H A Di915_gem_context_types.h34 * struct i915_gem_engines - A set of engines
38 /** @link: Link in i915_gem_context::stale::engines */
45 /** @fence: Fence used for delayed destruction of engines */
51 /** @num_engines: Number of engines in this set */
54 /** @engines: Array of engines */
55 struct intel_context *engines[]; member
62 /** @idx: Index into i915_gem_engines::engines */
65 /** @engines: Engine set being iterated */
66 const struct i915_gem_engines *engines; member
89 * This struct describes an engine that a context may contain. Engines
[all …]
H A Di915_gem_context.c393 struct i915_gem_proto_engine *engines; member
422 if (set->engines[idx].type != I915_GEM_ENGINE_TYPE_INVALID) { in set_proto_ctx_engines_balance()
449 if (copy_from_user(&ci, &ext->engines[n], sizeof(ci))) { in set_proto_ctx_engines_balance()
467 set->engines[idx].type = I915_GEM_ENGINE_TYPE_PHYSICAL; in set_proto_ctx_engines_balance()
468 set->engines[idx].engine = siblings[0]; in set_proto_ctx_engines_balance()
471 set->engines[idx].type = I915_GEM_ENGINE_TYPE_BALANCED; in set_proto_ctx_engines_balance()
472 set->engines[idx].num_siblings = num_siblings; in set_proto_ctx_engines_balance()
473 set->engines[idx].siblings = siblings; in set_proto_ctx_engines_balance()
514 if (set->engines[idx].type == I915_GEM_ENGINE_TYPE_INVALID) { in set_proto_ctx_engines_bond()
519 if (set->engines[idx].type != I915_GEM_ENGINE_TYPE_PHYSICAL) { in set_proto_ctx_engines_bond()
[all …]
H A Di915_gem_context.h186 return rcu_dereference_protected(ctx->engines, in i915_gem_context_engines()
211 struct i915_gem_engines *e = rcu_dereference(ctx->engines); in i915_gem_context_get_engine()
214 else if (likely(idx < e->num_engines && e->engines[idx])) in i915_gem_context_get_engine()
215 ce = intel_context_get(e->engines[idx]); in i915_gem_context_get_engine()
225 struct i915_gem_engines *engines) in i915_gem_engines_iter_init() argument
227 it->engines = engines; in i915_gem_engines_iter_init()
234 #define for_each_gem_engine(ce, engines, it) \ argument
235 for (i915_gem_engines_iter_init(&(it), (engines)); \
/openbmc/linux/drivers/gpu/drm/i915/gem/selftests/
H A Dmock_context.c32 INIT_LIST_HEAD(&ctx->stale.engines); in mock_context()
52 RCU_INIT_POINTER(ctx->engines, e); in mock_context()
113 struct i915_gem_engines *engines; in live_context_for_engine() local
118 engines = alloc_engines(1); in live_context_for_engine()
119 if (!engines) in live_context_for_engine()
124 __free_engines(engines, 0); in live_context_for_engine()
130 __free_engines(engines, 0); in live_context_for_engine()
135 engines->engines[0] = ce; in live_context_for_engine()
136 engines->num_engines = 1; in live_context_for_engine()
140 engines = rcu_replace_pointer(ctx->engines, engines, 1); in live_context_for_engine()
[all …]
/openbmc/webui-vue/
H A Dpackage-lock.json67 "engines": { object
75 "engines": { object
89 "engines": { object
100 "engines": { object
112 "engines": { object
120 "engines": { object
144 "engines": { object
162 "engines": { object
174 "engines": { object
187 "engines": { object
[all …]
/openbmc/linux/drivers/crypto/marvell/octeontx2/
H A Dotx2_cptpf_ucode.h15 * On OcteonTX2 platform IPSec ucode can use both IE and SE engines therefore
16 * IE and SE engines can be attached to the same engine group.
26 /* Maximum number of supported engines/cores on OcteonTX2/CN10K platform */
94 /* Maximum and current number of engines available for all engine groups */
104 /* Engines reserved to an engine group */
107 int count; /* number of engines attached */
109 unsigned long *bmap; /* attached engines bitmap */
110 struct otx2_cpt_ucode *ucode; /* ucode used by these engines */
132 /* engines attached */
141 * when it has engines attached and ucode loaded
[all …]
/openbmc/linux/drivers/platform/x86/
H A Dpcengines-apuv2.c4 * PC-Engines APUv2/APUv3 board platform driver
140 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
149 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
158 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
159 DMI_MATCH(DMI_BOARD_NAME, "PC Engines apu2")
168 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
177 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
186 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
187 DMI_MATCH(DMI_BOARD_NAME, "PC Engines apu3")
195 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
[all …]
/openbmc/linux/drivers/gpu/drm/i915/gt/
H A Dselftest_rc6.c163 struct intel_engine_cs *engine, **engines; in randomised_engines() local
173 engines = kmalloc_array(n, sizeof(*engines), GFP_KERNEL); in randomised_engines()
174 if (!engines) in randomised_engines()
179 engines[n++] = engine; in randomised_engines()
181 i915_prandom_shuffle(engines, sizeof(*engines), n, prng); in randomised_engines()
184 return engines; in randomised_engines()
190 struct intel_engine_cs **engines; in live_rc6_ctx_wa() local
199 engines = randomised_engines(gt, &prng, &count); in live_rc6_ctx_wa()
200 if (!engines) in live_rc6_ctx_wa()
204 struct intel_engine_cs *engine = engines[n]; in live_rc6_ctx_wa()
[all …]
H A Dintel_engine_user.c83 struct list_head *engines) in sort_engines() argument
91 list_add((struct list_head *)&engine->uabi_node, engines); in sort_engines()
93 list_sort(NULL, engines, engine_cmp); in sort_engines()
113 for_each_uabi_engine(engine, i915) { /* all engines must agree! */ in set_scheduler_caps()
212 LIST_HEAD(engines); in intel_engines_driver_register()
214 sort_engines(i915, &engines); in intel_engines_driver_register()
218 list_for_each_safe(it, next, &engines) { in intel_engines_driver_register()
224 continue; /* ignore incomplete engines */ in intel_engines_driver_register()
/openbmc/linux/drivers/crypto/marvell/octeontx/
H A Dotx_cptpf_ucode.h22 * On OcteonTX 83xx platform, only one type of engines is allowed to be
39 /* Maximum number of supported engines/cores on OcteonTX 83XX platform */
101 /* Maximum and current number of engines available for all engine groups */
109 /* Engines reserved to an engine group */
112 int count; /* number of engines attached */
114 unsigned long *bmap; /* attached engines bitmap */
115 struct otx_cpt_ucode *ucode; /* ucode used by these engines */
138 /* engines attached */
149 * when it has engines attached and ucode loaded
159 int engs_num; /* total number of engines supported */
[all …]
/openbmc/linux/drivers/net/ethernet/packetengines/
H A DKconfig3 # Packet Engines device configuration
7 bool "Packet Engines devices"
15 the questions about Packet Engines devices. If you say Y, you will
21 tristate "Packet Engines Hamachi GNIC-II support"
31 tristate "Packet Engines Yellowfin Gigabit-NIC support"
35 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
/openbmc/openbmc/meta-security/meta-tpm/recipes-tpm2/tpm2-tss-engine/
H A Dtpm2-tss-engine_1.2.0.bb30 PACKAGES += "${PN}-engines ${PN}-engines-staticdev ${PN}-bash-completion"
32 FILES:${PN}-dev = "${libdir}/engines-3/tpm2tss.so ${includedir}/*"
33 FILES:${PN}-engines = "${libdir}/engines-3/lib*.so*"
34 FILES:${PN}-engines-staticdev = "${libdir}/engines-3/libtpm2tss.a"
/openbmc/openbmc/meta-security/meta-tpm/recipes-tpm1/openssl-tpm-engine/
H A Dopenssl-tpm-engine_0.5.0.bb49 FILES:${PN}-staticdev += "${libdir}/ssl/engines-3/tpm.la"
51 ${libdir}/ssl/engines-3/.debug \
52 ${libdir}/engines-3/.debug \
53 ${prefix}/local/ssl/lib/engines-3/.debug \
56 ${libdir}/ssl/engines-3/tpm.so* \
57 ${libdir}/engines-3/tpm.so* \
59 ${prefix}/local/ssl/lib/engines-3/tpm.so* \
/openbmc/linux/Documentation/devicetree/bindings/fsi/
H A Dfsi.txt5 engines within those slaves. However, we have a facility to match devicetree
6 nodes to probed engines. This allows for fsi engines to expose non-probeable
16 represent the FSI slaves and their slave engines. As a basic outline:
41 adding subordinate device tree nodes as children of FSI engines.
79 Each slave provides an address-space, under which the engines are accessible.
91 FSI engines (devices)
94 Engines are identified by their address under the slaves' address spaces. We
116 additional engines, but they don't necessarily need to be describe in the
/openbmc/linux/Documentation/netlabel/
H A Dintroduction.rst15 is composed of three main components, the protocol engines, the communication
18 Protocol Engines
21 The protocol engines are responsible for both applying and retrieving the
25 refrain from calling the protocol engines directly, instead they should use
45 independent interface to the underlying NetLabel protocol engines. In addition
/openbmc/openbmc/poky/meta/recipes-connectivity/openssl/
H A Dopenssl_3.4.0.bb183 OPENSSL_ENGINES=${libdir}/engines-3 \
227 install -d ${D}${PTEST_PATH}/engines
228 install -m755 ${B}/engines/dasync.so ${D}${PTEST_PATH}/engines/
229 install -m755 ${B}/engines/ossltest.so ${D}${PTEST_PATH}/engines/
230 ln -s ${libdir}/engines-3/loader_attic.so ${D}${PTEST_PATH}/engines/
239 PACKAGES =+ "libcrypto libssl openssl-conf ${PN}-engines ${PN}-misc ${PN}-ossl-module-legacy"
246 FILES:${PN}-engines = "${libdir}/engines-3"
248 FILES:${PN}-engines:append:mingw32:class-nativesdk = " ${prefix}${libdir}/engines-3"
258 RDEPENDS:${PN}-ptest += "openssl-bin perl perl-modules bash sed openssl-engines openssl-ossl-module…
/openbmc/linux/drivers/crypto/marvell/cesa/
H A Dcesa.c377 struct mv_cesa_engine *engine = &cesa->engines[idx]; in mv_cesa_get_sram()
422 struct mv_cesa_engine *engine = &cesa->engines[idx]; in mv_cesa_put_sram()
439 struct mv_cesa_engine *engines; in mv_cesa_probe() local
470 cesa->engines = devm_kcalloc(dev, caps->nengines, sizeof(*engines), in mv_cesa_probe()
472 if (!cesa->engines) in mv_cesa_probe()
490 struct mv_cesa_engine *engine = &cesa->engines[i]; in mv_cesa_probe()
574 clk_disable_unprepare(cesa->engines[i].zclk); in mv_cesa_probe()
575 clk_disable_unprepare(cesa->engines[i].clk); in mv_cesa_probe()
577 if (cesa->engines[i].irq > 0) in mv_cesa_probe()
578 irq_set_affinity_hint(cesa->engines[i].irq, NULL); in mv_cesa_probe()
[all …]
/openbmc/linux/include/uapi/drm/
H A Di915_drm.h160 * Different engines serve different roles, and there may be more than one
163 * on a certain subset of engines, or for providing information about that
170 * Render engines support instructions used for 3D, Compute (GPGPU),
181 * Copy engines (also referred to as "blitters") support instructions
184 * Copy engines can perform pre-defined logical or bitwise operations
192 * Video engines (also referred to as "bit stream decode" (BSD) or
201 * Video enhancement engines (also referred to as "vebox") support
209 * Compute engines support a subset of the instructions available
210 * on render engines: compute engines support Compute (GPGPU) and
728 * value reports the support of context isolation for individual engines by
[all …]
/openbmc/linux/tools/include/uapi/drm/
H A Di915_drm.h160 * Different engines serve different roles, and there may be more than one
163 * on a certain subset of engines, or for providing information about that
170 * Render engines support instructions used for 3D, Compute (GPGPU),
181 * Copy engines (also referred to as "blitters") support instructions
184 * Copy engines can perform pre-defined logical or bitwise operations
192 * Video engines (also referred to as "bit stream decode" (BSD) or
201 * Video enhancement engines (also referred to as "vebox") support
209 * Compute engines support a subset of the instructions available
210 * on render engines: compute engines support Compute (GPGPU) and
728 * value reports the support of context isolation for individual engines by
[all …]
/openbmc/linux/drivers/leds/
H A Dleds-apu.c86 /* PC Engines APU with factory bios "SageBios_PCEngines_APU-45" */
90 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
94 /* PC Engines APU with "Mainline" bios >= 4.6.8 */
98 DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"),
184 if (!(dmi_match(DMI_SYS_VENDOR, "PC Engines") && in apu_led_init()
186 pr_err("No PC Engines APUv1 board detected. For APUv2,3 support, enable CONFIG_PCENGINES_APU2\n"); in apu_led_init()
220 MODULE_DESCRIPTION("PC Engines APU1 front LED driver");
/openbmc/linux/drivers/gpu/drm/i915/gt/uc/
H A Dselftest_guc_multi_lrc.c13 static void logical_sort(struct intel_engine_cs **engines, int num_engines) in logical_sort() argument
20 if (engines[j]->logical_mask & BIT(i)) { in logical_sort()
21 sorted[i] = engines[j]; in logical_sort()
26 memcpy(*engines, *sorted, in logical_sort()
122 gt_dbg(gt, "Not enough engines in class: %d\n", class); in __intel_guc_multi_lrc_basic()
/openbmc/linux/Documentation/devicetree/bindings/crypto/
H A Daspeed,ast2600-acry.yaml7 title: ASPEED ACRY ECDSA/RSA Hardware Accelerator Engines
13 The ACRY ECDSA/RSA engines is designed to accelerate the throughput
15 divided into two independent engines - ECC Engine and RSA Engine.
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libp11/files/
H A D0001-detect-correct-openssl-3.x.patch24 - 3.0.*) # Predicted engines directory prefix for OpenSSL 3.x
25 + 3.*) # Predicted engines directory prefix for OpenSSL 3.x
28 1.1.*) # Predicted engines directory prefix for OpenSSL 1.1.x
/openbmc/linux/drivers/gpu/drm/i915/
H A DKconfig.profile45 The driver sends a periodic heartbeat down all active engines to
70 certain platforms and certain engines which will be reflected in the
74 int "Preempt timeout for compute engines (ms, jiffy granularity)"
89 certain platforms and certain engines which will be reflected in the
/openbmc/qemu/docs/specs/
H A Dfsi.rst22 "engines" that drive accesses on buses internal and external to the POWER
23 chip. Examples include the SBEFIFO and I2C masters. The engines hang off of
35 of engines in a CFAM.
49 The configuration block presents engines in the order they are attached to the

12345678910>>...20