On Wed, Feb 6, 2013 at 4:00 PM, Tomi Valkeinen <tomi.valkeinen@xxxxxx> wrote: >> not always a perfect match to the hardware. For example a lot of GPUs >> have a DVO encoder which feeds a secondary encoder like an sil164 DVO >> to TMDS encoder. > > Right. I think mapping the DRM entities to CDF ones is one of the bigger > question marks we have with CDF. While I'm no expert on DRM, I think we > have the following options: > > 1. Force DRM's model to CDF, meaning one encoder. > > 2. Extend DRM to support multiple encoders in a chain. > > 3. Support multiple encoders in a chain in CDF, but somehow map them to > a single encoder in DRM side. 4. Ignore drm kms encoders. They are only exposed to userspace as a means for userspace to discover very simple constraints, e.g. 1 encoder connected to 2 outputs means you can only use one of the outputs at the same time. They are completely irrelevant for the actual modeset interface exposed to drivers, so you could create a fake kms encoder for each connector you expose through kms. The crtc helpers use the encoders as a real entity, and if you opt to use the crtc helpers to implement the modeset sequence in your driver it makes sense to map them to some real piece of hw. But you can essentially pick any transcoder in your crtc -> final output chain for this. Generic userspace needs to be able to cope with a failed modeset due to arbitrary reasons anyway, so can't presume that simply because the currently exposed constraints are fulfilled it'll work. > I really dislike the first option, as it would severely limit where CDF > can be used, or would force you to write some kind of combined drivers, > so that you can have one encoder driver running multiple encoder devices. Imo CDF and drm encoders don't really have that much to do with each another, it should just be a driver implementation detail. Of course, if common patterns emerge we could extract them somehow. E.g. if many drivers end up exposing the CDF transcoder chain as a drm encoder using the crtc helpers, we could add some library functions to make that simpler. Another conclusion (at least from my pov) from the fosdem discussion is that we should separate the panel interface from the actual control/pixel data buses. That should give us more flexibility for insane hw and also directly exposing properties and knobs to the userspace interface from e.g. dsi transcoders. So I don't think we'll end up with _the_ canonical CDF sink interface anyway. -Daniel -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html