| /linux/drivers/gpu/drm/nouveau/dispnv04/ |
| H A D | disp.h | 136 const int impl = to_pci_dev(dev->dev)->device & 0x0ff0; in nv_two_heads() local 138 if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_CELSIUS && impl != 0x0100 && in nv_two_heads() 139 impl != 0x0150 && impl != 0x01a0 && impl != 0x0200) in nv_two_heads() 155 const int impl = to_pci_dev(dev->dev)->device & 0x0ff0; in nv_two_reg_pll() local 157 if (impl == 0x0310 || impl == 0x0340 || drm->client.device.info.family >= NV_DEVICE_INFO_V0_CURIE) in nv_two_reg_pll()
|
| /linux/drivers/cpufreq/ |
| H A D | sparc-us3-cpufreq.c | 159 unsigned long manuf, impl, ver; in us3_freq_init() local 167 impl = ((ver >> 32) & 0xffff); in us3_freq_init() 170 (impl == CHEETAH_IMPL || in us3_freq_init() 171 impl == CHEETAH_PLUS_IMPL || in us3_freq_init() 172 impl == JAGUAR_IMPL || in us3_freq_init() 173 impl == PANTHER_IMPL)) { in us3_freq_init()
|
| H A D | sparc-us2e-cpufreq.c | 315 unsigned long manuf, impl, ver; in us2e_freq_init() local 323 impl = ((ver >> 32) & 0xffff); in us2e_freq_init() 325 if (manuf == 0x17 && impl == 0x13) { in us2e_freq_init()
|
| /linux/drivers/perf/arm_cspmu/ |
| H A D | arm_cspmu.c | 263 cspmu->impl.pmiidr); in arm_cspmu_get_identifier() 433 cspmu->impl.module = THIS_MODULE; in arm_cspmu_init_impl_ops() 434 cspmu->impl.pmiidr = arm_cspmu_get_pmiidr(cspmu); in arm_cspmu_init_impl_ops() 435 cspmu->impl.ops = (struct arm_cspmu_impl_ops) { in arm_cspmu_init_impl_ops() 454 cspmu->impl.ops.is_cycle_counter_event = NULL; in arm_cspmu_init_impl_ops() 455 cspmu->impl.ops.set_cc_filter = NULL; in arm_cspmu_init_impl_ops() 460 cspmu->impl.pmiidr = apmt_node->impl_id; in arm_cspmu_init_impl_ops() 463 match = arm_cspmu_impl_match_get(cspmu->impl.pmiidr); in arm_cspmu_init_impl_ops() 472 cspmu->impl.module = match->module; in arm_cspmu_init_impl_ops() 473 cspmu->impl.match = match; in arm_cspmu_init_impl_ops() [all …]
|
| /linux/arch/powerpc/kvm/ |
| H A D | e500mc.c | 228 sregs->u.e.impl.fsl.features = 0; in kvmppc_core_get_sregs_e500mc() 229 sregs->u.e.impl.fsl.svr = vcpu_e500->svr; in kvmppc_core_get_sregs_e500mc() 230 sregs->u.e.impl.fsl.hid0 = vcpu_e500->hid0; in kvmppc_core_get_sregs_e500mc() 231 sregs->u.e.impl.fsl.mcar = vcpu_e500->mcar; in kvmppc_core_get_sregs_e500mc() 250 vcpu_e500->svr = sregs->u.e.impl.fsl.svr; in kvmppc_core_set_sregs_e500mc() 251 vcpu_e500->hid0 = sregs->u.e.impl.fsl.hid0; in kvmppc_core_set_sregs_e500mc() 252 vcpu_e500->mcar = sregs->u.e.impl.fsl.mcar; in kvmppc_core_set_sregs_e500mc()
|
| H A D | e500.c | 370 sregs->u.e.impl.fsl.features = 0; in kvmppc_core_get_sregs_e500() 371 sregs->u.e.impl.fsl.svr = vcpu_e500->svr; in kvmppc_core_get_sregs_e500() 372 sregs->u.e.impl.fsl.hid0 = vcpu_e500->hid0; in kvmppc_core_get_sregs_e500() 373 sregs->u.e.impl.fsl.mcar = vcpu_e500->mcar; in kvmppc_core_get_sregs_e500() 393 vcpu_e500->svr = sregs->u.e.impl.fsl.svr; in kvmppc_core_set_sregs_e500() 394 vcpu_e500->hid0 = sregs->u.e.impl.fsl.hid0; in kvmppc_core_set_sregs_e500() 395 vcpu_e500->mcar = sregs->u.e.impl.fsl.mcar; in kvmppc_core_set_sregs_e500()
|
| /linux/rust/pin-init/ |
| H A D | README.md | 108 `foo` now is of the type [`impl PinInit<Foo>`]. We can now use any smart pointer that we like 126 To declare an init macro/function you just return an [`impl PinInit<T, E>`]: 136 impl DriverData { 137 fn new() -> impl PinInit<Self, Error> { 150 [`impl PinInit<T, E>`] directly from a closure. Of course you have to ensure that the closure 192 impl RawFoo { 193 pub fn new(flags: u32) -> impl PinInit<Self, i32> { 223 impl PinnedDrop for RawFoo { 238 [`impl PinInit<Foo>`]: https://docs.rs/pin-init/latest/pin_init/trait.PinInit.html 239 [`impl PinIni [all...] |
| /linux/drivers/ata/ |
| H A D | ahci_brcm.c | 220 u32 impl; in brcm_ahci_get_portmask() local 222 impl = readl(hpriv->mmio + HOST_PORTS_IMPL); in brcm_ahci_get_portmask() 224 if (fls(impl) > SATA_TOP_MAX_PHYS) in brcm_ahci_get_portmask() 226 impl); in brcm_ahci_get_portmask() 227 else if (!impl) in brcm_ahci_get_portmask() 230 return impl; in brcm_ahci_get_portmask()
|
| /linux/arch/sparc/kernel/ |
| H A D | cpu.c | 544 int manuf, impl; in cpu_type_probe() local 549 impl = ((ver >> 32) & 0xffff); in cpu_type_probe() 550 set_cpu_and_fpu(manuf, impl, impl); in cpu_type_probe()
|
| /linux/drivers/gpu/drm/loongson/ |
| H A D | lsdc_probe.h | 10 unsigned int loongson_cpu_get_prid(u8 *impl, u8 *rev);
|
| /linux/drivers/watchdog/ |
| H A D | sbsa_gwdt.c | 236 int iidr, ver, impl; in sbsa_gwdt_get_version() local 240 impl = (iidr >> SBSA_GWDT_IMPL_SHIFT) & SBSA_GWDT_IMPL_MASK; in sbsa_gwdt_get_version() 244 !action && (impl == SBSA_GWDT_IMPL_MEDIATEK); in sbsa_gwdt_get_version()
|
| /linux/drivers/iommu/arm/arm-smmu/ |
| H A D | Makefile | 4 arm_smmu-objs += arm-smmu.o arm-smmu-impl.o arm-smmu-nvidia.o
|
| H A D | arm-smmu-nvidia.c | 338 nvidia_smmu->smmu.impl = &nvidia_smmu_single_impl; in nvidia_smmu_impl_init() 340 nvidia_smmu->smmu.impl = &nvidia_smmu_impl; in nvidia_smmu_impl_init()
|
| /linux/arch/sparc/mm/ |
| H A D | iommu.c | 61 unsigned int impl, vers; in sbus_iommu_init() local 81 impl = (control & IOMMU_CTRL_IMPL) >> 28; in sbus_iommu_init() 129 impl, vers, iommu->page_table, in sbus_iommu_init()
|
| /linux/lib/crypto/ |
| H A D | Kconfig | 212 # Enable if there's no arch impl or the arch impl requires the generic 213 # impl as a fallback. (Or if selected explicitly.)
|
| /linux/Documentation/translations/zh_CN/rust/ |
| H A D | general-information.rst | 108 ``unsafe impl`` 都遵守实现该特性所需的安全契约。
|
| /linux/tools/arch/powerpc/include/uapi/asm/ |
| H A D | kvm.h | 191 } impl; member
|
| /linux/Documentation/translations/sp_SP/ |
| H A D | memory-barriers.txt | 82 (*) Barreras de memoria implícitas del kernel. 466 proporcionan barreras de dependencia de dirección implícitas. 502 Y un par de variedades implícitas: 646 de dirección implícita desde el lanzamiento del kernel v4.15: 655 <barrera de dependencia de dirección implícita> 693 dirección implícita del READ_ONCE() moderno: 728 (implícita) de dependencia de direcciones para que funcione correctamente. 732 <barrera implícita de dependencia de direcciones> 1018 <barrera de dependencia de dirección implícita> 1028 <barrera de control implícita> [all …]
|
| /linux/Documentation/translations/sp_SP/process/ |
| H A D | deprecated.rst | 220 Switch case fall-through implícito 241 permiten 'fall-through' implícitos. Para identificar 'fall-through'
|
| H A D | maintainer-kvm-x86.rst | 176 comportamiento de la arquitectura, por lo que está implícito que el 358 muchos casos, el reproductor está implícito, por ejemplo, para errores de
|
| /linux/Documentation/translations/pt_BR/process/ |
| H A D | deprecated.rst | 211 Passagem direta implícita no switch case (fall-through) 232 passagem direta implícita. Para identificar os casos de passagem direta
|
| H A D | 5.Posting.rst | 282 fontes da pessoa nomeada. Para esses três, a permissão implícita é suficiente se
|
| /linux/lib/crypto/arm/ |
| H A D | sha1-armv4-large.S | 25 @ impl size in bytes comp cycles[*] measured performance
|
| /linux/Documentation/arch/riscv/ |
| H A D | hwprobe.rst | 24 arch, impl), the returned value will only be valid if all CPUs in the given set
|