X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=blobdiff_plain;f=board%2Fkaro%2Ftx6%2Ftx6qdl.c;h=9a72321dd13ba13415dea5e5f699363673064716;hp=1a1e155379e8d9383c1c6e008d27c1ba06f38782;hb=4020142a5e0d4b2fa05289bba247a8d592b56fbf;hpb=9c867060812647af60840df7caf78f6567b2bd29 diff --git a/board/karo/tx6/tx6qdl.c b/board/karo/tx6/tx6qdl.c index 1a1e155379..9a72321dd1 100644 --- a/board/karo/tx6/tx6qdl.c +++ b/board/karo/tx6/tx6qdl.c @@ -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();