384 lines
10 KiB
C
384 lines
10 KiB
C
/* Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/types.h>
|
|
#include <linux/device.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/io.h>
|
|
#include <linux/err.h>
|
|
#include <linux/sysfs.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_coresight.h>
|
|
#include <linux/coresight.h>
|
|
#include "coresight-qmi.h"
|
|
|
|
#ifdef CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE
|
|
static int boot_enable = CONFIG_CORESIGHT_REMOTE_ETM_DEFAULT_ENABLE;
|
|
#else
|
|
static int boot_enable;
|
|
#endif
|
|
|
|
module_param_named(
|
|
boot_enable, boot_enable, int, S_IRUGO
|
|
);
|
|
|
|
struct remote_etm_drvdata {
|
|
struct device *dev;
|
|
struct coresight_device *csdev;
|
|
struct mutex mutex;
|
|
struct workqueue_struct *wq;
|
|
struct qmi_handle *handle;
|
|
struct work_struct work_svc_arrive;
|
|
struct work_struct work_svc_exit;
|
|
struct work_struct work_rcv_msg;
|
|
struct notifier_block nb;
|
|
uint32_t inst_id;
|
|
struct delayed_work work_delay_enable;
|
|
bool enable;
|
|
};
|
|
|
|
static int remote_etm_enable(struct coresight_device *csdev)
|
|
{
|
|
struct remote_etm_drvdata *drvdata =
|
|
dev_get_drvdata(csdev->dev.parent);
|
|
struct coresight_set_etm_req_msg_v01 req;
|
|
struct coresight_set_etm_resp_msg_v01 resp = { { 0, 0 } };
|
|
struct msg_desc req_desc, resp_desc;
|
|
int ret;
|
|
|
|
mutex_lock(&drvdata->mutex);
|
|
|
|
/*
|
|
* The QMI handle may be NULL in the following scenarios:
|
|
* 1. QMI service is not present
|
|
* 2. QMI service is present but attempt to enable remote ETM is earlier
|
|
* than service is ready to handle request
|
|
* 3. Connection between QMI client and QMI service failed
|
|
*
|
|
* Enable CoreSight without processing further QMI commands which
|
|
* provides the option to enable remote ETM by other means.
|
|
*/
|
|
if (!drvdata->handle) {
|
|
dev_info(drvdata->dev,
|
|
"%s: QMI service unavailable\n", __func__);
|
|
ret = -EINVAL;
|
|
goto err;
|
|
}
|
|
|
|
req.state = CORESIGHT_ETM_STATE_ENABLED_V01;
|
|
|
|
req_desc.msg_id = CORESIGHT_QMI_SET_ETM_REQ_V01;
|
|
req_desc.max_msg_len = CORESIGHT_QMI_SET_ETM_REQ_MAX_LEN;
|
|
req_desc.ei_array = coresight_set_etm_req_msg_v01_ei;
|
|
|
|
resp_desc.msg_id = CORESIGHT_QMI_SET_ETM_RESP_V01;
|
|
resp_desc.max_msg_len = CORESIGHT_QMI_SET_ETM_RESP_MAX_LEN;
|
|
resp_desc.ei_array = coresight_set_etm_resp_msg_v01_ei;
|
|
|
|
ret = qmi_send_req_wait(drvdata->handle, &req_desc, &req, sizeof(req),
|
|
&resp_desc, &resp, sizeof(resp), TIMEOUT_MS);
|
|
|
|
if (ret < 0) {
|
|
dev_err(drvdata->dev, "%s: QMI send req failed %d\n", __func__,
|
|
ret);
|
|
goto err;
|
|
}
|
|
|
|
if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
|
|
dev_err(drvdata->dev, "%s: QMI request failed %d %d\n",
|
|
__func__, resp.resp.result, resp.resp.error);
|
|
ret = -EREMOTEIO;
|
|
goto err;
|
|
}
|
|
drvdata->enable = true;
|
|
mutex_unlock(&drvdata->mutex);
|
|
|
|
dev_info(drvdata->dev, "Remote ETM tracing enabled\n");
|
|
return 0;
|
|
err:
|
|
mutex_unlock(&drvdata->mutex);
|
|
return ret;
|
|
}
|
|
|
|
static void remote_etm_disable(struct coresight_device *csdev)
|
|
{
|
|
struct remote_etm_drvdata *drvdata =
|
|
dev_get_drvdata(csdev->dev.parent);
|
|
struct coresight_set_etm_req_msg_v01 req;
|
|
struct coresight_set_etm_resp_msg_v01 resp = { { 0, 0 } };
|
|
struct msg_desc req_desc, resp_desc;
|
|
int ret;
|
|
|
|
mutex_lock(&drvdata->mutex);
|
|
|
|
if (!drvdata->handle) {
|
|
dev_info(drvdata->dev,
|
|
"%s: QMI service unavailable\n", __func__);
|
|
goto err;
|
|
}
|
|
|
|
req.state = CORESIGHT_ETM_STATE_DISABLED_V01;
|
|
|
|
req_desc.msg_id = CORESIGHT_QMI_SET_ETM_REQ_V01;
|
|
req_desc.max_msg_len = CORESIGHT_QMI_SET_ETM_REQ_MAX_LEN;
|
|
req_desc.ei_array = coresight_set_etm_req_msg_v01_ei;
|
|
|
|
resp_desc.msg_id = CORESIGHT_QMI_SET_ETM_RESP_V01;
|
|
resp_desc.max_msg_len = CORESIGHT_QMI_SET_ETM_RESP_MAX_LEN;
|
|
resp_desc.ei_array = coresight_set_etm_resp_msg_v01_ei;
|
|
|
|
ret = qmi_send_req_wait(drvdata->handle, &req_desc, &req, sizeof(req),
|
|
&resp_desc, &resp, sizeof(resp), TIMEOUT_MS);
|
|
if (ret < 0) {
|
|
dev_err(drvdata->dev, "%s: QMI send req failed %d\n", __func__,
|
|
ret);
|
|
goto err;
|
|
}
|
|
|
|
if (resp.resp.result != QMI_RESULT_SUCCESS_V01) {
|
|
dev_err(drvdata->dev, "%s: QMI request failed %d %d\n",
|
|
__func__, resp.resp.result, resp.resp.error);
|
|
goto err;
|
|
}
|
|
drvdata->enable = false;
|
|
mutex_unlock(&drvdata->mutex);
|
|
|
|
dev_info(drvdata->dev, "Remote ETM tracing disabled\n");
|
|
return;
|
|
err:
|
|
mutex_unlock(&drvdata->mutex);
|
|
}
|
|
|
|
static const struct coresight_ops_source remote_etm_source_ops = {
|
|
.enable = remote_etm_enable,
|
|
.disable = remote_etm_disable,
|
|
};
|
|
|
|
static const struct coresight_ops remote_cs_ops = {
|
|
.source_ops = &remote_etm_source_ops,
|
|
};
|
|
|
|
static void remote_etm_rcv_msg(struct work_struct *work)
|
|
{
|
|
struct remote_etm_drvdata *drvdata = container_of(work,
|
|
struct remote_etm_drvdata,
|
|
work_rcv_msg);
|
|
|
|
if (qmi_recv_msg(drvdata->handle) < 0)
|
|
dev_err(drvdata->dev, "%s: Error receiving QMI message\n",
|
|
__func__);
|
|
}
|
|
|
|
static void remote_etm_notify(struct qmi_handle *handle,
|
|
enum qmi_event_type event, void *notify_priv)
|
|
{
|
|
struct remote_etm_drvdata *drvdata =
|
|
(struct remote_etm_drvdata *)notify_priv;
|
|
switch (event) {
|
|
case QMI_RECV_MSG:
|
|
queue_work(drvdata->wq, &drvdata->work_rcv_msg);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void remote_delay_enable_handler(struct work_struct *work)
|
|
{
|
|
struct remote_etm_drvdata *drvdata = container_of(work,
|
|
struct remote_etm_drvdata,
|
|
work_delay_enable.work);
|
|
coresight_enable(drvdata->csdev);
|
|
}
|
|
|
|
static void remote_etm_svc_arrive(struct work_struct *work)
|
|
{
|
|
struct remote_etm_drvdata *drvdata = container_of(work,
|
|
struct remote_etm_drvdata,
|
|
work_svc_arrive);
|
|
|
|
drvdata->handle = qmi_handle_create(remote_etm_notify, drvdata);
|
|
if (!drvdata->handle) {
|
|
dev_err(drvdata->dev, "%s: QMI client handle alloc failed\n",
|
|
__func__);
|
|
return;
|
|
}
|
|
|
|
if (qmi_connect_to_service(drvdata->handle, CORESIGHT_QMI_SVC_ID,
|
|
CORESIGHT_QMI_VERSION,
|
|
drvdata->inst_id) < 0) {
|
|
dev_err(drvdata->dev,
|
|
"%s: Could not connect handle to service\n", __func__);
|
|
qmi_handle_destroy(drvdata->handle);
|
|
drvdata->handle = NULL;
|
|
}
|
|
|
|
mutex_lock(&drvdata->mutex);
|
|
if (drvdata->inst_id < sizeof(int)*BITS_PER_BYTE
|
|
&& (boot_enable & BIT(drvdata->inst_id))) {
|
|
if (!drvdata->enable)
|
|
schedule_delayed_work(&drvdata->work_delay_enable,
|
|
msecs_to_jiffies(TIMEOUT_MS));
|
|
}
|
|
mutex_unlock(&drvdata->mutex);
|
|
}
|
|
|
|
static void remote_etm_svc_exit(struct work_struct *work)
|
|
{
|
|
struct remote_etm_drvdata *drvdata = container_of(work,
|
|
struct remote_etm_drvdata,
|
|
work_svc_exit);
|
|
|
|
qmi_handle_destroy(drvdata->handle);
|
|
drvdata->handle = NULL;
|
|
}
|
|
|
|
static int remote_etm_svc_event_notify(struct notifier_block *this,
|
|
unsigned long event,
|
|
void *data)
|
|
{
|
|
struct remote_etm_drvdata *drvdata = container_of(this,
|
|
struct remote_etm_drvdata,
|
|
nb);
|
|
|
|
switch (event) {
|
|
case QMI_SERVER_ARRIVE:
|
|
queue_work(drvdata->wq, &drvdata->work_svc_arrive);
|
|
break;
|
|
case QMI_SERVER_EXIT:
|
|
queue_work(drvdata->wq, &drvdata->work_svc_exit);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int remote_etm_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct coresight_platform_data *pdata;
|
|
struct remote_etm_drvdata *drvdata;
|
|
struct coresight_desc *desc;
|
|
int ret;
|
|
|
|
pdata = of_get_coresight_platform_data(dev, pdev->dev.of_node);
|
|
if (IS_ERR(pdata))
|
|
return PTR_ERR(pdata);
|
|
pdev->dev.platform_data = pdata;
|
|
|
|
drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
|
|
if (!drvdata)
|
|
return -ENOMEM;
|
|
|
|
drvdata->dev = &pdev->dev;
|
|
platform_set_drvdata(pdev, drvdata);
|
|
|
|
desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL);
|
|
if (!desc)
|
|
return -ENOMEM;
|
|
|
|
ret = of_property_read_u32(pdev->dev.of_node, "qcom,inst-id",
|
|
&drvdata->inst_id);
|
|
if (ret)
|
|
return ret;
|
|
|
|
mutex_init(&drvdata->mutex);
|
|
|
|
drvdata->nb.notifier_call = remote_etm_svc_event_notify;
|
|
|
|
drvdata->wq = create_singlethread_workqueue(dev_name(dev));
|
|
if (!drvdata->wq)
|
|
return -EFAULT;
|
|
INIT_WORK(&drvdata->work_svc_arrive, remote_etm_svc_arrive);
|
|
INIT_WORK(&drvdata->work_svc_exit, remote_etm_svc_exit);
|
|
INIT_WORK(&drvdata->work_rcv_msg, remote_etm_rcv_msg);
|
|
INIT_DELAYED_WORK(&drvdata->work_delay_enable,
|
|
remote_delay_enable_handler);
|
|
ret = qmi_svc_event_notifier_register(CORESIGHT_QMI_SVC_ID,
|
|
CORESIGHT_QMI_VERSION,
|
|
drvdata->inst_id,
|
|
&drvdata->nb);
|
|
if (ret < 0)
|
|
goto err0;
|
|
|
|
desc->type = CORESIGHT_DEV_TYPE_SOURCE;
|
|
desc->subtype.source_subtype = CORESIGHT_DEV_SUBTYPE_SOURCE_PROC;
|
|
desc->ops = &remote_cs_ops;
|
|
desc->pdata = pdev->dev.platform_data;
|
|
desc->dev = &pdev->dev;
|
|
desc->owner = THIS_MODULE;
|
|
drvdata->csdev = coresight_register(desc);
|
|
if (IS_ERR(drvdata->csdev)) {
|
|
ret = PTR_ERR(drvdata->csdev);
|
|
goto err1;
|
|
}
|
|
dev_info(dev, "Remote ETM initialized\n");
|
|
|
|
if (drvdata->inst_id >= sizeof(int)*BITS_PER_BYTE)
|
|
dev_err(dev, "inst_id greater than boot_enable bit mask\n");
|
|
else if (boot_enable & BIT(drvdata->inst_id))
|
|
coresight_enable(drvdata->csdev);
|
|
|
|
return 0;
|
|
err1:
|
|
qmi_svc_event_notifier_unregister(CORESIGHT_QMI_SVC_ID,
|
|
CORESIGHT_QMI_VERSION,
|
|
drvdata->inst_id,
|
|
&drvdata->nb);
|
|
err0:
|
|
destroy_workqueue(drvdata->wq);
|
|
return ret;
|
|
}
|
|
|
|
static int remote_etm_remove(struct platform_device *pdev)
|
|
{
|
|
struct remote_etm_drvdata *drvdata = platform_get_drvdata(pdev);
|
|
|
|
coresight_unregister(drvdata->csdev);
|
|
return 0;
|
|
}
|
|
|
|
static struct of_device_id remote_etm_match[] = {
|
|
{.compatible = "qcom,coresight-remote-etm"},
|
|
{}
|
|
};
|
|
|
|
static struct platform_driver remote_etm_driver = {
|
|
.probe = remote_etm_probe,
|
|
.remove = remote_etm_remove,
|
|
.driver = {
|
|
.name = "coresight-remote-etm",
|
|
.owner = THIS_MODULE,
|
|
.of_match_table = remote_etm_match,
|
|
},
|
|
};
|
|
|
|
int __init remote_etm_init(void)
|
|
{
|
|
return platform_driver_register(&remote_etm_driver);
|
|
}
|
|
module_init(remote_etm_init);
|
|
|
|
void __exit remote_etm_exit(void)
|
|
{
|
|
platform_driver_unregister(&remote_etm_driver);
|
|
}
|
|
module_exit(remote_etm_exit);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("CoreSight Remote ETM driver");
|