On Wed, Oct 24, 2012 at 10:57:00AM -0400, Alan Stern wrote: > Under the circumstances, do we really need a new binding document for > the ehci-platform driver? We should be able to use the existing > usb-ehci binding, perhaps with some new properties added: > > has-synopsys-hc-bug > no-io-watchdog > has-tt On the PCI side we have VID, PID which is used for quirks. Sometimes we have a revision ID which can be used to figure out if "this quirk" is still required. The PCI driver probes by class so the ehci driver does not have a large table of VID/PID for each controller out there. And the USB controller in two different Intel boards has a different PID so a quirk, if required, could be applied only to the specific mainboard. Based on this we need atleast two compatible entries one "HW-Specific" followed by a generic one (similar to PCI class). Doing it the PCI way we would have to have table and figure out which HW-specific compatible entry sets the TT flag and which one does the no-io-watchdog. Having has-tt in compatible isn't right. I'm all with Alan here, to make a shortcut and allow Linux specific properties which describe a specific quirk in less code lines. Other OS can just ignore those and build their table based on the compatible entry if they want to. So usb-ehci should be fine. It is a generic USB-EHCI controller after all. Quirks or no quirks, the register layout is the same, the functionality is the same. If you can't map memory >4GiB then you need a quirk for this but you may discover it way too late. If your platform driver requires extra code for the PHY then it is still an EHCI controller. The PHY wasn't setup by the bootloader / bios so Linux has to deal with it. > We probably can omit has-synopsys-hc-bug, as that is specific to one > type of MIPS ATH79 controller. The driver can check for it explicitly, > if necessary. > > In fact, it's not clear that these new properties need to be added now. > They can be added over time as needed, as existing drivers are > converted over to DT. Or is it preferable to document these things > now, preemptively as it were? I would add it only if required / has users. > Alan Stern Sebastian -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html