Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030457AbcDMMze (ORCPT ); Wed, 13 Apr 2016 08:55:34 -0400 Received: from eusmtp01.atmel.com ([212.144.249.243]:42740 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965750AbcDMMzb (ORCPT ); Wed, 13 Apr 2016 08:55:31 -0400 Subject: Re: [PATCH 02/12] mtd: nand: atmel: rely on generic DT parsing done in nand_scan_ident() To: Boris Brezillon , Roger Quadros , Tony Lindgren , Wenyou Yang , Josh Wu , "Richard Weinberger" , , David Woodhouse , Brian Norris , Kamal Dasu , Han Xu , Ezequiel Garcia , Stefan Agner References: <1459515272-31011-1-git-send-email-boris.brezillon@free-electrons.com> <1459515272-31011-3-git-send-email-boris.brezillon@free-electrons.com> CC: , Jean-Christophe Plagniol-Villard , Alexandre Belloni , Thomas Petazzoni , Gregory CLEMENT , Jason Cooper , Sebastian Hesselbarth , Andrew Lunn , Daniel Mack , Haojian Zhuang , Robert Jarzmik , , , , Maxime Ripard , Chen-Yu Tsai , , Zhou Wang , Alex Smith , Harvey Hunt From: Nicolas Ferre Organization: atmel Message-ID: <570E41D1.3090609@atmel.com> Date: Wed, 13 Apr 2016 14:55:45 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: <1459515272-31011-3-git-send-email-boris.brezillon@free-electrons.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 8bit X-Originating-IP: [10.161.30.18] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 7906 Lines: 252 Le 01/04/2016 14:54, Boris Brezillon a ?crit : > The core now takes care of parsing generic DT properties in > nand_scan_ident() when nand_set_flash_node() has been called. > Rely on this initialization instead of calling of_get_nand_xxx() > manually. > > Signed-off-by: Boris Brezillon It seems okay: Reviewed-by: Nicolas Ferre Thanks Boris, bye, > --- > drivers/mtd/nand/atmel_nand.c | 133 +++++++++++++++++++++++------------------- > 1 file changed, 73 insertions(+), 60 deletions(-) > > diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c > index 0b5da72..5e716f2 100644 > --- a/drivers/mtd/nand/atmel_nand.c > +++ b/drivers/mtd/nand/atmel_nand.c > @@ -36,7 +36,6 @@ > #include > #include > #include > -#include > #include > #include > #include > @@ -434,14 +433,13 @@ err_buf: > static void atmel_read_buf(struct mtd_info *mtd, u8 *buf, int len) > { > struct nand_chip *chip = mtd_to_nand(mtd); > - struct atmel_nand_host *host = nand_get_controller_data(chip); > > if (use_dma && len > mtd->oobsize) > /* only use DMA for bigger than oob size: better performances */ > if (atmel_nand_dma_op(mtd, buf, len, 1) == 0) > return; > > - if (host->board.bus_width_16) > + if (chip->options & NAND_BUSWIDTH_16) > atmel_read_buf16(mtd, buf, len); > else > atmel_read_buf8(mtd, buf, len); > @@ -450,14 +448,13 @@ static void atmel_read_buf(struct mtd_info *mtd, u8 *buf, int len) > static void atmel_write_buf(struct mtd_info *mtd, const u8 *buf, int len) > { > struct nand_chip *chip = mtd_to_nand(mtd); > - struct atmel_nand_host *host = nand_get_controller_data(chip); > > if (use_dma && len > mtd->oobsize) > /* only use DMA for bigger than oob size: better performances */ > if (atmel_nand_dma_op(mtd, (void *)buf, len, 0) == 0) > return; > > - if (host->board.bus_width_16) > + if (chip->options & NAND_BUSWIDTH_16) > atmel_write_buf16(mtd, buf, len); > else > atmel_write_buf8(mtd, buf, len); > @@ -1507,58 +1504,17 @@ static void atmel_nand_hwctl(struct mtd_info *mtd, int mode) > ecc_writel(host->ecc, CR, ATMEL_ECC_RST); > } > > -static int atmel_of_init_port(struct atmel_nand_host *host, > - struct device_node *np) > +static int atmel_of_init_ecc(struct atmel_nand_host *host, > + struct device_node *np) > { > - u32 val; > u32 offset[2]; > - int ecc_mode; > - struct atmel_nand_data *board = &host->board; > - enum of_gpio_flags flags = 0; > - > - host->caps = (struct atmel_nand_caps *) > - of_device_get_match_data(host->dev); > - > - if (of_property_read_u32(np, "atmel,nand-addr-offset", &val) == 0) { > - if (val >= 32) { > - dev_err(host->dev, "invalid addr-offset %u\n", val); > - return -EINVAL; > - } > - board->ale = val; > - } > - > - if (of_property_read_u32(np, "atmel,nand-cmd-offset", &val) == 0) { > - if (val >= 32) { > - dev_err(host->dev, "invalid cmd-offset %u\n", val); > - return -EINVAL; > - } > - board->cle = val; > - } > - > - ecc_mode = of_get_nand_ecc_mode(np); > - > - board->ecc_mode = ecc_mode < 0 ? NAND_ECC_SOFT : ecc_mode; > - > - board->on_flash_bbt = of_get_nand_on_flash_bbt(np); > - > - board->has_dma = of_property_read_bool(np, "atmel,nand-has-dma"); > - > - if (of_get_nand_bus_width(np) == 16) > - board->bus_width_16 = 1; > - > - board->rdy_pin = of_get_gpio_flags(np, 0, &flags); > - board->rdy_pin_active_low = (flags == OF_GPIO_ACTIVE_LOW); > - > - board->enable_pin = of_get_gpio(np, 1); > - board->det_pin = of_get_gpio(np, 2); > + u32 val; > > host->has_pmecc = of_property_read_bool(np, "atmel,has-pmecc"); > > - /* load the nfc driver if there is */ > - of_platform_populate(np, NULL, NULL, host->dev); > - > - if (!(board->ecc_mode == NAND_ECC_HW) || !host->has_pmecc) > - return 0; /* Not using PMECC */ > + /* Not using PMECC */ > + if (!(host->nand_chip.ecc.mode == NAND_ECC_HW) || !host->has_pmecc) > + return 0; > > /* use PMECC, get correction capability, sector size and lookup > * table offset. > @@ -1599,16 +1555,64 @@ static int atmel_of_init_port(struct atmel_nand_host *host, > /* Will build a lookup table and initialize the offset later */ > return 0; > } > + > if (!offset[0] && !offset[1]) { > dev_err(host->dev, "Invalid PMECC lookup table offset\n"); > return -EINVAL; > } > + > host->pmecc_lookup_table_offset_512 = offset[0]; > host->pmecc_lookup_table_offset_1024 = offset[1]; > > return 0; > } > > +static int atmel_of_init_port(struct atmel_nand_host *host, > + struct device_node *np) > +{ > + u32 val; > + struct atmel_nand_data *board = &host->board; > + enum of_gpio_flags flags = 0; > + > + host->caps = (struct atmel_nand_caps *) > + of_device_get_match_data(host->dev); > + > + if (of_property_read_u32(np, "atmel,nand-addr-offset", &val) == 0) { > + if (val >= 32) { > + dev_err(host->dev, "invalid addr-offset %u\n", val); > + return -EINVAL; > + } > + board->ale = val; > + } > + > + if (of_property_read_u32(np, "atmel,nand-cmd-offset", &val) == 0) { > + if (val >= 32) { > + dev_err(host->dev, "invalid cmd-offset %u\n", val); > + return -EINVAL; > + } > + board->cle = val; > + } > + > + board->has_dma = of_property_read_bool(np, "atmel,nand-has-dma"); > + > + board->rdy_pin = of_get_gpio_flags(np, 0, &flags); > + board->rdy_pin_active_low = (flags == OF_GPIO_ACTIVE_LOW); > + > + board->enable_pin = of_get_gpio(np, 1); > + board->det_pin = of_get_gpio(np, 2); > + > + /* load the nfc driver if there is */ > + of_platform_populate(np, NULL, NULL, host->dev); > + > + /* > + * Initialize ECC mode to NAND_ECC_SOFT so that we have a correct value > + * even if the nand-ecc-mode property is not defined. > + */ > + host->nand_chip.ecc.mode = NAND_ECC_SOFT; > + > + return 0; > +} > + > static int atmel_hw_nand_init_params(struct platform_device *pdev, > struct atmel_nand_host *host) > { > @@ -2150,6 +2154,11 @@ static int atmel_nand_probe(struct platform_device *pdev) > } else { > memcpy(&host->board, dev_get_platdata(&pdev->dev), > sizeof(struct atmel_nand_data)); > + nand_chip->ecc.mode = host->board.ecc_mode; > + > + /* 16-bit bus width */ > + if (host->board.bus_width_16) > + nand_chip->options |= NAND_BUSWIDTH_16; > } > > /* link the private data structures */ > @@ -2191,11 +2200,8 @@ static int atmel_nand_probe(struct platform_device *pdev) > nand_chip->cmd_ctrl = atmel_nand_cmd_ctrl; > } > > - nand_chip->ecc.mode = host->board.ecc_mode; > nand_chip->chip_delay = 40; /* 40us command delay time */ > > - if (host->board.bus_width_16) /* 16-bit bus width */ > - nand_chip->options |= NAND_BUSWIDTH_16; > > nand_chip->read_buf = atmel_read_buf; > nand_chip->write_buf = atmel_write_buf; > @@ -2228,11 +2234,6 @@ static int atmel_nand_probe(struct platform_device *pdev) > } > } > > - if (host->board.on_flash_bbt || on_flash_bbt) { > - dev_info(&pdev->dev, "Use On Flash BBT\n"); > - nand_chip->bbt_options |= NAND_BBT_USE_FLASH; > - } > - > if (!host->board.has_dma) > use_dma = 0; > > @@ -2259,6 +2260,18 @@ static int atmel_nand_probe(struct platform_device *pdev) > goto err_scan_ident; > } > > + if (host->board.on_flash_bbt || on_flash_bbt) > + nand_chip->bbt_options |= NAND_BBT_USE_FLASH; > + > + if (nand_chip->bbt_options & NAND_BBT_USE_FLASH) > + dev_info(&pdev->dev, "Use On Flash BBT\n"); > + > + if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node) { > + res = atmel_of_init_ecc(host, pdev->dev.of_node); > + if (res) > + goto err_hw_ecc; > + } > + > if (nand_chip->ecc.mode == NAND_ECC_HW) { > if (host->has_pmecc) > res = atmel_pmecc_nand_init_params(pdev, host); > -- Nicolas Ferre