Skip to content

Commit

Permalink
ipq806x: Netgear D7800: Fix RAM and enable PCIe openwrt#2
Browse files Browse the repository at this point in the history
This board has 512MiB of RAM like the R7800, and the VDSL modem is
attached to the second PCIe port.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
dwmw2 committed Jan 21, 2022
1 parent 46ce629 commit 408b655
Showing 1 changed file with 15 additions and 1 deletion.
Expand Up @@ -7,10 +7,17 @@
compatible = "netgear,d7800", "qcom,ipq8064";

memory@0 {
reg = <0x42000000 0xe000000>;
reg = <0x42000000 0x1e000000>;
device_type = "memory";
};

reserved-memory {
rsvd@5fe00000 {
reg = <0x5fe00000 0x200000>;
reusable;
};
};

aliases {
mdio-gpio0 = &mdio0;

Expand Down Expand Up @@ -217,6 +224,13 @@
};
};

&pcie2 {
status = "okay";
reset-gpio = <&qcom_pinmux 63 GPIO_ACTIVE_HIGH>;
pinctrl-0 = <&pcie2_pins>;
pinctrl-names = "default";
};

&nand_controller {
status = "okay";

Expand Down

0 comments on commit 408b655

Please sign in to comment.