]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/st/stv0991/stv0991.c
stv0991: configure clock & pad muxing for qspi
[karo-tx-uboot.git] / board / st / stv0991 / stv0991.c
index 09f973f403cd6ee927bd80b3156b1a1222d7b735..add1ce1a79a6f54e7994e50875e01dbee1010fa3 100644 (file)
@@ -55,12 +55,20 @@ int board_eth_enable(void)
        return 0;
 }
 
+int board_qspi_enable(void)
+{
+       stv0991_pinmux_config(QSPI_CS_CLK_PAD);
+       clock_setup(QSPI_CLOCK_CFG);
+       return 0;
+}
+
 /*
  * Miscellaneous platform dependent initialisations
  */
 int board_init(void)
 {
        board_eth_enable();
+       board_qspi_enable();
        return 0;
 }