Maybe this is interesting for us as well?
---------- Forwarded message ---------- From: Ben Hutchings bhutchings@solarflare.com Date: Tuesday, September 28, 2010 Subject: [RFC] Online firmware upgrade in non-embedded systems To: netdev netdev@vger.kernel.org, linux-kernel linux-kernel@vger.kernel.org, linux-mtd linux-mtd@lists.infradead.org Cc: sf-linux-drivers linux-net-drivers@solarflare.com
Network and disk controllers normally have at least some firmware in flash to support their use as boot devices. Solarflare's current network adapters can have as many as 4 distinct firmware partitions: one for each PHY, one for the management CPU and one for net-boot. Any or all of these may need to be updated in the field, to fix bugs or to add features. (Furthermore, the net-boot firmware is based on gPXE and is therefore modifiable by any user.)
Currently the sfc network driver is optionally combined with an MTD driver (CONFIG_SFC_MTD) which exposes all upgradable firmware and configuration partitions in flash. This works nicely in kernels with MTD enabled, but since MTD is mainly used in embedded systems with on-board flash it is often disabled in distribution kernels and custom kernels alike. This leaves users of sfc unable to upgrade firmware without rebuilding the kernel or booting some other distribution. The lack of widespread MTD support is a regular cause of support requests.
There are two main alternatives I'm aware of:
- Use the ethtool ETHTOOL_SEEPROM command with multiple magic numbers for different partitions. bnx2x does something a little like this for PHY firmware upgrades. The ethtool core passes in a page at a time so this won't work well with flash block sizes greater than PAGE_SIZE.
- Use the ethtool ETHTOOL_FLASHDEV command. It's intended for precisely this purpose, but the driver is supposed to implement it using request_firmware(). That seems to require any firmware update program to integrate with udev or to copy firmware images under /lib/firmware even though they are one-time updates. That doesn't make a lot of sense to me. Am I missing something?
Of course these are both specific to network devices; it seems deisrable to have a more general convention for online firmware upgrades. MTDs clearly are more generally applicable, and pretty much every computer does have flash storage for firmware and boot configuration, so perhaps it should be treated as more of a standard feature?
Ben.
-- Ben Hutchings, Senior Software Engineer, Solarflare Communications Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked.
______________________________________________________ Linux MTD discussion mailing list http://lists.infradead.org/mailman/listinfo/linux-mtd/