qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-arm] [Qemu-devel] Changes to Broadcom(BCM) files and Raspberry


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-arm] [Qemu-devel] Changes to Broadcom(BCM) files and Raspberry Pi files. Addition of PanelEmu
Date: Mon, 15 May 2017 20:20:40 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0

Hi John,

That is going to be very difficult as a lot of the changes are
interlinked the vast majority of the patch is new files.

I rebased your branch on latest qemu/master here:

https://github.com/philmd/qemu/tree/flypie-GDummyPanel-rebased

It is much easier to follow now, the big XML files you added/removed also disappeared (gitk was crashing 'Out Of Memory' trying to look at your tree).

I hope it can help you to continue reordering in smaller patches.

Regards,

Phil.

On 05/15/2017 01:46 PM, Alistair Francis wrote:

Hey John,

Thanks for the patch!

Unfortunately this patch is too long to review, you need to split the
patch up into shorter more readable patches. Otherwise it's too hard
to people to understand what you are changing and why.

There are some details here:
http://wiki.qemu.org/Contribute/SubmitAPatch
<http://wiki.qemu.org/Contribute/SubmitAPatch>about how to split up
patches. Each patch applied in order shouldn't break any compilation
or runtime. Generally the flow is to add the logic in earlier patches
and then connect it and switch it on in the later patches.

Try splitting up adding/editing each individual device and send that
our first. That is generally the easiest to review/accept.

Thanks,

Alistair

---
.gitignore                          |  54 ++
hw/arm/Makefile.objs                |    2 +-
hw/arm/bcm2835.c                    |  114 ++++
hw/arm/bcm2835_peripherals.c        |  104 ++++
hw/arm/bcm2836.c                    |    3 +-
hw/arm/raspi.c                      |  77 ++-
hw/gpio/bcm2835_gpio.c              |  333 ++++++-----
hw/misc/Makefile.objs                |    2 +
hw/misc/bcm2835_mphi.c              |  163 ++++++
hw/misc/bcm2835_power.c              |  106 ++++
hw/timer/Makefile.objs              |    2 +
hw/timer/bcm2835_st.c                |  202 +++++++
hw/timer/bcm2835_timer.c            |  224 +++++++
hw/usb/Makefile.objs                |    4 +-
hw/usb/bcm2835_usb.c                |  604 +++++++++++++++++++
hw/usb/bcm2835_usb_regs.h            | 1061
++++++++++++++++++++++++++++++++++
hw/usb/dev-network.c                |    2 +-
include/hw/arm/bcm2835.h            |  37 ++
include/hw/arm/bcm2835_peripherals.h |  10 +
include/hw/gpio/bcm2835_gpio.h      |    5 +
include/hw/intc/bcm2835_control.h    |  53 ++
include/hw/intc/bcm2836_control.h    |    2 +
include/hw/misc/bcm2835_mphi.h      |  28 +
include/hw/misc/bcm2835_power.h      |  22 +
include/hw/timer/bcm2835_st.h        |  25 +
include/hw/timer/bcm2835_timer.h    |  32 +
include/hw/usb/bcm2835_usb.h        |  78 +++
include/qemu/PanelEmu.h              |  53 ++
util/Makefile.objs                  |    1 +
util/PanelEmu.c                      |  293 ++++++++++
30 files changed, 3547 insertions(+), 149 deletions(-)
create mode 100644 hw/arm/bcm2835.c
create mode 100644 hw/misc/bcm2835_mphi.c
create mode 100644 hw/misc/bcm2835_power.c
create mode 100644 hw/timer/bcm2835_st.c
create mode 100644 hw/timer/bcm2835_timer.c
create mode 100644 hw/usb/bcm2835_usb.c
create mode 100644 hw/usb/bcm2835_usb_regs.h
create mode 100644 include/hw/arm/bcm2835.h
create mode 100644 include/hw/intc/bcm2835_control.h
create mode 100644 include/hw/misc/bcm2835_mphi.h
create mode 100644 include/hw/misc/bcm2835_power.h
create mode 100644 include/hw/timer/bcm2835_st.h
create mode 100644 include/hw/timer/bcm2835_timer.h
create mode 100644 include/hw/usb/bcm2835_usb.h
create mode 100644 include/qemu/PanelEmu.h
create mode 100644 util/PanelEmu.c






reply via email to

[Prev in Thread] Current Thread [Next in Thread]