mbox

[PULL,0/7] M68k for 6.0 patches

Message ID 20210212211448.413489-1-laurent@vivier.eu
State New
Headers show

Pull-request

git://github.com/vivier/qemu-m68k.git tags/m68k-for-6.0-pull-request

Message

Laurent Vivier Feb. 12, 2021, 9:14 p.m. UTC
The following changes since commit 5b19cb63d9dfda41b412373b8c9fe14641bcab60:

  Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-tcg-20210205' in=
to staging (2021-02-05 22:59:12 +0000)

are available in the Git repository at:

  git://github.com/vivier/qemu-m68k.git tags/m68k-for-6.0-pull-request

for you to fetch changes up to 382d71af7d61620ffb023962f83cc4786303c60d:

  m68k: import bootinfo headers from linux (2021-02-11 21:56:42 +0100)

----------------------------------------------------------------
Pull request m68k-20210212

Move bootinfo headers to include/standard-headers/asm-m68k
Add M68K_FEATURE_MSP, M68K_FEATURE_MOVEC, M68K_FEATURE_M68010
Add 68060 CR BUSCR and PCR (unimplemented)
CPU types and features cleanup

----------------------------------------------------------------

Laurent Vivier (1):
  m68k: import bootinfo headers from linux

Lucien Murray-Pitts (6):
  m68k: improve cpu instantiation comments
  m68k: cascade m68k_features by m680xx_cpu_initfn() to improve
    readability
  m68k: improve comments on m68k_move_to/from helpers
  m68k: add missing BUSCR/PCR CR defines, and BUSCR/PCR/CAAR CR to
    m68k_move_to/from
  m68k: MOVEC insn. should generate exception if wrong CR is accessed
  m68k: add MSP detection support for stack pointer swap helpers

 hw/m68k/bootinfo.h                            |  55 ----
 .../standard-headers/asm-m68k/bootinfo-mac.h  | 120 +++++++++
 include/standard-headers/asm-m68k/bootinfo.h  | 166 +++++++++++++
 target/m68k/cpu.h                             |  64 +++--
 hw/m68k/q800.c                                |  20 +-
 target/m68k/cpu.c                             | 116 ++++++---
 target/m68k/helper.c                          | 234 ++++++++++++++----
 target/m68k/translate.c                       |   2 +-
 MAINTAINERS                                   |   2 +
 9 files changed, 604 insertions(+), 175 deletions(-)
 create mode 100644 include/standard-headers/asm-m68k/bootinfo-mac.h
 create mode 100644 include/standard-headers/asm-m68k/bootinfo.h

--=20
2.29.2

Comments

Peter Maydell Feb. 13, 2021, 9:25 p.m. UTC | #1
On Fri, 12 Feb 2021 at 21:18, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 5b19cb63d9dfda41b412373b8c9fe14641bcab60:
>
>   Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-tcg-20210205' in=
> to staging (2021-02-05 22:59:12 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu-m68k.git tags/m68k-for-6.0-pull-request
>
> for you to fetch changes up to 382d71af7d61620ffb023962f83cc4786303c60d:
>
>   m68k: import bootinfo headers from linux (2021-02-11 21:56:42 +0100)
>
> ----------------------------------------------------------------
> Pull request m68k-20210212
>
> Move bootinfo headers to include/standard-headers/asm-m68k
> Add M68K_FEATURE_MSP, M68K_FEATURE_MOVEC, M68K_FEATURE_M68010
> Add 68060 CR BUSCR and PCR (unimplemented)
> CPU types and features cleanup


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.0
for any user-visible changes.

-- PMM