From: Rob Herring <robh+dt@kernel.org> To: Zev Weiss <zev@bewilderbeest.net> Cc: devicetree@vger.kernel.org, "Vignesh Raghavendra" <vigneshr@ti.com>, linux-aspeed <linux-aspeed@lists.ozlabs.org>, "Tudor Ambarus" <tudor.ambarus@microchip.com>, "Andrew Jeffery" <andrew@aj.id.au>, "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>, "OpenBMC Maillist" <openbmc@lists.ozlabs.org>, "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>, "Richard Weinberger" <richard@nod.at>, "Michael Walle" <michael@walle.cc>, "MTD Maling List" <linux-mtd@lists.infradead.org>, "Miquel Raynal" <miquel.raynal@bootlin.com>, "Jeremy Kerr" <jk@codeconstruct.com.au>, "Frank Rowand" <frowand.list@gmail.com>, "Pratyush Yadav" <p.yadav@ti.com>, linux-arm-kernel <linux-arm-kernel@lists.infradead.org>, "Cédric Le Goater" <clg@kaod.org> Subject: Re: [PATCH 0/6] Dynamic aspeed-smc flash chips via "reserved" DT status Date: Wed, 29 Sep 2021 11:08:03 -0500 [thread overview] Message-ID: <CAL_JsqJH+b5oFuSP+KBLBsN5QTA6xASuqXJWXUaDkHhugXPpnQ@mail.gmail.com> (raw) In-Reply-To: <20210929115409.21254-1-zev@bewilderbeest.net> On Wed, Sep 29, 2021 at 6:54 AM Zev Weiss <zev@bewilderbeest.net> wrote: > > Hello, > > This patch series aims to improve a scenario that arises in OpenBMC > and which isn't handled very well at the moment. Certain devices, the > example at hand being the flash chip used to store the host's firmware > (e.g. the BIOS), may be shared between the BMC and the host system but > only available to one or the other at any given time. The device may > thus be effectively off-limits to the BMC when it boots, and only > usable after userspace performs the necessary steps to coordinate > appropriately with the host (tracking its power state, twiddling > GPIOs, sending IPMI commands, etc.). > > Neither the "okay" nor the "disabled" device-tree status values works > nicely for the flash device this case -- an "okay" device gets probed > automatically as soon as the device and a driver for it are available, > and a "disabled" one gets forgotten about entirely, whereas we want > the BMC's kernel to be aware of the existence of the device, but not > try to actually do anything with it (i.e. probe it) until explicitly > requested to do so by userspace. While Linux treats 'disabled' as gone forever, that's not exactly what the spec says. Either disabled or reserved could change in theory. But I do agree 'reserved' is the right choice for your use. > However, while there's no support for it currently in the kernel tree, > the device-tree spec [0] also lists "reserved" as a possible status > value, and its description seems like a fairly reasonable fit for this > situation: > > Indicates that the device is operational, but should not be used. > Typically this is used for devices that are controlled by another > software component, such as platform firmware. > > These patches start making use of this status value in the aspeed-smc > driver. The first patch adds a companion routine to > of_device_is_available() that checks for a "reserved" status instead > of "okay". The second patch is a small MTD adjustment to allow an > unregistered device to be cleanly re-registered. Patches 3 through 5 > modify the aspeed-smc driver to allow individual chips to be attached > and detached at runtime, and to avoid automatically attaching any > marked as reserved. Finally, patch 6 employs the newly-supported > status in adding support for the BIOS flash device to the ASRock Rack > e3c246d4i BMC. I'm not sure this should be MTD specific. There's other cases where we may want devices to become available. So the question is whether there should be a more generic mechanism rather than each subsystem coming up with their own thing. There's out of tree support for applying overlays which could be used here. The issue with it is we don't want it to be unconstrained where an overlay can make any change anywhere in a DT. Another possibility is making 'status' writeable from userspace. It is just a sysfs file. That too may need to be opt-in. Rob
next prev parent reply other threads:[~2021-09-29 16:09 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-09-29 11:54 Zev Weiss 2021-09-29 11:54 ` [PATCH 1/6] of: base: Add function to check for status = "reserved" Zev Weiss 2021-09-29 15:49 ` Rob Herring 2021-09-29 11:54 ` [PATCH 2/6] mtd: core: clear out unregistered devices a bit more Zev Weiss 2021-09-29 11:54 ` [PATCH 3/6] mtd: spi-nor: aspeed: Refactor registration/unregistration Zev Weiss 2021-10-06 0:03 ` Dhananjay Phadke 2021-09-29 11:54 ` [PATCH 4/6] mtd: spi-nor: aspeed: Allow attaching & detaching chips at runtime Zev Weiss 2021-09-29 11:54 ` [PATCH 5/6] mtd: spi-nor: aspeed: Don't automatically attach reserved chips Zev Weiss 2021-09-29 11:54 ` [PATCH 6/6] ARM: dts: aspeed: Add e3c246d4i BIOS flash device Zev Weiss 2021-09-29 16:08 ` Rob Herring [this message] 2021-09-29 22:00 ` [PATCH 0/6] Dynamic aspeed-smc flash chips via "reserved" DT status Zev Weiss
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=CAL_JsqJH+b5oFuSP+KBLBsN5QTA6xASuqXJWXUaDkHhugXPpnQ@mail.gmail.com \ --to=robh+dt@kernel.org \ --cc=andrew@aj.id.au \ --cc=clg@kaod.org \ --cc=devicetree@vger.kernel.org \ --cc=frowand.list@gmail.com \ --cc=gregkh@linuxfoundation.org \ --cc=jk@codeconstruct.com.au \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-aspeed@lists.ozlabs.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-mtd@lists.infradead.org \ --cc=michael@walle.cc \ --cc=miquel.raynal@bootlin.com \ --cc=openbmc@lists.ozlabs.org \ --cc=p.yadav@ti.com \ --cc=richard@nod.at \ --cc=tudor.ambarus@microchip.com \ --cc=vigneshr@ti.com \ --cc=zev@bewilderbeest.net \ --subject='Re: [PATCH 0/6] Dynamic aspeed-smc flash chips via "reserved" DT status' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).