Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 313661
b: refs/heads/master
c: e55174e
h: refs/heads/master
i:
  313659: 59dc5b2
v: v3
  • Loading branch information
Michael Neuling authored and Benjamin Herrenschmidt committed Jul 10, 2012
1 parent 75a53a2 commit b03a841
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03a22bfcfdfe88db8b4d2d9ee65476793038364f
refs/heads/master: e55174e911637f0093bc9dac137b568e8a4a1f29
8 changes: 4 additions & 4 deletions trunk/arch/powerpc/kernel/exceptions-64e.S
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ skpinv: addi r6,r6,1 /* Increment */
bne 1b /* If not, repeat */

/* Invalidate all TLBs */
PPC_TLBILX_ALL(0,0)
PPC_TLBILX_ALL(R0,R0)
sync
isync

Expand Down Expand Up @@ -961,7 +961,7 @@ skpinv: addi r6,r6,1 /* Increment */
tlbwe

/* Invalidate TLB1 */
PPC_TLBILX_ALL(0,0)
PPC_TLBILX_ALL(R0,R0)
sync
isync

Expand Down Expand Up @@ -1020,7 +1020,7 @@ skpinv: addi r6,r6,1 /* Increment */
tlbwe

/* Invalidate TLB1 */
PPC_TLBILX_ALL(0,0)
PPC_TLBILX_ALL(R0,R0)
sync
isync

Expand Down Expand Up @@ -1138,7 +1138,7 @@ a2_tlbinit_after_iprot_flush:
tlbwe
#endif /* CONFIG_PPC_EARLY_DEBUG_WSP */

PPC_TLBILX(0,0,0)
PPC_TLBILX(0,R0,R0)
sync
isync

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/kernel/misc_64.S
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ _GLOBAL(real_205_readb)
mtmsrd r0
sync
isync
LBZCIX(R3,0,R3)
LBZCIX(R3,R0,R3)
isync
mtmsrd r7
sync
Expand All @@ -324,7 +324,7 @@ _GLOBAL(real_205_writeb)
mtmsrd r0
sync
isync
STBCIX(R3,0,R4)
STBCIX(R3,R0,R4)
isync
mtmsrd r7
sync
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/powerpc/lib/ldstfp.S
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ _GLOBAL(do_lxvd2x)
beq cr7,1f
STXVD2X(0,R1,R8)
1: li r9,-EFAULT
2: LXVD2X(0,0,R4)
2: LXVD2X(0,R0,R4)
li r9,0
3: beq cr7,4f
bl put_vsr
Expand Down Expand Up @@ -361,7 +361,7 @@ _GLOBAL(do_stxvd2x)
STXVD2X(0,R1,R8)
bl get_vsr
1: li r9,-EFAULT
2: STXVD2X(0,0,R4)
2: STXVD2X(0,R0,R4)
li r9,0
3: beq cr7,4f
LXVD2X(0,R1,R8)
Expand Down
10 changes: 5 additions & 5 deletions trunk/arch/powerpc/mm/tlb_nohash_low.S
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ BEGIN_MMU_FTR_SECTION
andi. r3,r3,MMUCSR0_TLBFI@l
bne 1b
MMU_FTR_SECTION_ELSE
PPC_TLBILX_ALL(0,0)
PPC_TLBILX_ALL(R0,R0)
ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX)
msync
isync
Expand All @@ -279,7 +279,7 @@ BEGIN_MMU_FTR_SECTION
wrteei 0
mfspr r4,SPRN_MAS6 /* save MAS6 */
mtspr SPRN_MAS6,r3
PPC_TLBILX_PID(0,0)
PPC_TLBILX_PID(R0,R0)
mtspr SPRN_MAS6,r4 /* restore MAS6 */
wrtee r10
MMU_FTR_SECTION_ELSE
Expand Down Expand Up @@ -331,7 +331,7 @@ _GLOBAL(_tlbil_pid)
mfmsr r10
wrteei 0
mtspr SPRN_MAS6,r4
PPC_TLBILX_PID(0,0)
PPC_TLBILX_PID(R0,R0)
wrtee r10
msync
isync
Expand All @@ -343,14 +343,14 @@ _GLOBAL(_tlbil_pid_noind)
ori r4,r4,MAS6_SIND
wrteei 0
mtspr SPRN_MAS6,r4
PPC_TLBILX_PID(0,0)
PPC_TLBILX_PID(R0,R0)
wrtee r10
msync
isync
blr

_GLOBAL(_tlbil_all)
PPC_TLBILX_ALL(0,0)
PPC_TLBILX_ALL(R0,R0)
msync
isync
blr
Expand Down

0 comments on commit b03a841

Please sign in to comment.