lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 23 May 2022 11:22:00 +0200
From:   Geert Uytterhoeven <geert@...ux-m68k.org>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
Cc:     Andrew Morton <akpm@...ux-foundation.org>,
        Greg Ungerer <gerg@...ux-m68k.org>,
        linux-m68k@...ts.linux-m68k.org, linux-kernel@...r.kernel.org,
        Geert Uytterhoeven <geert@...ux-m68k.org>
Subject: [GIT PULL] m68k updates for v5.19

	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@...ux-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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ