qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] c92023: MAINTAINERS: update target-mips maint


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] c92023: MAINTAINERS: update target-mips maintainers
Date: Thu, 28 Jun 2018 07:29:00 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: c92023bfd18c968d615b715522467f7354db5877
      
https://github.com/qemu/qemu/commit/c92023bfd18c968d615b715522467f7354db5877
  Author: Aleksandar Markovic <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: update target-mips maintainers

Yongbok Kim transfers duties of QEMU for target MIPS maintainer to
myself as he leaves MIPS. Many thanks to Yongbok for his substantial
contributing to QEMU for MIPS over many years and taking care of its
maintainance for almost two years.

Signed-off-by: Aleksandar Markovic <address@hidden>
Acked-by: Yongbok Kim <address@hidden>
Reviewed-by: Aleksandar Markovic <address@hidden>


  Commit: 9581eeebe3ffd37f7fde270f92c96a2c5ebb860c
      
https://github.com/qemu/qemu/commit/9581eeebe3ffd37f7fde270f92c96a2c5ebb860c
  Author: Peter Maydell <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M hw/mips/boston.c

  Log Message:
  -----------
  hw/mips/boston: don't make flash region 'nomigrate'

Currently we use memory_region_init_rom_nomigrate() to create
the "boston.flash" memory region, and we don't manually register
it with vmstate_register_ram(). This currently means that its
contents are migrated but as a ram block whose name is the empty
string; in future it may mean they are not migrated at all. Use
memory_region_init_ram() instead.

Note that this is a a cross-version migration compatibility break
for the "boston" machine.

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Cédric Le Goater <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Paul Burton <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: 917b77f5e5a713c217ecc962fd8c491aa9b586aa
      
https://github.com/qemu/qemu/commit/917b77f5e5a713c217ecc962fd8c491aa9b586aa
  Author: Peter Maydell <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M hw/mips/mips_malta.c

  Log Message:
  -----------
  hw/mips/mips_malta: don't make bios region 'nomigrate'

Currently we use memory_region_init_rom_nomigrate() to create
the "bios.1fc" memory region, and we don't manually register
it with vmstate_register_ram(). This currently means that its
contents are migrated but as a ram block whose name is the empty
string; in future it may mean they are not migrated at all. Use
memory_region_init_ram() instead.

Note that this is a a cross-version migration compatibility break
for the "malta" machine.

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Cédric Le Goater <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Paul Burton <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: 4f91740698ced512fdad8540eb0bd232fc70aadd
      
https://github.com/qemu/qemu/commit/4f91740698ced512fdad8540eb0bd232fc70aadd
  Author: Peter Maydell <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M hw/pci-host/xilinx-pcie.c

  Log Message:
  -----------
  hw/pci-host/xilinx-pcie: don't make "io" region be RAM

Currently we use memory_region_init_rom_nomigrate() to create
the "io" memory region to pass to pci_register_root_bus().
This is a dummy region, because this PCI controller doesn't
support accesses to PCI IO space.

There is no reason for the dummy region to be a RAM region;
it is only used as a place where PCI BARs can be mapped,
and if you could get a PCI card to do a bus master access
to the IO space it should not get acts-like-RAM behaviour.
Use a simple container memory region instead. (We do have
one PCI card model which can do bus master accesses to IO
space -- the LSI53C895A SCSI adaptor.)

This avoids the oddity of having a memory region which is
RAM but where the RAM is not migrated.

Note that the size of the region we use here has no
effect on behaviour.

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Alistair Francis <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: f48a2cb21824217a61ec7be797860a0702e5325c
      
https://github.com/qemu/qemu/commit/f48a2cb21824217a61ec7be797860a0702e5325c
  Author: Yongbok Kim <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M target/mips/op_helper.c

  Log Message:
  -----------
  target/mips: Raise a RI when given fs is n/a from CTC1

Fix to raise a Reserved Instruction exception when given fs is not
available from CTC1.

Signed-off-by: Yongbok Kim <address@hidden>
Reviewed-by: Aleksandar Markovic <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: 0305d194be1dbda09fa7a7c883894030d07c355f
      
https://github.com/qemu/qemu/commit/0305d194be1dbda09fa7a7c883894030d07c355f
  Author: Yongbok Kim <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M target/mips/translate.c

  Log Message:
  -----------
  target/mips: Fix microMIPS on reset

Fix to activate microMIPS on reset when Config3.ISA == {1, 3}

Signed-off-by: Yongbok Kim <address@hidden>
Reviewed-by: Aleksandar Markovic <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: b52d3bfa2d54d99ef25f6d008815eecc53b67bfe
      
https://github.com/qemu/qemu/commit/b52d3bfa2d54d99ef25f6d008815eecc53b67bfe
  Author: Yongbok Kim <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M target/mips/translate.c

  Log Message:
  -----------
  target/mips: Update gen_flt_ldst()

Update gen_flt_ldst() in order to reuse the functions for nanoMIPS

Signed-off-by: Yongbok Kim <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Aleksandar Markovic <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: 72e1f16f18fe62504f8f25d7a3f6813b24b221be
      
https://github.com/qemu/qemu/commit/72e1f16f18fe62504f8f25d7a3f6813b24b221be
  Author: Yongbok Kim <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M target/mips/translate.c

  Log Message:
  -----------
  target/mips: Fix data type for offset

Offset can be larger than 16 bit from nanoMIPS,
and immediate field can be larger than 16 bits as well.

Signed-off-by: Yongbok Kim <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Reviewed-by: Aleksandar Markovic <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: 8e0b373f8aa4b9feec7b44029455587e2e3d2b0f
      
https://github.com/qemu/qemu/commit/8e0b373f8aa4b9feec7b44029455587e2e3d2b0f
  Author: Yongbok Kim <address@hidden>
  Date:   2018-06-27 (Wed, 27 Jun 2018)

  Changed paths:
    M target/mips/gdbstub.c

  Log Message:
  -----------
  target/mips: Fix gdbstub to read/write 64 bit FP registers

Fix gdbstub to read/write 64 bit FP registers

Signed-off-by: Yongbok Kim <address@hidden>
Reviewed-by: Aleksandar Markovic <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>


  Commit: 18896679aa982609b31b4a7d357a6542e59af093
      
https://github.com/qemu/qemu/commit/18896679aa982609b31b4a7d357a6542e59af093
  Author: Peter Maydell <address@hidden>
  Date:   2018-06-28 (Thu, 28 Jun 2018)

  Changed paths:
    M MAINTAINERS
    M hw/mips/boston.c
    M hw/mips/mips_malta.c
    M hw/pci-host/xilinx-pcie.c
    M target/mips/gdbstub.c
    M target/mips/op_helper.c
    M target/mips/translate.c

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-2018-06-27' 
into staging

MIPS queue

# gpg: Signature made Wed 27 Jun 2018 19:16:23 BST
# gpg:                using RSA key D4972A8967F75A65
# gpg: Good signature from "Aleksandar Markovic <address@hidden>"
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg:          There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 8526 FBF1 5DA3 811F 4A01  DD75 D497 2A89 67F7 5A65

* remotes/amarkovic/tags/mips-queue-2018-06-27:
  target/mips: Fix gdbstub to read/write 64 bit FP registers
  target/mips: Fix data type for offset
  target/mips: Update gen_flt_ldst()
  target/mips: Fix microMIPS on reset
  target/mips: Raise a RI when given fs is n/a from CTC1
  hw/pci-host/xilinx-pcie: don't make "io" region be RAM
  hw/mips/mips_malta: don't make bios region 'nomigrate'
  hw/mips/boston: don't make flash region 'nomigrate'
  MAINTAINERS: update target-mips maintainers

Signed-off-by: Peter Maydell <address@hidden>


Compare: https://github.com/qemu/qemu/compare/1571a23c8f6f...18896679aa98
      **NOTE:** This service been marked for deprecation: 
https://developer.github.com/changes/2018-04-25-github-services-deprecation/

      Functionality will be removed from GitHub.com on January 31st, 2019.

reply via email to

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