Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0410ec07 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge c4e0df05 on remote branch

Change-Id: Id52d8bb48de42780ad013222ee6ce4c68389a0f5
parents c04c90ae c4e0df05
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -59,6 +59,7 @@ stable kernels.
| ARM            | Cortex-A73      | #858921         | ARM64_ERRATUM_858921        |
| ARM            | Cortex-A55      | #1024718        | ARM64_ERRATUM_1024718       |
| ARM            | Cortex-A76      | #1463225        | ARM64_ERRATUM_1463225       |
| ARM            | Cortex-A77      | #1542418        | ARM64_ERRATUM_1542418       |
| ARM            | MMU-500         | #841119,#826419 | N/A                         |
|                |                 |                 |                             |
| Cavium         | ThunderX ITS    | #22375, #24313  | CAVIUM_ERRATUM_22375        |
+5 −0
Original line number Diff line number Diff line
@@ -366,6 +366,11 @@ static inline int hyp_map_aux_data(void)

#define kvm_phys_to_vttbr(addr)		(addr)

static inline void kvm_workaround_1542418_vmid_rollover(void)
{
	/* not affected */
}

#endif	/* !__ASSEMBLY__ */

#endif /* __ARM_KVM_MMU_H__ */
+16 −0
Original line number Diff line number Diff line
@@ -524,6 +524,22 @@ config ARM64_ERRATUM_1463225

	  If unsure, say Y.

config ARM64_ERRATUM_1542418
	bool "Cortex-A77: The core might fetch a stale instuction, violating the ordering of instruction fetches"
	default y
	help
	  This option adds a workaround for Arm Cortex-A77 erratum 1542418.

	  On the affected Cortex-A77 cores (r0p0 and r1p0), software relying
	  on the prefetch-speculation-protection instead of explicit
	  synchronisation may fetch a stale instruction from a CPU-specific
	  cache. This violates the ordering rules for instruction fetches.

	  Work around the erratum by ensuring that 60 ASIDs are selected
	  before any ASID is reused.

	  If unsure, say Y.

config CAVIUM_ERRATUM_22375
	bool "Cavium erratum 22375, 24313"
	default y
+1 −0
Original line number Diff line number Diff line
@@ -284,6 +284,7 @@ CONFIG_QSEECOM=y
CONFIG_UID_SYS_STATS=y
CONFIG_OKL4_USER_VIRQ=y
CONFIG_WIGIG_SENSING_SPI=m
CONFIG_QTI_XR_SMRTVWR_MISC=y
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_SG=y
+1 −0
Original line number Diff line number Diff line
@@ -296,6 +296,7 @@ CONFIG_QSEECOM=y
CONFIG_UID_SYS_STATS=y
CONFIG_OKL4_USER_VIRQ=y
CONFIG_WIGIG_SENSING_SPI=m
CONFIG_QTI_XR_SMRTVWR_MISC=y
CONFIG_SCSI=y
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_SG=y
Loading