Sfoglia il codice sorgente

board:starfive:Remove usb/sdio0/sdio1 gpio init

Remove usb/sdio0/sdio1 gpio init.

Signed-off-by: Jianlong Huang <jianlong.huang@starfivetech.com>
Jianlong Huang 1 anno fa
parent
commit
4cc82557a5
1 ha cambiato i file con 0 aggiunte e 21 eliminazioni
  1. 0 21
      board/starfive/evb/starfive_evb.c

+ 0 - 21
board/starfive/evb/starfive_evb.c

@@ -170,14 +170,6 @@ static void jh7110_usb_init(bool usb2_enable)
 			PDRSTN_SPLIT_MASK,
 			(0 << PDRSTN_SPLIT_SHIFT) & PDRSTN_SPLIT_MASK);
 	}
-	SYS_IOMUX_DOEN(33, LOW);
-	SYS_IOMUX_DOUT(33, 7);
-	SYS_IOMUX_DOEN(34, HIGH);
-
-	clrsetbits_le32(SYS_IOMUX_BASE + SYS_IOMUX_32,
-		IOMUX_USB_MASK,
-		((34+2) << IOMUX_USB_SHIFT) & IOMUX_USB_MASK);
-
 }
 
 static u32 get_chip_type(void)
@@ -198,17 +190,6 @@ static u32 get_chip_type(void)
 	return value;
 }
 
-static void jh7110_mmc_init(int id)
-{
-	if (id == 0) {
-		SYS_IOMUX_DOEN(22, LOW);
-		SYS_IOMUX_DOUT(22, 19);
-	} else {
-		SYS_IOMUX_DOEN(24, LOW);
-		SYS_IOMUX_DOUT(24, 66);
-	}
-}
-
 /*enable U74-mc hart1~hart4 prefetcher*/
 static void enable_prefetcher(void)
 {
@@ -237,8 +218,6 @@ int board_init(void)
 
 	jh7110_timer_init();
 	jh7110_usb_init(true);
-	jh7110_mmc_init(0);
-	jh7110_mmc_init(1);
 
 	return 0;
 }