Commit f2facc33 authored by Mathieu Poirier's avatar Mathieu Poirier Committed by Greg Kroah-Hartman

coresight: tmc: adding mode of operation for link/sinks

Moving tmc_drvdata::enable to a local_t mode.  That way the
sink interface is aware of it's orgin and the foundation for
mutual exclusion between the sysFS and Perf interface can be
laid out.
Signed-off-by: default avatarMathieu Poirier <mathieu.poirier@linaro.org>
Reviewed-by: default avatarSuzuki K Poulose <suzuki.poulose@arm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f74debbe
...@@ -111,6 +111,7 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode) ...@@ -111,6 +111,7 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode)
int ret = 0; int ret = 0;
bool used = false; bool used = false;
char *buf = NULL; char *buf = NULL;
long val;
unsigned long flags; unsigned long flags;
struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
...@@ -140,6 +141,15 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode) ...@@ -140,6 +141,15 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode)
goto out; goto out;
} }
val = local_xchg(&drvdata->mode, mode);
/*
* In sysFS mode we can have multiple writers per sink. Since this
* sink is already enabled no memory is needed and the HW need not be
* touched.
*/
if (val == CS_MODE_SYSFS)
goto out;
/* /*
* If drvdata::buf isn't NULL, memory was allocated for a previous * If drvdata::buf isn't NULL, memory was allocated for a previous
* trace run but wasn't read. If so simply zero-out the memory. * trace run but wasn't read. If so simply zero-out the memory.
...@@ -157,7 +167,6 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode) ...@@ -157,7 +167,6 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode)
} }
tmc_etb_enable_hw(drvdata); tmc_etb_enable_hw(drvdata);
drvdata->enable = true;
out: out:
spin_unlock_irqrestore(&drvdata->spinlock, flags); spin_unlock_irqrestore(&drvdata->spinlock, flags);
...@@ -173,6 +182,7 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode) ...@@ -173,6 +182,7 @@ static int tmc_enable_etf_sink(struct coresight_device *csdev, u32 mode)
static void tmc_disable_etf_sink(struct coresight_device *csdev) static void tmc_disable_etf_sink(struct coresight_device *csdev)
{ {
long val;
unsigned long flags; unsigned long flags;
struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
...@@ -182,8 +192,11 @@ static void tmc_disable_etf_sink(struct coresight_device *csdev) ...@@ -182,8 +192,11 @@ static void tmc_disable_etf_sink(struct coresight_device *csdev)
return; return;
} }
tmc_etb_disable_hw(drvdata); val = local_xchg(&drvdata->mode, CS_MODE_DISABLED);
drvdata->enable = false; /* Disable the TMC only if it needs to */
if (val != CS_MODE_DISABLED)
tmc_etb_disable_hw(drvdata);
spin_unlock_irqrestore(&drvdata->spinlock, flags); spin_unlock_irqrestore(&drvdata->spinlock, flags);
dev_info(drvdata->dev, "TMC-ETB/ETF disabled\n"); dev_info(drvdata->dev, "TMC-ETB/ETF disabled\n");
...@@ -202,7 +215,7 @@ static int tmc_enable_etf_link(struct coresight_device *csdev, ...@@ -202,7 +215,7 @@ static int tmc_enable_etf_link(struct coresight_device *csdev,
} }
tmc_etf_enable_hw(drvdata); tmc_etf_enable_hw(drvdata);
drvdata->enable = true; local_set(&drvdata->mode, CS_MODE_SYSFS);
spin_unlock_irqrestore(&drvdata->spinlock, flags); spin_unlock_irqrestore(&drvdata->spinlock, flags);
dev_info(drvdata->dev, "TMC-ETF enabled\n"); dev_info(drvdata->dev, "TMC-ETF enabled\n");
...@@ -222,7 +235,7 @@ static void tmc_disable_etf_link(struct coresight_device *csdev, ...@@ -222,7 +235,7 @@ static void tmc_disable_etf_link(struct coresight_device *csdev,
} }
tmc_etf_disable_hw(drvdata); tmc_etf_disable_hw(drvdata);
drvdata->enable = false; local_set(&drvdata->mode, CS_MODE_DISABLED);
spin_unlock_irqrestore(&drvdata->spinlock, flags); spin_unlock_irqrestore(&drvdata->spinlock, flags);
dev_info(drvdata->dev, "TMC disabled\n"); dev_info(drvdata->dev, "TMC disabled\n");
...@@ -279,7 +292,7 @@ int tmc_read_prepare_etb(struct tmc_drvdata *drvdata) ...@@ -279,7 +292,7 @@ int tmc_read_prepare_etb(struct tmc_drvdata *drvdata)
} }
/* Disable the TMC if need be */ /* Disable the TMC if need be */
if (drvdata->enable) if (local_read(&drvdata->mode) == CS_MODE_SYSFS)
tmc_etb_disable_hw(drvdata); tmc_etb_disable_hw(drvdata);
drvdata->reading = true; drvdata->reading = true;
...@@ -310,7 +323,7 @@ int tmc_read_unprepare_etb(struct tmc_drvdata *drvdata) ...@@ -310,7 +323,7 @@ int tmc_read_unprepare_etb(struct tmc_drvdata *drvdata)
} }
/* Re-enable the TMC if need be */ /* Re-enable the TMC if need be */
if (drvdata->enable) { if (local_read(&drvdata->mode) == CS_MODE_SYSFS) {
/* /*
* The trace run will continue with the same allocated trace * The trace run will continue with the same allocated trace
* buffer. As such zero-out the buffer so that we don't end * buffer. As such zero-out the buffer so that we don't end
......
...@@ -86,6 +86,7 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode) ...@@ -86,6 +86,7 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode)
{ {
int ret = 0; int ret = 0;
bool used = false; bool used = false;
long val;
unsigned long flags; unsigned long flags;
void __iomem *vaddr = NULL; void __iomem *vaddr = NULL;
dma_addr_t paddr; dma_addr_t paddr;
...@@ -122,6 +123,15 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode) ...@@ -122,6 +123,15 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode)
goto out; goto out;
} }
val = local_xchg(&drvdata->mode, mode);
/*
* In sysFS mode we can have multiple writers per sink. Since this
* sink is already enabled no memory is needed and the HW need not be
* touched.
*/
if (val == CS_MODE_SYSFS)
goto out;
/* /*
* If drvdata::buf == NULL, use the memory allocated above. * If drvdata::buf == NULL, use the memory allocated above.
* Otherwise a buffer still exists from a previous session, so * Otherwise a buffer still exists from a previous session, so
...@@ -137,7 +147,6 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode) ...@@ -137,7 +147,6 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode)
memset(drvdata->vaddr, 0, drvdata->size); memset(drvdata->vaddr, 0, drvdata->size);
tmc_etr_enable_hw(drvdata); tmc_etr_enable_hw(drvdata);
drvdata->enable = true;
out: out:
spin_unlock_irqrestore(&drvdata->spinlock, flags); spin_unlock_irqrestore(&drvdata->spinlock, flags);
...@@ -153,6 +162,7 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode) ...@@ -153,6 +162,7 @@ static int tmc_enable_etr_sink(struct coresight_device *csdev, u32 mode)
static void tmc_disable_etr_sink(struct coresight_device *csdev) static void tmc_disable_etr_sink(struct coresight_device *csdev)
{ {
long val;
unsigned long flags; unsigned long flags;
struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
...@@ -162,8 +172,11 @@ static void tmc_disable_etr_sink(struct coresight_device *csdev) ...@@ -162,8 +172,11 @@ static void tmc_disable_etr_sink(struct coresight_device *csdev)
return; return;
} }
tmc_etr_disable_hw(drvdata); val = local_xchg(&drvdata->mode, CS_MODE_DISABLED);
drvdata->enable = false; /* Disable the TMC only if it needs to */
if (val != CS_MODE_DISABLED)
tmc_etr_disable_hw(drvdata);
spin_unlock_irqrestore(&drvdata->spinlock, flags); spin_unlock_irqrestore(&drvdata->spinlock, flags);
dev_info(drvdata->dev, "TMC-ETR disabled\n"); dev_info(drvdata->dev, "TMC-ETR disabled\n");
...@@ -200,7 +213,7 @@ int tmc_read_prepare_etr(struct tmc_drvdata *drvdata) ...@@ -200,7 +213,7 @@ int tmc_read_prepare_etr(struct tmc_drvdata *drvdata)
} }
/* Disable the TMC if need be */ /* Disable the TMC if need be */
if (drvdata->enable) if (local_read(&drvdata->mode) == CS_MODE_SYSFS)
tmc_etr_disable_hw(drvdata); tmc_etr_disable_hw(drvdata);
drvdata->reading = true; drvdata->reading = true;
...@@ -223,7 +236,7 @@ int tmc_read_unprepare_etr(struct tmc_drvdata *drvdata) ...@@ -223,7 +236,7 @@ int tmc_read_unprepare_etr(struct tmc_drvdata *drvdata)
spin_lock_irqsave(&drvdata->spinlock, flags); spin_lock_irqsave(&drvdata->spinlock, flags);
/* RE-enable the TMC if need be */ /* RE-enable the TMC if need be */
if (drvdata->enable) { if (local_read(&drvdata->mode) == CS_MODE_SYSFS) {
/* /*
* The trace run will continue with the same allocated trace * The trace run will continue with the same allocated trace
* buffer. As such zero-out the buffer so that we don't end * buffer. As such zero-out the buffer so that we don't end
......
...@@ -98,7 +98,7 @@ enum tmc_mem_intf_width { ...@@ -98,7 +98,7 @@ enum tmc_mem_intf_width {
* @paddr: DMA start location in RAM. * @paddr: DMA start location in RAM.
* @vaddr: virtual representation of @paddr. * @vaddr: virtual representation of @paddr.
* @size: @buf size. * @size: @buf size.
* @enable: this TMC is being used. * @mode: how this TMC is being used.
* @config_type: TMC variant, must be of type @tmc_config_type. * @config_type: TMC variant, must be of type @tmc_config_type.
* @trigger_cntr: amount of words to store after a trigger. * @trigger_cntr: amount of words to store after a trigger.
*/ */
...@@ -113,7 +113,7 @@ struct tmc_drvdata { ...@@ -113,7 +113,7 @@ struct tmc_drvdata {
dma_addr_t paddr; dma_addr_t paddr;
void __iomem *vaddr; void __iomem *vaddr;
u32 size; u32 size;
bool enable; local_t mode;
enum tmc_config_type config_type; enum tmc_config_type config_type;
u32 trigger_cntr; u32 trigger_cntr;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment