]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
karo: tx6: support MIPI variant in board name KARO-TX6Q-1230-2016-12-23
authorLothar Waßmann <LW@KARO-electronics.de>
Fri, 23 Dec 2016 11:56:32 +0000 (12:56 +0100)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 23 Dec 2016 11:56:32 +0000 (12:56 +0100)
The TX6Q-1230 is physically the same as TX6Q-1030 with the
distinction, that the MIPI interface is used rather than the LCD
interface. This is only a cosmetic change to adjust the displayed
board name.

board/karo/tx6/tx6qdl.c

index 1a1e155379e8d9383c1c6e008d27c1ba06f38782..9a72321dd13ba13415dea5e5f699363673064716 100644 (file)
@@ -534,6 +534,17 @@ static int tx6_pmic_probe(void)
        return -EINVAL;
 }
 
+static int tx6_mipi(void)
+{
+       struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
+       struct fuse_bank5_regs *fuse = (void *)ocotp->bank[5].fuse_regs;
+       u32 pad_settings = readl(&fuse->pad_settings);
+
+       debug("Fuse pad_settings @ %p = %02x\n",
+               &fuse->pad_settings, pad_settings);
+       return !(pad_settings & 1);
+}
+
 int board_init(void)
 {
        int ret;
@@ -548,7 +559,7 @@ int board_init(void)
        printf("Board: Ka-Ro TX6%s-%d%d%d%c\n",
                tx6_mod_suffix,
                is_cpu_type(MXC_CPU_MX6Q) ? 1 : 8,
-               is_lvds(), tx6_get_mod_rev(pmic_id),
+               tx6_mipi() ? 2 : is_lvds(), tx6_get_mod_rev(pmic_id),
                tx6_mem_suffix());
 
        get_hab_status();