| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- Content-Type: text/plain; charset="utf-8"
- MIME-Version: 1.0
- Content-Transfer-Encoding: 7bit
- Subject: [v3,4/5] arm: qcom: dts: Add NAND controller node for ipq806x
- From: Archit Taneja <[email protected]>
- X-Patchwork-Id: 6927121
- Message-Id: <[email protected]>
- To: [email protected], [email protected],
- [email protected], [email protected]
- Cc: [email protected], [email protected],
- [email protected], [email protected],
- Archit Taneja <[email protected]>, [email protected]
- Date: Mon, 3 Aug 2015 10:38:17 +0530
- The nand controller in IPQ806x is of the 'EBI2 type'. Use the corresponding
- compatible string.
- Cc: [email protected]
- Reviewed-by: Andy Gross <[email protected]>
- Signed-off-by: Archit Taneja <[email protected]>
- ---
- arch/arm/boot/dts/qcom-ipq8064.dtsi | 15 +++++++++++++++
- 1 file changed, 15 insertions(+)
- --- a/arch/arm/boot/dts/qcom-ipq8064.dtsi
- +++ b/arch/arm/boot/dts/qcom-ipq8064.dtsi
- @@ -742,6 +742,22 @@
-
- status = "disabled";
- };
- +
- + nand@1ac00000 {
- + compatible = "qcom,ebi2-nandc";
- + reg = <0x1ac00000 0x800>;
- +
- + clocks = <&gcc EBI2_CLK>,
- + <&gcc EBI2_AON_CLK>;
- + clock-names = "core", "aon";
- +
- + dmas = <&adm_dma 3>;
- + dma-names = "rxtx";
- + qcom,cmd-crci = <15>;
- + qcom,data-crci = <3>;
- +
- + status = "disabled";
- + };
- };
-
- sfpb_mutex: sfpb-mutex {
|