mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
spi: jcore: add J-Core SPI master bindings
Signed-off-by: Rich Felker <dalias@libc.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
29b4817d40
commit
7ed66c6d88
34
Documentation/devicetree/bindings/spi/jcore,spi.txt
Normal file
34
Documentation/devicetree/bindings/spi/jcore,spi.txt
Normal file
@ -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";
|
||||
}
|
Loading…
Reference in New Issue
Block a user