linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jianmin Lv <lvjianmin@loongson.cn>
To: "Moore, Robert" <robert.moore@intel.com>,
	"Kaneda, Erik" <erik.kaneda@intel.com>,
	"Wysocki, Rafael J" <rafael.j.wysocki@intel.com>,
	Len Brown <lenb@kernel.org>
Cc: "linux-acpi@vger.kernel.org" <linux-acpi@vger.kernel.org>,
	"devel@acpica.org" <devel@acpica.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ACPICA: Events: support fixed pcie wake event
Date: Thu, 15 Apr 2021 04:35:51 -0400	[thread overview]
Message-ID: <4385b7c8-5f3b-99a5-e584-660e4555ec3b@loongson.cn> (raw)
In-Reply-To: <BYAPR11MB3256C7F3C17D14C1DF544430877B9@BYAPR11MB3256.namprd11.prod.outlook.com>

Hi, Bob

Thanks for your reply!

I have submitted V2 in which related description in ACPI spec are added, 
please review it.


See V2 at:

https://lore.kernel.org/linux-acpi/1617335733-5942-1-git-send-email-lvjianmin@loongson.cn/T/#u

Thanks sincerely!

On 04/01/2021 04:56 PM, Moore, Robert wrote:
> Can you send/point us to the spec that this change is based upon?
> Thanks,
> Bob
>
>
> -----Original Message-----
> From: Jianmin Lv <lvjianmin@loongson.cn>
> Sent: Thursday, April 01, 2021 5:06 AM
> To: Moore, Robert <robert.moore@intel.com>; Kaneda, Erik <erik.kaneda@intel.com>; Wysocki, Rafael J <rafael.j.wysocki@intel.com>; Len Brown <lenb@kernel.org>
> Cc: linux-acpi@vger.kernel.org; devel@acpica.org; linux-kernel@vger.kernel.org; lvjianmin <lvjianmin@loongson.cn>
> Subject: [PATCH] ACPICA: Events: support fixed pcie wake event
>
> From: lvjianmin <lvjianmin@loongson.cn>
>
> Some chipsets support fixed pcie wake event which is defined in the PM1 block, such as LS7A1000 of Loongson company, so we add code to handle it.
>
> Signed-off-by: lvjianmin <lvjianmin@loongson.cn>
>
> diff --git a/drivers/acpi/acpica/evevent.c b/drivers/acpi/acpica/evevent.c index 35385148fedb..08ba368beb2d 100644
> --- a/drivers/acpi/acpica/evevent.c
> +++ b/drivers/acpi/acpica/evevent.c
> @@ -185,6 +185,10 @@ u32 acpi_ev_fixed_event_detect(void)
>   		return (int_status);
>   	}
>   
> +	if (fixed_enable & ACPI_BITMASK_PCIEXP_WAKE_DISABLE)
> +		fixed_enable &= ~ACPI_BITMASK_PCIEXP_WAKE_DISABLE;
> +	else
> +		fixed_enable |= ACPI_BITMASK_PCIEXP_WAKE_DISABLE;
>   	ACPI_DEBUG_PRINT((ACPI_DB_INTERRUPTS,
>   			  "Fixed Event Block: Enable %08X Status %08X\n",
>   			  fixed_enable, fixed_status));
> @@ -250,8 +254,8 @@ static u32 acpi_ev_fixed_event_dispatch(u32 event)
>   	if (!acpi_gbl_fixed_event_handlers[event].handler) {
>   		(void)acpi_write_bit_register(acpi_gbl_fixed_event_info[event].
>   					      enable_register_id,
> -					      ACPI_DISABLE_EVENT);
> -
> +						event == ACPI_EVENT_PCIE_WAKE ?
> +						ACPI_ENABLE_EVENT : ACPI_DISABLE_EVENT);
>   		ACPI_ERROR((AE_INFO,
>   			    "No installed handler for fixed event - %s (%u), disabling",
>   			    acpi_ut_get_event_name(event), event)); diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index 14baa13bf848..7e7ea4c2e914 100644
> --- a/drivers/acpi/acpica/hwsleep.c
> +++ b/drivers/acpi/acpica/hwsleep.c
> @@ -312,6 +312,18 @@ acpi_status acpi_hw_legacy_wake(u8 sleep_state)
>   				    [ACPI_EVENT_SLEEP_BUTTON].
>   				    status_register_id, ACPI_CLEAR_STATUS);
>   
> +	/* Enable pcie wake event if support */
> +	if ((acpi_gbl_FADT.flags & ACPI_FADT_PCI_EXPRESS_WAKE)) {
> +		(void)
> +		acpi_write_bit_register(acpi_gbl_fixed_event_info
> +				[ACPI_EVENT_PCIE_WAKE].
> +				enable_register_id, ACPI_DISABLE_EVENT);
> +		(void)
> +		acpi_write_bit_register(acpi_gbl_fixed_event_info
> +				[ACPI_EVENT_PCIE_WAKE].
> +				status_register_id, ACPI_CLEAR_STATUS);
> +	}
> +
>   	acpi_hw_execute_sleep_method(METHOD_PATHNAME__SST, ACPI_SST_WORKING);
>   	return_ACPI_STATUS(status);
>   }
> diff --git a/drivers/acpi/acpica/utglobal.c b/drivers/acpi/acpica/utglobal.c index 59a48371a7bc..68baf16d8a02 100644
> --- a/drivers/acpi/acpica/utglobal.c
> +++ b/drivers/acpi/acpica/utglobal.c
> @@ -186,6 +186,10 @@ struct acpi_fixed_event_info acpi_gbl_fixed_event_info[ACPI_NUM_FIXED_EVENTS] =
>   					ACPI_BITREG_RT_CLOCK_ENABLE,
>   					ACPI_BITMASK_RT_CLOCK_STATUS,
>   					ACPI_BITMASK_RT_CLOCK_ENABLE},
> +	/* ACPI_EVENT_PCIE_WAKE		*/ {ACPI_BITREG_PCIEXP_WAKE_STATUS,
> +					ACPI_BITREG_PCIEXP_WAKE_DISABLE,
> +					ACPI_BITMASK_PCIEXP_WAKE_STATUS,
> +					ACPI_BITMASK_PCIEXP_WAKE_DISABLE},
>   };
>   #endif				/* !ACPI_REDUCED_HARDWARE */
>   
> diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 92c71dfce0d5..0b6c72033487 100644
> --- a/include/acpi/actypes.h
> +++ b/include/acpi/actypes.h
> @@ -714,7 +714,8 @@ typedef u32 acpi_event_type;
>   #define ACPI_EVENT_POWER_BUTTON         2
>   #define ACPI_EVENT_SLEEP_BUTTON         3
>   #define ACPI_EVENT_RTC                  4
> -#define ACPI_EVENT_MAX                  4
> +#define ACPI_EVENT_PCIE_WAKE            5
> +#define ACPI_EVENT_MAX                  5
>   #define ACPI_NUM_FIXED_EVENTS           ACPI_EVENT_MAX + 1
>   
>   /*
> --
> 2.27.0


      reply	other threads:[~2021-04-15  8:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1617278736-7400-1-git-send-email-lvjianmin@loongson.cn>
2021-04-01 20:56 ` [PATCH] ACPICA: Events: support fixed pcie wake event Moore, Robert
2021-04-15  8:35   ` Jianmin Lv [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4385b7c8-5f3b-99a5-e584-660e4555ec3b@loongson.cn \
    --to=lvjianmin@loongson.cn \
    --cc=devel@acpica.org \
    --cc=erik.kaneda@intel.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=robert.moore@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).