Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 60563
b: refs/heads/master
c: b7abc5c
h: refs/heads/master
i:
  60561: 9ef5c0f
  60559: 0b9dffd
v: v3
  • Loading branch information
Sachin P. Sant authored and Paul Mackerras committed Jun 25, 2007
1 parent 421c198 commit c01fc58
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 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: 7ccb4a662462616f6be5053e26b79580e02f1529
refs/heads/master: b7abc5c53e3c65b8e931bd96db2d08ba670e111a
17 changes: 14 additions & 3 deletions trunk/arch/powerpc/platforms/pseries/lpar.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,12 +373,23 @@ static void pSeries_lpar_hptab_clear(void)
{
unsigned long size_bytes = 1UL << ppc64_pft_size;
unsigned long hpte_count = size_bytes >> 4;
unsigned long dummy1, dummy2;
unsigned long dummy1, dummy2, dword0;
long lpar_rc;
int i;

/* TODO: Use bulk call */
for (i = 0; i < hpte_count; i++)
plpar_pte_remove_raw(0, i, 0, &dummy1, &dummy2);
for (i = 0; i < hpte_count; i++) {
/* dont remove HPTEs with VRMA mappings */
lpar_rc = plpar_pte_remove_raw(H_ANDCOND, i, HPTE_V_1TB_SEG,
&dummy1, &dummy2);
if (lpar_rc == H_NOT_FOUND) {
lpar_rc = plpar_pte_read_raw(0, i, &dword0, &dummy1);
if (!lpar_rc && ((dword0 & HPTE_V_VRMA_MASK)
!= HPTE_V_VRMA_MASK))
/* Can be hpte for 1TB Seg. So remove it */
plpar_pte_remove_raw(0, i, 0, &dummy1, &dummy2);
}
}
}

/*
Expand Down
15 changes: 15 additions & 0 deletions trunk/arch/powerpc/platforms/pseries/plpar_wrappers.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,21 @@ static inline long plpar_pte_read(unsigned long flags, unsigned long ptex,
return rc;
}

/* plpar_pte_read_raw can be called in real mode. It calls plpar_hcall_raw */
static inline long plpar_pte_read_raw(unsigned long flags, unsigned long ptex,
unsigned long *old_pteh_ret, unsigned long *old_ptel_ret)
{
long rc;
unsigned long retbuf[PLPAR_HCALL_BUFSIZE];

rc = plpar_hcall_raw(H_READ, retbuf, flags, ptex);

*old_pteh_ret = retbuf[0];
*old_ptel_ret = retbuf[1];

return rc;
}

static inline long plpar_pte_protect(unsigned long flags, unsigned long ptex,
unsigned long avpn)
{
Expand Down
3 changes: 3 additions & 0 deletions trunk/include/asm-powerpc/mmu-hash64.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ extern char initial_stab[];
#define HPTE_R_C ASM_CONST(0x0000000000000080)
#define HPTE_R_R ASM_CONST(0x0000000000000100)

#define HPTE_V_1TB_SEG ASM_CONST(0x4000000000000000)
#define HPTE_V_VRMA_MASK ASM_CONST(0x4001ffffff000000)

/* Values for PP (assumes Ks=0, Kp=1) */
/* pp0 will always be 0 for linux */
#define PP_RWXX 0 /* Supervisor read/write, User none */
Expand Down

0 comments on commit c01fc58

Please sign in to comment.