]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/compulab/cm_fx6/cm_fx6.c
dm: imx: Move cm_fx6 to use driver model for serial and GPIO
[karo-tx-uboot.git] / board / compulab / cm_fx6 / cm_fx6.c
index f0edc8f9f0825612109c38c11f920f52f8fe4fbe..f77ff48a1c3fb69f7bc04ec22f8cf95ac291122b 100644 (file)
@@ -9,11 +9,13 @@
  */
 
 #include <common.h>
+#include <dm.h>
 #include <fsl_esdhc.h>
 #include <miiphy.h>
 #include <netdev.h>
 #include <fdt_support.h>
 #include <sata.h>
+#include <serial_mxc.h>
 #include <asm/arch/crm_regs.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/arch/iomux.h>
@@ -564,3 +566,11 @@ u32 get_board_rev(void)
        return cl_eeprom_get_board_rev();
 }
 
+static struct mxc_serial_platdata cm_fx6_mxc_serial_plat = {
+       .reg = (struct mxc_uart *)UART4_BASE,
+};
+
+U_BOOT_DEVICE(cm_fx6_serial) = {
+       .name   = "serial_mxc",
+       .platdata = &cm_fx6_mxc_serial_plat,
+};