123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296 |
- // SPDX-License-Identifier: GPL-2.0
- /*
- * Copyright(C) 2015 Linaro Limited. All rights reserved.
- * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
- */
- #include <linux/pid_namespace.h>
- #include <linux/pm_runtime.h>
- #include <linux/sysfs.h>
- #include "coresight-etm.h"
- #include "coresight-priv.h"
- static ssize_t nr_addr_cmp_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- val = drvdata->nr_addr_cmp;
- return sprintf(buf, "%#lx\n", val);
- }
- static DEVICE_ATTR_RO(nr_addr_cmp);
- static ssize_t nr_cntr_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- { unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- val = drvdata->nr_cntr;
- return sprintf(buf, "%#lx\n", val);
- }
- static DEVICE_ATTR_RO(nr_cntr);
- static ssize_t nr_ctxid_cmp_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- val = drvdata->nr_ctxid_cmp;
- return sprintf(buf, "%#lx\n", val);
- }
- static DEVICE_ATTR_RO(nr_ctxid_cmp);
- static ssize_t etmsr_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long flags, val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- pm_runtime_get_sync(drvdata->dev);
- spin_lock_irqsave(&drvdata->spinlock, flags);
- CS_UNLOCK(drvdata->base);
- val = etm_readl(drvdata, ETMSR);
- CS_LOCK(drvdata->base);
- spin_unlock_irqrestore(&drvdata->spinlock, flags);
- pm_runtime_put(drvdata->dev);
- return sprintf(buf, "%#lx\n", val);
- }
- static DEVICE_ATTR_RO(etmsr);
- static ssize_t reset_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int i, ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- if (val) {
- spin_lock(&drvdata->spinlock);
- memset(config, 0, sizeof(struct etm_config));
- config->mode = ETM_MODE_EXCLUDE;
- config->trigger_event = ETM_DEFAULT_EVENT_VAL;
- for (i = 0; i < drvdata->nr_addr_cmp; i++) {
- config->addr_type[i] = ETM_ADDR_TYPE_NONE;
- }
- etm_set_default(config);
- spin_unlock(&drvdata->spinlock);
- }
- return size;
- }
- static DEVICE_ATTR_WO(reset);
- static ssize_t mode_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->mode;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t mode_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->mode = val & ETM_MODE_ALL;
- if (config->mode & ETM_MODE_EXCLUDE)
- config->enable_ctrl1 |= ETMTECR1_INC_EXC;
- else
- config->enable_ctrl1 &= ~ETMTECR1_INC_EXC;
- if (config->mode & ETM_MODE_CYCACC)
- config->ctrl |= ETMCR_CYC_ACC;
- else
- config->ctrl &= ~ETMCR_CYC_ACC;
- if (config->mode & ETM_MODE_STALL) {
- if (!(drvdata->etmccr & ETMCCR_FIFOFULL)) {
- dev_warn(drvdata->dev, "stall mode not supported\n");
- ret = -EINVAL;
- goto err_unlock;
- }
- config->ctrl |= ETMCR_STALL_MODE;
- } else
- config->ctrl &= ~ETMCR_STALL_MODE;
- if (config->mode & ETM_MODE_TIMESTAMP) {
- if (!(drvdata->etmccer & ETMCCER_TIMESTAMP)) {
- dev_warn(drvdata->dev, "timestamp not supported\n");
- ret = -EINVAL;
- goto err_unlock;
- }
- config->ctrl |= ETMCR_TIMESTAMP_EN;
- } else
- config->ctrl &= ~ETMCR_TIMESTAMP_EN;
- if (config->mode & ETM_MODE_CTXID)
- config->ctrl |= ETMCR_CTXID_SIZE;
- else
- config->ctrl &= ~ETMCR_CTXID_SIZE;
- if (config->mode & ETM_MODE_BBROAD)
- config->ctrl |= ETMCR_BRANCH_BROADCAST;
- else
- config->ctrl &= ~ETMCR_BRANCH_BROADCAST;
- if (config->mode & ETM_MODE_RET_STACK)
- config->ctrl |= ETMCR_RETURN_STACK;
- else
- config->ctrl &= ~ETMCR_RETURN_STACK;
- if (config->mode & (ETM_MODE_EXCL_KERN | ETM_MODE_EXCL_USER))
- etm_config_trace_mode(config);
- spin_unlock(&drvdata->spinlock);
- return size;
- err_unlock:
- spin_unlock(&drvdata->spinlock);
- return ret;
- }
- static DEVICE_ATTR_RW(mode);
- static ssize_t trigger_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->trigger_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t trigger_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->trigger_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(trigger_event);
- static ssize_t enable_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->enable_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t enable_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->enable_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(enable_event);
- static ssize_t fifofull_level_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->fifofull_level;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t fifofull_level_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->fifofull_level = val;
- return size;
- }
- static DEVICE_ATTR_RW(fifofull_level);
- static ssize_t addr_idx_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->addr_idx;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t addr_idx_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- if (val >= drvdata->nr_addr_cmp)
- return -EINVAL;
- /*
- * Use spinlock to ensure index doesn't change while it gets
- * dereferenced multiple times within a spinlock block elsewhere.
- */
- spin_lock(&drvdata->spinlock);
- config->addr_idx = val;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(addr_idx);
- static ssize_t addr_single_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- u8 idx;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
- config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
- spin_unlock(&drvdata->spinlock);
- return -EINVAL;
- }
- val = config->addr_val[idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t addr_single_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- u8 idx;
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
- config->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) {
- spin_unlock(&drvdata->spinlock);
- return -EINVAL;
- }
- config->addr_val[idx] = val;
- config->addr_type[idx] = ETM_ADDR_TYPE_SINGLE;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(addr_single);
- static ssize_t addr_range_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- u8 idx;
- unsigned long val1, val2;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (idx % 2 != 0) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
- config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
- (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
- config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- val1 = config->addr_val[idx];
- val2 = config->addr_val[idx + 1];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx %#lx\n", val1, val2);
- }
- static ssize_t addr_range_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- u8 idx;
- unsigned long val1, val2;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- if (sscanf(buf, "%lx %lx", &val1, &val2) != 2)
- return -EINVAL;
- /* Lower address comparator cannot have a higher address value */
- if (val1 > val2)
- return -EINVAL;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (idx % 2 != 0) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- if (!((config->addr_type[idx] == ETM_ADDR_TYPE_NONE &&
- config->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) ||
- (config->addr_type[idx] == ETM_ADDR_TYPE_RANGE &&
- config->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- config->addr_val[idx] = val1;
- config->addr_type[idx] = ETM_ADDR_TYPE_RANGE;
- config->addr_val[idx + 1] = val2;
- config->addr_type[idx + 1] = ETM_ADDR_TYPE_RANGE;
- config->enable_ctrl1 |= (1 << (idx/2));
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(addr_range);
- static ssize_t addr_start_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- u8 idx;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
- config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- val = config->addr_val[idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t addr_start_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- u8 idx;
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
- config->addr_type[idx] == ETM_ADDR_TYPE_START)) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- config->addr_val[idx] = val;
- config->addr_type[idx] = ETM_ADDR_TYPE_START;
- config->startstop_ctrl |= (1 << idx);
- config->enable_ctrl1 |= BIT(25);
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(addr_start);
- static ssize_t addr_stop_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- u8 idx;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
- config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- val = config->addr_val[idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t addr_stop_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- u8 idx;
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- idx = config->addr_idx;
- if (!(config->addr_type[idx] == ETM_ADDR_TYPE_NONE ||
- config->addr_type[idx] == ETM_ADDR_TYPE_STOP)) {
- spin_unlock(&drvdata->spinlock);
- return -EPERM;
- }
- config->addr_val[idx] = val;
- config->addr_type[idx] = ETM_ADDR_TYPE_STOP;
- config->startstop_ctrl |= (1 << (idx + 16));
- config->enable_ctrl1 |= ETMTECR1_START_STOP;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(addr_stop);
- static ssize_t addr_acctype_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- val = config->addr_acctype[config->addr_idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t addr_acctype_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->addr_acctype[config->addr_idx] = val;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(addr_acctype);
- static ssize_t cntr_idx_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->cntr_idx;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t cntr_idx_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- if (val >= drvdata->nr_cntr)
- return -EINVAL;
- /*
- * Use spinlock to ensure index doesn't change while it gets
- * dereferenced multiple times within a spinlock block elsewhere.
- */
- spin_lock(&drvdata->spinlock);
- config->cntr_idx = val;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(cntr_idx);
- static ssize_t cntr_rld_val_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- val = config->cntr_rld_val[config->cntr_idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t cntr_rld_val_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->cntr_rld_val[config->cntr_idx] = val;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(cntr_rld_val);
- static ssize_t cntr_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- val = config->cntr_event[config->cntr_idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t cntr_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->cntr_event[config->cntr_idx] = val & ETM_EVENT_MASK;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(cntr_event);
- static ssize_t cntr_rld_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- spin_lock(&drvdata->spinlock);
- val = config->cntr_rld_event[config->cntr_idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t cntr_rld_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->cntr_rld_event[config->cntr_idx] = val & ETM_EVENT_MASK;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(cntr_rld_event);
- static ssize_t cntr_val_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- int i, ret = 0;
- u32 val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- if (!local_read(&drvdata->mode)) {
- spin_lock(&drvdata->spinlock);
- for (i = 0; i < drvdata->nr_cntr; i++)
- ret += sprintf(buf, "counter %d: %x\n",
- i, config->cntr_val[i]);
- spin_unlock(&drvdata->spinlock);
- return ret;
- }
- for (i = 0; i < drvdata->nr_cntr; i++) {
- val = etm_readl(drvdata, ETMCNTVRn(i));
- ret += sprintf(buf, "counter %d: %x\n", i, val);
- }
- return ret;
- }
- static ssize_t cntr_val_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->cntr_val[config->cntr_idx] = val;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(cntr_val);
- static ssize_t seq_12_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->seq_12_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_12_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->seq_12_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(seq_12_event);
- static ssize_t seq_21_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->seq_21_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_21_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->seq_21_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(seq_21_event);
- static ssize_t seq_23_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->seq_23_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_23_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->seq_23_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(seq_23_event);
- static ssize_t seq_31_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->seq_31_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_31_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->seq_31_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(seq_31_event);
- static ssize_t seq_32_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->seq_32_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_32_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->seq_32_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(seq_32_event);
- static ssize_t seq_13_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->seq_13_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_13_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->seq_13_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(seq_13_event);
- static ssize_t seq_curr_state_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val, flags;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- if (!local_read(&drvdata->mode)) {
- val = config->seq_curr_state;
- goto out;
- }
- pm_runtime_get_sync(drvdata->dev);
- spin_lock_irqsave(&drvdata->spinlock, flags);
- CS_UNLOCK(drvdata->base);
- val = (etm_readl(drvdata, ETMSQR) & ETM_SQR_MASK);
- CS_LOCK(drvdata->base);
- spin_unlock_irqrestore(&drvdata->spinlock, flags);
- pm_runtime_put(drvdata->dev);
- out:
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t seq_curr_state_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- if (val > ETM_SEQ_STATE_MAX_VAL)
- return -EINVAL;
- config->seq_curr_state = val;
- return size;
- }
- static DEVICE_ATTR_RW(seq_curr_state);
- static ssize_t ctxid_idx_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->ctxid_idx;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t ctxid_idx_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- if (val >= drvdata->nr_ctxid_cmp)
- return -EINVAL;
- /*
- * Use spinlock to ensure index doesn't change while it gets
- * dereferenced multiple times within a spinlock block elsewhere.
- */
- spin_lock(&drvdata->spinlock);
- config->ctxid_idx = val;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(ctxid_idx);
- static ssize_t ctxid_pid_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- /*
- * Don't use contextID tracing if coming from a PID namespace. See
- * comment in ctxid_pid_store().
- */
- if (task_active_pid_ns(current) != &init_pid_ns)
- return -EINVAL;
- spin_lock(&drvdata->spinlock);
- val = config->ctxid_pid[config->ctxid_idx];
- spin_unlock(&drvdata->spinlock);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t ctxid_pid_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long pid;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- /*
- * When contextID tracing is enabled the tracers will insert the
- * value found in the contextID register in the trace stream. But if
- * a process is in a namespace the PID of that process as seen from the
- * namespace won't be what the kernel sees, something that makes the
- * feature confusing and can potentially leak kernel only information.
- * As such refuse to use the feature if @current is not in the initial
- * PID namespace.
- */
- if (task_active_pid_ns(current) != &init_pid_ns)
- return -EINVAL;
- ret = kstrtoul(buf, 16, &pid);
- if (ret)
- return ret;
- spin_lock(&drvdata->spinlock);
- config->ctxid_pid[config->ctxid_idx] = pid;
- spin_unlock(&drvdata->spinlock);
- return size;
- }
- static DEVICE_ATTR_RW(ctxid_pid);
- static ssize_t ctxid_mask_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- /*
- * Don't use contextID tracing if coming from a PID namespace. See
- * comment in ctxid_pid_store().
- */
- if (task_active_pid_ns(current) != &init_pid_ns)
- return -EINVAL;
- val = config->ctxid_mask;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t ctxid_mask_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- /*
- * Don't use contextID tracing if coming from a PID namespace. See
- * comment in ctxid_pid_store().
- */
- if (task_active_pid_ns(current) != &init_pid_ns)
- return -EINVAL;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->ctxid_mask = val;
- return size;
- }
- static DEVICE_ATTR_RW(ctxid_mask);
- static ssize_t sync_freq_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->sync_freq;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t sync_freq_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->sync_freq = val & ETM_SYNC_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(sync_freq);
- static ssize_t timestamp_event_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- val = config->timestamp_event;
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t timestamp_event_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- struct etm_config *config = &drvdata->config;
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- config->timestamp_event = val & ETM_EVENT_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(timestamp_event);
- static ssize_t cpu_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- int val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- val = drvdata->cpu;
- return scnprintf(buf, PAGE_SIZE, "%d\n", val);
- }
- static DEVICE_ATTR_RO(cpu);
- static ssize_t traceid_show(struct device *dev,
- struct device_attribute *attr, char *buf)
- {
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- val = etm_get_trace_id(drvdata);
- return sprintf(buf, "%#lx\n", val);
- }
- static ssize_t traceid_store(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t size)
- {
- int ret;
- unsigned long val;
- struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent);
- ret = kstrtoul(buf, 16, &val);
- if (ret)
- return ret;
- drvdata->traceid = val & ETM_TRACEID_MASK;
- return size;
- }
- static DEVICE_ATTR_RW(traceid);
- static struct attribute *coresight_etm_attrs[] = {
- &dev_attr_nr_addr_cmp.attr,
- &dev_attr_nr_cntr.attr,
- &dev_attr_nr_ctxid_cmp.attr,
- &dev_attr_etmsr.attr,
- &dev_attr_reset.attr,
- &dev_attr_mode.attr,
- &dev_attr_trigger_event.attr,
- &dev_attr_enable_event.attr,
- &dev_attr_fifofull_level.attr,
- &dev_attr_addr_idx.attr,
- &dev_attr_addr_single.attr,
- &dev_attr_addr_range.attr,
- &dev_attr_addr_start.attr,
- &dev_attr_addr_stop.attr,
- &dev_attr_addr_acctype.attr,
- &dev_attr_cntr_idx.attr,
- &dev_attr_cntr_rld_val.attr,
- &dev_attr_cntr_event.attr,
- &dev_attr_cntr_rld_event.attr,
- &dev_attr_cntr_val.attr,
- &dev_attr_seq_12_event.attr,
- &dev_attr_seq_21_event.attr,
- &dev_attr_seq_23_event.attr,
- &dev_attr_seq_31_event.attr,
- &dev_attr_seq_32_event.attr,
- &dev_attr_seq_13_event.attr,
- &dev_attr_seq_curr_state.attr,
- &dev_attr_ctxid_idx.attr,
- &dev_attr_ctxid_pid.attr,
- &dev_attr_ctxid_mask.attr,
- &dev_attr_sync_freq.attr,
- &dev_attr_timestamp_event.attr,
- &dev_attr_traceid.attr,
- &dev_attr_cpu.attr,
- NULL,
- };
- #define coresight_etm3x_reg(name, offset) \
- coresight_simple_reg32(struct etm_drvdata, name, offset)
- coresight_etm3x_reg(etmccr, ETMCCR);
- coresight_etm3x_reg(etmccer, ETMCCER);
- coresight_etm3x_reg(etmscr, ETMSCR);
- coresight_etm3x_reg(etmidr, ETMIDR);
- coresight_etm3x_reg(etmcr, ETMCR);
- coresight_etm3x_reg(etmtraceidr, ETMTRACEIDR);
- coresight_etm3x_reg(etmteevr, ETMTEEVR);
- coresight_etm3x_reg(etmtssvr, ETMTSSCR);
- coresight_etm3x_reg(etmtecr1, ETMTECR1);
- coresight_etm3x_reg(etmtecr2, ETMTECR2);
- static struct attribute *coresight_etm_mgmt_attrs[] = {
- &dev_attr_etmccr.attr,
- &dev_attr_etmccer.attr,
- &dev_attr_etmscr.attr,
- &dev_attr_etmidr.attr,
- &dev_attr_etmcr.attr,
- &dev_attr_etmtraceidr.attr,
- &dev_attr_etmteevr.attr,
- &dev_attr_etmtssvr.attr,
- &dev_attr_etmtecr1.attr,
- &dev_attr_etmtecr2.attr,
- NULL,
- };
- static const struct attribute_group coresight_etm_group = {
- .attrs = coresight_etm_attrs,
- };
- static const struct attribute_group coresight_etm_mgmt_group = {
- .attrs = coresight_etm_mgmt_attrs,
- .name = "mgmt",
- };
- const struct attribute_group *coresight_etm_groups[] = {
- &coresight_etm_group,
- &coresight_etm_mgmt_group,
- NULL,
- };
|