From: Marek Vasut <marex@denx.de>
To: Guenter Roeck <linux@roeck-us.net>
Cc: qemu-devel@nongnu.org, Jeff Da Silva <jdasilva@altera.com>,
Chris Wulff <crwulff@gmail.com>,
Sandra Loosemore <sandra@codesourcery.com>,
Yves Vandervennet <yvanderv@altera.com>,
Ley Foon Tan <lftan@altera.com>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [V6, 2/7] nios2: Add architecture emulation support
Date: Sat, 12 Nov 2016 22:50:08 +0100 [thread overview]
Message-ID: <0419991c-a23f-8f2e-77c3-0401503dae17@denx.de> (raw)
In-Reply-To: <4ad504d5-9ba3-5216-8693-c731ce5b0bc9@roeck-us.net>
On 11/07/2016 08:54 PM, Guenter Roeck wrote:
> Hi Marek,
>
> On 11/07/2016 10:14 AM, Marek Vasut wrote:
>> On 11/07/2016 04:58 AM, Guenter Roeck wrote:
>>> On Tue, Oct 25, 2016 at 09:57:43PM +0200, Marek Vasut wrote:
>>>> From: Chris Wulff <crwulff@gmail.com>
>>>>
>>>> Add support for emulating Altera NiosII R1 architecture into qemu.
>>>> This patch is based on previous work by Chris Wulff from 2012 and
>>>> updated to latest mainline QEMU.
>>>>
>>>> Signed-off-by: Marek Vasut <marex@denx.de>
>>>> Cc: Chris Wulff <crwulff@gmail.com>
>>>> Cc: Jeff Da Silva <jdasilva@altera.com>
>>>> Cc: Ley Foon Tan <lftan@altera.com>
>>>> Cc: Sandra Loosemore <sandra@codesourcery.com>
>>>> Cc: Yves Vandervennet <yvanderv@altera.com>
>>>> ---
>>>> V3: Thorough cleanup, deal with the review comments all over the place
>>>> V4: - Use extract32()
>>>> - Fix gen_goto_tb() , suppress tcg_gen_goto_tb()
>>>> - Clean up gen_check_supervisor() helper
>>>> - Use TCGMemOp type for flags
>>>> - Drop jump labels from wrctl/rdctl
>>>> - More TCG cleanup
>>>> V5: - Simplify load/store handling
>>>> - Handle loads into R_ZERO from protected page, add comment
>>>> V6: - Fix division opcode handling
>>>> - Add missing disas handling
>>>> - V5 review comments cleanup
>>>> ---
>>> [ ... ]
>>>
>>>> diff --git a/target-nios2/cpu.h b/target-nios2/cpu.h
>>>> new file mode 100644
>>>> index 0000000..17c9a0f
>>> [ ... ]
>>>
>>>> +static inline void cpu_get_tb_cpu_state(CPUNios2State *env,
>>>> target_ulong *pc,
>>>> + target_ulong *cs_base,
>>>> uint32_t *flags)
>>>> +{
>>>> + *pc = env->regs[R_PC];
>>>> + *cs_base = 0;
>>>> + *flags = (env->regs[CR_STATUS] & (CR_STATUS_EH | CR_STATUS_U));
>>>> +}
>>>> +
>>>> +#endif /* CPU_NIOS2_H */
>>>> +
>>>
>>> The empty line at the end results in a whitespace message from git.
>>
>> Dropped, thanks. Is there anything else or is this patchset starting to
>> become acceptable ?
>>
>
> Hard for me to say. I tried to build and run the series with the latest
> linux
> kernel (v4.9-rc4), but it is stuck in early boot. I tried with
> 10m50_defconfig
> and 10m50_devboard.dtb. gcc is 6.1.0 built with buildroot, though I also
> tried
> with toolchains from CodeSourcery. Obviously I have no idea if there is a
> kernel bug or a qemu bug or a problem with the command line I used.
>
> Here is my command line:
>
> qemu-system-nios2 -M 10m50-ghrd -kernel vmlinux -dtb 10m50_devboard.dtb \
> -append "earlycon=uart8250,mmio32,0x18001600,115200n8 console=ttyS0"
>
> This may be wrong, but the boot is stuck in an endless loop in
> mark_bootmem(),
> which seems early and odd. I tried with both vmlinux and
> arch/nios2/boot/vmImage,
> with the same results.
>
> Can you provide a working command line and kernel version, and/or
> directions how
> to create a working image if I need to run the image, for example, from
> u-boot ?
> Sorry if that is posted somewhere and I missed it.
I guess Romain gave you something since I see you made some progress.
I'll have to look into that fdt loader issue.
>> I'll wait a bit before you finish discussing the whitespace errors in
>> 1/7 with Sandra.
>>
>
> I can't really comment on the whitespace issues; the qemu maintainers
> will have
> to decide if they can accept this patch as-is. I am sure they will
> appreciate
> a heads-up, though.
OK, I added a note.
--
Best regards,
Marek Vasut
next prev parent reply other threads:[~2016-11-12 21:56 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-18 21:50 [Qemu-devel] [PATCH V3 1/7] nios2: Add disas entries Marek Vasut
2016-10-18 21:50 ` [Qemu-devel] [PATCH V3 2/7] nios2: Add architecture emulation support Marek Vasut
2016-10-18 23:04 ` Richard Henderson
2016-10-19 3:23 ` Marek Vasut
2016-10-19 15:50 ` Richard Henderson
2016-10-20 3:01 ` Marek Vasut
2016-10-20 5:05 ` Richard Henderson
2016-10-20 13:39 ` Marek Vasut
2016-10-19 3:29 ` [Qemu-devel] [PATCH V4 " Marek Vasut
2016-10-20 13:44 ` [Qemu-devel] [PATCH V5 " Marek Vasut
2016-10-20 14:35 ` Richard Henderson
2016-10-23 3:01 ` Marek Vasut
2016-10-23 4:20 ` Richard Henderson
2016-10-25 15:58 ` Marek Vasut
2016-10-25 19:57 ` [Qemu-devel] [PATCH V6 " Marek Vasut
2016-11-07 3:58 ` [Qemu-devel] [V6, " Guenter Roeck
2016-11-07 18:14 ` Marek Vasut
2016-11-07 19:54 ` Guenter Roeck
2016-11-07 20:22 ` Romain Naour
2016-11-07 21:40 ` Guenter Roeck
2016-11-12 21:50 ` Marek Vasut [this message]
2016-11-12 23:25 ` Guenter Roeck
2016-11-13 12:01 ` Marek Vasut
2016-11-13 12:43 ` Marek Vasut
2016-11-13 16:25 ` Guenter Roeck
2016-11-13 22:56 ` Marek Vasut
2016-11-13 16:09 ` Guenter Roeck
2016-11-13 22:58 ` Marek Vasut
2016-10-18 21:50 ` [Qemu-devel] [PATCH V3 3/7] nios2: Add usermode binaries emulation Marek Vasut
2016-10-18 21:50 ` [Qemu-devel] [PATCH V3 4/7] nios2: Add IIC interrupt controller emulation Marek Vasut
2016-10-18 21:50 ` [Qemu-devel] [PATCH V3 5/7] nios2: Add periodic timer emulation Marek Vasut
2016-10-18 21:50 ` [Qemu-devel] [PATCH V3 6/7] nios2: Add Altera 10M50 GHRD emulation Marek Vasut
2016-11-07 23:45 ` [Qemu-devel] [V3,6/7] " Guenter Roeck
2016-10-18 21:50 ` [Qemu-devel] [PATCH V3 7/7] nios2: Add support for Nios-II R1 Marek Vasut
2016-11-07 3:55 ` [Qemu-devel] [V3,1/7] nios2: Add disas entries Guenter Roeck
2016-11-07 4:17 ` Sandra Loosemore
2016-11-07 4:55 ` Alexey Kardashevskiy
2016-11-07 6:33 ` Guenter Roeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0419991c-a23f-8f2e-77c3-0401503dae17@denx.de \
--to=marex@denx.de \
--cc=crwulff@gmail.com \
--cc=jdasilva@altera.com \
--cc=lftan@altera.com \
--cc=linux@roeck-us.net \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=sandra@codesourcery.com \
--cc=yvanderv@altera.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).