Hi We have an existing board supported in Linux v4.1 (see am335x-nano.dts) and I was looking to update to a more recent kernel but have hit a stumbling block. Our unit has an SRAM device connected to CS1 and we currently rely on uboot to init the GPMC settings. >From v4.2+ I now see that the GPMC code has been changed to reset all the GPMC settings when the kernel starts, so our SRAM is now inaccessible. I've tried the following to add an extra device to the GPMC, but no go:- sram@1,0 { reg = <1 0x00000000 0x01000000>; /*compatible = "mmio-sram";*/ bank-width = <2>; gpmc,mux-add-data = <2>; gpmc,sync-clk-ps = <0>; gpmc,cs-on-ns = <0>; gpmc,cs-rd-off-ns = <160>; gpmc,cs-wr-off-ns = <160>; gpmc,adv-on-ns = <10>; gpmc,adv-rd-off-ns = <30>; gpmc,adv-wr-off-ns = <30>; gpmc,oe-on-ns = <40>; gpmc,oe-off-ns = <160>; gpmc,we-on-ns = <40>; gpmc,we-off-ns = <160>; gpmc,rd-cycle-ns = <160>; gpmc,wr-cycle-ns = <160>; gpmc,access-ns = <150>; gpmc,page-burst-access-ns = <10>; gpmc,cycle2cycle-samecsen; gpmc,cycle2cycle-delay-ns = <20>; gpmc,wr-data-mux-bus-ns = <70>; gpmc,wr-access-ns = <80>; }; Looking at drivers/memory/omap-gpmc.c, I can see that when the GPMC children are scanned, only the following are matched:- "nand","onenand","ethernet","nor","uart" So can anyone explain how to add a standard SRAM chip ? Cheers Mark J. -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html