2023-08-30 17:31:07 +02:00
|
|
|
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/mtd/arasan,nand-controller.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: Arasan NAND Flash Controller with ONFI 3.1 support
|
|
|
|
|
|
|
|
allOf:
|
2023-10-24 12:59:35 +02:00
|
|
|
- $ref: nand-controller.yaml
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
maintainers:
|
2023-10-24 12:59:35 +02:00
|
|
|
- Michal Simek <michal.simek@amd.com>
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
items:
|
|
|
|
- enum:
|
|
|
|
- xlnx,zynqmp-nand-controller
|
|
|
|
- const: arasan,nfc-v3p10
|
|
|
|
|
|
|
|
reg:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
clocks:
|
|
|
|
items:
|
|
|
|
- description: Controller clock
|
|
|
|
- description: NAND bus clock
|
|
|
|
|
|
|
|
clock-names:
|
|
|
|
items:
|
|
|
|
- const: controller
|
|
|
|
- const: bus
|
|
|
|
|
|
|
|
interrupts:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
required:
|
|
|
|
- compatible
|
|
|
|
- reg
|
|
|
|
- clocks
|
|
|
|
- clock-names
|
|
|
|
- interrupts
|
|
|
|
|
|
|
|
unevaluatedProperties: true
|
|
|
|
|
|
|
|
examples:
|
|
|
|
- |
|
|
|
|
nfc: nand-controller@ff100000 {
|
|
|
|
compatible = "xlnx,zynqmp-nand-controller", "arasan,nfc-v3p10";
|
|
|
|
reg = <0xff100000 0x1000>;
|
|
|
|
clock-names = "controller", "bus";
|
|
|
|
clocks = <&clk200>, <&clk100>;
|
|
|
|
interrupt-parent = <&gic>;
|
|
|
|
interrupts = <0 14 4>;
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
};
|