mirror of
https://github.com/armbian/build.git
synced 2025-09-20 13:11:10 +02:00
* merge patches from rockchip and rk322x families for current and edge kernels * adjust patches for tinkerboard to remove some cruft and overclocking * rework kernel configs * fix rk322x dmc to avoid lockup on rk3288 * migrate rockchip-6.6 into patch series, rename all patches with more understandable names * add gen-series.sh script in tools directory (it is a naive tool to create patch series when you don't want to rebase everything)
36 lines
538 B
Plaintext
36 lines
538 B
Plaintext
/* Definition for SPI0 Spidev
|
|
* spi port for Tinker Board
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/{
|
|
compatible = "rockchip,rk3288";
|
|
|
|
fragment@0 {
|
|
|
|
target = <&spi0>;
|
|
__overlay__ {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
spidev@0 {
|
|
compatible = "rockchip,spi_tinker";
|
|
reg = <0>;
|
|
spi-max-frequency = <50000000>;
|
|
spi-cpha = <1>;
|
|
status = "okay";
|
|
};
|
|
|
|
spidev@1 {
|
|
compatible = "rockchip,spi_tinker";
|
|
reg = <1>;
|
|
spi-max-frequency = <50000000>;
|
|
spi-cpha = <1>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|