mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-24 14:06:59 +08:00

* target: add phytium support * kernel/video: add phytium platform ARM GPU support * config: add EFI support to phytium armv8 * target: phytium: remove rtl8821cs driver * target: phytium: refresh dts
25 lines
540 B
Plaintext
Executable File
25 lines
540 B
Plaintext
Executable File
Phytium SPI controller
|
|
|
|
Required properties:
|
|
- compatible: should be "phytium,spi"
|
|
- #address-cells: see spi-bus.txt
|
|
- #size-cells: see spi-bus.txt
|
|
- reg: address and length of the spi master registers
|
|
- interrupts: should contain one interrupt
|
|
- clocks: spi clock phandle
|
|
- num-cs: see spi-bus.txt
|
|
|
|
Optional properties:
|
|
- cs-gpios: see spi-bus.txt
|
|
|
|
Example:
|
|
|
|
|
|
spi0: spi@2800c000 {
|
|
compatible = "phytium,spi";
|
|
interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
|
|
reg = <0x0 0x2800c000 0x0 0x1000>;
|
|
clocks = <&sysclk_48mhz>;
|
|
num-cs = <4>;
|
|
};
|