-
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 remote-tracking branches 'spi/topic/fsl-espi', 'spi/topic/imx',…
… 'spi/topic/jcore', 'spi/topic/loopback' and 'spi/topic/meson' into spi-next
- Loading branch information
Showing
11 changed files
with
561 additions
and
387 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
J-Core SPI master | ||
|
||
Required properties: | ||
|
||
- compatible: Must be "jcore,spi2". | ||
|
||
- reg: Memory region for registers. | ||
|
||
- #address-cells: Must be 1. | ||
|
||
- #size-cells: Must be 0. | ||
|
||
Optional properties: | ||
|
||
- clocks: If a phandle named "ref_clk" is present, SPI clock speed | ||
programming is relative to the frequency of the indicated clock. | ||
Necessary only if the input clock rate is something other than a | ||
fixed 50 MHz. | ||
|
||
- clock-names: Clock names, one for each phandle in clocks. | ||
|
||
See spi-bus.txt for additional properties not specific to this device. | ||
|
||
Example: | ||
|
||
spi@40 { | ||
compatible = "jcore,spi2"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
reg = <0x40 0x8>; | ||
spi-max-frequency = <25000000>; | ||
clocks = <&bus_clk>; | ||
clock-names = "ref_clk"; | ||
} |
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.