[PULL 0/7] M68k for 6.0 patches

Laurent Vivier posted 7 patches 4 years, 9 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210212211448.413489-1-laurent@vivier.eu
Maintainers: Laurent Vivier <laurent@vivier.eu>
There is a newer version of this series
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
[PULL 0/7] M68k for 6.0 patches
Posted by Laurent Vivier 4 years, 9 months ago
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


Re: [PULL 0/7] M68k for 6.0 patches
Posted by Peter Maydell 4 years, 9 months ago
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