From: Lokesh Vutla <lokeshvutla@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 3/7] dra7xx_evm: add SPL API, QSPI, and serial flash support
Date: Wed, 10 Jul 2013 19:17:27 +0530 [thread overview]
Message-ID: <51DD65EF.1030501@ti.com> (raw)
In-Reply-To: <1373455541-8184-4-git-send-email-sourav.poddar@ti.com>
On Wednesday 10 July 2013 04:55 PM, Sourav Poddar wrote:
> From: Matt Porter <mporter@ti.com>
>
> Enables support for SPI SPL, QSPI and Spansion serial flash device
> on the EVM. Configures pin muxes for QSPI mode.
>
> Signed-off-by: Matt Porter <mporter@ti.com>
> Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
> ---
> board/ti/dra7xx/mux_data.h | 10 ++++++++++
> include/configs/dra7xx_evm.h | 22 ++++++++++++++++++++++
> 2 files changed, 32 insertions(+), 0 deletions(-)
>
> diff --git a/board/ti/dra7xx/mux_data.h b/board/ti/dra7xx/mux_data.h
> index 338a241..2441c55 100644
> --- a/board/ti/dra7xx/mux_data.h
> +++ b/board/ti/dra7xx/mux_data.h
> @@ -53,5 +53,15 @@ const struct pad_conf_entry core_padconf_array_essential[] = {
> {UART1_RTSN, (IEN | PTU | PDIS | M3)}, /* UART1_RTSN */
> {I2C1_SDA, (IEN | PTU | PDIS | M0)}, /* I2C1_SDA */
> {I2C1_SCL, (IEN | PTU | PDIS | M0)}, /* I2C1_SCL */
> + {GPMC_A13, (IEN | PDIS | M1)}, /* QSPI1_RTCLK */
> + {GPMC_A14, (IEN | PDIS | M1)}, /* QSPI1_D[3] */
> + {GPMC_A15, (IEN | PDIS | M1)}, /* QSPI1_D[2] */
> + {GPMC_A16, (IEN | PDIS | M1)}, /* QSPI1_D[1] */
> + {GPMC_A17, (IEN | PDIS | M1)}, /* QSPI1_D[0] */
> + {GPMC_A18, (IEN | PDIS | M1)}, /* QSPI1_SCLK */
> + {GPMC_A3, (IEN | PDIS | M1)}, /* QSPI1_CS2 */
> + {GPMC_A4, (IEN | PDIS | M1)}, /* QSPI1_CS3 */
> + {GPMC_CS2, (IEN | PTU | PDIS | M1)}, /* QSPI1_CS0 */
> + {GPMC_CS3, (IEN | PTU | PDIS | M1)}, /* QSPI1_CS1*/
> };
> #endif /* _MUX_DATA_DRA7XX_H_ */
> diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h
> index 6b37e1d..0583858 100644
> --- a/include/configs/dra7xx_evm.h
> +++ b/include/configs/dra7xx_evm.h
> @@ -46,4 +46,26 @@
> #define NON_SECURE_SRAM_END 0x40380000 /* Not inclusive */
>
> #define CONFIG_SYS_OMAP_ABE_SYSCK
> +#define CONFIG_SYS_DCACHE_OFF
> +#define CONFIG_SYS_ICACHE_OFF
Is it necessary to Disable caches to use QSPI?
If not please drop these two defines.
> +
> +#define EMIF1_EMIF2
This one too..
Thanks,
Lokesh
> +
> +/* SPI */
> +#define CONFIG_TI_QSPI
> +#define CONFIG_SPI_FLASH
> +#define CONFIG_SPI_FLASH_SPANSION
> +#define CONFIG_CMD_SF
> +#define CONFIG_CMD_SPI
> +#define CONFIG_SF_DEFAULT_SPEED 12000000
> +#define CONFIG_DEFAULT_SPI_MODE SPI_MODE_3
> +
> +/* SPI SPL */
> +#define CONFIG_SPL_SPI_SUPPORT
> +#define CONFIG_SPL_SPI_LOAD
> +#define CONFIG_SPL_SPI_FLASH_SUPPORT
> +#define CONFIG_SPL_SPI_BUS 0
> +#define CONFIG_SPL_SPI_CS 0
> +#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
> +
> #endif /* __CONFIG_DRA7XX_EVM_H */
>
next prev parent reply other threads:[~2013-07-10 13:47 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-10 11:25 [U-Boot] [PATCH 0/7] qspi controller: Normal, quad and memory mapped read support Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [PATCH 1/7] omap5: add qspi support Sourav Poddar
2013-07-10 13:23 ` Nishanth Menon
2013-07-10 13:43 ` Tom Rini
2013-07-11 6:19 ` Sourav Poddar
2013-07-11 6:17 ` Sourav Poddar
2013-07-10 13:40 ` Lokesh Vutla
2013-07-11 6:17 ` Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [PATCH 2/7] spi: add TI QSPI driver Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [PATCH 3/7] dra7xx_evm: add SPL API, QSPI, and serial flash support Sourav Poddar
2013-07-10 13:47 ` Lokesh Vutla [this message]
2013-07-10 23:58 ` Nishanth Menon
2013-07-11 6:40 ` Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [RFC/PATCH 4/7] drivers: mtd: spi: Modify read/write command for sfl256s flash Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [RFC/PATCH 5/7] drivers: mtd: qspi: Add quad read support Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [RFC/PATCH 6/7] driver: spi: Add memory mapped " Sourav Poddar
2013-07-10 11:25 ` [U-Boot] [PATCH 7/7] README: qspi usecase and testing documentation Sourav Poddar
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=51DD65EF.1030501@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 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.