qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] UniCore32 PUV3 machine support
@ 2012-07-23  2:29 gxt
  2012-07-27 20:45 ` Blue Swirl
  0 siblings, 1 reply; 2+ messages in thread
From: gxt @ 2012-07-23  2:29 UTC (permalink / raw)
  To: qemu-devel; +Cc: blauwirbel, afaerber, chenwj

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2800 bytes --]

are available in the git repository at:

  git://github.com/gxt/QEMU.git unicore32

Andreas Färber (1):
      target-unicore32: Drop UC32_CPUID macros

Guan Xuetao (13):
      unicore32-softmmu: Add unicore32-softmmu build support
      unicore32-softmmu: Add coprocessor 0(sysctrl) and 1(ocd) instruction support
      unicore32-softmmu: Make UniCore32 cpuid & exceptions correct and runable
      unicore32-softmmu: Implement softmmu specific functions
      unicore32-softmmu: Make sure that kernel can access user space
      unicore32-softmmu: Add puv3 soc/board support
      unicore32-softmmu: Add puv3 interrupt support
      unicore32-softmmu: Add puv3 ostimer support
      unicore32-softmmu: Add puv3 gpio support
      unicore32-softmmu: Add puv3 pm support
      unicore32-softmmu: Add puv3 dma support
      unicore32-softmmu: Add ps2 support
      unicore32-softmmu: Add maintainer information for UniCore32 machine

 MAINTAINERS                           |    8 +
 arch_init.c                           |    2 +
 arch_init.h                           |    1 +
 configure                             |    1 +
 cpu-exec.c                            |    1 +
 default-configs/unicore32-softmmu.mak |    4 +
 hw/Makefile.objs                      |    7 +
 hw/puv3.c                             |  130 ++++++++++++++++
 hw/puv3.h                             |   49 ++++++
 hw/puv3_dma.c                         |  109 +++++++++++++
 hw/puv3_gpio.c                        |  141 +++++++++++++++++
 hw/puv3_intc.c                        |  135 +++++++++++++++++
 hw/puv3_ost.c                         |  151 +++++++++++++++++++
 hw/puv3_pm.c                          |  149 ++++++++++++++++++
 hw/unicore32/Makefile.objs            |    6 +
 linux-user/main.c                     |    3 +-
 target-unicore32/Makefile.objs        |    2 +-
 target-unicore32/cpu.c                |   19 ++-
 target-unicore32/cpu.h                |   18 +--
 target-unicore32/helper.c             |  180 ++++++++++++++++++----
 target-unicore32/helper.h             |   17 +--
 target-unicore32/machine.c            |   23 +++
 target-unicore32/op_helper.c          |   44 ++++++-
 target-unicore32/softmmu.c            |  267 +++++++++++++++++++++++++++++++++
 target-unicore32/translate.c          |  116 +++++++++++++--
 25 files changed, 1509 insertions(+), 74 deletions(-)
 create mode 100644 default-configs/unicore32-softmmu.mak
 create mode 100644 hw/puv3.c
 create mode 100644 hw/puv3.h
 create mode 100644 hw/puv3_dma.c
 create mode 100644 hw/puv3_gpio.c
 create mode 100644 hw/puv3_intc.c
 create mode 100644 hw/puv3_ost.c
 create mode 100644 hw/puv3_pm.c
 create mode 100644 hw/unicore32/Makefile.objs
 create mode 100644 target-unicore32/machine.c
 create mode 100644 target-unicore32/softmmu.c

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PULL] UniCore32 PUV3 machine support
  2012-07-23  2:29 [Qemu-devel] [PULL] UniCore32 PUV3 machine support gxt
@ 2012-07-27 20:45 ` Blue Swirl
  0 siblings, 0 replies; 2+ messages in thread
From: Blue Swirl @ 2012-07-27 20:45 UTC (permalink / raw)
  To: gxt; +Cc: qemu-devel, chenwj, afaerber

On Mon, Jul 23, 2012 at 2:29 AM,  <gxt@mprc.pku.edu> wrote:
> are available in the git repository at:
>
>   git://github.com/gxt/QEMU.git unicore32

I'm getting these errors, please fix:

  CC    libhw64/hw/puv3_gpio.o
/src/qemu/hw/puv3_gpio.c: In function 'puv3_gpio_read':
/src/qemu/hw/puv3_gpio.c:48:5: error: 'ret' may be used uninitialized
in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [hw/puv3_gpio.o] Error 1
  CC    libhw64/hw/puv3_pm.o
/src/qemu/hw/puv3_pm.c: In function 'puv3_pm_read':
/src/qemu/hw/puv3_pm.c:74:5: error: 'ret' may be used uninitialized in
this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [hw/puv3_pm.o] Error 1
  CC    libhw64/hw/puv3_dma.o
/src/qemu/hw/puv3_dma.c: In function 'puv3_dma_read':
/src/qemu/hw/puv3_dma.c:44:5: error: 'ret' may be used uninitialized
in this function [-Werror=maybe-uninitialized]
cc1: all warnings being treated as errors
make[1]: *** [hw/puv3_dma.o] Error 1

>
> Andreas Färber (1):
>       target-unicore32: Drop UC32_CPUID macros
>
> Guan Xuetao (13):
>       unicore32-softmmu: Add unicore32-softmmu build support
>       unicore32-softmmu: Add coprocessor 0(sysctrl) and 1(ocd) instruction support
>       unicore32-softmmu: Make UniCore32 cpuid & exceptions correct and runable
>       unicore32-softmmu: Implement softmmu specific functions
>       unicore32-softmmu: Make sure that kernel can access user space
>       unicore32-softmmu: Add puv3 soc/board support
>       unicore32-softmmu: Add puv3 interrupt support
>       unicore32-softmmu: Add puv3 ostimer support
>       unicore32-softmmu: Add puv3 gpio support
>       unicore32-softmmu: Add puv3 pm support
>       unicore32-softmmu: Add puv3 dma support
>       unicore32-softmmu: Add ps2 support
>       unicore32-softmmu: Add maintainer information for UniCore32 machine
>
>  MAINTAINERS                           |    8 +
>  arch_init.c                           |    2 +
>  arch_init.h                           |    1 +
>  configure                             |    1 +
>  cpu-exec.c                            |    1 +
>  default-configs/unicore32-softmmu.mak |    4 +
>  hw/Makefile.objs                      |    7 +
>  hw/puv3.c                             |  130 ++++++++++++++++
>  hw/puv3.h                             |   49 ++++++
>  hw/puv3_dma.c                         |  109 +++++++++++++
>  hw/puv3_gpio.c                        |  141 +++++++++++++++++
>  hw/puv3_intc.c                        |  135 +++++++++++++++++
>  hw/puv3_ost.c                         |  151 +++++++++++++++++++
>  hw/puv3_pm.c                          |  149 ++++++++++++++++++
>  hw/unicore32/Makefile.objs            |    6 +
>  linux-user/main.c                     |    3 +-
>  target-unicore32/Makefile.objs        |    2 +-
>  target-unicore32/cpu.c                |   19 ++-
>  target-unicore32/cpu.h                |   18 +--
>  target-unicore32/helper.c             |  180 ++++++++++++++++++----
>  target-unicore32/helper.h             |   17 +--
>  target-unicore32/machine.c            |   23 +++
>  target-unicore32/op_helper.c          |   44 ++++++-
>  target-unicore32/softmmu.c            |  267 +++++++++++++++++++++++++++++++++
>  target-unicore32/translate.c          |  116 +++++++++++++--
>  25 files changed, 1509 insertions(+), 74 deletions(-)
>  create mode 100644 default-configs/unicore32-softmmu.mak
>  create mode 100644 hw/puv3.c
>  create mode 100644 hw/puv3.h
>  create mode 100644 hw/puv3_dma.c
>  create mode 100644 hw/puv3_gpio.c
>  create mode 100644 hw/puv3_intc.c
>  create mode 100644 hw/puv3_ost.c
>  create mode 100644 hw/puv3_pm.c
>  create mode 100644 hw/unicore32/Makefile.objs
>  create mode 100644 target-unicore32/machine.c
>  create mode 100644 target-unicore32/softmmu.c

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-07-27 20:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-23  2:29 [Qemu-devel] [PULL] UniCore32 PUV3 machine support gxt
2012-07-27 20:45 ` Blue Swirl

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).