Re: [Qemu-devel] [PATCH v8 2/8] ARM: Samsung exynos4210-based boards emulation

2012-01-19 Thread Kyungmin Park
On 1/19/12, Andreas Färber wrote: > Evgeny, > > Am 19.01.2012 09:31, schrieb Evgeny Voevodin: >> Add initial support of NURI and SMDKC210 boards >> >> Signed-off-by: Evgeny Voevodin > > Could you please supply examples of how to use these? Whether for the > Release Notes or as part of the commit

Re: [Qemu-devel] [PATCH v8 2/8] ARM: Samsung exynos4210-based boards emulation

2012-01-19 Thread Peter Maydell
On 19 January 2012 13:15, Evgeny Voevodin wrote: > On 01/19/2012 04:19 PM, Peter Maydell wrote: >> >> On 19 January 2012 08:31, Evgeny Voevodin  wrote: >> >>> +    /* >>> +     * Secondary CPU startup code will be placed here. >>> +     */ >>> +    memory_region_init_ram(&s->hack_mem, "exynos4210.

Re: [Qemu-devel] [PATCH v8 2/8] ARM: Samsung exynos4210-based boards emulation

2012-01-19 Thread Andreas Färber
Evgeny, Am 19.01.2012 09:31, schrieb Evgeny Voevodin: > Add initial support of NURI and SMDKC210 boards > > Signed-off-by: Evgeny Voevodin Could you please supply examples of how to use these? Whether for the Release Notes or as part of the commit message (or both). What's the NURI board? I do

Re: [Qemu-devel] [PATCH v8 2/8] ARM: Samsung exynos4210-based boards emulation

2012-01-19 Thread Evgeny Voevodin
On 01/19/2012 04:19 PM, Peter Maydell wrote: On 19 January 2012 08:31, Evgeny Voevodin wrote: +/* + * Secondary CPU startup code will be placed here. + */ +memory_region_init_ram(&s->hack_mem, "exynos4210.hack", 0x1000); +memory_region_add_subregion(system_mem, EXYNOS4210_S

Re: [Qemu-devel] [PATCH v8 2/8] ARM: Samsung exynos4210-based boards emulation

2012-01-19 Thread Peter Maydell
On 19 January 2012 08:31, Evgeny Voevodin wrote: > +    /* > +     * Secondary CPU startup code will be placed here. > +     */ > +    memory_region_init_ram(&s->hack_mem, "exynos4210.hack", 0x1000); > +    memory_region_add_subregion(system_mem, EXYNOS4210_SMP_BOOT_ADDR, > +            &s->hack_

[Qemu-devel] [PATCH v8 2/8] ARM: Samsung exynos4210-based boards emulation

2012-01-19 Thread Evgeny Voevodin
Add initial support of NURI and SMDKC210 boards Signed-off-by: Evgeny Voevodin --- Makefile.target |3 +- hw/exynos4210.c | 202 +++ hw/exynos4210.h | 37 + hw/exynos4_boards.c | 143