Displaying 3 results from an estimated 3 matches for "gva_to_ma_par".
2013 Apr 30
4
Data Abort while in booting when using Julien's new patches on Arndale Board
...d the causing "Data Abort" code while I am some debugging.
static int exynos5_specific_mapping(struct domain *d)
{
....snip....
p2m_populate_ram(d, 0x0, 0x1000 - 1);
res = gvirt_to_maddr(0, &ma);
...snip....
}
From above code, "gvirt_to_maddr" calls "gva_to_ma_par":
static inline uint64_t gva_to_ma_par(vaddr_t va)
{
uint64_t par, tmp;
tmp = READ_CP64(PAR);
WRITE_CP32(va, ATS12NSOPR);
isb(); /* Ensure result is available. */
par = READ_CP64(PAR);
WRITE_CP64(tmp, PAR);
return par;
}
When I have tired to debugging, I have fou...
2013 Jan 23
132
[PATCH 00/45] initial arm v8 (64-bit) support
First off, Apologies for the massive patch series...
This series boots a 32-bit dom0 kernel to a command prompt on an ARMv8
(AArch64) model. The kernel is the same one as I am currently using with
the 32 bit hypervisor
I haven''t yet tried starting a guest or anything super advanced like
that ;-). Also there is not real support for 64-bit domains at all,
although in one or two places I
2013 Feb 22
48
[PATCH v3 00/46] initial arm v8 (64-bit) support
This round implements all of the review comments from V2 and all patches
are now acked. Unless there are any objections I intend to apply later
this morning.
Ian.