From: Chee Nouk Phoo <cnphoon@altera.com>
To: linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org
Cc: lars@metafoo.de, Michael.Hennerich@analog.com,
cnphoon.linux@gmail.com, cnphoon@altera.com
Subject: [[PATCH v2] 1/2] Altera Modular ADC driver device binding
Date: Tue, 1 Sep 2015 14:49:58 -0700 [thread overview]
Message-ID: <1441144199-20231-2-git-send-email-cnphoon@altera.com> (raw)
In-Reply-To: <1441144199-20231-1-git-send-email-cnphoon@altera.com>
From: Chee Nouk Phoon <cnphoon@altera.com>
Altera Modular ADC is soft IP that wraps the hardened ADC block in a Max10
device. It can be configured to dual ADC mode that supports two channel
synchronous sampling or independent single ADCs. ADC sampled values will be
written into memory slots in sequence determined by a user configurable
sequencer block.
This patch adds Altera Modular ADC driver device tree binding
Signed-off-by: Chee Nouk Phoon <cnphoon@altera.com>
---
.../bindings/iio/adc/altr,modular-adc.txt | 63 ++++++++++++++++++++
1 files changed, 63 insertions(+), 0 deletions(-)
create mode 100644 Documentation/devicetree/bindings/iio/adc/altr,modular-adc.txt
diff --git a/Documentation/devicetree/bindings/iio/adc/altr,modular-adc.txt b/Documentation/devicetree/bindings/iio/adc/altr,modular-adc.txt
new file mode 100644
index 0000000..faafcac
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/adc/altr,modular-adc.txt
@@ -0,0 +1,63 @@
+Altera Modular (Dual) ADC
+
+This binding document describes both Altera Modular ADC and Altera Modular Dual
+ADC. Both options can be configured during generation time in Qsys. This driver
+only supports standard sequencer with Avalon-MM sample storage with up to 64
+memory slots.
+
+Required properties:
+- compatible: must be one of the following strings
+ "altr,modular-adc-1.0": single ADC configuration
+ "altr,modular-dual-adc-1.0": dual ADC configuration
+
+- reg: Address and length of the register set for the device. It contains the
+ information of registers in the same order as described by reg-names
+
+- reg-names: Should contain the reg names
+ "sequencer_csr": register region for adc sequencer block
+ "sample_store_csr": register region for sample store block
+
+- interrupts: interrupt line for ADC
+
+- altr,adc-mode : ADC configuration
+ 1: single ADC mode
+ 2: dual ADC mode
+
+- altr,adc-slot-count : specify number of conversion slot in use
+
+- altr,adc<ADC index>-slot-sequence-<slot index>: specify ADC channel
+ conversion sequence
+ <ADC index>: instantiated ADC number
+ <slot index>: slot index for ADC memory slot
+
+- altr,adc-number : specify ADC number when single ADC mode is selected
+ 1: 1st ADC
+ 2: 2nd ACD
+
+Example: single ADC
+modular_adc_0: adc@0x20000200 {
+ compatible = "altr,modular-adc";
+ reg = <0x20000000 0x00000008>,
+ <0x20000200 0x00000200>;
+ reg-names = "sequencer_csr", "sample_store_csr";
+ interrupt-parent = <&cpu>;
+ interrupts = <8>;
+ altr,adc-mode = <1>;
+ altr,adc-slot-count = <2>;
+ altr,adc1-slot-sequence-1 = <1>;
+ altr,adc-number = <1>;
+};
+
+Example: dual ADC
+modular_adc_1: adc@0x18002200 {
+ compatible = "altr,modular-dual-adc";
+ reg = <0x18002000 0x00000008>,
+ <0x18002200 0x00000200>;
+ reg-names = "sequencer_csr", "sample_store_csr";
+ interrupt-parent = <&cpu>;
+ interrupts = <8>;
+ altr,adc-mode = <2>;
+ altr,adc-slot-count = <1>;
+ altr,adc1-slot-sequence-1 = <6>;
+ altr,adc2-slot-sequence-1 = <6>;
+};
\ No newline at end of file
--
1.7.1
next prev parent reply other threads:[~2015-09-01 21:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-01 21:49 [[PATCH v2] 0/2] Add Altera Modular ADC Driver Chee Nouk Phoo
2015-09-01 21:49 ` Chee Nouk Phoo [this message]
[not found] ` <1441144199-20231-2-git-send-email-cnphoon-EIB2kfCEclfQT0dZR+AlfA@public.gmane.org>
2015-09-05 15:12 ` [[PATCH v2] 1/2] Altera Modular ADC driver device binding Jonathan Cameron
[not found] ` <1441144199-20231-1-git-send-email-cnphoon-EIB2kfCEclfQT0dZR+AlfA@public.gmane.org>
2015-09-01 21:49 ` [[PATCH v2] 2/2] Altera Modular ADC driver support Chee Nouk Phoo
[not found] ` <1441144199-20231-3-git-send-email-cnphoon-EIB2kfCEclfQT0dZR+AlfA@public.gmane.org>
2015-09-04 12:21 ` Shubhrajyoti Datta
2015-09-05 15:47 ` Jonathan Cameron
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=1441144199-20231-2-git-send-email-cnphoon@altera.com \
--to=cnphoon@altera.com \
--cc=Michael.Hennerich@analog.com \
--cc=cnphoon.linux@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.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).