From c9342851d72c857595de3898665b414023e9a838 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Fri, 3 Aug 2012 17:26:14 +0200 Subject: [PATCH] --- yaml --- r: 328623 b: refs/heads/master c: 4ad1e5b5d1dde19f09e728ba8b5164968f9dabeb h: refs/heads/master i: 328621: 6bd49cd0f8573c2aba655506cd9f39a15f8ca07e 328619: 5ad891036cb728e67faff62e1560b7e208e61060 328615: 39ca2a498128305d11f219dd39ed8936481f8c6d 328607: df58c5fd45c06f53b5048980c6bc51bb3db7ff32 v: v3 --- [refs] | 2 +- .../devicetree/bindings/spi/mxs-spi.txt | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 trunk/Documentation/devicetree/bindings/spi/mxs-spi.txt diff --git a/[refs] b/[refs] index cdaad042e4aa..f75372a75d0d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 474afc042fb9db8f88b68243f78a38cb764692fc +refs/heads/master: 4ad1e5b5d1dde19f09e728ba8b5164968f9dabeb diff --git a/trunk/Documentation/devicetree/bindings/spi/mxs-spi.txt b/trunk/Documentation/devicetree/bindings/spi/mxs-spi.txt new file mode 100644 index 000000000000..c36296f5ad28 --- /dev/null +++ b/trunk/Documentation/devicetree/bindings/spi/mxs-spi.txt @@ -0,0 +1,18 @@ +* Freescale MX233/MX28 SSP/SPI + +Required properties: +- compatible: Should be "fsl,-spi", where soc is "imx23" or "imx28" +- reg: Offset and length of the register set for the device +- interrupts: Should contain SSP interrupts (error irq first, dma irq second) +- fsl,ssp-dma-channel: APBX DMA channel for the SSP + +Example: + +ssp0: ssp@80010000 { + #address-cells = <1>; + #size-cells = <0>; + compatible = "fsl,imx28-spi"; + reg = <0x80010000 0x2000>; + interrupts = <96 82>; + fsl,ssp-dma-channel = <0>; +};