Skip to content
Snippets Groups Projects
  1. Jul 06, 2022
    • Thomas Huth's avatar
      pc-bios/s390-ccw/virtio: Set missing status bits while initializing · 175aa06a
      Thomas Huth authored
      
      According chapter "3.1.1 Driver Requirements: Device Initialization"
      of the Virtio specification (v1.1), a driver for a device has to set
      the ACKNOWLEDGE and DRIVER bits in the status field after resetting
      the device. The s390-ccw bios skipped these steps so far and seems
      like QEMU never cared. Anyway, it's better to follow the spec, so
      let's set these bits now in the right spots, too.
      
      Message-Id: <20220704111903.62400-7-thuth@redhat.com>
      Acked-by: default avatarChristian Borntraeger <borntraeger@linux.ibm.com>
      Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      175aa06a
    • Thomas Huth's avatar
      pc-bios/s390-ccw/virtio-blkdev: Remove virtio_assume_scsi() · 5447de26
      Thomas Huth authored
      
      The virtio_assume_scsi() function is very questionable: First, it
      is only called for virtio-blk, and not for virtio-scsi, so the naming
      is already quite confusing. Second, it is called if we detected a
      "invalid" IPL disk, trying to fix it by blindly setting a sector
      size of 512. This of course won't work in most cases since disks
      might have a different sector size for a reason.
      
      Thus let's remove this strange function now. The calling code can
      also be removed completely, since there is another spot in main.c
      that does "IPL_assert(virtio_ipl_disk_is_valid(), ...)" to make
      sure that we do not try to IPL from an invalid device.
      
      Message-Id: <20220704111903.62400-6-thuth@redhat.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      5447de26
    • Thomas Huth's avatar
      pc-bios/s390-ccw/virtio-blkdev: Simplify/fix virtio_ipl_disk_is_valid() · bbf615f7
      Thomas Huth authored
      
      The s390-ccw bios fails to boot if the boot disk is a virtio-blk
      disk with a sector size of 4096. For example:
      
       dasdfmt -b 4096 -d cdl -y -p -M quick /dev/dasdX
       fdasd -a /dev/dasdX
       install a guest onto /dev/dasdX1 using virtio-blk
       qemu-system-s390x -nographic -hda /dev/dasdX1
      
      The bios then bails out with:
      
       ! Cannot read block 0 !
      
      Looking at virtio_ipl_disk_is_valid() and especially the function
      virtio_disk_is_scsi(), it does not really make sense that we expect
      only such a limited disk geometry (like a block size of 512) for
      our boot disks. Let's relax the check and allow everything that
      remotely looks like a sane disk.
      
      Message-Id: <20220704111903.62400-5-thuth@redhat.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      bbf615f7
    • Thomas Huth's avatar
      pc-bios/s390-ccw/bootmap: Improve the guessing logic in zipl_load_vblk() · 422865f6
      Thomas Huth authored
      
      The logic of trying an final ISO or ECKD boot on virtio-block devices is
      very weird: Since the geometry hardly ever matches in virtio_disk_is_scsi(),
      virtio_blk_setup_device() always sets a "guessed" disk geometry via
      virtio_assume_scsi() (which is certainly also wrong in a lot of cases).
      
      zipl_load_vblk() then sees that there's been a "virtio_guessed_disk_nature"
      and tries to fix up the geometry again via virtio_assume_iso9660() before
      always trying to do ipl_iso_el_torito(). That's a very brain-twisting
      way of attempting to boot from ISO images, which won't work anymore after
      the following patches that will clean up the virtio_assume_scsi() mess
      (and thus get rid of the "virtio_guessed_disk_nature" here).
      
      Let's try a better approach instead: ISO files always have a magic
      string "CD001" at offset 0x8001 (see e.g. the ECMA-119 specification)
      which we can use to decide whether we should try to boot in ISO 9660
      mode (which we should also try if we see a sector size of 2048).
      
      And if we were not able to boot in ISO mode here, the final boot attempt
      before panicking is to boot in ECKD mode. Since this is our last boot
      attempt anyway, simply always assume the ECKD geometry here (if the sector
      size was not 4096 yet), so that we also do not depend on the guessed disk
      geometry from virtio_blk_setup_device() here anymore.
      
      Message-Id: <20220704111903.62400-4-thuth@redhat.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      422865f6
    • Thomas Huth's avatar
      pc-bios/s390-ccw/virtio: Introduce a macro for the DASD block size · 1f2c2ee4
      Thomas Huth authored
      
      Use VIRTIO_DASD_DEFAULT_BLOCK_SIZE instead of the magic value 4096.
      
      Message-Id: <20220704111903.62400-3-thuth@redhat.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      1f2c2ee4
    • Thomas Huth's avatar
      pc-bios/s390-ccw: Add a proper prototype for main() · 2ba3cc47
      Thomas Huth authored
      
      Older versions of Clang complain if there is no prototype for main().
      Add one, and while we're at it, make sure that we use the same type
      for main.c and netmain.c - since the return value does not matter,
      declare the return type of main() as "void".
      
      Message-Id: <20220704111903.62400-2-thuth@redhat.com>
      Reviewed-by: default avatarCornelia Huck <cohuck@redhat.com>
      Reviewed-by: default avatarEric Farman <farman@linux.ibm.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      2ba3cc47
    • Janis Schoetterl-Glausch's avatar
      target/s390x/tcg: SPX: check validity of new prefix · f8333de2
      Janis Schoetterl-Glausch authored
      
      According to the architecture, SET PREFIX must try to access the new
      prefix area and recognize an addressing exception if the area is not
      accessible.
      For qemu this check prevents a crash in cpu_map_lowcore after an
      inaccessible prefix area has been set.
      
      Signed-off-by: default avatarJanis Schoetterl-Glausch <scgl@linux.ibm.com>
      Reviewed-by: default avatarDavid Hildenbrand <david@redhat.com>
      Message-Id: <20220630094340.3646279-1-scgl@linux.ibm.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      f8333de2
  2. Jul 05, 2022
  3. Jul 04, 2022
    • Marc-André Lureau's avatar
      tests: fix test-cutils leaks · 9323af2e
      Marc-André Lureau authored
      
      Reported by ASAN.
      
      Fixes commit cfb34489 ("cutils: add functions for IEC and SI prefixes").
      
      Signed-off-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Message-Id: <20220621083420.66365-1-marcandre.lureau@redhat.com>
      Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
      9323af2e
    • Richard Henderson's avatar
      Merge tag 'pull-la-20220704' of https://gitlab.com/rth7680/qemu into staging · 1437479e
      Richard Henderson authored
      LoongArch patch queue:
        Support linux-user.
        Fixes for CSR BADV.
        Fix ASRT{LE,GT} exception.
        Fixes for LS7A RTC.
        Fix for interrupt vector spacing.
      
      # -----BEGIN PGP SIGNATURE-----
      #
      # iQFRBAABCgA7FiEEekgeeIaLTbaoWgXAZN846K9+IV8FAmLCs4gdHHJpY2hhcmQu
      # aGVuZGVyc29uQGxpbmFyby5vcmcACgkQZN846K9+IV89IQgAsgGM117dgDlI48wP
      # zRVRE9rmK9EE/YR8b4rejh5iFlH0kZTELWAaXmjxWSv9uyXwsApNdnxnthUH1CRD
      # RbT8AOIUphH6MBMb2joy+zFyBkGBnJQbSxJWN0jDT/ie67I/O0qOIemXU9tETssn
      # OLNCn+GuNFLiS8EytczkZHDmQjjt00PGZLsnCm+ZY+/ejNci0FV0NItBo6iWxDdj
      # 8MPJU8pDkXyi+djJpExPc0hTxJ2qmH0FZtpjKwWnU8dbLSRD9IfYhFK5Tsh1oxYJ
      # 9Er9ZS0RI2CqK3o2k7keYsJHMaIZbNZKhcoA3XiGs15T9YHe1Rc9FeYDasrQw4wQ
      # 60FwkA==
      # =i2CR
      # -----END PGP SIGNATURE-----
      # gpg: Signature made Mon 04 Jul 2022 03:01:52 PM +0530
      # gpg:                using RSA key 7A481E78868B4DB6A85A05C064DF38E8AF7E215F
      # gpg:                issuer "richard.henderson@linaro.org"
      # gpg: Good signature from "Richard Henderson <richard.henderson@linaro.org>" [ultimate]
      
      * tag 'pull-la-20220704' of https://gitlab.com/rth7680/qemu
      
      : (23 commits)
        target/loongarch: Add lock when writing timer clear reg
        target/loongarch: Fix the meaning of ECFG reg's VS field
        hw/rtc/ls7a_rtc: Fix 'calculate' spelling errors
        hw/rtc/ls7a_rtc: Use tm struct pointer as arguments in toy_time_to_val()
        hw/rtc/ls7a_rtc: Fix rtc enable and disable function
        hw/rtc/ls7a_rtc: Add reset function
        hw/rtc/ls7a_rtc: Remove unimplemented device in realized function
        hw/rtc/ls7a_rtc: Fix timer call back function
        hw/rtc/ls7a_rtc: Fix uninitialied bugs and toymatch writing function
        hw/intc/loongarch_pch_msi: Fix msi vector convertion
        target/loongarch: Update README
        default-configs: Add loongarch linux-user support
        target/loongarch: Adjust functions and structure to support user-mode
        target/loongarch: remove unused include hw/loader.h
        target/loongarch: Fix helper_asrtle_d/asrtgt_d raise wrong exception
        target/loongarch: Fix missing update CSR_BADV
        target/loongarch: remove badaddr from CPULoongArch
        scripts: add loongarch64 binfmt config
        linux-user: Add LoongArch cpu_loop support
        linux-user: Add LoongArch syscall support
        ...
      
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      1437479e
    • Richard Henderson's avatar
      Merge tag 'kraxel-20220704-pull-request' of https://gitlab.com/kraxel/qemu into staging · dfe2382f
      Richard Henderson authored
      usb: canokey fixes.
      ui: better tab labels, cocoa fix,
      docs: convert fw_cfg to rst.
      
      # -----BEGIN PGP SIGNATURE-----
      #
      # iQIzBAABCgAdFiEEoDKM/7k6F6eZAf59TLbY7tPocTgFAmLCndwACgkQTLbY7tPo
      # cTjNHA/+MT56crVXnjMTdgBRLOuq0cxYnIUptN0JPKx9DTJzdlXEyT+zYD7iIzUt
      # W0xbOrTLVzU9hfJVh9/5V2HuFmc1eAhfl0BDTzd1TT0kdH6LyUkz5RWgotzo3nvH
      # 7tnl/sBy48a7diSyQn6K2s8r35ubrX1GNJiJcCLWdVEqvzKKWDEqebs02PxbN/OJ
      # 9UG9xtkM/QQ1+h74jq5BGKXf08xOhOZIjO274Sn5zievBC9JU6RVkCOlUXiBdk51
      # +vNTfKt3c864cstryXSTknYWyVv7zKzCqr7xR7c+fgbt3cN/HmLkM9LGytDMEDl/
      # IC0CtKiRN316GgVHHMDT8v8X2dVHNH9ZEEoXRKIbc5jD/tetJw7IIEO7blJphdpV
      # WE4/bRpJwYVW9UHzig9rPRxsHLs3NSZbNCQEbGUvAbZzS2kq9hnDa/BBtFSYaf+X
      # RIwR7rY7WhENfSrus1jR5rfWRU7n+q+fcNIFZetUakH1V6Idb0xQir3eM/yM6sBC
      # nzQSzzLsd3Mwh2ahbnLZ1HkyybZV692usVylKsFLVwcUhCvk+VHccOF31QfrxO/j
      # ogVzTYYtfrGM5kaknueIMg7XAhjQ04Av70+0b886kZawB3ZE5Ccare2TztHq1jcG
      # dMdEm7DLaDRm2RXa9NtcbxsIrS0DT2EuFcBnQ1mHMCGql4MidzE=
      # =Bhbw
      # -----END PGP SIGNATURE-----
      # gpg: Signature made Mon 04 Jul 2022 01:29:24 PM +0530
      # gpg:                using RSA key A0328CFFB93A17A79901FE7D4CB6D8EED3E87138
      # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" [undefined]
      # gpg:                 aka "Gerd Hoffmann <gerd@kraxel.org>" [undefined]
      # gpg:                 aka "Gerd Hoffmann (private) <kraxel@gmail.com>" [undefined]
      # 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: A032 8CFF B93A 17A7 9901  FE7D 4CB6 D8EE D3E8 7138
      
      * tag 'kraxel-20220704-pull-request' of https://gitlab.com/kraxel/qemu
      
      :
        hw: canokey: Remove HS support as not compliant to the spec
        docs/system/devices/usb/canokey: remove limitations on qemu-xhci
        hw/usb/canokey: fix compatibility of qemu-xhci
        hw/usb/canokey: Fix CCID ZLP
        ui/cocoa: Fix clipboard text release
        ui/console: allow display device to be labeled with given id
        Convert fw_cfg.rst to reStructuredText syntax
        Rename docs/specs/fw_cfg.txt to .rst
      
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      dfe2382f
    • Xiaojuan Yang's avatar
      target/loongarch: Add lock when writing timer clear reg · eb1e9ff8
      Xiaojuan Yang authored
      
      There is such error info when running linux kernel:
          tcg_handle_interrupt: assertion failed: (qemu_mutex_iothread_locked()).
          calling stack:
          #0 in raise () at /lib64/libc.so.6
          #1 in abort () at /lib64/libc.so.6
          #2 in g_assertion_message_expr.cold () at /lib64/libglib-2.0.so.0
          #3 in g_assertion_message_expr () at /lib64/libglib-2.0.so.0
          #4 in tcg_handle_interrupt (cpu=0x632000030800, mask=2) at ../accel/tcg/tcg-accel-ops.c:79
          #5 in cpu_interrupt (cpu=0x632000030800, mask=2) at ../softmmu/cpus.c:248
          #6 in loongarch_cpu_set_irq (opaque=0x632000030800, irq=11, level=0)
             at ../target/loongarch/cpu.c:100
          #7 in helper_csrwr_ticlr (env=0x632000039440, val=1) at ../target/loongarch/csr_helper.c:85
          #8 in code_gen_buffer ()
          #9 in cpu_tb_exec (cpu=0x632000030800, itb=0x7fff946ac280, tb_exit=0x7ffe4fcb6c30)
             at ../accel/tcg/cpu-exec.c:358
      
      Add mutex iothread lock around loongarch_cpu_set_irq in csrwr_ticlr() to
      fix the bug.
      
      Signed-off-by: default avatarXiaojuan Yang <yangxiaojuan@loongson.cn>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-Id: <20220701093407.2150607-10-yangxiaojuan@loongson.cn>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      eb1e9ff8
    • Xiaojuan Yang's avatar
      target/loongarch: Fix the meaning of ECFG reg's VS field · 46233676
      Xiaojuan Yang authored
      
      By the manual of LoongArch CSR, the VS field(18:16 bits) of
      ECFG reg means that the number of instructions between each
      exception entry is 2^VS.
      
      Signed-off-by: default avatarXiaojuan Yang <yangxiaojuan@loongson.cn>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-Id: <20220701093407.2150607-9-yangxiaojuan@loongson.cn>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      46233676
    • Xiaojuan Yang's avatar
      hw/rtc/ls7a_rtc: Fix 'calculate' spelling errors · 59e52dcf
      Xiaojuan Yang authored
      
      Fix 'calculate' spelling errors.
      
      Signed-off-by: default avatarXiaojuan Yang <yangxiaojuan@loongson.cn>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-Id: <20220701093407.2150607-8-yangxiaojuan@loongson.cn>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      59e52dcf
    • Xiaojuan Yang's avatar
      hw/rtc/ls7a_rtc: Use tm struct pointer as arguments in toy_time_to_val() · 582788c3
      Xiaojuan Yang authored
      
      Use pointer as arguments in toy_time_to_val() instead of struct tm.
      
      Signed-off-by: default avatarXiaojuan Yang <yangxiaojuan@loongson.cn>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-Id: <20220701093407.2150607-7-yangxiaojuan@loongson.cn>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      582788c3
    • Xiaojuan Yang's avatar
      hw/rtc/ls7a_rtc: Fix rtc enable and disable function · 6935f132
      Xiaojuan Yang authored
      
      Fix ls7a rtc enable and disable function. When rtc disabled, it do
      not support to read or write, but the real time is still continue,
      so we need not neither save the time nor update the rtc offset.
      
      Signed-off-by: default avatarXiaojuan Yang <yangxiaojuan@loongson.cn>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-Id: <20220701093407.2150607-6-yangxiaojuan@loongson.cn>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      6935f132
    • Xiaojuan Yang's avatar
      hw/rtc/ls7a_rtc: Add reset function · e5c0367e
      Xiaojuan Yang authored
      
      Add ls7a rtc reset function to delete timers and clear regs when rtc reset.
      
      Signed-off-by: default avatarXiaojuan Yang <yangxiaojuan@loongson.cn>
      Message-Id: <20220701093407.2150607-5-yangxiaojuan@loongson.cn>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      e5c0367e
Loading