2010-12-03 12:02:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (c) 2004, 2008 IBM Corporation
|
|
|
|
* All rights reserved.
|
|
|
|
* This program and the accompanying materials
|
|
|
|
* are made available under the terms of the BSD License
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
* http://www.opensource.org/licenses/bsd-license.php
|
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* IBM Corporation - initial implementation
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CACHE_H
|
|
|
|
#define __CACHE_H
|
|
|
|
|
|
|
|
#include <cpu.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
// XXX FIXME: Use proper CI load/store */
|
2011-07-29 14:23:46 +08:00
|
|
|
#define cache_inhibited_access(type,size) \
|
|
|
|
static inline type ci_read_##size(type * addr) \
|
|
|
|
{ \
|
|
|
|
type val; \
|
|
|
|
register int bytes asm ("r4") = size / 8; \
|
|
|
|
register uint64_t _addr asm ("r5") = (long)addr; \
|
|
|
|
asm volatile(" li 3, 0x3c \n" /* H_LOGICAL_CI_LOAD */ \
|
|
|
|
".long 0x44000022 \n" /* HVCALL */ \
|
|
|
|
" cmpdi cr0,3,0 \n" \
|
|
|
|
" mr %0,4 \n" \
|
|
|
|
" beq 0f \n" \
|
|
|
|
" li %0,-1 \n" \
|
|
|
|
"0:\n" \
|
|
|
|
: "=r"(val) \
|
|
|
|
: "r"(bytes), "r"(_addr) \
|
|
|
|
: "r3", "memory", "cr0"); \
|
|
|
|
return val; \
|
|
|
|
} \
|
|
|
|
static inline void ci_write_##size(type * addr, type data) \
|
|
|
|
{ \
|
|
|
|
register int bytes asm ("r4") = size / 8; \
|
|
|
|
register uint64_t _addr asm ("r5") = (uint64_t)addr; \
|
|
|
|
register uint64_t _data asm ("r6") = (uint64_t)data; \
|
|
|
|
asm volatile(" li 3, 0x40 \n" /* H_LOGICAL_CI_STORE */ \
|
|
|
|
".long 0x44000022 \n" /* HVCALL */ \
|
|
|
|
: : "r"(bytes), "r"(_addr), "r"(_data) \
|
|
|
|
: "r3", "memory"); \
|
2010-12-03 12:02:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cache_inhibited_access(uint8_t, 8)
|
|
|
|
cache_inhibited_access(uint16_t, 16)
|
|
|
|
cache_inhibited_access(uint32_t, 32)
|
|
|
|
cache_inhibited_access(uint64_t, 64)
|
|
|
|
|
|
|
|
static inline uint16_t bswap16_load(uint64_t addr)
|
|
|
|
{
|
|
|
|
unsigned int val;
|
|
|
|
asm volatile ("lhbrx %0, 0, %1":"=r" (val):"r"(addr));
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t bswap32_load(uint64_t addr)
|
|
|
|
{
|
|
|
|
unsigned int val;
|
|
|
|
asm volatile ("lwbrx %0, 0, %1":"=r" (val):"r"(addr));
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void bswap16_store(uint64_t addr, uint16_t val)
|
|
|
|
{
|
|
|
|
asm volatile ("sthbrx %0, 0, %1"::"r" (val), "r"(addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void bswap32_store(uint64_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
asm volatile ("stwbrx %0, 0, %1"::"r" (val), "r"(addr));
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __CACHE_H */
|
|
|
|
|