| /linux/arch/riscv/ |
| H A D | Kconfig.errata | 1 menu "CPU errata selection" 4 bool "Andes AX45MP errata" 7 All Andes errata Kconfig depend on this Kconfig. Disabling 8 this Kconfig will disable all Andes errata. Please say "Y" 14 bool "Apply Andes cache management errata" 19 This will apply the cache management errata to handle the 25 bool "MIPS errata" 28 All MIPS errata Kconfig depend on this Kconfig. Disabling 29 this Kconfig will disable all MIPS errata. Please say "Y" 48 bool "SiFive errata" [all …]
|
| H A D | Kbuild | 5 obj-y += errata/
|
| /linux/drivers/pwm/ |
| H A D | pwm-atmel-hlcdc.c | 33 const struct atmel_hlcdc_pwm_errata *errata; member 57 if (!atmel->errata || !atmel->errata->slow_clk_erratum) { in atmel_hlcdc_pwm_apply() 67 if ((atmel->errata && atmel->errata->slow_clk_erratum) || in atmel_hlcdc_pwm_apply() 80 if (!pres && atmel->errata && in atmel_hlcdc_pwm_apply() 81 atmel->errata->div1_clk_erratum) in atmel_hlcdc_pwm_apply() 263 atmel->errata = match->data; in atmel_hlcdc_pwm_probe()
|
| /linux/Documentation/translations/zh_CN/arch/arm64/ |
| H A D | silicon-errata.txt | 1 Chinese translated version of Documentation/arch/arm64/silicon-errata.rst 13 Documentation/arch/arm64/silicon-errata.rst 的中文翻译 33 一个不幸的现实:硬件经常带有一些所谓的“瑕疵(errata)”,导致其在 52 “基于可选方法框架的 ARM 瑕疵补救措施(ARM errata workarounds via
|
| /linux/Documentation/translations/zh_TW/arch/arm64/ |
| H A D | silicon-errata.txt | 3 Chinese translated version of Documentation/arch/arm64/silicon-errata.rst 16 Documentation/arch/arm64/silicon-errata.rst 的中文翻譯 37 一個不幸的現實:硬件經常帶有一些所謂的“瑕疵(errata)”,導致其在 56 “基於可選方法框架的 ARM 瑕疵補救措施(ARM errata workarounds via
|
| /linux/arch/arm/mach-omap2/ |
| H A D | dma.c | 83 unsigned errata = 0; in configure_dma_errata() local 162 return errata; in configure_dma_errata() 190 dma_plat_info.errata = configure_dma_errata(); in omap2_system_dma_init()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-platform-at91 | 10 Due to a chip bug (errata 50.2.6.3 & 50.3.5.3 in 15 The workaround in the errata suggests not to use the
|
| /linux/tools/testing/selftests/kvm/include/x86/ |
| H A D | pmu.h | 119 static inline bool this_pmu_has_errata(enum pmu_errata errata) in this_pmu_has_errata() argument 121 return pmu_errata_mask & BIT_ULL(errata); in this_pmu_has_errata()
|
| /linux/include/linux/ |
| H A D | omap-dma.h | 104 #define IS_DMA_ERRATA(id) (errata & (id)) 105 #define SET_DMA_ERRATA(id) (errata |= (id)) 273 u32 errata; member
|
| /linux/drivers/acpi/ |
| H A D | acpi_processor.c | 35 struct acpi_processor_errata errata __read_mostly; 36 EXPORT_SYMBOL_GPL(errata); 87 errata.piix4.throttle = 1; in acpi_processor_errata_piix4() 110 errata.piix4.bmisx = pci_resource_start(dev, 4); in acpi_processor_errata_piix4() 111 if (errata.piix4.bmisx) in acpi_processor_errata_piix4() 136 errata.piix4.fdma = 1; in acpi_processor_errata_piix4()
|
| /linux/Documentation/userspace-api/ |
| H A D | landlock.rst | 475 Landlock errata 478 In addition to ABI versions, Landlock provides an errata mechanism to track 480 awareness. The errata bitmask can be queried using: 484 int errata; 486 errata = landlock_create_ruleset(NULL, 0, LANDLOCK_CREATE_RULESET_ERRATA); 487 if (errata < 0) { 493 If bit N is set (``errata & (1 << (N - 1))``), then erratum N has been fixed 498 **Most applications should NOT check errata.** In 99.9% of cases, checking 499 errata is unnecessary, increases code complexity, and can potentially 502 Landlock's best-effort protection. When in doubt, ignore errata. [all …]
|
| /linux/arch/arm/mach-omap1/ |
| H A D | dma.c | 244 unsigned errata = 0; in configure_dma_errata() local 253 return errata; in configure_dma_errata() 356 p.errata = configure_dma_errata(); in omap1_system_dma_init()
|
| /linux/arch/riscv/errata/sifive/ |
| H A D | Makefile | 2 obj-y += errata.o
|
| /linux/arch/riscv/errata/andes/ |
| H A D | Makefile | 5 obj-y += errata.o
|
| /linux/arch/riscv/errata/mips/ |
| H A D | Makefile | 5 obj-y += errata.o
|
| /linux/arch/arm/ |
| H A D | Kconfig | 349 specific physical addresses or enable errata workarounds that may 540 bool "ARM errata: FSR write bit incorrect on a SWP to read-only memory" 549 bool "ARM errata: Invalidation of the Instruction Cache operation can fail" 558 bool "ARM errata: Stale prediction on replaced interworking branch" 574 bool "ARM errata: Processor deadlock when a false hazard is created" 590 bool "ARM errata: Data written to the L2 cache can be overwritten with stale data" 605 bool "ARM errata: DMB operation may be faulty" 621 bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption" 639 bool "ARM errata: LoUIS bit field in CLIDR register is incorrect" 650 bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID" [all …]
|
| /linux/arch/riscv/errata/thead/ |
| H A D | Makefile | 11 obj-y += errata.o
|
| /linux/Documentation/virt/kvm/x86/ |
| H A D | index.rst | 12 errata
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | compat.rst | 10 The following chapters document the evolution of the V4L2 API, errata or
|
| /linux/drivers/video/fbdev/aty/ |
| H A D | radeonfb.h | 319 unsigned int errata; member 407 if (rinfo->errata & CHIP_ERRATA_PLL_DUMMYREADS) in radeon_pll_errata_after_index() 414 if (rinfo->errata & (CHIP_ERRATA_PLL_DELAY|CHIP_ERRATA_R300_CG)) in radeon_pll_errata_after_data()
|
| /linux/drivers/usb/gadget/udc/ |
| H A D | atmel_usba_udc.h | 317 const struct usba_udc_errata *errata; member 336 const struct usba_udc_errata *errata; member
|
| /linux/arch/mips/cavium-octeon/executive/ |
| H A D | Makefile | 19 obj-y += cvmx-helper-errata.o cvmx-helper-jtag.o cvmx-boot-vector.o
|
| /linux/arch/arm/boot/dts/ti/omap/ |
| H A D | am57xx-beagle-x15-revb1.dts | 33 /* errata i880 "Ethernet RGMII2 Limited to 10/100 Mbps" */
|
| H A D | am57xx-beagle-x15.dts | 35 /* errata i880 "Ethernet RGMII2 Limited to 10/100 Mbps" */
|
| /linux/arch/arm/mm/ |
| H A D | cache-l2x0.c | 686 const char *errata[8]; in l2c310_fixup() local 695 errata[n++] = "588369"; in l2c310_fixup() 702 errata[n++] = "727915"; in l2c310_fixup() 711 errata[n++] = "752271"; in l2c310_fixup() 718 errata[n++] = "753970"; in l2c310_fixup() 722 errata[n++] = "769419"; in l2c310_fixup() 729 pr_cont(" %s", errata[i]); in l2c310_fixup()
|