On Wed, 16 Feb 2022 at 16:51, Arnd Bergmann <arnd@xxxxxxxx> wrote: > > On Wed, Feb 16, 2022 at 5:29 PM Hawkins, Nick <nick.hawkins@xxxxxxx> wrote: > > > + > > > + vrom@58000000 { > > > + compatible = "mtd-ram"; > > > > Same thing here, "vrom" is clearly not a standard name. > > > > NH: VROM is a Virtual ROM device that we use to create a memory mapping of a SPI flash content copy that is served to a host system. How should I rename it? > > Not sure, I don't remember seeing this case so far. Adding Joel to Cc, > maybe he knows of > another BMC that does the same thing. We have something similar. The aspeed systems map this over LPC, using FW cycles (aka memory accesses) over the LPC bus to read from the BMC's SPI NOR devices, or DRAM. The device tree bindings we have are in the LPC document: Documentation/devicetree/bindings/mfd/aspeed-lpc.yaml It's the aspeed,ast2400-lpc-ctrl specifically. It takes a phandle to a reserved-memory node. The kernel driver is at drivers/soc/aspeed/aspeed-lpc-ctrl.c. It exposes a character device that allows userspace to read and write to the memory window. We have this very aspeed specific design because it was the first implementation in the kernel. Where possible, we should create a new unified API for doing this type of access, where each BMC can implement a backend. Now that we have GXP, Nuvoton and ASPEED it should be easier to pick out common functionality. Cheers, Joel