On Sat, Dec 11, 2010 at 07:31:15AM +0100, Heiko Schocher wrote: > - add binding to OF, compatible name "smi,sm501" > > - add read/write functions for using this driver > also on powerpc plattforms > > - add commandline options: > sm501.fb_mode: > Specify resolution as "<xres>x<yres>[-<bpp>][@<refresh>]" > sm501.bpp: > Specify bit-per-pixel if not specified mode > > - Add support for encoding display mode information > in the device tree using verbatim EDID block. > > If the "edid" entry in the "smi,sm501" node is present, > the driver will build mode database using EDID data > and allow setting the display modes from this database. > > Signed-off-by: Heiko Schocher <hs@xxxxxxx> > cc: linux-fbdev@xxxxxxxxxxxxxxx > cc: devicetree-discuss@xxxxxxxxxx > cc: Ben Dooks <ben@xxxxxxxxxxxx> > cc: Vincent Sanders <vince@xxxxxxxxxxxx> > cc: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> > cc: linux-kernel@xxxxxxxxxxxxxxx > > --- > - changes since v1: > add Ben Dooks, Vincent Sanders and Samuel Ortiz to cc, as suggested from > Paul Mundt. > > Documentation/kernel-parameters.txt | 7 + > Documentation/powerpc/dts-bindings/sm501.txt | 30 +++ > drivers/mfd/sm501.c | 141 ++++++++------ > drivers/video/sm501fb.c | 264 +++++++++++++++++--------- > include/linux/sm501.h | 8 + > 5 files changed, 299 insertions(+), 151 deletions(-) > create mode 100644 Documentation/powerpc/dts-bindings/sm501.txt > So has this stalled out? If Samuel wants to ack the MFD bits I don't mind taking it through the fbdev tree. I can dust off an SM501 board to make sure it still works for the non-OF case, although most of the changes look fairly mechanical, so I don't forsee too much difficulty. A few minor notes however. For starters, it would be nice to see this patch split out a bit more logically. All of the items in your changelog are more or less independent logical changes, and should really be independent patches. As such, I'd like to see the EDID support as one patch, the OF binding support layered on top of that, the documentation split out as a trivial patch, and the I/O routine thing dealt with separately. This should also make it easier for Samuel to simply ack the OF bindings part that touch the MFD driver without having to be bothered with any of the other stuff should regressions pop up at a later point in time via a bisection. As far as the DTS bindings documentation goes, I'm not sure what the best way to split that out is. Perhaps simply lumping it in with the OF bindings makes the most logical sense, and it's obviously a dependency for the architecture-specific portion as well. > @@ -1698,6 +1727,9 @@ static int sm501fb_init_fb(struct fb_info *fb, > fb->fbops = &par->ops; > fb->flags = FBINFO_FLAG_DEFAULT | FBINFO_READS_FAST | > FBINFO_HWACCEL_COPYAREA | FBINFO_HWACCEL_FILLRECT | > +#if defined(CONFIG_PPC_MPC52xx) > + FBINFO_FOREIGN_ENDIAN | > +#endif > FBINFO_HWACCEL_XPAN | FBINFO_HWACCEL_YPAN; > > /* fixed data */ This is now getting in to deep hack territory. It's also not entirely obvious how you expect things like the imageblit op to work given that you're not selecting any of FB_{BIG,LITTLE,BOTH,FOREIGN}_ENDIAN, which leads me to suspect you are manually doing this in your .config in a relatively fragile way. In the OF case I suppose you probably want something like: #ifdef __BIG_ENDIAN if (of_get_property(dp, "little-endian", NULL)) foreign_endian = FBINFO_FOREIGN_ENDIAN; #else if (of_get_property(dp, "big-endian", NULL)) foreign_endian = FBINFO_FOREIGN_ENDIAN; #endif and then simply hide the details in the DTS file in order to get rid of CPU-specific hacks. > +#if defined(CONFIG_PPC_MPC52xx) > +#define smc501_readl(addr) __do_readl_be((addr)) > +#define smc501_writel(val, addr) __do_writel_be((val), (addr)) > +#else > +#define smc501_readl(addr) readl(addr) > +#define smc501_writel(val, addr) writel(val, addr) > +#endif Based on the Kconfig option for endianness you could probably just wrap these to ioread/write32{,be} and hide the semantics in your iomap implementation? -- To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html