powerpc/cell: Use correct types in beat files
Only pass the address of a u64 if that is what the function requires. [Split out of a larger patch - sfr] [update comment - sfr] Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Родитель
2b931fb67e
Коммит
19b0bd025d
|
@ -44,8 +44,8 @@ static DEFINE_SPINLOCK(beat_htab_lock);
|
||||||
|
|
||||||
static inline unsigned int beat_read_mask(unsigned hpte_group)
|
static inline unsigned int beat_read_mask(unsigned hpte_group)
|
||||||
{
|
{
|
||||||
unsigned long hpte_v[5];
|
|
||||||
unsigned long rmask = 0;
|
unsigned long rmask = 0;
|
||||||
|
u64 hpte_v[5];
|
||||||
|
|
||||||
beat_read_htab_entries(0, hpte_group + 0, hpte_v);
|
beat_read_htab_entries(0, hpte_group + 0, hpte_v);
|
||||||
if (!(hpte_v[0] & HPTE_V_BOLTED))
|
if (!(hpte_v[0] & HPTE_V_BOLTED))
|
||||||
|
@ -93,8 +93,7 @@ static long beat_lpar_hpte_insert(unsigned long hpte_group,
|
||||||
int psize, int ssize)
|
int psize, int ssize)
|
||||||
{
|
{
|
||||||
unsigned long lpar_rc;
|
unsigned long lpar_rc;
|
||||||
unsigned long slot;
|
u64 hpte_v, hpte_r, slot;
|
||||||
unsigned long hpte_v, hpte_r;
|
|
||||||
|
|
||||||
/* same as iseries */
|
/* same as iseries */
|
||||||
if (vflags & HPTE_V_SECONDARY)
|
if (vflags & HPTE_V_SECONDARY)
|
||||||
|
@ -153,8 +152,9 @@ static long beat_lpar_hpte_remove(unsigned long hpte_group)
|
||||||
|
|
||||||
static unsigned long beat_lpar_hpte_getword0(unsigned long slot)
|
static unsigned long beat_lpar_hpte_getword0(unsigned long slot)
|
||||||
{
|
{
|
||||||
unsigned long dword0, dword[5];
|
unsigned long dword0;
|
||||||
unsigned long lpar_rc;
|
unsigned long lpar_rc;
|
||||||
|
u64 dword[5];
|
||||||
|
|
||||||
lpar_rc = beat_read_htab_entries(0, slot & ~3UL, dword);
|
lpar_rc = beat_read_htab_entries(0, slot & ~3UL, dword);
|
||||||
|
|
||||||
|
@ -170,7 +170,7 @@ static void beat_lpar_hptab_clear(void)
|
||||||
unsigned long size_bytes = 1UL << ppc64_pft_size;
|
unsigned long size_bytes = 1UL << ppc64_pft_size;
|
||||||
unsigned long hpte_count = size_bytes >> 4;
|
unsigned long hpte_count = size_bytes >> 4;
|
||||||
int i;
|
int i;
|
||||||
unsigned long dummy0, dummy1;
|
u64 dummy0, dummy1;
|
||||||
|
|
||||||
/* TODO: Use bulk call */
|
/* TODO: Use bulk call */
|
||||||
for (i = 0; i < hpte_count; i++)
|
for (i = 0; i < hpte_count; i++)
|
||||||
|
@ -189,7 +189,8 @@ static long beat_lpar_hpte_updatepp(unsigned long slot,
|
||||||
int psize, int ssize, int local)
|
int psize, int ssize, int local)
|
||||||
{
|
{
|
||||||
unsigned long lpar_rc;
|
unsigned long lpar_rc;
|
||||||
unsigned long dummy0, dummy1, want_v;
|
u64 dummy0, dummy1;
|
||||||
|
unsigned long want_v;
|
||||||
|
|
||||||
want_v = hpte_encode_v(va, psize, MMU_SEGSIZE_256M);
|
want_v = hpte_encode_v(va, psize, MMU_SEGSIZE_256M);
|
||||||
|
|
||||||
|
@ -255,7 +256,8 @@ static void beat_lpar_hpte_updateboltedpp(unsigned long newpp,
|
||||||
unsigned long ea,
|
unsigned long ea,
|
||||||
int psize, int ssize)
|
int psize, int ssize)
|
||||||
{
|
{
|
||||||
unsigned long lpar_rc, slot, vsid, va, dummy0, dummy1;
|
unsigned long lpar_rc, slot, vsid, va;
|
||||||
|
u64 dummy0, dummy1;
|
||||||
|
|
||||||
vsid = get_kernel_vsid(ea, MMU_SEGSIZE_256M);
|
vsid = get_kernel_vsid(ea, MMU_SEGSIZE_256M);
|
||||||
va = (vsid << 28) | (ea & 0x0fffffff);
|
va = (vsid << 28) | (ea & 0x0fffffff);
|
||||||
|
@ -276,7 +278,7 @@ static void beat_lpar_hpte_invalidate(unsigned long slot, unsigned long va,
|
||||||
{
|
{
|
||||||
unsigned long want_v;
|
unsigned long want_v;
|
||||||
unsigned long lpar_rc;
|
unsigned long lpar_rc;
|
||||||
unsigned long dummy1, dummy2;
|
u64 dummy1, dummy2;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
DBG_LOW(" inval : slot=%lx, va=%016lx, psize: %d, local: %d\n",
|
DBG_LOW(" inval : slot=%lx, va=%016lx, psize: %d, local: %d\n",
|
||||||
|
@ -315,8 +317,7 @@ static long beat_lpar_hpte_insert_v3(unsigned long hpte_group,
|
||||||
int psize, int ssize)
|
int psize, int ssize)
|
||||||
{
|
{
|
||||||
unsigned long lpar_rc;
|
unsigned long lpar_rc;
|
||||||
unsigned long slot;
|
u64 hpte_v, hpte_r, slot;
|
||||||
unsigned long hpte_v, hpte_r;
|
|
||||||
|
|
||||||
/* same as iseries */
|
/* same as iseries */
|
||||||
if (vflags & HPTE_V_SECONDARY)
|
if (vflags & HPTE_V_SECONDARY)
|
||||||
|
|
|
@ -40,8 +40,8 @@ static void udbg_putc_beat(char c)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Buffered chars getc */
|
/* Buffered chars getc */
|
||||||
static long inbuflen;
|
static u64 inbuflen;
|
||||||
static long inbuf[2]; /* must be 2 longs */
|
static u64 inbuf[2]; /* must be 2 u64s */
|
||||||
|
|
||||||
static int udbg_getc_poll_beat(void)
|
static int udbg_getc_poll_beat(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -44,7 +44,7 @@ static int hvc_beat_get_chars(uint32_t vtermno, char *buf, int cnt)
|
||||||
static unsigned char q[sizeof(unsigned long) * 2]
|
static unsigned char q[sizeof(unsigned long) * 2]
|
||||||
__attribute__((aligned(sizeof(unsigned long))));
|
__attribute__((aligned(sizeof(unsigned long))));
|
||||||
static int qlen = 0;
|
static int qlen = 0;
|
||||||
unsigned long got;
|
u64 got;
|
||||||
|
|
||||||
again:
|
again:
|
||||||
if (qlen) {
|
if (qlen) {
|
||||||
|
@ -63,7 +63,7 @@ again:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (beat_get_term_char(vtermno, &got,
|
if (beat_get_term_char(vtermno, &got,
|
||||||
((unsigned long *)q), ((unsigned long *)q) + 1) == 0) {
|
((u64 *)q), ((u64 *)q) + 1) == 0) {
|
||||||
qlen = got;
|
qlen = got;
|
||||||
goto again;
|
goto again;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче