linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] m68k updates for v5.19
@ 2022-05-23  9:22 Geert Uytterhoeven
  2022-05-24  4:27 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Geert Uytterhoeven @ 2022-05-23  9:22 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Andrew Morton, Greg Ungerer, linux-m68k, linux-kernel,
	Geert Uytterhoeven

	Hi Linus,

The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17:

  Linux 5.18-rc1 (2022-04-03 14:08:21 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git tags/m68k-for-v5.19-tag1

for you to fetch changes up to 30b5e6ef4a32ea4985b99200e06d6660a69f9246:

  m68k: atari: Make Atari ROM port I/O write macros return void (2022-05-22 12:24:14 +0200)

----------------------------------------------------------------
m68k updates for v5.19

  - Introduce virtual m68k machine based on Android Goldfish devices,
  - Defconfig updates,
  - Minor fixes and improvements.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (3):
      m68k: defconfig: Update defconfigs for v5.18-rc1
      m68k: math-emu: Fix dependencies of math emulation support
      m68k: atari: Make Atari ROM port I/O write macros return void

Julia Lawall (1):
      m68k: math-emu: Fix typos in comments

Laurent Vivier (4):
      tty: goldfish: Introduce gf_ioread32()/gf_iowrite32()
      rtc: goldfish: Use gf_ioread32()/gf_iowrite32()
      clocksource/drivers: Add a goldfish-timer clocksource
      m68k: Introduce a virtual m68k machine

Michael Schmitz (1):
      m68k: Wire up syscall_trace_enter/leave for m68k

 arch/m68k/Kbuild                           |   1 +
 arch/m68k/Kconfig.cpu                      |   2 +-
 arch/m68k/Kconfig.machine                  |  17 ++++
 arch/m68k/configs/amiga_defconfig          |   5 +-
 arch/m68k/configs/apollo_defconfig         |   5 +-
 arch/m68k/configs/atari_defconfig          |   5 +-
 arch/m68k/configs/bvme6000_defconfig       |   5 +-
 arch/m68k/configs/hp300_defconfig          |   5 +-
 arch/m68k/configs/mac_defconfig            |   5 +-
 arch/m68k/configs/multi_defconfig          |   5 +-
 arch/m68k/configs/mvme147_defconfig        |   5 +-
 arch/m68k/configs/mvme16x_defconfig        |   5 +-
 arch/m68k/configs/q40_defconfig            |   5 +-
 arch/m68k/configs/sun3_defconfig           |   5 +-
 arch/m68k/configs/sun3x_defconfig          |   5 +-
 arch/m68k/configs/virt_defconfig           |  68 +++++++++++++
 arch/m68k/include/asm/config.h             |   2 +
 arch/m68k/include/asm/io.h                 |   3 +
 arch/m68k/include/asm/irq.h                |   3 +-
 arch/m68k/include/asm/pgtable_mm.h         |   7 ++
 arch/m68k/include/asm/raw_io.h             |   6 +-
 arch/m68k/include/asm/setup.h              |  44 ++++++--
 arch/m68k/include/asm/virt.h               |  25 +++++
 arch/m68k/include/uapi/asm/bootinfo-virt.h |  18 ++++
 arch/m68k/include/uapi/asm/bootinfo.h      |   1 +
 arch/m68k/kernel/Makefile                  |   1 +
 arch/m68k/kernel/entry.S                   |   4 +-
 arch/m68k/kernel/head.S                    |  31 ++++++
 arch/m68k/kernel/ptrace.c                  |   7 --
 arch/m68k/kernel/setup_mm.c                |   7 ++
 arch/m68k/math-emu/fp_arith.c              |   2 +-
 arch/m68k/mm/kmap.c                        |  21 ++--
 arch/m68k/virt/Makefile                    |   6 ++
 arch/m68k/virt/config.c                    | 130 ++++++++++++++++++++++++
 arch/m68k/virt/ints.c                      | 155 +++++++++++++++++++++++++++++
 arch/m68k/virt/platform.c                  |  72 ++++++++++++++
 drivers/clocksource/Kconfig                |   7 ++
 drivers/clocksource/Makefile               |   1 +
 drivers/clocksource/timer-goldfish.c       | 153 ++++++++++++++++++++++++++++
 drivers/rtc/rtc-goldfish.c                 |  44 ++++----
 drivers/tty/goldfish.c                     |  20 ++--
 include/clocksource/timer-goldfish.h       |  31 ++++++
 include/linux/goldfish.h                   |  15 ++-
 43 files changed, 844 insertions(+), 120 deletions(-)
 create mode 100644 arch/m68k/configs/virt_defconfig
 create mode 100644 arch/m68k/include/asm/virt.h
 create mode 100644 arch/m68k/include/uapi/asm/bootinfo-virt.h
 create mode 100644 arch/m68k/virt/Makefile
 create mode 100644 arch/m68k/virt/config.c
 create mode 100644 arch/m68k/virt/ints.c
 create mode 100644 arch/m68k/virt/platform.c
 create mode 100644 drivers/clocksource/timer-goldfish.c
 create mode 100644 include/clocksource/timer-goldfish.h

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] m68k updates for v5.19
  2022-05-23  9:22 [GIT PULL] m68k updates for v5.19 Geert Uytterhoeven
@ 2022-05-24  4:27 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-05-24  4:27 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Linus Torvalds, Andrew Morton, Greg Ungerer, linux-m68k,
	linux-kernel, Geert Uytterhoeven

The pull request you sent on Mon, 23 May 2022 11:22:00 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git tags/m68k-for-v5.19-tag1

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/fdd8f6585cef1c8c0fac745c1baa687301d55a90

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-05-24  4:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-23  9:22 [GIT PULL] m68k updates for v5.19 Geert Uytterhoeven
2022-05-24  4:27 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).