From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753069AbbBFA55 (ORCPT ); Thu, 5 Feb 2015 19:57:57 -0500 Received: from mga03.intel.com ([134.134.136.65]:49676 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751093AbbBFA54 (ORCPT ); Thu, 5 Feb 2015 19:57:56 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,527,1418112000"; d="scan'208";a="662272213" From: Lv Zheng To: "Rafael J. Wysocki" , Len Brown Cc: Lv Zheng , Lv Zheng , , linux-acpi@vger.kernel.org Subject: [PATCH v2 0/5] ACPI / EC: Add reference counting for requests and cleans up the grace periods support. Date: Fri, 6 Feb 2015 08:57:37 +0800 Message-Id: X-Mailer: git-send-email 1.7.10 In-Reply-To: <20141119121615.GA2514@node.dhcp.inet.fi> References: <20141119121615.GA2514@node.dhcp.inet.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchset contains 3 cleanups related to the EC driver: 1. Command flushing (command grace period) This patchset flushes EC commands before suspending/resuming, so that there won't be timeout for the incomplete commands after resuming. 2. Query flushing (query grace period) This patchset flushes EC event queries before suspending/resuming, so that there won't be broken events remained in the firmware queue. 3. Command storming prevention This patchset corrects command storming prevention logic because of the GPE raw handler mode. The request reference count debugging messages can be used to detect broken EC transactions. It should always drop to 1 when the driver is idle during the runtime. Note that after flushing before suspending, EC GPE is still enabled to keep the old behavior. Lv Zheng (5): ACPI/EC: Introduce STARTED/STOPPED flags to replace BLOCKED flag. ACPI/EC: Add command flushing support. ACPI/EC: Refine command storm prevention support. ACPI/EC: Add query flushing support. ACPI/EC: Add GPE reference counting debugging messages. drivers/acpi/ec.c | 295 ++++++++++++++++++++++++++++++++++++++++------- drivers/acpi/internal.h | 1 + 2 files changed, 254 insertions(+), 42 deletions(-) -- 1.7.10