diff --git a/arch/arm/src/samd5e5/sam_clockconfig.c b/arch/arm/src/samd5e5/sam_clockconfig.c index 95658b85e5..40be603bdb 100644 --- a/arch/arm/src/samd5e5/sam_clockconfig.c +++ b/arch/arm/src/samd5e5/sam_clockconfig.c @@ -416,7 +416,7 @@ static void sam_xosc32k_configure(const struct sam_xosc32_config_s *config) /* Wait for XOSC32 to become ready if it was enabled */ - if (config->enable && ! config->ondemand) + if (config->enable && !config->ondemand) { while ((getreg32(SAM_OSC32KCTRL_STATUS) & OSC32KCTRL_INT_XOSC32KRDY) == 0) @@ -542,23 +542,21 @@ static void sam_xosc0_configure(const struct sam_clockconfig_s *config) regval = sam_xoscctrl(config); putreg32(regval, SAM_OSCCTRL_XOSCCTRL0); - /* If the XOSC was enabled, then wait for it to become ready */ + /* Wait for XOSC32 to become ready if it was enabled */ - /* Wait for XOSC32 to become ready if it was enabled */ - - if (config->enable) - { - while (getreg32(SAM_OSCCTRL_STATUS) & OSCCTRL_INT_XOSCRDY0) == 0) - { - } - } + if (config->enable) + { + while (getreg32(SAM_OSCCTRL_STATUS) & OSCCTRL_INT_XOSCRDY0) == 0) + { + } + } /* Re-select OnDemand */ if (config->ondemand) { regval = getre32(SAM_OSCCTRL_XOSCCTRL0) - regval |=OSCCTRL_XOSCCTRL_ONDEMAND; + regval |= OSCCTRL_XOSCCTRL_ONDEMAND; putreg32(regval, SAM_OSCCTRL_XOSCCTRL0); } } @@ -574,23 +572,21 @@ void sam_xosc1_configure(const struct sam_xosc_config_s *config) regval = sam_xoscctrl(config); putreg32(regval, SAM_OSCCTRL_XOSCCTRL1); - /* If the XOSC was enabled, then wait for it to become ready */ + /* Wait for XOSC32 to become ready if it was enabled */ - /* Wait for XOSC32 to become ready if it was enabled */ - - if (config->enable) - { - while (getreg32(SAM_OSCCTRL_STATUS) & OSCCTRL_INT_XOSCRDY1) == 0) - { - } - } + if (config->enable) + { + while (getreg32(SAM_OSCCTRL_STATUS) & OSCCTRL_INT_XOSCRDY1) == 0) + { + } + } /* Re-select OnDemand */ if (config->ondemand) { regval = getre32(SAM_OSCCTRL_XOSCCTRL1) - regval |=OSCCTRL_XOSCCTRL_ONDEMAND; + regval |= OSCCTRL_XOSCCTRL_ONDEMAND; putreg32(regval, SAM_OSCCTRL_XOSCCTRL1); } } @@ -631,7 +627,6 @@ static void sam_gclk_configure(uintptr_t regaddr, regval = GCLK_GENCTRL_SRC(config->source) | GCLK_GENCTRL_GENEN | GCLK_GENCTRL1_DIV(config->div); - if (config->idc) { regval |= GCLK_GENCTRL_IDC; @@ -872,7 +867,6 @@ static void sam_dfll_ready(const struct sam_dfll_config_s *config) if ((regval8 & OSCCTRL_DFLLCTRLB_MODE) != 0) { ready = OSCCTRL_INT_DFLLRDY | OSCCTRL_INT_DFLLLCKC; - } /* In open-loop mode, wait only for DFLL ready */ diff --git a/configs/metro-m4/README.txt b/configs/metro-m4/README.txt index d31069fc8d..9a3862012f 100644 --- a/configs/metro-m4/README.txt +++ b/configs/metro-m4/README.txt @@ -45,6 +45,12 @@ STATUS hardware. The primary JTAG problem seems to be that it is now unable to halt the CPU. + This is most likely a consequence of something happening in the NuttX + boot-up sequence that interferes with JTAG operation. When I continue + debugging in the future, I will put an infinitel loop, branch-on-self + at the code startup up (__start) so that I can attached the debugger + and step through the initial configuration. + Unlocking FLASH =============== diff --git a/drivers/eeprom/i2c_xx24xx.c b/drivers/eeprom/i2c_xx24xx.c index 2a6ed85660..3ad005c90c 100644 --- a/drivers/eeprom/i2c_xx24xx.c +++ b/drivers/eeprom/i2c_xx24xx.c @@ -103,7 +103,7 @@ ****************************************************************************/ #ifndef CONFIG_EE24XX_FREQUENCY -#define CONFIG_EE24XX_FREQUENCY 100000 +# define CONFIG_EE24XX_FREQUENCY 100000 #endif /**************************************************************************** diff --git a/drivers/i2c/i2c_writeread.c b/drivers/i2c/i2c_writeread.c index 7527c60ae3..7ffdbf9700 100644 --- a/drivers/i2c/i2c_writeread.c +++ b/drivers/i2c/i2c_writeread.c @@ -83,19 +83,20 @@ int i2c_writeread(FAR struct i2c_master_s *dev, /* Format two messages: The first is a write */ - msg[0].frequency = config->frequency, - msg[0].addr = config->address; - msg[0].flags = flags; - msg[0].buffer = (FAR uint8_t *)wbuffer; /* Override const */ - msg[0].length = wbuflen; + msg[0].frequency = config->frequency, + msg[0].addr = config->address; + msg[0].flags = flags; + msg[0].buffer = (FAR uint8_t *)wbuffer; /* Override const */ + msg[0].length = wbuflen; - /* The second is either a read (rbuflen > 0) or a write (rbuflen < 0) with - * no restart. + /* The second is either a read (rbuflen > 0) with a repeated start or a + * write (rbuflen < 0) with no restart. */ if (rbuflen > 0) { - msg[1].flags = (flags | I2C_M_READ); + msg[0].flags |= I2C_M_NOSTOP; + msg[1].flags = (flags | I2C_M_READ); } else { @@ -103,10 +104,10 @@ int i2c_writeread(FAR struct i2c_master_s *dev, rbuflen = -rbuflen; } - msg[1].frequency = config->frequency, - msg[1].addr = config->address; - msg[1].buffer = rbuffer; - msg[1].length = rbuflen; + msg[1].frequency = config->frequency, + msg[1].addr = config->address; + msg[1].buffer = rbuffer; + msg[1].length = rbuflen; /* Then perform the transfer. */ diff --git a/include/nuttx/i2c/i2c_master.h b/include/nuttx/i2c/i2c_master.h index 28647cf7bd..24bbf6c629 100644 --- a/include/nuttx/i2c/i2c_master.h +++ b/include/nuttx/i2c/i2c_master.h @@ -77,8 +77,9 @@ #define I2C_M_READ 0x0001 /* Read data, from slave to master */ #define I2C_M_TEN 0x0002 /* Ten bit address */ +#define I2C_M_NOSTOP 0x0040 /* Message should not end with a STOP */ #define I2C_M_NORESTART 0x0080 /* Message should not begin with - * (re-)start of transfer */ + * (re-)START of transfer */ /* I2C Character Driver IOCTL Commands **************************************/ /* The I2C driver is intended to support application testing of the I2C bus.