diff options
| -rw-r--r-- | arch/arm/include/asm/arch-mx5/imx-regs.h | 1 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-mx6/imx-regs.h | 1 | ||||
| -rw-r--r-- | drivers/spi/mxc_spi.c | 17 | 
3 files changed, 11 insertions, 8 deletions
| diff --git a/arch/arm/include/asm/arch-mx5/imx-regs.h b/arch/arm/include/asm/arch-mx5/imx-regs.h index 249d15a50..a71cc13e2 100644 --- a/arch/arm/include/asm/arch-mx5/imx-regs.h +++ b/arch/arm/include/asm/arch-mx5/imx-regs.h @@ -230,6 +230,7 @@  #define MXC_CSPICTRL_EN		(1 << 0)  #define MXC_CSPICTRL_MODE	(1 << 1)  #define MXC_CSPICTRL_XCH	(1 << 2) +#define MXC_CSPICTRL_MODE_MASK	(0xf << 4)  #define MXC_CSPICTRL_CHIPSELECT(x)	(((x) & 0x3) << 12)  #define MXC_CSPICTRL_BITCOUNT(x)	(((x) & 0xfff) << 20)  #define MXC_CSPICTRL_PREDIV(x)	(((x) & 0xF) << 12) diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h b/arch/arm/include/asm/arch-mx6/imx-regs.h index eaa743948..d79ab2f13 100644 --- a/arch/arm/include/asm/arch-mx6/imx-regs.h +++ b/arch/arm/include/asm/arch-mx6/imx-regs.h @@ -346,6 +346,7 @@ struct cspi_regs {  #define MXC_CSPICTRL_EN		(1 << 0)  #define MXC_CSPICTRL_MODE	(1 << 1)  #define MXC_CSPICTRL_XCH	(1 << 2) +#define MXC_CSPICTRL_MODE_MASK (0xf << 4)  #define MXC_CSPICTRL_CHIPSELECT(x)	(((x) & 0x3) << 12)  #define MXC_CSPICTRL_BITCOUNT(x)	(((x) & 0xfff) << 20)  #define MXC_CSPICTRL_PREDIV(x)	(((x) & 0xF) << 12) diff --git a/drivers/spi/mxc_spi.c b/drivers/spi/mxc_spi.c index 4c19e0bf1..20419e6bc 100644 --- a/drivers/spi/mxc_spi.c +++ b/drivers/spi/mxc_spi.c @@ -137,11 +137,15 @@ static s32 spi_cfg_mxc(struct mxc_spi_slave *mxcs, unsigned int cs,  		return -1;  	} -	/* Reset spi */ -	reg_write(®s->ctrl, 0); -	reg_write(®s->ctrl, MXC_CSPICTRL_EN); - -	reg_ctrl = reg_read(®s->ctrl); +	/* +	 * Reset SPI and set all CSs to master mode, if toggling +	 * between slave and master mode we might see a glitch +	 * on the clock line +	 */ +	reg_ctrl = MXC_CSPICTRL_MODE_MASK; +	reg_write(®s->ctrl, reg_ctrl); +	reg_ctrl |=  MXC_CSPICTRL_EN; +	reg_write(®s->ctrl, reg_ctrl);  	/*  	 * The following computation is taken directly from Freescale's code. @@ -174,9 +178,6 @@ static s32 spi_cfg_mxc(struct mxc_spi_slave *mxcs, unsigned int cs,  	reg_ctrl = (reg_ctrl & ~MXC_CSPICTRL_POSTDIV(0x0F)) |  		MXC_CSPICTRL_POSTDIV(post_div); -	/* always set to master mode */ -	reg_ctrl |= 1 << (cs + 4); -  	/* We need to disable SPI before changing registers */  	reg_ctrl &= ~MXC_CSPICTRL_EN; |