#include <linux/amba/bus.h>
#include <linux/bitfield.h>
#include <linux/coresight.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/fs.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include "coresight-priv.h"
#include "coresight-tpda.h"
#include "coresight-trace-id.h"
#include "coresight-tpdm.h"
DEFINE_CORESIGHT_DEVLIST(tpda_devs, "tpda");
static void tpda_clear_element_size(struct coresight_device *csdev)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
drvdata->dsb_esize = 0;
drvdata->cmb_esize = 0;
}
static void tpda_set_element_size(struct tpda_drvdata *drvdata, u32 *val)
{
*val &= ~(TPDA_Pn_CR_DSBSIZE | TPDA_Pn_CR_CMBSIZE);
if (drvdata->dsb_esize == 64)
*val |= TPDA_Pn_CR_DSBSIZE;
else if (drvdata->dsb_esize == 32)
*val &= ~TPDA_Pn_CR_DSBSIZE;
if (drvdata->cmb_esize == 64)
*val |= FIELD_PREP(TPDA_Pn_CR_CMBSIZE, 0x2);
else if (drvdata->cmb_esize == 32)
*val |= FIELD_PREP(TPDA_Pn_CR_CMBSIZE, 0x1);
else if (drvdata->cmb_esize == 8)
*val &= ~TPDA_Pn_CR_CMBSIZE;
}
static int tpdm_read_element_size(struct tpda_drvdata *drvdata,
struct coresight_device *csdev)
{
int rc = -EINVAL;
struct tpdm_drvdata *tpdm_data = dev_get_drvdata(csdev->dev.parent);
if (tpdm_data->dsb) {
rc = fwnode_property_read_u32(dev_fwnode(csdev->dev.parent),
"qcom,dsb-element-bits", &drvdata->dsb_esize);
if (rc)
goto out;
}
if (tpdm_data->cmb) {
rc = fwnode_property_read_u32(dev_fwnode(csdev->dev.parent),
"qcom,cmb-element-bits", &drvdata->cmb_esize);
}
out:
if (rc)
dev_warn_once(&csdev->dev,
"Failed to read TPDM Element size: %d\n", rc);
return rc;
}
static int tpda_get_element_size(struct tpda_drvdata *drvdata,
struct coresight_device *csdev,
int inport)
{
int rc = 0;
int i;
struct coresight_device *in;
for (i = 0; i < csdev->pdata->nr_inconns; i++) {
in = csdev->pdata->in_conns[i]->src_dev;
if (!in)
continue;
if (inport >= 0 &&
csdev->pdata->in_conns[i]->dest_port != inport)
continue;
if (csdev->pdata->in_conns[i]->filter_src_fwnode) {
in = csdev->pdata->in_conns[i]->filter_src_dev;
if (!in)
continue;
}
if (coresight_device_is_tpdm(in)) {
if (drvdata->dsb_esize || drvdata->cmb_esize)
return -EEXIST;
rc = tpdm_read_element_size(drvdata, in);
if (rc)
return rc;
} else {
rc = tpda_get_element_size(drvdata, in, -1);
if (rc)
return rc;
}
}
return rc;
}
static void tpda_enable_pre_port(struct tpda_drvdata *drvdata)
{
u32 val = 0;
val |= FIELD_PREP(TPDA_CR_ATID, drvdata->atid);
if (drvdata->trig_async)
val |= TPDA_CR_SRIE;
if (drvdata->trig_flag_ts)
val |= TPDA_CR_FLRIE;
if (drvdata->trig_freq)
val |= TPDA_CR_FRIE;
if (drvdata->freq_ts)
val |= TPDA_CR_FREQTS;
if (drvdata->cmbchan_mode)
val |= TPDA_CR_CMBCHANMODE;
writel_relaxed(val, drvdata->base + TPDA_CR);
if (drvdata->trig_flag_ts)
writel_relaxed(0x0, drvdata->base + TPDA_FPID_CR);
val = 0;
if (drvdata->syncr_mode)
val |= TPDA_SYNCR_MODE_CTRL_MASK;
if (drvdata->syncr_count > 0 &&
drvdata->syncr_count < TPDA_SYNCR_COUNT_MASK)
val |= drvdata->syncr_count;
else
val |= TPDA_SYNCR_COUNT_MASK;
writel_relaxed(val, drvdata->base + TPDA_SYNCR);
}
static int tpda_enable_port(struct tpda_drvdata *drvdata, int port)
{
u32 val;
int rc;
val = readl_relaxed(drvdata->base + TPDA_Pn_CR(port));
tpda_clear_element_size(drvdata->csdev);
rc = tpda_get_element_size(drvdata, drvdata->csdev, port);
if (!rc && (drvdata->dsb_esize || drvdata->cmb_esize)) {
tpda_set_element_size(drvdata, &val);
val |= TPDA_Pn_CR_ENA;
writel_relaxed(val, drvdata->base + TPDA_Pn_CR(port));
} else if (rc == -EEXIST)
dev_warn_once(&drvdata->csdev->dev,
"Detected multiple TPDMs on port %d", port);
else
dev_warn_once(&drvdata->csdev->dev,
"Didn't find TPDM element size");
return rc;
}
static int __tpda_enable(struct tpda_drvdata *drvdata, int port)
{
int ret;
CS_UNLOCK(drvdata->base);
lockdep_assert_held(&drvdata->spinlock);
if (!drvdata->csdev->refcnt)
tpda_enable_pre_port(drvdata);
ret = tpda_enable_port(drvdata, port);
CS_LOCK(drvdata->base);
return ret;
}
static int tpda_enable(struct coresight_device *csdev,
struct coresight_connection *in,
struct coresight_connection *out)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
int ret = 0;
spin_lock(&drvdata->spinlock);
if (in->dest_refcnt == 0) {
ret = __tpda_enable(drvdata, in->dest_port);
if (!ret) {
in->dest_refcnt++;
csdev->refcnt++;
dev_dbg(drvdata->dev, "TPDA inport %d enabled.\n", in->dest_port);
}
}
spin_unlock(&drvdata->spinlock);
return ret;
}
static void __tpda_disable(struct tpda_drvdata *drvdata, int port)
{
u32 val;
CS_UNLOCK(drvdata->base);
val = readl_relaxed(drvdata->base + TPDA_Pn_CR(port));
val &= ~TPDA_Pn_CR_ENA;
writel_relaxed(val, drvdata->base + TPDA_Pn_CR(port));
CS_LOCK(drvdata->base);
}
static void tpda_disable(struct coresight_device *csdev,
struct coresight_connection *in,
struct coresight_connection *out)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
spin_lock(&drvdata->spinlock);
if (--in->dest_refcnt == 0) {
__tpda_disable(drvdata, in->dest_port);
csdev->refcnt--;
}
spin_unlock(&drvdata->spinlock);
dev_dbg(drvdata->dev, "TPDA inport %d disabled\n", in->dest_port);
}
static int tpda_trace_id(struct coresight_device *csdev, __maybe_unused enum cs_mode mode,
__maybe_unused struct coresight_device *sink)
{
struct tpda_drvdata *drvdata;
drvdata = dev_get_drvdata(csdev->dev.parent);
return drvdata->atid;
}
static const struct coresight_ops_link tpda_link_ops = {
.enable = tpda_enable,
.disable = tpda_disable,
};
static const struct coresight_ops tpda_cs_ops = {
.trace_id = tpda_trace_id,
.link_ops = &tpda_link_ops,
};
static ssize_t tpda_trig_sysfs_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct tpda_trig_sysfs_attribute *tpda_attr =
container_of(attr, struct tpda_trig_sysfs_attribute, attr);
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
guard(spinlock)(&drvdata->spinlock);
switch (tpda_attr->mem) {
case FREQTS:
return sysfs_emit(buf, "%u\n", (unsigned int)drvdata->freq_ts);
case FRIE:
return sysfs_emit(buf, "%u\n", (unsigned int)drvdata->trig_freq);
case FLRIE:
return sysfs_emit(buf, "%u\n", (unsigned int)drvdata->trig_flag_ts);
case SRIE:
return sysfs_emit(buf, "%u\n", (unsigned int)drvdata->trig_async);
case CMBCHANMODE:
return sysfs_emit(buf, "%u\n", (unsigned int)drvdata->cmbchan_mode);
}
return -EINVAL;
}
static ssize_t tpda_trig_sysfs_store(struct device *dev,
struct device_attribute *attr,
const char *buf,
size_t size)
{
struct tpda_trig_sysfs_attribute *tpda_attr =
container_of(attr, struct tpda_trig_sysfs_attribute, attr);
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (kstrtoul(buf, 0, &val))
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
switch (tpda_attr->mem) {
case FREQTS:
drvdata->freq_ts = !!val;
break;
case FRIE:
drvdata->trig_freq = !!val;
break;
case FLRIE:
drvdata->trig_flag_ts = !!val;
break;
case SRIE:
drvdata->trig_async = !!val;
break;
case CMBCHANMODE:
drvdata->cmbchan_mode = !!val;
break;
default:
return -EINVAL;
}
return size;
}
static ssize_t global_flush_req_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (!drvdata->csdev->refcnt)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
val = readl_relaxed(drvdata->base + TPDA_CR);
val &= TPDA_CR_FLREQ;
return sysfs_emit(buf, "%lu\n", val);
}
static ssize_t global_flush_req_store(struct device *dev,
struct device_attribute *attr,
const char *buf,
size_t size)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (kstrtoul(buf, 0, &val))
return -EINVAL;
if (!drvdata->csdev->refcnt || !val)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
val = readl_relaxed(drvdata->base + TPDA_CR);
val |= TPDA_CR_FLREQ;
CS_UNLOCK(drvdata->base);
writel_relaxed(val, drvdata->base + TPDA_CR);
CS_LOCK(drvdata->base);
return size;
}
static DEVICE_ATTR_RW(global_flush_req);
static ssize_t syncr_mode_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val, syncr_val;
if (!drvdata->csdev->refcnt)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
syncr_val = readl_relaxed(drvdata->base + TPDA_SYNCR);
val = FIELD_GET(TPDA_SYNCR_MODE_CTRL_MASK, syncr_val);
return sysfs_emit(buf, "%lu\n", val);
}
static ssize_t syncr_mode_store(struct device *dev,
struct device_attribute *attr,
const char *buf,
size_t size)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (kstrtoul(buf, 0, &val))
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
drvdata->syncr_mode = !!val;
return size;
}
static DEVICE_ATTR_RW(syncr_mode);
static ssize_t syncr_count_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (!drvdata->csdev->refcnt)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
val = readl_relaxed(drvdata->base + TPDA_SYNCR);
val &= TPDA_SYNCR_COUNT_MASK;
return sysfs_emit(buf, "%lu\n", val);
}
static ssize_t syncr_count_store(struct device *dev,
struct device_attribute *attr,
const char *buf,
size_t size)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (kstrtoul(buf, 0, &val))
return -EINVAL;
if (val > TPDA_SYNCR_COUNT_MASK)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
drvdata->syncr_count = val;
return size;
}
static DEVICE_ATTR_RW(syncr_count);
static ssize_t port_flush_req_show(struct device *dev,
struct device_attribute *attr,
char *buf)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
unsigned long val;
if (!drvdata->csdev->refcnt)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
val = readl_relaxed(drvdata->base + TPDA_FLUSH_CR);
return sysfs_emit(buf, "0x%lx\n", val);
}
static ssize_t port_flush_req_store(struct device *dev,
struct device_attribute *attr,
const char *buf,
size_t size)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(dev->parent);
u32 val;
if (kstrtou32(buf, 0, &val))
return -EINVAL;
if (!drvdata->csdev->refcnt || !val)
return -EINVAL;
guard(spinlock)(&drvdata->spinlock);
CS_UNLOCK(drvdata->base);
writel_relaxed(val, drvdata->base + TPDA_FLUSH_CR);
CS_LOCK(drvdata->base);
return size;
}
static DEVICE_ATTR_RW(port_flush_req);
static struct attribute *tpda_attrs[] = {
&dev_attr_global_flush_req.attr,
&dev_attr_syncr_mode.attr,
&dev_attr_syncr_count.attr,
&dev_attr_port_flush_req.attr,
tpda_trig_sysfs_rw(freq_ts_enable, FREQTS),
tpda_trig_sysfs_rw(trig_freq_enable, FRIE),
tpda_trig_sysfs_rw(trig_flag_ts_enable, FLRIE),
tpda_trig_sysfs_rw(trig_async_enable, SRIE),
tpda_trig_sysfs_rw(cmbchan_mode, CMBCHANMODE),
NULL,
};
static struct attribute_group tpda_attr_grp = {
.attrs = tpda_attrs,
};
static const struct attribute_group *tpda_attr_grps[] = {
&tpda_attr_grp,
NULL,
};
static int tpda_init_default_data(struct tpda_drvdata *drvdata)
{
int atid;
atid = coresight_trace_id_get_system_id();
if (atid < 0)
return atid;
drvdata->atid = atid;
drvdata->freq_ts = true;
return 0;
}
static int tpda_probe(struct amba_device *adev, const struct amba_id *id)
{
int ret;
struct device *dev = &adev->dev;
struct coresight_platform_data *pdata;
struct tpda_drvdata *drvdata;
struct coresight_desc desc = { 0 };
void __iomem *base;
pdata = coresight_get_platform_data(dev);
if (IS_ERR(pdata))
return PTR_ERR(pdata);
adev->dev.platform_data = pdata;
drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
if (!drvdata)
return -ENOMEM;
drvdata->dev = &adev->dev;
dev_set_drvdata(dev, drvdata);
base = devm_ioremap_resource(dev, &adev->res);
if (IS_ERR(base))
return PTR_ERR(base);
drvdata->base = base;
spin_lock_init(&drvdata->spinlock);
ret = tpda_init_default_data(drvdata);
if (ret)
return ret;
desc.name = coresight_alloc_device_name(&tpda_devs, dev);
if (!desc.name)
return -ENOMEM;
desc.type = CORESIGHT_DEV_TYPE_LINK;
desc.subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_MERG;
desc.ops = &tpda_cs_ops;
desc.pdata = adev->dev.platform_data;
desc.dev = &adev->dev;
desc.groups = tpda_attr_grps;
desc.access = CSDEV_ACCESS_IOMEM(base);
drvdata->csdev = coresight_register(&desc);
if (IS_ERR(drvdata->csdev))
return PTR_ERR(drvdata->csdev);
pm_runtime_put(&adev->dev);
dev_dbg(drvdata->dev, "TPDA initialized\n");
return 0;
}
static void tpda_remove(struct amba_device *adev)
{
struct tpda_drvdata *drvdata = dev_get_drvdata(&adev->dev);
coresight_trace_id_put_system_id(drvdata->atid);
coresight_unregister(drvdata->csdev);
}
static const struct amba_id tpda_ids[] = {
{
.id = 0x000f0f00,
.mask = 0x000fff00,
},
{ 0, 0, NULL },
};
static struct amba_driver tpda_driver = {
.drv = {
.name = "coresight-tpda",
.suppress_bind_attrs = true,
},
.probe = tpda_probe,
.remove = tpda_remove,
.id_table = tpda_ids,
};
module_amba_driver(tpda_driver);
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Trace, Profiling & Diagnostic Aggregator driver");