forked from torvalds/linux
-
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.
Merge branch 'spi-5.2' into spi-next
- Loading branch information
Showing
55 changed files
with
2,408 additions
and
649 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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Binding for MTK SPI controller (MT7621 MIPS) | ||
|
||
Required properties: | ||
- compatible: Should be one of the following: | ||
- "ralink,mt7621-spi": for mt7621/mt7628/mt7688 platforms | ||
- #address-cells: should be 1. | ||
- #size-cells: should be 0. | ||
- reg: Address and length of the register set for the device | ||
- resets: phandle to the reset controller asserting this device in | ||
reset | ||
See ../reset/reset.txt for details. | ||
|
||
Optional properties: | ||
- cs-gpios: see spi-bus.txt. | ||
|
||
Example: | ||
|
||
- SoC Specific Portion: | ||
spi0: spi@b00 { | ||
compatible = "ralink,mt7621-spi"; | ||
reg = <0xb00 0x100>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
resets = <&rstctrl 18>; | ||
reset-names = "spi"; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Xilinx Zynq QSPI controller Device Tree Bindings | ||
------------------------------------------------------------------- | ||
|
||
Required properties: | ||
- compatible : Should be "xlnx,zynq-qspi-1.0". | ||
- reg : Physical base address and size of QSPI registers map. | ||
- interrupts : Property with a value describing the interrupt | ||
number. | ||
- clock-names : List of input clock names - "ref_clk", "pclk" | ||
(See clock bindings for details). | ||
- clocks : Clock phandles (see clock bindings for details). | ||
|
||
Optional properties: | ||
- num-cs : Number of chip selects used. | ||
|
||
Example: | ||
qspi: spi@e000d000 { | ||
compatible = "xlnx,zynq-qspi-1.0"; | ||
reg = <0xe000d000 0x1000>; | ||
interrupt-parent = <&intc>; | ||
interrupts = <0 19 4>; | ||
clock-names = "ref_clk", "pclk"; | ||
clocks = <&clkc 10>, <&clkc 43>; | ||
num-cs = <1>; | ||
}; |
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
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
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
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
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
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
Oops, something went wrong.