aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwtracing/stm/p_basic.c
diff options
context:
space:
mode:
authorAlexander Shishkin <alexander.shishkin@linux.intel.com>2018-10-05 08:42:56 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-10-11 06:12:54 -0400
commita02509f301c68c9a7f01d75d7d326f7a9b81a630 (patch)
tree4e2783a20585a89abf094b38c593cb38a8472bb3 /drivers/hwtracing/stm/p_basic.c
parentd279a38020d2483cb75f5f82f5e4ab5f73bc94f2 (diff)
stm class: Factor out default framing protocol
The STP framing pattern that the stm class implicitly applies to the data payload is, in fact, a protocol. This patch moves the relevant code out of the stm core into its own driver module. Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Tested-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwtracing/stm/p_basic.c')
-rw-r--r--drivers/hwtracing/stm/p_basic.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/drivers/hwtracing/stm/p_basic.c b/drivers/hwtracing/stm/p_basic.c
new file mode 100644
index 000000000000..8980a6a5fd6c
--- /dev/null
+++ b/drivers/hwtracing/stm/p_basic.c
@@ -0,0 +1,48 @@
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Basic framing protocol for STM devices.
4 * Copyright (c) 2018, Intel Corporation.
5 */
6
7#include <linux/module.h>
8#include <linux/device.h>
9#include <linux/stm.h>
10#include "stm.h"
11
12static ssize_t basic_write(struct stm_data *data, struct stm_output *output,
13 unsigned int chan, const char *buf, size_t count)
14{
15 unsigned int c = output->channel + chan;
16 unsigned int m = output->master;
17 const unsigned char nil = 0;
18 ssize_t sz;
19
20 sz = stm_data_write(data, m, c, true, buf, count);
21 if (sz > 0)
22 data->packet(data, m, c, STP_PACKET_FLAG, 0, 0, &nil);
23
24 return sz;
25}
26
27static const struct stm_protocol_driver basic_pdrv = {
28 .owner = THIS_MODULE,
29 .name = "p_basic",
30 .write = basic_write,
31};
32
33static int basic_stm_init(void)
34{
35 return stm_register_protocol(&basic_pdrv);
36}
37
38static void basic_stm_exit(void)
39{
40 stm_unregister_protocol(&basic_pdrv);
41}
42
43module_init(basic_stm_init);
44module_exit(basic_stm_exit);
45
46MODULE_LICENSE("GPL v2");
47MODULE_DESCRIPTION("Basic STM framing protocol driver");
48MODULE_AUTHOR("Alexander Shishkin <alexander.shishkin@linux.intel.com>");