mbox

[PULL,0/2] target-arm queue

Message ID 1447341797-29506-1-git-send-email-peter.maydell@linaro.org
State New
Headers show

Pull-request

git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20151112

Message

Peter Maydell Nov. 12, 2015, 3:23 p.m. UTC
Last two things to sneak in before rc0.

thanks
-- PMM

The following changes since commit 17e50a72a3aade0eddfebc012a5d7bdd40a03573:

  Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging (2015-11-12 14:15:32 +0000)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20151112

for you to fetch changes up to a7df81a503ce0dd38fe400c9a37fe95ee07b51f0:

  hw/misc: Add support for ADC controller in Xilinx Zynq 7000 (2015-11-12 15:10:43 +0000)

----------------------------------------------------------------
target-arm queue:
 * add ADC controller to zynq board
 * update PC before calling gen_helper_check_breakpoints()

----------------------------------------------------------------
Guenter Roeck (1):
      hw/misc: Add support for ADC controller in Xilinx Zynq 7000

Sergey Fedorov (1):
      target-arm: Update PC before calling gen_helper_check_breakpoints()

 hw/arm/xilinx_zynq.c        |   6 +
 hw/misc/Makefile.objs       |   1 +
 hw/misc/zynq-xadc.c         | 302 ++++++++++++++++++++++++++++++++++++++++++++
 include/hw/misc/zynq-xadc.h |  46 +++++++
 target-arm/translate-a64.c  |   1 +
 target-arm/translate.c      |   1 +
 6 files changed, 357 insertions(+)
 create mode 100644 hw/misc/zynq-xadc.c
 create mode 100644 include/hw/misc/zynq-xadc.h

Comments

Peter Maydell Nov. 12, 2015, 4:52 p.m. UTC | #1
On 12 November 2015 at 15:23, Peter Maydell <peter.maydell@linaro.org> wrote:
> Last two things to sneak in before rc0.
>
> thanks
> -- PMM
>
> The following changes since commit 17e50a72a3aade0eddfebc012a5d7bdd40a03573:
>
>   Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging (2015-11-12 14:15:32 +0000)
>
> are available in the git repository at:
>
>
>   git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20151112
>
> for you to fetch changes up to a7df81a503ce0dd38fe400c9a37fe95ee07b51f0:
>
>   hw/misc: Add support for ADC controller in Xilinx Zynq 7000 (2015-11-12 15:10:43 +0000)
>
> ----------------------------------------------------------------
> target-arm queue:
>  * add ADC controller to zynq board
>  * update PC before calling gen_helper_check_breakpoints()
>
> ----------------------------------------------------------------
> Guenter Roeck (1):
>       hw/misc: Add support for ADC controller in Xilinx Zynq 7000
>
> Sergey Fedorov (1):
>       target-arm: Update PC before calling gen_helper_check_breakpoints()

The ADC patch had compile failures due to not having a 'default' case
in its register-read function which meant it was provoking warnings
about value-maybe-used-uninitialized. So I dropped that one and
just cherry-picked the BP fix patch.

thanks
-- PMM