Re: [PATCH 1/3] cxl: Introduce various enums/defines for PSL9 trace arrays

2018-02-11 Thread Vaibhav Jain
Thanks for reviewing the patch Christophe,
christophe lombard  writes:

>> +for (traceid = 0; traceid < CXL_PSL9_TRACEID_MAX; ++traceid) {
>> +trace_state = CXL_PSL9_TRACE_STATE(trace_cfg, traceid);
>> +dev_dbg(>dev, "Traceid-%d trace_state=0x%0llX\n",
>>  traceid, trace_state);
>> 
> any reason to use dev_dbg instead of pr_devel ?
Wanted to distinguish among multiple cxl cards in the system.

-- 
Vaibhav Jain 
Linux Technology Center, IBM India Pvt. Ltd.



Re: [PATCH 1/3] cxl: Introduce various enums/defines for PSL9 trace arrays

2018-02-09 Thread christophe lombard

Le 09/02/2018 à 05:25, Vaibhav Jain a écrit :

We introduce a new enum named cxl_psl9_traceid that represents
individual trace-arrays available on PSL9. In addition a set of new
defines named s CXL_PSL9_TRACESTATE_XXX are introduced that represent
various states a trace-array can be in. Value of each define is the
value reported by PSL_CTCCFG register for the corresponding state of
trace-array. Also a new macro named CXL_PSL9_TRACE_STATE() is
introduced that makes it convenient to evaluate state of a trace-array
from the PSL_CTCCFG register.

The patch re-factors cxl_stop_trace_psl9() to use these new
enums/defines and renames 'cxl_service_layer_ops.debugfs_stoptrace'
function pointer to 'cxl_service_layer_ops.stop_psltrace'.

This patch shouldn't cause any behavioral changes.

Signed-off-by: Vaibhav Jain 
---
  drivers/misc/cxl/cxl.h| 29 ++---
  drivers/misc/cxl/native.c |  8 
  drivers/misc/cxl/pci.c| 15 +++
  3 files changed, 37 insertions(+), 15 deletions(-)

diff --git a/drivers/misc/cxl/cxl.h b/drivers/misc/cxl/cxl.h
index 4f015da78f28..81da307b60c0 100644
--- a/drivers/misc/cxl/cxl.h
+++ b/drivers/misc/cxl/cxl.h
@@ -418,8 +418,31 @@ static const cxl_p2n_reg_t CXL_PSL_WED_An = {0x0A0};
  #define CXL_CARD_MINOR(adapter) (adapter->adapter_num * CXL_DEV_MINORS)
  #define CXL_DEVT_ADAPTER(dev) (MINOR(dev) / CXL_DEV_MINORS)

-#define CXL_PSL9_TRACEID_MAX 0xAU
-#define CXL_PSL9_TRACESTATE_FIN 0x3U
+/* Various trace arrays available on PSL9 */
+enum cxl_psl9_traceid {
+   CXL_PSL9_TRACEID_RX0 = 0,
+   CXL_PSL9_TRACEID_RX1, /* 1 */
+   CXL_PSL9_TRACEID_XSL, /* 2 */
+   CXL_PSL9_TRACEID_CT0, /* 3 */
+   CXL_PSL9_TRACEID_CT1, /* 4 */
+   CXL_PSL9_TRACEID_LA0, /* 5 */
+   CXL_PSL9_TRACEID_LA1, /* 6 */
+   CXL_PSL9_TRACEID_JM0, /* 7 */
+   CXL_PSL9_TRACEID_DMA0, /* 8 */
+   CXL_PSL9_TRACEID_DMA1, /* 9 */
+   CXL_PSL9_TRACEID_REOA, /* 10 */
+   CXL_PSL9_TRACEID_MAX
+};
+
+/* State of tracearray as reported in PSL9_CTCCFG */
+#define CXL_PSL9_TRACESTATE_IDLE   0x0U
+#define CXL_PSL9_TRACESTATE_INIT   0x1U
+#define CXL_PSL9_TRACESTATE_WFT0x2U
+#define CXL_PSL9_TRACESTATE_FIN0x3U
+



+/* Find the Trace Array state from PSL9_CTCCFG Reg */
+#define CXL_PSL9_TRACE_STATE(STATE, TRACE_ID)  \
+   ((STATE) >> (62 - (TRACE_ID) * 2) & 0x3)

  enum cxl_context_status {
CLOSED,
@@ -654,7 +677,7 @@ struct cxl_service_layer_ops {
void (*debugfs_add_afu_regs)(struct cxl_afu *afu, struct dentry *dir);
void (*psl_irq_dump_registers)(struct cxl_context *ctx);
void (*err_irq_dump_registers)(struct cxl *adapter);
-   void (*debugfs_stop_trace)(struct cxl *adapter);
+   void (*stop_psltrace)(struct cxl *adapter);
void (*write_timebase_ctrl)(struct cxl *adapter);
u64 (*timebase_read)(struct cxl *adapter);
int capi_mode;
diff --git a/drivers/misc/cxl/native.c b/drivers/misc/cxl/native.c
index 1b3d7c65ea3f..bba9e1bb8b4d 100644
--- a/drivers/misc/cxl/native.c
+++ b/drivers/misc/cxl/native.c
@@ -1135,9 +1135,9 @@ static irqreturn_t native_handle_psl_slice_error(struct 
cxl_context *ctx,
if (ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers)
ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers(ctx);

-   if (ctx->afu->adapter->native->sl_ops->debugfs_stop_trace) {
+   if (ctx->afu->adapter->native->sl_ops->stop_psltrace) {
dev_crit(>afu->dev, "STOPPING CXL TRACE\n");
-   
ctx->afu->adapter->native->sl_ops->debugfs_stop_trace(ctx->afu->adapter);
+   
ctx->afu->adapter->native->sl_ops->stop_psltrace(ctx->afu->adapter);
}

return cxl_ops->ack_irq(ctx, 0, errstat);
@@ -1303,9 +1303,9 @@ static irqreturn_t native_irq_err(int irq, void *data)
err_ivte = cxl_p1_read(adapter, CXL_PSL_ErrIVTE);
dev_crit(>dev, "PSL_ErrIVTE: 0x%016llx\n", err_ivte);

-   if (adapter->native->sl_ops->debugfs_stop_trace) {
+   if (adapter->native->sl_ops->stop_psltrace) {
dev_crit(>dev, "STOPPING CXL TRACE\n");
-   adapter->native->sl_ops->debugfs_stop_trace(adapter);
+   adapter->native->sl_ops->stop_psltrace(adapter);
}

if (adapter->native->sl_ops->err_irq_dump_registers)
diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
index 9bc30c20b66b..926b13973b73 100644
--- a/drivers/misc/cxl/pci.c
+++ b/drivers/misc/cxl/pci.c
@@ -1747,15 +1747,14 @@ static void cxl_deconfigure_adapter(struct cxl *adapter)
  static void cxl_stop_trace_psl9(struct cxl *adapter)
  {
int traceid;
-   u64 trace_state, trace_mask;
+   u64 trace_cfg, trace_state;
struct pci_dev *dev = to_pci_dev(adapter->dev.parent);

+   trace_cfg = cxl_p1_read(adapter, CXL_PSL9_CTCCFG);
/* read each tracearray state and issue mmio to stop them 

[PATCH 1/3] cxl: Introduce various enums/defines for PSL9 trace arrays

2018-02-08 Thread Vaibhav Jain
We introduce a new enum named cxl_psl9_traceid that represents
individual trace-arrays available on PSL9. In addition a set of new
defines named s CXL_PSL9_TRACESTATE_XXX are introduced that represent
various states a trace-array can be in. Value of each define is the
value reported by PSL_CTCCFG register for the corresponding state of
trace-array. Also a new macro named CXL_PSL9_TRACE_STATE() is
introduced that makes it convenient to evaluate state of a trace-array
from the PSL_CTCCFG register.

The patch re-factors cxl_stop_trace_psl9() to use these new
enums/defines and renames 'cxl_service_layer_ops.debugfs_stoptrace'
function pointer to 'cxl_service_layer_ops.stop_psltrace'.

This patch shouldn't cause any behavioral changes.

Signed-off-by: Vaibhav Jain 
---
 drivers/misc/cxl/cxl.h| 29 ++---
 drivers/misc/cxl/native.c |  8 
 drivers/misc/cxl/pci.c| 15 +++
 3 files changed, 37 insertions(+), 15 deletions(-)

diff --git a/drivers/misc/cxl/cxl.h b/drivers/misc/cxl/cxl.h
index 4f015da78f28..81da307b60c0 100644
--- a/drivers/misc/cxl/cxl.h
+++ b/drivers/misc/cxl/cxl.h
@@ -418,8 +418,31 @@ static const cxl_p2n_reg_t CXL_PSL_WED_An = {0x0A0};
 #define CXL_CARD_MINOR(adapter) (adapter->adapter_num * CXL_DEV_MINORS)
 #define CXL_DEVT_ADAPTER(dev) (MINOR(dev) / CXL_DEV_MINORS)
 
-#define CXL_PSL9_TRACEID_MAX 0xAU
-#define CXL_PSL9_TRACESTATE_FIN 0x3U
+/* Various trace arrays available on PSL9 */
+enum cxl_psl9_traceid {
+   CXL_PSL9_TRACEID_RX0 = 0,
+   CXL_PSL9_TRACEID_RX1, /* 1 */
+   CXL_PSL9_TRACEID_XSL, /* 2 */
+   CXL_PSL9_TRACEID_CT0, /* 3 */
+   CXL_PSL9_TRACEID_CT1, /* 4 */
+   CXL_PSL9_TRACEID_LA0, /* 5 */
+   CXL_PSL9_TRACEID_LA1, /* 6 */
+   CXL_PSL9_TRACEID_JM0, /* 7 */
+   CXL_PSL9_TRACEID_DMA0, /* 8 */
+   CXL_PSL9_TRACEID_DMA1, /* 9 */
+   CXL_PSL9_TRACEID_REOA, /* 10 */
+   CXL_PSL9_TRACEID_MAX
+};
+
+/* State of tracearray as reported in PSL9_CTCCFG */
+#define CXL_PSL9_TRACESTATE_IDLE   0x0U
+#define CXL_PSL9_TRACESTATE_INIT   0x1U
+#define CXL_PSL9_TRACESTATE_WFT0x2U
+#define CXL_PSL9_TRACESTATE_FIN0x3U
+
+/* Find the Trace Array state from PSL9_CTCCFG Reg */
+#define CXL_PSL9_TRACE_STATE(STATE, TRACE_ID)  \
+   ((STATE) >> (62 - (TRACE_ID) * 2) & 0x3)
 
 enum cxl_context_status {
CLOSED,
@@ -654,7 +677,7 @@ struct cxl_service_layer_ops {
void (*debugfs_add_afu_regs)(struct cxl_afu *afu, struct dentry *dir);
void (*psl_irq_dump_registers)(struct cxl_context *ctx);
void (*err_irq_dump_registers)(struct cxl *adapter);
-   void (*debugfs_stop_trace)(struct cxl *adapter);
+   void (*stop_psltrace)(struct cxl *adapter);
void (*write_timebase_ctrl)(struct cxl *adapter);
u64 (*timebase_read)(struct cxl *adapter);
int capi_mode;
diff --git a/drivers/misc/cxl/native.c b/drivers/misc/cxl/native.c
index 1b3d7c65ea3f..bba9e1bb8b4d 100644
--- a/drivers/misc/cxl/native.c
+++ b/drivers/misc/cxl/native.c
@@ -1135,9 +1135,9 @@ static irqreturn_t native_handle_psl_slice_error(struct 
cxl_context *ctx,
if (ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers)
ctx->afu->adapter->native->sl_ops->psl_irq_dump_registers(ctx);
 
-   if (ctx->afu->adapter->native->sl_ops->debugfs_stop_trace) {
+   if (ctx->afu->adapter->native->sl_ops->stop_psltrace) {
dev_crit(>afu->dev, "STOPPING CXL TRACE\n");
-   
ctx->afu->adapter->native->sl_ops->debugfs_stop_trace(ctx->afu->adapter);
+   
ctx->afu->adapter->native->sl_ops->stop_psltrace(ctx->afu->adapter);
}
 
return cxl_ops->ack_irq(ctx, 0, errstat);
@@ -1303,9 +1303,9 @@ static irqreturn_t native_irq_err(int irq, void *data)
err_ivte = cxl_p1_read(adapter, CXL_PSL_ErrIVTE);
dev_crit(>dev, "PSL_ErrIVTE: 0x%016llx\n", err_ivte);
 
-   if (adapter->native->sl_ops->debugfs_stop_trace) {
+   if (adapter->native->sl_ops->stop_psltrace) {
dev_crit(>dev, "STOPPING CXL TRACE\n");
-   adapter->native->sl_ops->debugfs_stop_trace(adapter);
+   adapter->native->sl_ops->stop_psltrace(adapter);
}
 
if (adapter->native->sl_ops->err_irq_dump_registers)
diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
index 9bc30c20b66b..926b13973b73 100644
--- a/drivers/misc/cxl/pci.c
+++ b/drivers/misc/cxl/pci.c
@@ -1747,15 +1747,14 @@ static void cxl_deconfigure_adapter(struct cxl *adapter)
 static void cxl_stop_trace_psl9(struct cxl *adapter)
 {
int traceid;
-   u64 trace_state, trace_mask;
+   u64 trace_cfg, trace_state;
struct pci_dev *dev = to_pci_dev(adapter->dev.parent);
 
+   trace_cfg = cxl_p1_read(adapter, CXL_PSL9_CTCCFG);
/* read each tracearray state and issue mmio to stop them is needed */
-   for (traceid = 0; traceid <=