-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation: - Add missing "interrupt-parent", "#address-cells", "#size-cells", and "clocks" properties, - Add missing default values for "num-cs", "renesas,tx-fifo-size" and "renesas,rx-fifo-size", - Add a reference to the pinctrl documentation. Implementation: - As "num-cs" is marked optional, provide a sensible default. Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org> Acked-by: Magnus Damm <damm@opensource.se> Signed-off-by: Mark Brown <broonie@linaro.org>
- Loading branch information
Geert Uytterhoeven
authored and
Mark Brown
committed
Feb 27, 2014
1 parent
4867147
commit 32d3b2d
Showing
2 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
Renesas MSIOF spi controller | ||
|
||
Required properties: | ||
- compatible : "renesas,sh-msiof" for SuperH or | ||
"renesas,sh-mobile-msiof" for SH Mobile series | ||
- reg : Offset and length of the register set for the device | ||
- interrupts : interrupt line used by MSIOF | ||
- compatible : "renesas,sh-msiof" for SuperH, or | ||
"renesas,sh-mobile-msiof" for SH Mobile series. | ||
- reg : Offset and length of the register set for the device | ||
- interrupt-parent : The phandle for the interrupt controller that | ||
services interrupts for this device | ||
- interrupts : Interrupt specifier | ||
- #address-cells : Must be <1> | ||
- #size-cells : Must be <0> | ||
|
||
Optional properties: | ||
- num-cs : total number of chip-selects | ||
- renesas,tx-fifo-size : Overrides the default tx fifo size given in words | ||
- renesas,rx-fifo-size : Overrides the default rx fifo size given in words | ||
- clocks : Must contain a reference to the functional clock. | ||
- num-cs : Total number of chip-selects (default is 1) | ||
- renesas,tx-fifo-size : Overrides the default tx fifo size given in words | ||
(default is 64) | ||
- renesas,rx-fifo-size : Overrides the default rx fifo size given in words | ||
(default is 64) | ||
|
||
Pinctrl properties might be needed, too. See | ||
Documentation/devicetree/bindings/pinctrl/renesas,*. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters