From patchwork Mon Mar 11 19:15:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Schnelle X-Patchwork-Id: 1054829 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=stackframe.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=duncanthrax.net header.i=@duncanthrax.net header.b="cTt4MfMD"; dkim-atps=neutral Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44J7dz6750z9s5c for ; Tue, 12 Mar 2019 06:36:55 +1100 (AEDT) Received: from localhost ([127.0.0.1]:39131 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3QjF-0001zV-DG for incoming@patchwork.ozlabs.org; Mon, 11 Mar 2019 15:36:53 -0400 Received: from eggs.gnu.org ([209.51.188.92]:34436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h3Qb0-0004Hb-PI for qemu-devel@nongnu.org; Mon, 11 Mar 2019 15:28:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h3QPI-0007WC-6Q for qemu-devel@nongnu.org; Mon, 11 Mar 2019 15:16:17 -0400 Received: from smtp.duncanthrax.net ([2001:470:70c5:1111::170]:39300) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h3QPH-0007RM-L5 for qemu-devel@nongnu.org; Mon, 11 Mar 2019 15:16:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=duncanthrax.net; s=dkim; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Message-Id:Date:Subject:Cc:To:From; bh=5AmjySwZMHjrzhb6BIFzysYt4BN8pXOW7uyqp6kcpFI=; b=cTt4MfMDCj6PfkU6eLAiTCLS3H h7yovkhUTOSm7Btnr0DqM+3IvIq0FW4HdPS0dYl9hQqyGS92o6unKpa3uqg/vomm0QB69Z1N/RRwE YfbQvGFvI+I6q/ocEaF3CSvtWe9ZDwGQK0YlIUSYiAqW1v0H38zdxw+Wo+WKxtd/ePIw=; Received: from [134.3.47.207] (helo=t470p.stackframe.org) by smtp.eurescom.eu with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1h3QPB-0005b3-Ur; Mon, 11 Mar 2019 20:16:10 +0100 From: Sven Schnelle To: Richard Henderson Date: Mon, 11 Mar 2019 20:15:51 +0100 Message-Id: <20190311191602.25796-1-svens@stackframe.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:470:70c5:1111::170 Subject: [Qemu-devel] [PATCH 00/11] target/hppa patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Sven Schnelle , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Hi Richard, here are a few fixes for the HPPA architecture. Some fixes for problems reported by diagnostics software, some TLB fixes to make HP-UX 10.20 work with TB chaining in QEMU. I'm not sure whether the 'call eval_interrupt() after ssm' fix is really the right way - please check. I haven't seen any problems with these HP-UX 10.20 anymore, and Linux also still works. Thanks Sven Sven Schnelle (11): target/hppa: fix overwriting source reg in addb target/hppa: fix TLB handling for page 0 target/hppa: report ITLB_EXCP_MISS for ITLB misses target/hppa: add TLB trace events target/hppa: remove PSW I/R/Q bit check target/hppa: ignore DIAG opcode target/hppa: fix b,gate instruction target/hppa: allow multiple itlbp without itlba target/hppa: add TLB protection id check target/hppa: exit TB if either Data or Instruction TLB changes target/hppa: call eval_interrupt() after ssm Makefile.objs | 1 + target/hppa/cpu.h | 5 +++ target/hppa/insns.decode | 3 ++ target/hppa/int_helper.c | 2 +- target/hppa/mem_helper.c | 68 +++++++++++++++++++++++++++++++--------- target/hppa/op_helper.c | 13 +++++--- target/hppa/trace-events | 18 +++++++++++ target/hppa/translate.c | 23 +++++++++----- 8 files changed, 106 insertions(+), 27 deletions(-) create mode 100644 target/hppa/trace-events