summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-27 19:26:18 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-27 19:26:18 +0000
commit53309f29bef36ec7f8807f96f3a5d720f2c2df9c (patch)
tree08a035106ec09980447b03809137a5e01c9a4b2c /nuttx/arch/arm/src/stm32
parenta9445ee1dde0305c7ea03ff1c74447a6e4f53a98 (diff)
downloadpx4-nuttx-53309f29bef36ec7f8807f96f3a5d720f2c2df9c.tar.gz
px4-nuttx-53309f29bef36ec7f8807f96f3a5d720f2c2df9c.tar.bz2
px4-nuttx-53309f29bef36ec7f8807f96f3a5d720f2c2df9c.zip
STM32 fixes for DM9161 PHY; Enhancements for ADS7843e touchscreen controller
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5199 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/stm32')
-rw-r--r--nuttx/arch/arm/src/stm32/Kconfig1
-rw-r--r--nuttx/arch/arm/src/stm32/Make.defs4
-rw-r--r--nuttx/arch/arm/src/stm32/stm32_eth.c79
3 files changed, 82 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/stm32/Kconfig b/nuttx/arch/arm/src/stm32/Kconfig
index 8d93fb104..fe89119a4 100644
--- a/nuttx/arch/arm/src/stm32/Kconfig
+++ b/nuttx/arch/arm/src/stm32/Kconfig
@@ -269,6 +269,7 @@ config STM32_ETHMAC
bool "Ethernet MAC"
default n
depends on STM32_CONNECTIVITYLINE || STM32_STM32F20XX || STM32_STM32F40XX
+ select ARCH_HAVE_PHY
config STM32_FSMC
bool "FSMC"
diff --git a/nuttx/arch/arm/src/stm32/Make.defs b/nuttx/arch/arm/src/stm32/Make.defs
index 24af16c95..e52962977 100644
--- a/nuttx/arch/arm/src/stm32/Make.defs
+++ b/nuttx/arch/arm/src/stm32/Make.defs
@@ -45,8 +45,8 @@ CMN_CSRCS = up_assert.c up_blocktask.c up_copystate.c \
up_initialize.c up_initialstate.c up_interruptcontext.c \
up_memfault.c up_modifyreg8.c up_modifyreg16.c up_modifyreg32.c \
up_releasepending.c up_releasestack.c up_reprioritizertr.c \
- up_schedulesigaction.c up_sigdeliver.c up_unblocktask.c \
- up_usestack.c up_doirq.c up_hardfault.c up_svcall.c
+ up_schedulesigaction.c up_sigdeliver.c up_systemreset.c \
+ up_unblocktask.c up_usestack.c up_doirq.c up_hardfault.c up_svcall.c
ifeq ($(CONFIG_ARMV7M_CMNVECTOR),y)
CMN_ASRCS += up_exception.S
diff --git a/nuttx/arch/arm/src/stm32/stm32_eth.c b/nuttx/arch/arm/src/stm32/stm32_eth.c
index 2e892c9e5..81345fabf 100644
--- a/nuttx/arch/arm/src/stm32/stm32_eth.c
+++ b/nuttx/arch/arm/src/stm32/stm32_eth.c
@@ -664,6 +664,9 @@ static void stm32_rxdescinit(FAR struct stm32_ethmac_s *priv);
static int stm32_phyread(uint16_t phydevaddr, uint16_t phyregaddr, uint16_t *value);
static int stm32_phywrite(uint16_t phydevaddr, uint16_t phyregaddr, uint16_t value);
+#ifdef CONFIG_PHY_DM9161
+static inline int stm32_dm9161(FAR struct stm32_ethmac_s *priv);
+#endif
static int stm32_phyinit(FAR struct stm32_ethmac_s *priv);
/* MAC/DMA Initialization */
@@ -2480,6 +2483,72 @@ static int stm32_phywrite(uint16_t phydevaddr, uint16_t phyregaddr, uint16_t val
}
/****************************************************************************
+ * Function: stm32_dm9161
+ *
+ * Description:
+ * Special workaround for the Davicom DM9161 PHY is required. On power,
+ * up, the PHY is not usually configured correctly but will work after
+ * a powered-up reset. This is really a workaround for some more
+ * fundamental issue with the PHY clocking initialization, but the
+ * root cause has not been studied (nor will it be with this workaround).
+ *
+ * Parameters:
+ * priv - A reference to the private driver state structure
+ *
+ * Returned Value:
+ * None
+ *
+ ****************************************************************************/
+
+#ifdef CONFIG_PHY_DM9161
+static inline int stm32_dm9161(FAR struct stm32_ethmac_s *priv)
+{
+ uint16_t phyval;
+ int ret;
+
+ /* Read the PHYID1 register; A failure to read the PHY ID is one
+ * indication that check if the DM9161 PHY CHIP is not ready.
+ */
+
+ ret = stm32_phyread(CONFIG_STM32_PHYADDR, MII_PHYID1, &phyval);
+ if (ret < 0)
+ {
+ ndbg("Failed to read the PHY ID1: %d\n", ret);
+ return ret;
+ }
+
+ /* If we failed to read the PHY ID1 register, the reset the MCU to recover */
+
+ else if (phyval == 0xffff)
+ {
+ up_systemreset();
+ }
+
+ nvdbg("PHY ID1: 0x%04X\n", phyval);
+
+ /* Now check the "DAVICOM Specified Configuration Register (DSCR)", Register 16 */
+
+ ret = stm32_phyread(CONFIG_STM32_PHYADDR, 16, &phyval);
+ if (ret < 0)
+ {
+ ndbg("Failed to read the PHY Register 0x10: %d\n", ret);
+ return ret;
+ }
+
+ /* Bit 8 of the DSCR register is zero, the the DM9161 has not selected RMII.
+ * If RMII is not selected, then reset the MCU to recover.
+ */
+
+ else if ((phyval & (1 << 8)) == 0)
+ {
+ up_systemreset();
+ }
+
+ return OK;
+}
+#endif
+
+/****************************************************************************
* Function: stm32_phyinit
*
* Description:
@@ -2524,6 +2593,16 @@ static int stm32_phyinit(FAR struct stm32_ethmac_s *priv)
}
up_mdelay(PHY_RESET_DELAY);
+ /* Special workaround for the Davicom DM9161 PHY is required. */
+
+#ifdef CONFIG_PHY_DM9161
+ ret = stm32_dm9161(priv);
+ if (ret < 0)
+ {
+ return ret;
+ }
+#endif
+
/* Perform auto-negotion if so configured */
#ifdef CONFIG_STM32_AUTONEG