lkml.org 
[lkml]   [2013]   [Dec]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH v3 30/36] mtd: st_spi_fsm: Erase partly or as a whole a Serial Flash device
On Fri, Nov 29, 2013 at 12:19:19PM +0000, Lee Jones wrote:
> When an erase is requested by userspace the MFD framework calls back

s/MFD/MTD/

;)

> into the driver to conduct the actual command issue. Here we provide the
> routines which do exactly that. We can choose to either do an entire chip
> erase or by sector.
>
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
> ---
> drivers/mtd/devices/st_spi_fsm.c | 118 ++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 117 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/devices/st_spi_fsm.c b/drivers/mtd/devices/st_spi_fsm.c
> index 9b35e15..ecb001d 100644
> --- a/drivers/mtd/devices/st_spi_fsm.c
> +++ b/drivers/mtd/devices/st_spi_fsm.c
> @@ -861,6 +923,60 @@ out1:
> return ret;
> }
>
> +/*
> + * Erase an address range on the flash chip. The address range may extend
> + * one or more erase sectors. Return an error is there is a problem erasing.
> + */
> +static int stfsm_mtd_erase(struct mtd_info *mtd, struct erase_info *instr)
> +{
> + struct stfsm *fsm = dev_get_drvdata(mtd->dev.parent);
> + u32 addr, len;
> + int ret;
> +
> + dev_dbg(fsm->dev, "%s at 0x%llx, len %lld\n", __func__,
> + (long long)instr->addr, (long long)instr->len);
> +
> + if (instr->addr + instr->len > mtd->size)
> + return -EINVAL;

Duplicated from mtd_read(). Kill this.

> +
> + if (instr->len & (mtd->erasesize - 1))
> + return -EINVAL;

...

> @@ -1131,7 +1247,7 @@ static int stfsm_probe(struct platform_device *pdev)
>
> fsm->mtd._read = stfsm_mtd_read;
> fsm->mtd._write = stfsm_mtd_write;
> -
> + fsm->mtd._erase = stfsm_mtd_erase;

Can you leave the blank line between assigning fsm->mtd.xxx callbacks
and the dev_err()?

> dev_err(&pdev->dev,
> "Found serial flash device: %s\n"
> " size = %llx (%lldMiB) erasesize = 0x%08x (%uKiB)\n",

(BTW, why is this dev_err()?? It's just information, so you want
dev_info().)

Brian


\
 
 \ /
  Last update: 2013-12-11 03:41    [W:0.378 / U:0.760 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site