public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lokesh Vutla <lokeshvutla@ti.com>
To: u-boot@lists.denx.de
Subject: [PATCH 5/5] arm: mach-omap2: am33xx: Add device structure for spi
Date: Mon, 7 Sep 2020 12:08:20 +0530	[thread overview]
Message-ID: <09303bf4-e5ba-116b-cbbe-475fe6251498@ti.com> (raw)
In-Reply-To: <20200902111804.22043-6-faiz_abbas@ti.com>



On 02/09/20 4:48 pm, Faiz Abbas wrote:
> Add platform data and a device structure for the spi device
> present on am335x-icev2. This requires moving all omap3_spi
> platform data structures and symbols to an omap3_spi.h so that
> the board file can access them.
> 
> Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
> ---
>  arch/arm/mach-omap2/am33xx/board.c | 12 +++++
>  drivers/spi/omap3_spi.c            | 70 +--------------------------
>  include/configs/am335x_evm.h       |  4 ++
>  include/omap3_spi.h                | 78 ++++++++++++++++++++++++++++++
>  4 files changed, 95 insertions(+), 69 deletions(-)
>  create mode 100644 include/omap3_spi.h
> 
> diff --git a/arch/arm/mach-omap2/am33xx/board.c b/arch/arm/mach-omap2/am33xx/board.c
> index a7b56b6bb3..2c2b38721f 100644
> --- a/arch/arm/mach-omap2/am33xx/board.c
> +++ b/arch/arm/mach-omap2/am33xx/board.c
> @@ -14,6 +14,7 @@
>  #include <init.h>
>  #include <net.h>
>  #include <ns16550.h>
> +#include <omap3_spi.h>
>  #include <spl.h>
>  #include <asm/arch/cpu.h>
>  #include <asm/arch/hardware.h>
> @@ -142,6 +143,17 @@ U_BOOT_DEVICES(am33xx_gpios) = {
>  #endif
>  };
>  #endif
> +#if CONFIG_IS_ENABLED(DM_SPI) && !CONFIG_IS_ENABLED(OF_CONTROL)
> +static const struct omap3_spi_plat omap3_spi_pdata = {
> +	.regs = (struct mcspi *)AM33XX_SPI_OFFSET,
> +	.pin_dir = MCSPI_PINDIR_D0_IN_D1_OUT,
> +};
> +
> +U_BOOT_DEVICE(am33xx_spi) = {
> +	.name = "omap3_spi",
> +	.platdata = &omap3_spi_pdata,
> +};
> +#endif
>  #endif
>  
>  #if !CONFIG_IS_ENABLED(DM_GPIO)
> diff --git a/drivers/spi/omap3_spi.c b/drivers/spi/omap3_spi.c
> index 08daacf6f0..56cb217486 100644
> --- a/drivers/spi/omap3_spi.c
> +++ b/drivers/spi/omap3_spi.c
> @@ -22,82 +22,14 @@
>  #include <malloc.h>
>  #include <asm/io.h>
>  #include <linux/bitops.h>
> +#include <omap3_spi.h>
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> -#define OMAP4_MCSPI_REG_OFFSET	0x100
> -
>  struct omap2_mcspi_platform_config {
>  	unsigned int regs_offset;
>  };
>  
> -/* per-register bitmasks */
> -#define OMAP3_MCSPI_SYSCONFIG_SMARTIDLE (2 << 3)
> -#define OMAP3_MCSPI_SYSCONFIG_ENAWAKEUP BIT(2)
> -#define OMAP3_MCSPI_SYSCONFIG_AUTOIDLE	BIT(0)
> -#define OMAP3_MCSPI_SYSCONFIG_SOFTRESET BIT(1)
> -
> -#define OMAP3_MCSPI_SYSSTATUS_RESETDONE BIT(0)
> -
> -#define OMAP3_MCSPI_MODULCTRL_SINGLE	BIT(0)
> -#define OMAP3_MCSPI_MODULCTRL_MS	BIT(2)
> -#define OMAP3_MCSPI_MODULCTRL_STEST	BIT(3)
> -
> -#define OMAP3_MCSPI_CHCONF_PHA		BIT(0)
> -#define OMAP3_MCSPI_CHCONF_POL		BIT(1)
> -#define OMAP3_MCSPI_CHCONF_CLKD_MASK	GENMASK(5, 2)
> -#define OMAP3_MCSPI_CHCONF_EPOL		BIT(6)
> -#define OMAP3_MCSPI_CHCONF_WL_MASK	GENMASK(11, 7)
> -#define OMAP3_MCSPI_CHCONF_TRM_RX_ONLY	BIT(12)
> -#define OMAP3_MCSPI_CHCONF_TRM_TX_ONLY	BIT(13)
> -#define OMAP3_MCSPI_CHCONF_TRM_MASK	GENMASK(13, 12)
> -#define OMAP3_MCSPI_CHCONF_DMAW		BIT(14)
> -#define OMAP3_MCSPI_CHCONF_DMAR		BIT(15)
> -#define OMAP3_MCSPI_CHCONF_DPE0		BIT(16)
> -#define OMAP3_MCSPI_CHCONF_DPE1		BIT(17)
> -#define OMAP3_MCSPI_CHCONF_IS		BIT(18)
> -#define OMAP3_MCSPI_CHCONF_TURBO	BIT(19)
> -#define OMAP3_MCSPI_CHCONF_FORCE	BIT(20)
> -
> -#define OMAP3_MCSPI_CHSTAT_RXS		BIT(0)
> -#define OMAP3_MCSPI_CHSTAT_TXS		BIT(1)
> -#define OMAP3_MCSPI_CHSTAT_EOT		BIT(2)
> -
> -#define OMAP3_MCSPI_CHCTRL_EN		BIT(0)
> -#define OMAP3_MCSPI_CHCTRL_DIS		(0 << 0)
> -
> -#define OMAP3_MCSPI_WAKEUPENABLE_WKEN	BIT(0)
> -#define MCSPI_PINDIR_D0_IN_D1_OUT	0
> -#define MCSPI_PINDIR_D0_OUT_D1_IN	1
> -
> -#define OMAP3_MCSPI_MAX_FREQ		48000000
> -#define SPI_WAIT_TIMEOUT		10
> -
> -/* OMAP3 McSPI registers */
> -struct mcspi_channel {
> -	unsigned int chconf;		/* 0x2C, 0x40, 0x54, 0x68 */
> -	unsigned int chstat;		/* 0x30, 0x44, 0x58, 0x6C */
> -	unsigned int chctrl;		/* 0x34, 0x48, 0x5C, 0x70 */
> -	unsigned int tx;		/* 0x38, 0x4C, 0x60, 0x74 */
> -	unsigned int rx;		/* 0x3C, 0x50, 0x64, 0x78 */
> -};
> -
> -struct mcspi {
> -	unsigned char res1[0x10];
> -	unsigned int sysconfig;		/* 0x10 */
> -	unsigned int sysstatus;		/* 0x14 */
> -	unsigned int irqstatus;		/* 0x18 */
> -	unsigned int irqenable;		/* 0x1C */
> -	unsigned int wakeupenable;	/* 0x20 */
> -	unsigned int syst;		/* 0x24 */
> -	unsigned int modulctrl;		/* 0x28 */
> -	struct mcspi_channel channel[4];
> -	/* channel0: 0x2C - 0x3C, bus 0 & 1 & 2 & 3 */
> -	/* channel1: 0x40 - 0x50, bus 0 & 1 */
> -	/* channel2: 0x54 - 0x64, bus 0 & 1 */
> -	/* channel3: 0x68 - 0x78, bus 0 */
> -};
> -
>  struct omap3_spi_priv {
>  	struct mcspi *regs;
>  	unsigned int cs;
> diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h
> index 9c4ef369c5..db1a89ad30 100644
> --- a/include/configs/am335x_evm.h
> +++ b/include/configs/am335x_evm.h
> @@ -281,6 +281,10 @@
>  #endif
>  
>  /* SPI flash. */
> +#if CONFIG_IS_ENABLED(DM_SPI)
> +#define AM33XX_SPI_BASE		0x48030000
> +#define AM33XX_SPI_OFFSET	(AM33XX_SPI_BASE + OMAP4_MCSPI_REG_OFFSET)

Can we get the SPI base from DT?


Thanks and regards,
Lokesh

  reply	other threads:[~2020-09-07  6:38 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-02 11:17 [PATCH 0/5] Add spi boot support to am335x-icev2 Faiz Abbas
2020-09-02 11:18 ` [PATCH 1/5] arm: dts: am335x-icev2: Add spi node Faiz Abbas
2020-09-02 11:18 ` [PATCH 2/5] configs: Add spiboot support for am335x Faiz Abbas
2020-09-07 11:29   ` Lokesh Vutla
2020-09-02 11:18 ` [PATCH 3/5] spi: spi-uclass: Block dm_scan_fdt_dev with OF_CONTROL to prevent build failures Faiz Abbas
2020-09-07  6:39   ` Lokesh Vutla
2020-09-10 17:59   ` Jagan Teki
2020-09-02 11:18 ` [PATCH 4/5] spi: omap3_spi: Read platform data in ofdata_to_platdata() Faiz Abbas
2020-09-07 12:12   ` Vignesh Raghavendra
2020-09-07 12:13   ` Vignesh Raghavendra
2020-09-02 11:18 ` [PATCH 5/5] arm: mach-omap2: am33xx: Add device structure for spi Faiz Abbas
2020-09-07  6:38   ` Lokesh Vutla [this message]
2020-09-07  7:06     ` Faiz Abbas
2020-09-07  8:18       ` Vignesh Raghavendra
2020-09-07 10:32         ` Faiz Abbas
2020-09-07 12:19           ` Vignesh Raghavendra
2020-09-08 12:26             ` Faiz Abbas
2020-09-11  2:46 ` [PATCH 0/5] Add spi boot support to am335x-icev2 Lokesh Vutla
2020-09-11  4:37   ` Faiz Abbas

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=09303bf4-e5ba-116b-cbbe-475fe6251498@ti.com \
    --to=lokeshvutla@ti.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox