2012-08-09 00:33:46 +08:00
|
|
|
#ifndef _ASM_ARM_XEN_PAGE_H
|
|
|
|
#define _ASM_ARM_XEN_PAGE_H
|
|
|
|
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
|
|
|
|
#include <linux/pfn.h>
|
|
|
|
#include <linux/types.h>
|
2013-10-10 21:40:44 +08:00
|
|
|
#include <linux/dma-mapping.h>
|
2012-08-09 00:33:46 +08:00
|
|
|
|
2013-10-18 00:22:27 +08:00
|
|
|
#include <xen/xen.h>
|
2012-08-09 00:33:46 +08:00
|
|
|
#include <xen/interface/grant_table.h>
|
|
|
|
|
2012-10-17 16:39:17 +08:00
|
|
|
#define phys_to_machine_mapping_valid(pfn) (1)
|
2012-08-09 00:33:46 +08:00
|
|
|
#define mfn_to_virt(m) (__va(mfn_to_pfn(m) << PAGE_SHIFT))
|
|
|
|
|
|
|
|
#define pte_mfn pte_pfn
|
|
|
|
#define mfn_pte pfn_pte
|
|
|
|
|
|
|
|
/* Xen machine address */
|
|
|
|
typedef struct xmaddr {
|
|
|
|
phys_addr_t maddr;
|
|
|
|
} xmaddr_t;
|
|
|
|
|
|
|
|
/* Xen pseudo-physical address */
|
|
|
|
typedef struct xpaddr {
|
|
|
|
phys_addr_t paddr;
|
|
|
|
} xpaddr_t;
|
|
|
|
|
|
|
|
#define XMADDR(x) ((xmaddr_t) { .maddr = (x) })
|
|
|
|
#define XPADDR(x) ((xpaddr_t) { .paddr = (x) })
|
|
|
|
|
2012-10-17 16:39:17 +08:00
|
|
|
#define INVALID_P2M_ENTRY (~0UL)
|
|
|
|
|
2013-10-18 00:22:27 +08:00
|
|
|
unsigned long __pfn_to_mfn(unsigned long pfn);
|
|
|
|
unsigned long __mfn_to_pfn(unsigned long mfn);
|
|
|
|
extern struct rb_root phys_to_mach;
|
|
|
|
|
|
|
|
static inline unsigned long pfn_to_mfn(unsigned long pfn)
|
|
|
|
{
|
|
|
|
unsigned long mfn;
|
2013-11-09 04:36:09 +08:00
|
|
|
|
2013-10-18 00:22:27 +08:00
|
|
|
if (phys_to_mach.rb_node != NULL) {
|
|
|
|
mfn = __pfn_to_mfn(pfn);
|
|
|
|
if (mfn != INVALID_P2M_ENTRY)
|
|
|
|
return mfn;
|
|
|
|
}
|
|
|
|
|
2013-11-11 20:50:30 +08:00
|
|
|
return pfn;
|
2013-10-18 00:22:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long mfn_to_pfn(unsigned long mfn)
|
|
|
|
{
|
|
|
|
unsigned long pfn;
|
|
|
|
|
|
|
|
if (phys_to_mach.rb_node != NULL) {
|
|
|
|
pfn = __mfn_to_pfn(mfn);
|
|
|
|
if (pfn != INVALID_P2M_ENTRY)
|
|
|
|
return pfn;
|
|
|
|
}
|
|
|
|
|
2013-11-11 20:50:30 +08:00
|
|
|
return mfn;
|
2013-10-18 00:22:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define mfn_to_local_pfn(mfn) mfn_to_pfn(mfn)
|
|
|
|
|
2012-08-09 00:33:46 +08:00
|
|
|
static inline xmaddr_t phys_to_machine(xpaddr_t phys)
|
|
|
|
{
|
|
|
|
unsigned offset = phys.paddr & ~PAGE_MASK;
|
|
|
|
return XMADDR(PFN_PHYS(pfn_to_mfn(PFN_DOWN(phys.paddr))) | offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline xpaddr_t machine_to_phys(xmaddr_t machine)
|
|
|
|
{
|
|
|
|
unsigned offset = machine.maddr & ~PAGE_MASK;
|
|
|
|
return XPADDR(PFN_PHYS(mfn_to_pfn(PFN_DOWN(machine.maddr))) | offset);
|
|
|
|
}
|
|
|
|
/* VIRT <-> MACHINE conversion */
|
|
|
|
#define virt_to_machine(v) (phys_to_machine(XPADDR(__pa(v))))
|
|
|
|
#define virt_to_pfn(v) (PFN_DOWN(__pa(v)))
|
|
|
|
#define virt_to_mfn(v) (pfn_to_mfn(virt_to_pfn(v)))
|
|
|
|
#define mfn_to_virt(m) (__va(mfn_to_pfn(m) << PAGE_SHIFT))
|
|
|
|
|
|
|
|
static inline xmaddr_t arbitrary_virt_to_machine(void *vaddr)
|
|
|
|
{
|
|
|
|
/* TODO: assuming it is mapped in the kernel 1:1 */
|
|
|
|
return virt_to_machine(vaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: this shouldn't be here but it is because the frontend drivers
|
|
|
|
* are using it (its rolled in headers) even though we won't hit the code path.
|
|
|
|
* So for right now just punt with this.
|
|
|
|
*/
|
|
|
|
static inline pte_t *lookup_address(unsigned long address, unsigned int *level)
|
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int m2p_add_override(unsigned long mfn, struct page *page,
|
|
|
|
struct gnttab_map_grant_ref *kmap_op)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int m2p_remove_override(struct page *page, bool clear_pte)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-18 00:22:27 +08:00
|
|
|
bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn);
|
|
|
|
bool __set_phys_to_machine_multi(unsigned long pfn, unsigned long mfn,
|
|
|
|
unsigned long nr_pages);
|
2012-10-17 16:39:17 +08:00
|
|
|
|
2012-08-09 00:33:46 +08:00
|
|
|
static inline bool set_phys_to_machine(unsigned long pfn, unsigned long mfn)
|
|
|
|
{
|
2012-10-17 16:39:17 +08:00
|
|
|
return __set_phys_to_machine(pfn, mfn);
|
2012-08-09 00:33:46 +08:00
|
|
|
}
|
2013-02-19 21:59:19 +08:00
|
|
|
|
2014-01-03 22:03:35 +08:00
|
|
|
#define xen_remap(cookie, size) ioremap_cached((cookie), (size))
|
2013-02-19 21:59:19 +08:00
|
|
|
|
2012-08-09 00:33:46 +08:00
|
|
|
#endif /* _ASM_ARM_XEN_PAGE_H */
|