On Mon, Jul 29, 2013 at 12:05:13PM -0600, Jason Gunthorpe wrote: > Clearly general purpose systems (eg servers, workstations, etc) with > *full featured firmware* fall into category b. Linux already basically > has stable DT for those systems - but the firmware is expected to do > lots of work and hide all the low level details from the > kernel. Basically, the DT should stick to approximately ePAR and > everything else is hidden by the firmware. This is essentially how x86 > works and achieves its compatibility.
and the downside of placing that trust in firmware is that it very often leads to bugs which can't be solved. I have a set of patches for my laptop/docking station which gets the serial/printer ports working. I've had them for many years now - and I thought I had a problem sorted. I was wrong - the nice helpful ACPI reports on dock that the serial port is enabled, but the port is actually disabled in hardware. If I have ACPI/PNP stuff setup to always believe that this port is disabled, then on boot with the docking station connected, it comes up initially as ttyS0, and then, because the port is "disabled", the resources are busy so it gets reassigned to a different IO port. Undocking/redocking works because the port is now properly re-enabled after a dock event. If I report the ACPI status to the kernel, then on boot, it correctly remains as ttyS0. However, after an undock/redock event, Linux believes that the port is back, but any attempt to use it gets the "LSR safety check engaged" message, because the port is actually disabled. The only way to get it working again is to manually unbind the device and rebind it - so the ACPI disable + enable methods get called. I've had this problem for years, and it's basically unfixable for me - it's only fixable if you are IBM and can reflash the BIOS with alternative ACPI tables which are correct. And I won't submit these patches all the time that I don't know they work correctly. That's the problem with "compatible systems" - you give away trust that someone else will do the right thing, and if they don't, you may be screwed in a way that is can not be worked around by quirks or similar - just like the above. Firmware is swings and roundabouts. You give up some control to a third party so you don't have to think about XYZ, and you hope that they get it right. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/