|
@@ -34,26 +34,42 @@ struct replicator_state {
|
|
|
struct coresight_device *csdev;
|
|
|
};
|
|
|
|
|
|
+/*
|
|
|
+ * replicator_reset : Reset the replicator configuration to sane values.
|
|
|
+ */
|
|
|
+static void replicator_reset(struct replicator_state *drvdata)
|
|
|
+{
|
|
|
+ CS_UNLOCK(drvdata->base);
|
|
|
+
|
|
|
+ writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER0);
|
|
|
+ writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER1);
|
|
|
+
|
|
|
+ CS_LOCK(drvdata->base);
|
|
|
+}
|
|
|
+
|
|
|
static int replicator_enable(struct coresight_device *csdev, int inport,
|
|
|
int outport)
|
|
|
{
|
|
|
+ u32 reg;
|
|
|
struct replicator_state *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
|
+ switch (outport) {
|
|
|
+ case 0:
|
|
|
+ reg = REPLICATOR_IDFILTER0;
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ reg = REPLICATOR_IDFILTER1;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ WARN_ON(1);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
CS_UNLOCK(drvdata->base);
|
|
|
|
|
|
- /*
|
|
|
- * Ensure that the other port is disabled
|
|
|
- * 0x00 - passing through the replicator unimpeded
|
|
|
- * 0xff - disable (or impede) the flow of ATB data
|
|
|
- */
|
|
|
- if (outport == 0) {
|
|
|
- writel_relaxed(0x00, drvdata->base + REPLICATOR_IDFILTER0);
|
|
|
- writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER1);
|
|
|
- } else {
|
|
|
- writel_relaxed(0x00, drvdata->base + REPLICATOR_IDFILTER1);
|
|
|
- writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER0);
|
|
|
- }
|
|
|
|
|
|
+ /* Ensure that the outport is enabled. */
|
|
|
+ writel_relaxed(0x00, drvdata->base + reg);
|
|
|
CS_LOCK(drvdata->base);
|
|
|
|
|
|
dev_dbg(drvdata->dev, "REPLICATOR enabled\n");
|
|
@@ -63,15 +79,25 @@ static int replicator_enable(struct coresight_device *csdev, int inport,
|
|
|
static void replicator_disable(struct coresight_device *csdev, int inport,
|
|
|
int outport)
|
|
|
{
|
|
|
+ u32 reg;
|
|
|
struct replicator_state *drvdata = dev_get_drvdata(csdev->dev.parent);
|
|
|
|
|
|
+ switch (outport) {
|
|
|
+ case 0:
|
|
|
+ reg = REPLICATOR_IDFILTER0;
|
|
|
+ break;
|
|
|
+ case 1:
|
|
|
+ reg = REPLICATOR_IDFILTER1;
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ WARN_ON(1);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
CS_UNLOCK(drvdata->base);
|
|
|
|
|
|
/* disable the flow of ATB data through port */
|
|
|
- if (outport == 0)
|
|
|
- writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER0);
|
|
|
- else
|
|
|
- writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER1);
|
|
|
+ writel_relaxed(0xff, drvdata->base + reg);
|
|
|
|
|
|
CS_LOCK(drvdata->base);
|
|
|
|
|
@@ -156,7 +182,11 @@ static int replicator_probe(struct amba_device *adev, const struct amba_id *id)
|
|
|
desc.groups = replicator_groups;
|
|
|
drvdata->csdev = coresight_register(&desc);
|
|
|
|
|
|
- return PTR_ERR_OR_ZERO(drvdata->csdev);
|
|
|
+ if (!IS_ERR(drvdata->csdev)) {
|
|
|
+ replicator_reset(drvdata);
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ return PTR_ERR(drvdata->csdev);
|
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_PM
|