blob: eefe15e3d95e8f3cc9a8ff2885ec494563d488cd [file] [log] [blame]
Laxman Dewangandc4dc362012-10-30 12:34:05 +05301NVIDIA Tegra20/Tegra30 SLINK controller.
2
3Required properties:
4- compatible : should be "nvidia,tegra20-slink", "nvidia,tegra30-slink".
5- reg: Should contain SLINK registers location and length.
6- interrupts: Should contain SLINK interrupts.
7- nvidia,dma-request-selector : The Tegra DMA controller's phandle and
8 request selector for this SLINK controller.
9
10Recommended properties:
11- spi-max-frequency: Definition as per
12 Documentation/devicetree/bindings/spi/spi-bus.txt
13
14Example:
15
Allen Martin6a791312012-12-14 11:05:12 -080016spi@7000d600 {
Laxman Dewangandc4dc362012-10-30 12:34:05 +053017 compatible = "nvidia,tegra20-slink";
18 reg = <0x7000d600 0x200>;
19 interrupts = <0 82 0x04>;
20 nvidia,dma-request-selector = <&apbdma 16>;
21 spi-max-frequency = <25000000>;
22 #address-cells = <1>;
23 #size-cells = <0>;
24 status = "disabled";
25};
26