From: Jagan Teki <jteki@openedev.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 03/12] mtd: dataflash: Move flash id detection into jedec_probe
Date: Fri, 12 Feb 2016 14:06:08 +0530 [thread overview]
Message-ID: <1455266174-3240-4-git-send-email-jteki@openedev.com> (raw)
In-Reply-To: <1455266174-3240-1-git-send-email-jteki@openedev.com>
Flash id detection should be the first step to enumerate
the connected flash on the board, once ie done checking
with respective id codes locally in the driver all this
should be part of jedec_probe instead of id detection and
validated through flash_info{} table separatly.
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: York Sun <york.sun@nxp.com>
Cc: Haikun Wang <haikun.wang@freescale.com>
Signed-off-by: Jagan Teki <jteki@openedev.com>
---
drivers/mtd/spi-nor/sf_dataflash.c | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/drivers/mtd/spi-nor/sf_dataflash.c b/drivers/mtd/spi-nor/sf_dataflash.c
index 6a9dfef..7c6c8d2 100644
--- a/drivers/mtd/spi-nor/sf_dataflash.c
+++ b/drivers/mtd/spi-nor/sf_dataflash.c
@@ -501,9 +501,10 @@ static struct flash_info dataflash_data[] = {
{ "at45db642d", 0x1f2800, 8192, 1024, 10, SUP_POW2PS | IS_POW2PS},
};
-static struct flash_info *jedec_probe(struct spi_slave *spi, u8 *id)
+static struct flash_info *jedec_probe(struct spi_slave *spi)
{
int tmp;
+ uint8_t id[5];
uint32_t jedec;
struct flash_info *info;
int status;
@@ -517,6 +518,11 @@ static struct flash_info *jedec_probe(struct spi_slave *spi, u8 *id)
* That's not an error; only rev C and newer chips handle it, and
* only Atmel sells these chips.
*/
+ tmp = spi_flash_cmd(spi, CMD_READ_ID, id, sizeof(id));
+ if (tmp < 0) {
+ printf("dataflash: error %d reading JEDEC ID\n", tmp);
+ return ERR_PTR(tmp);
+ }
if (id[0] != 0x1f)
return NULL;
@@ -580,7 +586,6 @@ static int spi_dataflash_probe(struct udevice *dev)
struct spi_slave *spi = dev_get_parent_priv(dev);
struct spi_flash *spi_flash;
struct flash_info *info;
- u8 idcode[5];
int ret, status = 0;
spi_flash = dev_get_uclass_priv(dev);
@@ -591,12 +596,6 @@ static int spi_dataflash_probe(struct udevice *dev)
if (ret)
return ret;
- ret = spi_flash_cmd(spi, CMD_READ_ID, idcode, sizeof(idcode));
- if (ret) {
- printf("SPI DataFlash: Failed to get idcodes\n");
- goto err_read_cmd;
- }
-
/*
* Try to detect dataflash by JEDEC ID.
* If it succeeds we know we have either a C or D part.
@@ -604,7 +603,9 @@ static int spi_dataflash_probe(struct udevice *dev)
* Both support the security register, though with different
* write procedures.
*/
- info = jedec_probe(spi, idcode);
+ info = jedec_probe(spi);
+ if (IS_ERR(info))
+ return PTR_ERR(info);
if (info != NULL)
add_dataflash(dev, info->name, info->nr_pages,
info->pagesize, info->pageoffset,
--
1.9.1
next prev parent reply other threads:[~2016-02-12 8:36 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-12 8:36 [U-Boot] [PATCH 00/12] mtd: dataflash: Add UCLASS_MTD Jagan Teki
2016-02-12 8:36 ` [U-Boot] [PATCH 01/12] mtd: spi-nor: Copy sf_dataflash Jagan Teki
2016-02-12 16:55 ` york sun
2016-02-12 17:51 ` Jagan Teki
2016-02-12 19:12 ` york sun
2016-02-12 19:28 ` Simon Glass
2016-02-12 19:31 ` Simon Glass
2016-02-12 8:36 ` [U-Boot] [PATCH 02/12] mtd: dataflash: Remove unneeded spi data Jagan Teki
2016-02-12 8:36 ` Jagan Teki [this message]
2016-02-12 8:36 ` [U-Boot] [PATCH 04/12] mtd: dataflash: Fix add_dataflash return logic Jagan Teki
2016-02-12 8:36 ` [U-Boot] [PATCH 05/12] mtd: dataflash: Add UCLASS_MTD support Jagan Teki
2016-02-12 8:36 ` [U-Boot] [PATCH 06/12] mtd: dataflash: Use spi_write_then_read Jagan Teki
2016-02-12 8:36 ` [U-Boot] [PATCH 07/12] mtd: dataflash: Drop sf_internal.h Jagan Teki
2016-02-12 8:36 ` [U-Boot] [PATCH 08/12] mtd: dataflash: Minor cleanups Jagan Teki
2016-02-12 8:36 ` [U-Boot] [PATCH 09/12] mtd: Rename sf_dataflash.c to mtd_dataflash.c 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=1455266174-3240-4-git-send-email-jteki@openedev.com \
--to=jteki@openedev.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