[PATCH 6/6] ARM: dts: aspeed: Add Facebook Fuji (AST2600) BMC
From: Joel Stanley <joel@jms.id.au>
Date: 2021-08-05 00:28:18
Also in:
linux-arm-kernel, linux-devicetree, lkml, openbmc
On Wed, 28 Jul 2021 at 23:38, [off-list ref] wrote:
From: Tao Ren <redacted> Add initial version of device tree for Facebook Fuji (AST2600) BMC.
I like to read what kind of platform the BMC is going into if you can add that detail, but it's not essential.
+&spi1 {
+ status = "okay";
+
+ /*
+ * Customize spi1 flash memory size to 32MB (maximum flash size on
+ * the bus) to save vmalloc space.
+ */
+ reg = < 0x1e630000 0xc4
+ 0x30000000 0x2000000 >;Which driver supports this? It would be great to see Facebook work to get the SPI NOR driver for the ast2600 merged to mainline. I doubt the IBM team will get to this, as we are using eMMC instead.
+
+ flash at 0 {
+ status = "okay";
+ m25p,fast-read;
+ label = "spi1.0";
+ spi-max-frequency = <5000000>;
+
+ partitions {
+ compatible = "fixed-partitions";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ flash1 at 0 {
+ reg = <0x0 0x2000000>;
+ label = "system-flash";
+ };
+ };
+ };
+};+&ehci1 {
+ status = "okay";
+};Have you verified that USB works with mainline? I've had reports of it working on 5.8 but it seems to have regressed as of v5.10.
+&mdio1 {
+ status = "okay";
+
+ ethphy3: ethernet-phy at 13 {
+ compatible = "ethernet-phy-ieee802.3-c22";
+ reg = <0x0d>;
+ };
+};
+
+&mac3 {
+ phy-handle = <ðphy3>;status = okay? You should specify the pinmux too I think, even if the default happens to work, so that other devices cannot claim the pins. Cheers, Joel