8000 arm64: dts: rock 3a add spi flash, disable rk809 rtc and enable rockchip crypto device by pykpkg47 · Pull Request #235 · armbian/linux-rockchip · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

arm64: dts: rock 3a add spi flash, disable rk809 rtc and enable rockchip crypto device #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dts
471E
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,10 @@
cpu-supply = <&vdd_cpu>;
};

&crypto {
status = "okay";
};

&dfi {
status = "okay";
};
Expand Down Expand Up @@ -410,6 +414,10 @@
status = "okay";
};

rtc {
status = "disabled";
};

pinctrl_rk8xx: pinctrl_rk8xx {
gpio-controller;
#gpio-cells = <2>;
Expand Down Expand Up @@ -779,7 +787,34 @@
};

&sfc {
status = "okay";
status = "okay";
max-freq = <50000000>;
#address-cells = <1>;
#size-cells = <0>;
pinctrl-names = "default";
pinctrl-0 = <&fspi_pins>;

spi_flash: spi-flash@0 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "jedec,spi-nor";
reg = <0x0>;
spi-max-frequency = <50000000>;
spi-tx-bus-width = <1>;
spi-rx-bus-width = <4>;
status = "okay";

partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;

loader@0 {
label = "loader";
reg = <0x0 0x1000000>;
};
};
};
};

&tsadc {
Expand Down
0