summaryrefslogtreecommitdiff
path: root/src/armada_module.c
diff options
context:
space:
mode:
authorRussell King <rmk@arm.linux.org.uk>2014-07-13 23:14:04 +0100
committerRussell King <rmk@arm.linux.org.uk>2014-07-23 12:23:31 +0100
commitab0c6f1ac957d1631cd33ed63e46f76978bd8a1c (patch)
treef6ff2ccb82763d55d927d2791e893cf929ae377a /src/armada_module.c
parent9197ce090bfd428e80592e681452e8cde746d9a3 (diff)
Add support for imx-drm
Add support for attaching to the imx-drm kernel module, thus allowing the driver to be used on iMX hardware as well. It should be noted that the libGAL backend does not support iMX, and so should be manually disabled in the Xorg config file. Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'src/armada_module.c')
-rw-r--r--src/armada_module.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/armada_module.c b/src/armada_module.c
index 13483ea..bacf891 100644
--- a/src/armada_module.c
+++ b/src/armada_module.c
@@ -21,10 +21,17 @@ static SymTabRec armada_chipsets[] = {
{ -1, NULL }
};
+static SymTabRec ipu_chipsets[] = {
+ { 0, "i.MX6" },
+ { -1, NULL }
+};
+
static void armada_identify(int flags)
{
xf86PrintChipsets(ARMADA_NAME, "Support for Marvell LCD Controller",
armada_chipsets);
+ xf86PrintChipsets(ARMADA_NAME, "Support for Freescale IPU",
+ ipu_chipsets);
}
static Bool armada_probe(DriverPtr drv, int flags)