From: Jagan Teki <jagannadh.teki@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 2/4] sf: Place the sf calls in proper order
Date: Sun, 23 Jun 2013 23:35:23 +0530 [thread overview]
Message-ID: <51C738E3.5030504@gmail.com> (raw)
In-Reply-To: <eff46c11-33ce-4bdf-a965-5bc14c304de5@CH1EHSMHS031.ehs.local>
On 21-06-2013 19:19, Jagannadha Sutradharudu Teki wrote:
> From: Jagannadha Sutradharudu Teki <jagannadha.sutradharudu-teki@xilinx.com>
>
> Placed the sf calls in proper order - erase/write/read
>
> Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
> ---
> Changes for v3:
> -
> Changes for v2:
> -
>
> drivers/mtd/spi/spi_flash.c | 184 ++++++++++++++++++++++----------------------
> 1 file changed, 92 insertions(+), 92 deletions(-)
>
> diff --git a/drivers/mtd/spi/spi_flash.c b/drivers/mtd/spi/spi_flash.c
> index 03cecef..a329850 100644
> --- a/drivers/mtd/spi/spi_flash.c
> +++ b/drivers/mtd/spi/spi_flash.c
> @@ -68,6 +68,51 @@ int spi_flash_cmd_write(struct spi_slave *spi, const u8 *cmd, size_t cmd_len,
> return spi_flash_read_write(spi, cmd, cmd_len, data, NULL, data_len);
> }
>
> +int spi_flash_cmd_wait_ready(struct spi_flash *flash, unsigned long timeout)
> +{
> + struct spi_slave *spi = flash->spi;
> + unsigned long timebase;
> + int ret;
> + u8 status;
> + u8 check_status = 0x0;
> + u8 poll_bit = STATUS_WIP;
> + u8 cmd = flash->poll_cmd;
> +
> + if (cmd == CMD_FLAG_STATUS) {
> + poll_bit = STATUS_PEC;
> + check_status = poll_bit;
> + }
> +
> + ret = spi_xfer(spi, 8, &cmd, NULL, SPI_XFER_BEGIN);
> + if (ret) {
> + debug("SF: fail to read %s status register\n",
> + cmd == CMD_READ_STATUS ? "read" : "flag");
> + return ret;
> + }
> +
> + timebase = get_timer(0);
> + do {
> + WATCHDOG_RESET();
> +
> + ret = spi_xfer(spi, 8, NULL, &status, 0);
> + if (ret)
> + return -1;
> +
> + if ((status & poll_bit) == check_status)
> + break;
> +
> + } while (get_timer(timebase) < timeout);
> +
> + spi_xfer(spi, 0, NULL, NULL, SPI_XFER_END);
> +
> + if ((status & poll_bit) == check_status)
> + return 0;
> +
> + /* Timed out */
> + debug("SF: time out!\n");
> + return -1;
> +}
> +
> int spi_flash_write_common(struct spi_flash *flash, const u8 *cmd,
> size_t cmd_len, const void *buf, size_t buf_len)
> {
> @@ -109,6 +154,53 @@ int spi_flash_write_common(struct spi_flash *flash, const u8 *cmd,
> return ret;
> }
>
> +int spi_flash_cmd_erase(struct spi_flash *flash, u32 offset, size_t len)
> +{
> + u32 erase_size;
> + u8 cmd[4];
> + int ret = -1;
> +
> + erase_size = flash->sector_size;
> + if (offset % erase_size || len % erase_size) {
> + debug("SF: Erase offset/length not multiple of erase size\n");
> + return -1;
> + }
> +
> + if (erase_size == 4096)
> + cmd[0] = CMD_ERASE_4K;
> + else
> + cmd[0] = CMD_ERASE_64K;
> +
> + while (len) {
> +#ifdef CONFIG_SPI_FLASH_BAR
> + u8 bank_sel;
> +
> + bank_sel = offset / SPI_FLASH_16MB_BOUN;
> +
> + ret = spi_flash_cmd_bankaddr_write(flash, bank_sel);
> + if (ret) {
> + debug("SF: fail to set bank%d\n", bank_sel);
> + return ret;
> + }
> +#endif
> + spi_flash_addr(offset, cmd);
> +
> + debug("SF: erase %2x %2x %2x %2x (%x)\n", cmd[0], cmd[1],
> + cmd[2], cmd[3], offset);
> +
> + ret = spi_flash_write_common(flash, cmd, sizeof(cmd), NULL, 0);
> + if (ret < 0) {
> + debug("SF: erase failed\n");
> + break;
> + }
> +
> + offset += erase_size;
> + len -= erase_size;
> + }
> +
> + return ret;
> +}
> +
> int spi_flash_cmd_write_multi(struct spi_flash *flash, u32 offset,
> size_t len, const void *buf)
> {
> @@ -218,98 +310,6 @@ int spi_flash_cmd_read_fast(struct spi_flash *flash, u32 offset,
> return ret;
> }
>
> -int spi_flash_cmd_wait_ready(struct spi_flash *flash, unsigned long timeout)
> -{
> - struct spi_slave *spi = flash->spi;
> - unsigned long timebase;
> - int ret;
> - u8 status;
> - u8 check_status = 0x0;
> - u8 poll_bit = STATUS_WIP;
> - u8 cmd = flash->poll_cmd;
> -
> - if (cmd == CMD_FLAG_STATUS) {
> - poll_bit = STATUS_PEC;
> - check_status = poll_bit;
> - }
> -
> - ret = spi_xfer(spi, 8, &cmd, NULL, SPI_XFER_BEGIN);
> - if (ret) {
> - debug("SF: fail to read %s status register\n",
> - cmd == CMD_READ_STATUS ? "read" : "flag");
> - return ret;
> - }
> -
> - timebase = get_timer(0);
> - do {
> - WATCHDOG_RESET();
> -
> - ret = spi_xfer(spi, 8, NULL, &status, 0);
> - if (ret)
> - return -1;
> -
> - if ((status & poll_bit) == check_status)
> - break;
> -
> - } while (get_timer(timebase) < timeout);
> -
> - spi_xfer(spi, 0, NULL, NULL, SPI_XFER_END);
> -
> - if ((status & poll_bit) == check_status)
> - return 0;
> -
> - /* Timed out */
> - debug("SF: time out!\n");
> - return -1;
> -}
> -
> -int spi_flash_cmd_erase(struct spi_flash *flash, u32 offset, size_t len)
> -{
> - u32 erase_size;
> - u8 cmd[4];
> - int ret = -1;
> -
> - erase_size = flash->sector_size;
> - if (offset % erase_size || len % erase_size) {
> - debug("SF: Erase offset/length not multiple of erase size\n");
> - return -1;
> - }
> -
> - if (erase_size == 4096)
> - cmd[0] = CMD_ERASE_4K;
> - else
> - cmd[0] = CMD_ERASE_64K;
> -
> - while (len) {
> -#ifdef CONFIG_SPI_FLASH_BAR
> - u8 bank_sel;
> -
> - bank_sel = offset / SPI_FLASH_16MB_BOUN;
> -
> - ret = spi_flash_cmd_bankaddr_write(flash, bank_sel);
> - if (ret) {
> - debug("SF: fail to set bank%d\n", bank_sel);
> - return ret;
> - }
> -#endif
> - spi_flash_addr(offset, cmd);
> -
> - debug("SF: erase %2x %2x %2x %2x (%x)\n", cmd[0], cmd[1],
> - cmd[2], cmd[3], offset);
> -
> - ret = spi_flash_write_common(flash, cmd, sizeof(cmd), NULL, 0);
> - if (ret < 0) {
> - debug("SF: erase failed\n");
> - break;
> - }
> -
> - offset += erase_size;
> - len -= erase_size;
> - }
> -
> - return ret;
> -}
> -
> int spi_flash_cmd_write_status(struct spi_flash *flash, u8 sr)
> {
> u8 cmd;
>
Applied to u-boot-spi/master
--
Thanks,
Jagan.
next prev parent reply other threads:[~2013-06-23 18:05 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1371822543-7929-1-git-send-email-jaganna@xilinx.com>
2013-06-21 13:49 ` [U-Boot] [PATCH v3 2/4] sf: Place the sf calls in proper order Jagannadha Sutradharudu Teki
2013-06-23 18:05 ` Jagan Teki [this message]
2013-06-21 13:49 ` [U-Boot] [PATCH v3 3/4] sf: Add debug messages on spi_flash_read_common Jagannadha Sutradharudu Teki
2013-06-23 18:05 ` Jagan Teki
2013-06-21 13:49 ` [U-Boot] [PATCH v3 4/4] sf: Warn to use BAR for > 16MiB flashes Jagannadha Sutradharudu Teki
2013-06-23 18:05 ` Jagan Teki
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=51C738E3.5030504@gmail.com \
--to=jagannadh.teki@gmail.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.