Commit 4628d7ca authored by Mark Maule's avatar Mark Maule Committed by Tony Luck

[IA64-SGI] disable TIOCA GART TLB prefetching

Patch to disable SGI TIOCA GART TLB prefetching due to hw bug.
Signed-off-by: default avatarMark Maule <maule@sgi.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent e96c9b47
...@@ -171,15 +171,15 @@ tioca_gart_init(struct tioca_kernel *tioca_kern) ...@@ -171,15 +171,15 @@ tioca_gart_init(struct tioca_kernel *tioca_kern)
* use agp op-combining * use agp op-combining
* use GET semantics to fetch memory * use GET semantics to fetch memory
* participate in coherency domain * participate in coherency domain
* prefetch TLB entries * DISABLE GART PREFETCHING due to hw bug tracked in SGI PV930029
*/ */
ca_base->ca_control1 |= CA_AGPDMA_OP_ENB_COMBDELAY; /* PV895469 ? */ ca_base->ca_control1 |= CA_AGPDMA_OP_ENB_COMBDELAY; /* PV895469 ? */
ca_base->ca_control2 &= ~(CA_GART_MEM_PARAM); ca_base->ca_control2 &= ~(CA_GART_MEM_PARAM);
ca_base->ca_control2 |= (0x2ull << CA_GART_MEM_PARAM_SHFT); ca_base->ca_control2 |= (0x2ull << CA_GART_MEM_PARAM_SHFT);
tioca_kern->ca_gart_iscoherent = 1; tioca_kern->ca_gart_iscoherent = 1;
ca_base->ca_control2 |= ca_base->ca_control2 &=
(CA_GART_WR_PREFETCH_ENB | CA_GART_RD_PREFETCH_ENB); ~(CA_GART_WR_PREFETCH_ENB | CA_GART_RD_PREFETCH_ENB);
/* /*
* Unmask GART fetch error interrupts. Clear residual errors first. * Unmask GART fetch error interrupts. Clear residual errors first.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment