From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2] spi: mxc_spi: Set master mode for all channels
Date: Wed, 10 Apr 2013 08:10:12 +0200 [thread overview]
Message-ID: <51650244.4050608@denx.de> (raw)
In-Reply-To: <1365548785-28684-1-git-send-email-festevam@gmail.com>
On 10/04/2013 01:06, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> The glitch in the SPI clock line, which commit 3cea335c34 (spi: mxc_spi: Fix spi
> clock glitch durant reset) solved, is back now and itwas re-introduced by
> commit d36b39bf0d (spi: mxc_spi: Fix ECSPI reset handling).
>
> Actually the glitch is happening due to always toggling between slave mode
> and master mode by configuring the CHANNEL_MODE bits in this reset function.
>
> Since the spi driver only supports master mode, set the mode for all channels
> always to master mode in order to have a stable, "glitch-free" SPI clock line.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
Hi Fabio,
> Changes since v1:
> - Introduce MXC_CSPICTRL_MODE_MASK definition
> - Remove additional read of reg_ctrl
>
> arch/arm/include/asm/arch-mx5/imx-regs.h | 1 +
> arch/arm/include/asm/arch-mx6/imx-regs.h | 1 +
> 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 249d15a..a71cc13 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 eaa7439..d79ab2f 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 4c19e0b..20419e6 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);
I am afraid you are breaking MX3x / MX25 because you add
MXC_CSPICTRL_MODE_MASK only to MX5 / MX6.
Best regards,
Stefano
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
next prev parent reply other threads:[~2013-04-10 6:10 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-09 23:06 [U-Boot] [PATCH v2] spi: mxc_spi: Set master mode for all channels Fabio Estevam
2013-04-10 6:10 ` Stefano Babic [this message]
2013-04-10 12:01 ` Fabio Estevam
2013-04-13 15:50 ` Stefano Babic
2013-04-14 7:08 ` Dirk Behme
2013-05-01 5:38 ` Dirk Behme
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51650244.4050608@denx.de \
--to=sbabic@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.