drivers/hwtracing: Import OnePlus Changes
Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
This commit is contained in:
parent
58ac748fc1
commit
a7c15b4c37
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
|
||||
/* Copyright (c) 2017-2020, 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
|
||||
|
@ -222,8 +222,7 @@ static int tmc_etr_byte_cntr_release(struct inode *in, struct file *fp)
|
|||
mutex_lock(&byte_cntr_data->byte_cntr_lock);
|
||||
byte_cntr_data->read_active = false;
|
||||
|
||||
if (byte_cntr_data->enable)
|
||||
coresight_csr_set_byte_cntr(byte_cntr_data->csr, 0);
|
||||
coresight_csr_set_byte_cntr(byte_cntr_data->csr, 0);
|
||||
mutex_unlock(&byte_cntr_data->byte_cntr_lock);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -662,14 +662,17 @@ int tmc_read_unprepare_etb(struct tmc_drvdata *drvdata)
|
|||
|
||||
spin_lock_irqsave(&drvdata->spinlock, flags);
|
||||
|
||||
/* Re-enable the TMC if need be */
|
||||
if (drvdata->mode == CS_MODE_SYSFS) {
|
||||
if (drvdata->enable) {
|
||||
/* There is no point in reading a TMC in HW FIFO mode */
|
||||
mode = readl_relaxed(drvdata->base + TMC_MODE);
|
||||
if (mode != TMC_MODE_CIRCULAR_BUFFER) {
|
||||
spin_unlock_irqrestore(&drvdata->spinlock, flags);
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
/* Re-enable the TMC if need be */
|
||||
if (drvdata->mode == CS_MODE_SYSFS) {
|
||||
/*
|
||||
* The trace run will continue with the same allocated trace
|
||||
* buffer. As such zero-out the buffer so that we don't end
|
||||
|
|
Loading…
Reference in New Issue