Home
last modified time | relevance | path

Searched refs:Core (Results 1 – 25 of 208) sorted by relevance

123456789

/linux/samples/rust/
H A Drust_driver_usb.rs9 Core, //
32 intf: &'bound usb::Interface<Core<'_>>, in probe()
36 let dev: &device::Device<Core<'_>> = intf.as_ref(); in disconnect()
42 fn disconnect<'bound>(intf: &'bound usb::Interface<Core<'_>>, _data: Pin<&Self>) {
43 let dev: &device::Device<Core<'_>> = intf.as_ref();
24 probe( intf: &usb::Interface<Core>, _id: &usb::DeviceId, _info: &Self::IdInfo, ) -> impl PinInit<Self, Error> probe() argument
34 disconnect(intf: &usb::Interface<Core>, _data: Pin<&Self>) disconnect() argument
H A Drust_driver_i2c.rs7 device::Core,
42 idev: &'bound i2c::I2cClient<Core<'_>>,
56 fn shutdown<'bound>(idev: &'bound i2c::I2cClient<Core<'_>>, _this: Pin<&Self>) { in probe()
60 fn unbind<'bound>(idev: &'bound i2c::I2cClient<Core<'_>>, _this: Pin<&Self>) { in shutdown()
45 probe( idev: &i2c::I2cClient<Core>, info: Option<&Self::IdInfo>, ) -> impl PinInit<Self, Error> probe() argument
59 shutdown(idev: &i2c::I2cClient<Core>, _this: Pin<&Self>) shutdown() argument
63 unbind(idev: &i2c::I2cClient<Core>, _this: Pin<&Self>) unbind() argument
H A Drust_driver_auxiliary.rs11 Core, //
45 adev: &'bound auxiliary::Device<Core<'_>>, in probe()
100 pdev: &'bound pci::Device<Core<'_>>, in connect()
38 probe(adev: &auxiliary::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> probe() argument
72 probe(pdev: &pci::Device<Core>, _info: &Self::IdInfo) -> impl PinInit<Self, Error> probe() argument
H A Drust_driver_pci.rs10 Core, //
145 pdev: &'bound pci::Device<Core<'_>>,
176 fn unbind<'bound>(_pdev: &'bound pci::Device<Core<'_>>, this: Pin<&Self::Data<'bound>>) {
100 probe(pdev: &pci::Device<Core>, info: &Self::IdInfo) -> impl PinInit<Self, Error> probe() argument
131 unbind(pdev: &pci::Device<Core>, this: Pin<&Self>) unbind() argument
H A Drust_debugfs.rs41 device::Core,
124 pdev: &'bound platform::Device<Core<'_>>,
150 pdev: &'a platform::Device<Core<'b>>, in new()
110 probe( pdev: &platform::Device<Core>, _info: Option<&Self::IdInfo>, ) -> impl PinInit<Self, Error> probe() argument
H A Drust_i2c_client.rs112 pdev: &'bound platform::Device<device::Core<'_>>,
132 pdev: &'bound platform::Device<device::Core<'_>>,
114 probe( pdev: &platform::Device<device::Core>, _info: Option<&Self::IdInfo>, ) -> impl PinInit<Self, Error> probe() argument
133 unbind(pdev: &platform::Device<device::Core>, _this: Pin<&Self>) unbind() argument
/linux/Documentation/arch/x86/
H A Dtopology.rst91 - On AMD, the Node ID or Core Complex ID containing the Last Level
108 AMDs nomenclature for CMT threads is "Compute Unit Core". The kernel always
156 1) CPUID leaf 0x80000026 [Extended CPU Topology] (Core::X86::Cpuid::ExCpuTopology)
159 and provides the topology information of Core, Complex, CCD (Die), and
167 the level describes - Core, Complex, CCD(Die), or the Socket.
180 2) CPUID leaf 0x0000000B [Extended Topology Enumeration] (Core::X86::Cpuid::ExtTopEnum)
201 3) CPUID leaf 0x80000008 ECX [Size Identifiers] (Core::X86::Cpuid::SizeId)
225 4) CPUID leaf 0x8000001E [Extended APIC ID, Core Identifiers, Node Identifiers]
226 (Core::X86::Cpuid::{ExtApicId,CoreId,NodeId})
230 [Feature Identifiers] (Core::X86::Cpuid::FeatureExtIdEcx).
[all …]
/linux/Documentation/arch/arm/
H A Dmarvell.rst31 Core:
79 Core:
111 Core:
132 Core:
151 Core:
160 Core:
177 Core:
187 Core:
202 Core:
222 Core: ARM Cortex A72
[all …]
/linux/Documentation/hwmon/
H A Dk8temp.rst36 temp1_input temperature of Core 0 and "place" 0
37 temp2_input temperature of Core 0 and "place" 1
38 temp3_input temperature of Core 1 and "place" 0
39 temp4_input temperature of Core 1 and "place" 1
H A Dsmpro-hwmon.rst58 temp4_input millicelsius RO Max temperature reported among Core VRDs
76 in0_input millivolts RO Core voltage
81 cur1_input milliamperes RO Core VRD current
86 power1_input microwatts RO Core VRD power
H A Dk10temp.rst8 Socket F: Quad-Core/Six-Core/Embedded Opteron (but see below)
10 Socket AM2+: Quad-Core Opteron, Phenom (II) X3/X4, Athlon X2 (but see below)
12 Socket AM3: Quad-Core Opteron, Athlon/Phenom II X2/X3/X4, Sempron II
132 Core Complex Die (CCD) temperatures. Up to 8 such temperatures are reported
/linux/rust/kernel/
H A Ddevice.rs511 pub struct Core<'a>(PhantomData<fn(&'a ()) -> &'a ()>); struct
561 impl<'a> Sealed for super::Core<'a> {} implementation
568 impl<'a> DeviceContext for Core<'a> {} implementation
677 <'a> $crate::device::CoreInternal<'a> => $crate::device::Core<'a>
684 <'a> $crate::device::Core<'a> => $crate::device::Bound
731 <'a> $crate::device::Core<'a>, $device
H A Dpci.rs259 /// # use kernel::{bindings, device::Core, pci};
280 /// _pdev: &'bound pci::Device<Core<'_>>,
309 dev: &'bound Device<device::Core<'_>>,
319 /// `&Device<Core>` or `&Device<Bound>` reference. For instance, drivers may try to perform I/O
323 fn unbind<'bound>(dev: &'bound Device<device::Core<'_>>, this: Pin<&Self::Data<'bound>>) { in unbind()
357 /// # use kernel::{device::Core, pci::{self, Vendor}, prelude::*};
358 /// fn log_device_info(pdev: &pci::Device<Core<'_>>) -> Result {
449 impl<'a> Device<device::Core<'a>> {
475 impl<'a> crate::dma::Device<'a> for Device<device::Core<'a>> {}
310 probe(dev: &Device<device::Core>, id_info: &Self::IdInfo) -> impl PinInit<Self, Error> probe() argument
322 unbind(dev: &Device<device::Core>, this: Pin<&Self>) unbind() argument
/linux/Documentation/devicetree/bindings/display/ti/
H A Dti,omap-dss.txt11 The OMAP Display Subsystem (DSS) hardware consists of DSS Core, DISPC module and
12 a number of encoder modules. All DSS versions contain DSS Core and DISPC, but
15 The DSS Core is the parent of the other DSS modules, and manages clock routing,
27 The DSS Core and the encoders have video port outputs. The structure of the
90 DSS Core --(MIPI DPI)--> TFP410 --(DVI)--> DVI Connector
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-platform-devices-ampere-smpro39 …| CPM (core) | 0 | 2 | Armv8 Core 1 | CPM # …
154 …| Core's CE | /sys/bus/platform/devices/smpro-errmon.*/error_core_ce | Core has CE error …
156 …| Core's UE | /sys/bus/platform/devices/smpro-errmon.*/error_core_ue | Core has UE error …
192 …| Core's CE | /sys/bus/platform/devices/smpro-errmon.*/overflow_core_ce | Core CE error overflow…
194 …| Core's UE | /sys/bus/platform/devices/smpro-errmon.*/overflow_core_ue | Core UE error overflow…
/linux/drivers/platform/x86/amd/hfi/
H A DKconfig7 bool "AMD Hetero Core Hardware Feedback Driver"
12 Select this option to enable the AMD Heterogeneous Core Hardware
/linux/arch/arm64/boot/dts/apple/
H A Ds5l8960x-pmgr.dtsi15 apple,always-on; /* Core device */
24 apple,always-on; /* Core device */
51 apple,always-on; /* Core device */
60 apple,always-on; /* Core device */
69 apple,always-on; /* Core device */
78 apple,always-on; /* Core device */
404 apple,always-on; /* Core device */
456 apple,always-on; /* Core device */
465 apple,always-on; /* Core device */
474 apple,always-on; /* Core device */
[all …]
H A Dt7001-pmgr.dtsi15 apple,always-on; /* Core device */
24 apple,always-on; /* Core device */
33 apple,always-on; /* Core device */
42 apple,always-on; /* Core device */
59 apple,always-on; /* Core device */
68 apple,always-on; /* Core device */
77 apple,always-on; /* Core device */
327 apple,always-on; /* Core device */
499 apple,always-on; /* Core device */
508 apple,always-on; /* Core device */
[all …]
H A Dt7000-pmgr.dtsi14 apple,always-on; /* Core device */
23 apple,always-on; /* Core device */
32 apple,always-on; /* Core device */
49 apple,always-on; /* Core device */
58 apple,always-on; /* Core device */
67 apple,always-on; /* Core device */
317 apple,always-on; /* Core device */
481 apple,always-on; /* Core device */
490 apple,always-on; /* Core device */
535 apple,always-on; /* Core device */
H A Dt8012-pmgr.dtsi15 apple,always-on; /* Core device */
24 apple,always-on; /* Core device */
33 apple,always-on; /* Core device */
76 apple,always-on; /* Core device */
253 apple,always-on; /* Core device */
286 apple,always-on; /* Core device */
773 apple,always-on; /* Core AON device */
782 apple,always-on; /* Core AON device */
791 apple,always-on; /* Core AON device */
800 apple,always-on; /* Core AON device */
[all …]
/linux/sound/pcmcia/
H A DKconfig25 tristate "Sound Core PDAudioCF"
28 Say Y here to include support for Sound Core PDAudioCF
/linux/Documentation/admin-guide/hw-vuln/
H A Dcore-scheduling.rst4 Core Scheduling
6 Core scheduling support allows userspace to define groups of tasks that can
18 full mitigation of cross-HT attacks is to disable Hyper Threading (HT). Core
34 Core scheduling support is enabled via the ``CONFIG_SCHED_CORE`` config option.
40 Core scheduling can be enabled via the ``PR_SCHED_CORE`` prctl interface.
151 Core scheduling maintains trust relationships amongst groups of tasks by
166 Core scheduling tries to guarantee that only trusted tasks run concurrently on a
173 Core scheduling selects only trusted tasks to run together. IPI is used to notify
185 Core scheduling cannot protect against MDS attacks between the siblings
194 Core scheduling cannot protect against an L1TF guest attacker exploiting a
[all …]
/linux/Documentation/devicetree/bindings/media/
H A Dimg-ir-rev1.txt16 1st: Core clock (defaults to 32.768KHz if omitted).
22 "core": Core clock.
/linux/Documentation/driver-api/nfc/
H A Dnfc-hci.rst2 HCI backend for NFC Core
12 enables easy writing of HCI-based NFC drivers. The HCI layer runs as an NFC Core
13 backend, implementing an abstract nfc device and translating NFC Core API
19 HCI registers as an nfc device with NFC Core. Requests coming from userspace are
20 routed through netlink sockets to NFC Core and then to HCI. From this point,
26 and a translation will be forwarded to NFC Core as needed. There are hooks to
221 Any entrypoint in HCI called from NFC Core
277 Typically, such an event will be propagated to NFC Core from MSGRXWQ context.
282 Errors that occur synchronously with the execution of an NFC Core request are
304 command with that error, or notify NFC Core directly if no command is
[all …]
/linux/Documentation/driver-api/thermal/
H A Dexynos_thermal.rst69 Kernel Core thermal framework
74 TMU configuration data -----> TMU Driver <----> Exynos Core thermal wrapper
87 c) Exynos Core thermal wrapper:

123456789