summaryrefslogtreecommitdiffstats
path: root/drivers/video/simple-panel.c
Commit message (Collapse)AuthorAgeFilesLines
* video: simple-panel: Add support for device tree provided nodesSascha Hauer2015-10-011-0/+8
| | | | | | This adds support for display timings provided from device tree. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* video: simple-panel: Add debug/error messagesSascha Hauer2015-10-011-5/+23
| | | | | | Let the driver be more informative when something goes wrong. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* video: simple-panel: mode support depends on I2C and EDIDLucas Stach2015-08-191-1/+2
| | | | | | | | | | | | | | | Reading modes from EDID EEPROMs requires both I2C and EDID support to be available. As the simple panel driver is also useful without mode reading support, only built it in if the requirements are met. Fixes: In function `simple_panel_get_modes': simple-panel.c:88: undefined reference to `of_find_i2c_adapter_by_node' simple-panel.c:91: undefined reference to `edid_read_i2c' simple-panel.c:95: undefined reference to `edid_to_display_timings' Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* video: Add simple-panel supportSascha Hauer2015-07-131-0/+160
This adds support for simple panels. These are panels which don't need special handling but can have enable gpios and such. Unlike the Linux kernel implementation this one is able to understand display-timings nodes so that it's not necessary to keep a list of all known displays with their corresponding timings in barebox. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>