All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dongdong Liu <liudongdong3@huawei.com>
To: Keith Busch <keith.busch@intel.com>
Cc: <helgaas@kernel.org>, <linux-pci@vger.kernel.org>,
	<gabriele.paoloni@huawei.com>, <charles.chenxin@huawei.com>,
	<linuxarm@huawei.com>
Subject: Re: [PATCH V2] PCI/DPC: Add eDPC support
Date: Wed, 16 Aug 2017 10:08:13 +0800	[thread overview]
Message-ID: <513f0542-9cfd-713d-6cd7-fa257c86bd2b@huawei.com> (raw)
In-Reply-To: <20170814180935.GE7233@localhost.localdomain>

Hi Keith

Many thanks for your review

e\x1c( 2017/8/15 2:09, Keith Busch e\x06\x19i\x01\x13:
> On Sat, Jul 22, 2017 at 05:39:59PM +0800, Dongdong Liu wrote:
>> This code is to add eDPC support. Get and print the RP PIO error
>> information when the trigger condition is RP PIO error.
>>
>> For more information on eDPC, view the PCI-SIG eDPC ECN here:
>> https://pcisig.com/sites/default/files/specification_documents/ECN_Enhanced_DPC_2012-11-19_final.pdf
>>
>> Signed-off-by: Dongdong Liu <liudongdong3@huawei.com>
>> ---
>> v1-->v2: Use a stack local variable instead of the allocated memory for
>> 	 collecting RP PIO information.
>> 	 Fix the condition of RP PIO error.
>> 	 rebase on v4.13-rc1
>> ---
>>  drivers/pci/pcie/pcie-dpc.c   | 160 ++++++++++++++++++++++++++++++++++++++++++
>>  include/uapi/linux/pci_regs.h |  10 +++
>>  2 files changed, 170 insertions(+)
>>
>> diff --git a/drivers/pci/pcie/pcie-dpc.c b/drivers/pci/pcie/pcie-dpc.c
>> index c39f32e..724c548 100644
>> --- a/drivers/pci/pcie/pcie-dpc.c
>> +++ b/drivers/pci/pcie/pcie-dpc.c
>> @@ -16,11 +16,55 @@
>>  #include <linux/pcieport_if.h>
>>  #include "../pci.h"
>>
>> +struct rp_pio_header_log_regs {
>> +	u32 dw0;
>> +	u32 dw1;
>> +	u32 dw2;
>> +	u32 dw3;
>> +};
>> +
>> +struct dpc_rp_pio_regs {
>> +	u32 status;
>> +	u32 mask;
>> +	u32 severity;
>> +	u32 syserror;
>> +	u32 exception;
>> +
>> +	struct rp_pio_header_log_regs header_log;
>> +	u32 impspec_log;
>> +	u32 tlp_prefix_log[4];
>> +	u32 log_size;
>> +	u16 first_error;
>> +};
>> +
>>  struct dpc_dev {
>>  	struct pcie_device	*dev;
>>  	struct work_struct	work;
>>  	int			cap_pos;
>>  	bool			rp;
>> +	u32			rp_pio_status;
>> +};
>> +
>> +static const char * const rp_pio_error_string[] = {
>> +	"Configuration Request received UR Completion",	 /* Bit Position 0  */
>> +	"Configuration Request received CA Completion",	 /* Bit Position 1  */
>> +	"Configuration Request Completion Timeout",	 /* Bit Position 2  */
>> +	NULL,
>> +	NULL,
>> +	NULL,
>> +	NULL,
>> +	NULL,
>> +	"I/O Request received UR Completion",		 /* Bit Position 8  */
>> +	"I/O Request received CA Completion",		 /* Bit Position 9  */
>> +	"I/O Request Completion Timeout",		 /* Bit Position 10 */
>> +	NULL,
>> +	NULL,
>> +	NULL,
>> +	NULL,
>> +	NULL,
>> +	"Memory Request received UR Completion",	 /* Bit Position 16 */
>> +	"Memory Request received CA Completion",	 /* Bit Position 17 */
>> +	"Memory Request Completion Timeout",		 /* Bit Position 18 */
>>  };
>>
>>  static int dpc_wait_rp_inactive(struct dpc_dev *dpc)
>> @@ -79,10 +123,121 @@ static void interrupt_event_handler(struct work_struct *work)
>>  	dpc_wait_link_inactive(pdev);
>>  	if (dpc->rp && dpc_wait_rp_inactive(dpc))
>>  		return;
>> +	if (dpc->rp && dpc->rp_pio_status)
>> +		pci_write_config_dword(pdev,
>> +				      dpc->cap_pos + PCI_EXP_DPC_RP_PIO_STATUS,
>> +				      dpc->rp_pio_status);
>
> After clearing the status, you need to set dpc->rp_pio_status to 0 to
> prevent non-rp detected errors from logging stale events.

Thanks for pointing that. I will fix it in patch V3.

Thanks
Dongdong
>
> Otherwise, this looks fine to me.
>
>
> .
>

  reply	other threads:[~2017-08-16  2:08 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-22  9:39 [PATCH V2] PCI/DPC: Add eDPC support Dongdong Liu
2017-08-12  2:51 ` Dongdong Liu
2017-08-14 18:09 ` Keith Busch
2017-08-16  2:08   ` Dongdong Liu [this message]
2017-08-14 20:16 ` Bjorn Helgaas
2017-08-16  7:22   ` Dongdong Liu
2017-08-16 16:21     ` Bjorn Helgaas

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=513f0542-9cfd-713d-6cd7-fa257c86bd2b@huawei.com \
    --to=liudongdong3@huawei.com \
    --cc=charles.chenxin@huawei.com \
    --cc=gabriele.paoloni@huawei.com \
    --cc=helgaas@kernel.org \
    --cc=keith.busch@intel.com \
    --cc=linux-pci@vger.kernel.org \
    --cc=linuxarm@huawei.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.