Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-04 Thread Andrew Jones
om, > > dgilb...@redhat.com > > Sent: Monday, September 3, 2018 6:53:35 AM > > Subject: Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for > > aarch64 > > > > On Sat, Sep 01, 2018 at 01:11:15AM -0400, Wei Huang wrote: > > > +.section .tex

Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-04 Thread Wei Huang
- Original Message - > From: "Andrew Jones" > To: "Wei Huang" > Cc: qemu-devel@nongnu.org, lviv...@redhat.com, "peter maydell" > , quint...@redhat.com, > dgilb...@redhat.com > Sent: Monday, September 3, 2018 6:53:35 AM > Subject: R

Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-03 Thread Andrew Jones
On Sat, Sep 01, 2018 at 01:11:15AM -0400, Wei Huang wrote: > +.section .text > + > +.globl _start > + > +_start: > +/* disable MMU to use phys mem address */ > +mrs x0, sctlr_el1 > +bic x0, x0, #(1<<0) > +msr sctlr_el1, x0 > +isb > + > +

Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-03 Thread Andrew Jones
On Sat, Sep 01, 2018 at 11:07:26AM +0100, Peter Maydell wrote: > On 1 September 2018 at 06:11, Wei Huang wrote: > > This patch adds migration test support for aarch64. The test code, which > > implements the same functionality as x86, is booted as a kernel in qemu. > > Here are the design choices

Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-03 Thread Juan Quintela
Wei Huang wrote: > This patch adds migration test support for aarch64. The test code, which > implements the same functionality as x86, is booted as a kernel in qemu. > Here are the design choices we make for aarch64: > > * We choose this -kernel approach because aarch64 QEMU doesn't provide a >

Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-01 Thread Wei Huang
On 09/01/2018 05:07 AM, Peter Maydell wrote: > On 1 September 2018 at 06:11, Wei Huang wrote: >> This patch adds migration test support for aarch64. The test code, which >> implements the same functionality as x86, is booted as a kernel in qemu. >> Here are the design choices we make for aarch6

Re: [Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-09-01 Thread Peter Maydell
On 1 September 2018 at 06:11, Wei Huang wrote: > This patch adds migration test support for aarch64. The test code, which > implements the same functionality as x86, is booted as a kernel in qemu. > Here are the design choices we make for aarch64: > > * We choose this -kernel approach because aar

[Qemu-devel] [PATCH V8 4/4] tests: Add migration test for aarch64

2018-08-31 Thread Wei Huang
This patch adds migration test support for aarch64. The test code, which implements the same functionality as x86, is booted as a kernel in qemu. Here are the design choices we make for aarch64: * We choose this -kernel approach because aarch64 QEMU doesn't provide a built-in fw like x86 does.