From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Souradeep Chowdhury <schowdhu@codeaurora.org>
Cc: Rob Herring <robh+dt@kernel.org>, Andy Gross <agross@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
devicetree@vger.kernel.org, sibis@codeaurora.org,
saiprakash.ranjan@codeaurora.org,
Rajendra Nayak <rnayak@codeaurora.org>,
vkoul@kernel.org
Subject: Re: [PATCH V1 4/6] DCC: Added the sysfs entries for DCC(Data Capture and Compare) driver
Date: Wed, 10 Mar 2021 17:28:46 -0600 [thread overview]
Message-ID: <YElWLqemavtXGlPd@builder.lan> (raw)
In-Reply-To: <332477ea39088fca5879af1a5278c289e1602f6d.1615393454.git.schowdhu@codeaurora.org>
On Wed 10 Mar 10:46 CST 2021, Souradeep Chowdhury wrote:
> The DCC is a DMA engine designed to store register values either in
> case of a system crash or in case of software triggers manually done
> by the user. Using DCC hardware and the sysfs interface of the driver
> the user can exploit various functionalities of DCC. The user can specify
> the register addresses, the values of which is stored by DCC in it's
> dedicated SRAM. The register addresses can be used either to read from,
> write to, first read and store value and then write or to loop. All these
> options can be exploited using the sysfs interface given to the user.
> Following are the sysfs interfaces exposed in DCC driver which are
> documented
> 1)trigger
> 2)config
> 3)config_write
> 4)config_reset
> 5)enable
> 6)rd_mod_wr
> 7)loop
>
> Signed-off-by: Souradeep Chowdhury <schowdhu@codeaurora.org>
> ---
> Documentation/ABI/testing/sysfs-driver-dcc | 74 ++++++++++++++++++++++++++++++
> 1 file changed, 74 insertions(+)
> create mode 100644 Documentation/ABI/testing/sysfs-driver-dcc
>
> diff --git a/Documentation/ABI/testing/sysfs-driver-dcc b/Documentation/ABI/testing/sysfs-driver-dcc
> new file mode 100644
> index 0000000..7a855ca
> --- /dev/null
> +++ b/Documentation/ABI/testing/sysfs-driver-dcc
> @@ -0,0 +1,74 @@
> +What: /sys/bus/platform/devices/.../trigger
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file allows the software trigger to be enabled
> + by the user through the sysfs interface.Through this
> + interface the user can manually start a software trigger
> + in dcc where by the dcc driver stores the current status
> + of the specified registers in dcc sram.
> +
> +What: /sys/bus/platform/devices/.../enable
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file allows the user to manually enable or
> + disable dcc driver.The dcc hardware needs to be
> + enabled before use.
> +
> +What: /sys/bus/platform/devices/.../config
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file allows user to configure the register values
> + along with addresses to the dcc driver.This register
> + addresses are used to read from,write or loop through.
> + To enable all these options separate sysfs files have
> + are created.
Please describe the expected content of this file.
> +
> +What: /sys/bus/platform/devices/.../config_write
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file allows user to write a value to the register
> + address given as argument.The values are entered in the
> + form of <register_address> <value>.
So it's just a generic 'write some user defined data to some user
defined register'? This doesn't sound like the typical way things are
exposed in sysfs.
> +
> +What: /sys/bus/platform/devices/.../config_reset
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file is used to reset the configuration of
> + a dcc driver to the default configuration.
> +
> +What: /sys/bus/platform/devices/.../loop
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file is used to enter the loop count as dcc
> + driver gives the option to loop multiple times on
> + the same register and store the values for each
> + loop.
> +
> +What: /sys/bus/platform/devices/.../rd_mod_wr
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file is used to read the value of the register
> + and then write the value given as an argument to the
> + register address in config.The address argument should
> + be given of the form <mask> <value>.
> +
> +What: /sys/bus/platform/devices/.../ready
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file is used to check the status of the dcc
> + hardware if it's ready to take the inputs.
> +
> +What: /sys/bus/platform/devices/.../curr_list
> +Date: February 2021
> +Contact: Souradeep Chowdhury <schowdhu@codeaurora.org>
> +Description:
> + This file is used to configure the linkedlist data
> + to be used while configuring addresses.
Please describe the format of this attr. Is it read/write?
Regards,
Bjorn
> --
> QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member
> of Code Aurora Forum, hosted by The Linux Foundation
>
next prev parent reply other threads:[~2021-03-10 23:29 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-10 16:46 [PATCH V1 0/6] Add driver support for Data Capture and Compare Engine(DCC) for SM8150 Souradeep Chowdhury
2021-03-10 16:46 ` [PATCH V1 1/6] dt-bindings: Added the yaml bindings for DCC Souradeep Chowdhury
2021-03-10 20:22 ` Bjorn Andersson
2021-03-10 16:46 ` [PATCH V1 2/6] soc: qcom: dcc: Add driver support for Data Capture and Compare unit(DCC) Souradeep Chowdhury
2021-03-10 23:19 ` Bjorn Andersson
2021-03-11 6:19 ` Sai Prakash Ranjan
2021-03-11 16:31 ` Bjorn Andersson
2021-03-14 18:59 ` Sai Prakash Ranjan
2021-03-11 10:06 ` schowdhu
2021-03-11 16:34 ` Bjorn Andersson
2021-03-14 19:19 ` Sai Prakash Ranjan
2021-03-10 16:46 ` [PATCH V1 3/6] soc: qcom: dcc: Add the sysfs variables to the Data Capture and Compare driver(DCC) Souradeep Chowdhury
2021-03-10 16:46 ` [PATCH V1 4/6] DCC: Added the sysfs entries for DCC(Data Capture and Compare) driver Souradeep Chowdhury
2021-03-10 23:28 ` Bjorn Andersson [this message]
2021-03-11 10:45 ` schowdhu
2021-03-10 16:46 ` [PATCH V1 5/6] MAINTAINERS: Add the entry for DCC(Data Capture and Compare) driver support Souradeep Chowdhury
2021-03-10 16:46 ` [PATCH V1 6/6] arm64: dts: qcom: sm8150: Add Data Capture and Compare(DCC) support node Souradeep Chowdhury
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YElWLqemavtXGlPd@builder.lan \
--to=bjorn.andersson@linaro.org \
--cc=agross@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rnayak@codeaurora.org \
--cc=robh+dt@kernel.org \
--cc=saiprakash.ranjan@codeaurora.org \
--cc=schowdhu@codeaurora.org \
--cc=sibis@codeaurora.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).