Kaynağa Gözat

STM32F7: Definitions for the HS PHYC and extra OTG HS bit defns.

Keir Fraser 5 yıl önce
ebeveyn
işleme
e64bed3a24
3 değiştirilmiş dosya ile 51 ekleme ve 0 silme
  1. 2 0
      inc/stm32/f7.h
  2. 37 0
      inc/stm32/f7_regs.h
  3. 12 0
      src/usb/hw_dwc_otg.h

+ 2 - 0
inc/stm32/f7.h

@@ -12,6 +12,7 @@
 /* C pointer types */
 #define SYSCFG volatile struct syscfg * const
 #define DMA_STR volatile struct dma_str * const
+#define HSPHYC volatile struct hsphyc * const
 
 /* C-accessible registers. */
 static STK stk = (struct stk *)STK_BASE;
@@ -63,6 +64,7 @@ static USART usart3 = (struct usart *)USART3_BASE;
 static USART usart4 = (struct usart *)USART4_BASE;
 static USART usart5 = (struct usart *)USART5_BASE;
 static USART usart6 = (struct usart *)USART6_BASE;
+static HSPHYC hsphyc = (struct hsphyc *)HSPHYC_BASE;
 
 #define SYSCLK_MHZ 216
 #define AHB_MHZ (SYSCLK_MHZ / 1)  /* 216MHz */

+ 37 - 0
inc/stm32/f7_regs.h

@@ -559,6 +559,43 @@ struct usart {
 #define USB_OTG_FS_BASE 0x50000000
 #define USB_OTG_HS_BASE 0x40040000
 
+/* USB High-Speed PHY Controller */
+struct hsphyc {
+    uint32_t pll1;     /* +00: PLL1 control */
+    uint32_t _0[2];
+    uint32_t tune;     /* +0C: Tuning control */
+    uint32_t _1[2];
+    uint32_t ldo;      /* +18: LDO control and status */
+};
+
+#define HSPHYC_PLL1_SEL(x)   ((x)<<1)
+#define HSPHYC_PLL1_EN       (1u<< 0)
+
+#define HSPHYC_TUNE_SQLBYP            (1u<<23)
+#define HSPHYC_TUNE_SHTCCTCTLPROT     (1u<<22)
+#define HSPHYC_TUNE_HSRXOFF(x)        ((x)<<20)
+#define HSPHYC_TUNE_HSFALLPREEM       (1u<<19)
+#define HSPHYC_TUNE_STAGSEL           (1u<<18)
+#define HSPHYC_TUNE_HFRXGNEQEN        (1u<<17)
+#define HSPHYC_TUNE_SQLCHCTL(x)       ((x)<<15)
+#define HSPHYC_TUNE_HSDRVCHKZTRM(x)   ((x)<<13)
+#define HSPHYC_TUNE_HSDRVCHKITRIM(x)  ((x)<< 9)
+#define HSPHYC_TUNE_HSDRVRFRED        (1u<< 8)
+#define HSPHYC_TUNE_FSDRVRFADJ        (1u<< 7)
+#define HSPHYC_TUNE_HSDRVCURINGR      (1u<< 6)
+#define HSPHYC_TUNE_HSDRVDCLEV        (1u<< 5)
+#define HSPHYC_TUNE_HSDRVDCCUR        (1u<< 4)
+#define HSPHYC_TUNE_HSDRVSLEW         (1u<< 3)
+#define HSPHYC_TUNE_LFSCAPEN          (1u<< 2)
+#define HSPHYC_TUNE_INCURRINT         (1u<< 1)
+#define HSPHYC_TUNE_INCURREN          (1u<< 0)
+
+#define HSPHYC_LDO_ENABLE    (1u<< 2)
+#define HSPHYC_LDO_STATUS    (1u<< 1)
+#define HSPHYC_LDO_USED      (1u<< 0)
+
+#define HSPHYC_BASE 0x40017C00
+
 /*
  * Local variables:
  * mode: C

+ 12 - 0
src/usb/hw_dwc_otg.h

@@ -143,10 +143,21 @@ struct otg_dfifo { /* 1000.. */
 #define OTG_GUSBCFG_CTXPKT   (1u<<31)
 #define OTG_GUSBCFG_FDMOD    (1u<<30)
 #define OTG_GUSBCFG_FHMOD    (1u<<29)
+#define OTG_GUSBCFG_ULPIIPD  (1u<<25)
+#define OTG_GUSBCFG_PTCI     (1u<<24)
+#define OTG_GUSBCFG_PCCI     (1u<<23)
+#define OTG_GUSBCFG_TSDPS    (1u<<22)
+#define OTG_GUSBCFG_ULPIEVBUSI (1u<<21)
+#define OTG_GUSBCFG_ULPIEVBUSD (1u<<20)
+#define OTG_GUSBCFG_ULPICSM  (1u<<19)
+#define OTG_GUSBCFG_ULPIAR   (1u<<18)
+#define OTG_GUSBCFG_ULPIFSL  (1u<<17)
+#define OTG_GUSBCFG_PHYLPC   (1u<<15)
 #define OTG_GUSBCFG_TRDT(x)  ((x)<<10)
 #define OTG_GUSBCFG_HNPCAP   (1u<< 9)
 #define OTG_GUSBCFG_SRPCAP   (1u<< 8)
 #define OTG_GUSBCFG_PHYSEL   (1u<< 6)
+#define OTG_GUSBCFG_ULPISEL  (1u<< 4)
 #define OTG_GUSBCFG_TOCAL(x) ((x)<< 0)
 
 #define OTG_GRSTCTL_AHBIDL   (1u<<31)
@@ -193,6 +204,7 @@ struct otg_dfifo { /* 1000.. */
 #define OTG_RXSTS_BCNT(r)    (((r)>>4)&0x7ff)
 #define OTG_RXSTS_CHNUM(r)   ((r)&0xf)
 
+#define OTG_GCCFG_PHYHSEN    (1u<<23)
 #define OTG_GCCFG_VBDEN      (1u<<21)
 #define OTG_GCCFG_PWRDWN     (1u<<16)