mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Marco Felsch <m.felsch@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Barebox List <barebox@lists.infradead.org>
Subject: Re: [PATCH 02/14] ARM: i.MX: xload nand: Use common register defines
Date: Wed, 2 Nov 2022 09:10:58 +0100	[thread overview]
Message-ID: <20221102081058.o2nm6lmjzl4m2kb2@pengutronix.de> (raw)
In-Reply-To: <20221101153048.772146-3-s.hauer@pengutronix.de>

Hi Sascha,

On 22-11-01, Sascha Hauer wrote:
> We have a set of GPMI register defines in include/, so use them for the
> xload driver as well.
> 
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
>  arch/arm/mach-imx/xload-gpmi-nand.c | 66 ++++++++---------------------
>  1 file changed, 17 insertions(+), 49 deletions(-)
> 
> diff --git a/arch/arm/mach-imx/xload-gpmi-nand.c b/arch/arm/mach-imx/xload-gpmi-nand.c
> index 3a4f331ce6..6ac9af762f 100644
> --- a/arch/arm/mach-imx/xload-gpmi-nand.c
> +++ b/arch/arm/mach-imx/xload-gpmi-nand.c
> @@ -11,6 +11,7 @@
>  #include <mach/xload.h>
>  #include <soc/imx/imx-nand-bcb.h>
>  #include <linux/mtd/rawnand.h>
> +#include <soc/imx/gpmi-nand.h>
>  #include <mach/imx6-regs.h>
>  #include <mach/clock-imx6.h>

missing bitfield.h include.

Also should we say in the commit message that we are using the
FIELD_PREP now by this change?

Regards,
  Marco


>  
> @@ -203,39 +204,6 @@ static int mxs_dma_run(struct mxs_dma_chan *pchan, struct mxs_dma_cmd *pdesc,
>  
>  /* ----------------------------- NAND driver part -------------------------- */
>  
> -#define	GPMI_CTRL0					0x00000000
> -#define	GPMI_CTRL0_RUN					(1 << 29)
> -#define	GPMI_CTRL0_DEV_IRQ_EN				(1 << 28)
> -#define	GPMI_CTRL0_UDMA					(1 << 26)
> -#define	GPMI_CTRL0_COMMAND_MODE_MASK			(0x3 << 24)
> -#define	GPMI_CTRL0_COMMAND_MODE_OFFSET			24
> -#define	GPMI_CTRL0_COMMAND_MODE_WRITE			(0x0 << 24)
> -#define	GPMI_CTRL0_COMMAND_MODE_READ			(0x1 << 24)
> -#define	GPMI_CTRL0_COMMAND_MODE_READ_AND_COMPARE	(0x2 << 24)
> -#define	GPMI_CTRL0_COMMAND_MODE_WAIT_FOR_READY		(0x3 << 24)
> -#define	GPMI_CTRL0_WORD_LENGTH				(1 << 23)
> -#define	GPMI_CTRL0_CS(cs)				((cs) << 20)
> -#define	GPMI_CTRL0_ADDRESS_MASK				(0x7 << 17)
> -#define	GPMI_CTRL0_ADDRESS_OFFSET			17
> -#define	GPMI_CTRL0_ADDRESS_NAND_DATA			(0x0 << 17)
> -#define	GPMI_CTRL0_ADDRESS_NAND_CLE			(0x1 << 17)
> -#define	GPMI_CTRL0_ADDRESS_NAND_ALE			(0x2 << 17)
> -#define	GPMI_CTRL0_ADDRESS_INCREMENT			(1 << 16)
> -#define	GPMI_CTRL0_XFER_COUNT_MASK			0xffff
> -#define	GPMI_CTRL0_XFER_COUNT_OFFSET			0
> -
> -#define	GPMI_ECCCTRL_ECC_CMD_DECODE			(0x0 << 13)
> -#define	GPMI_ECCCTRL_ENABLE_ECC				(1 << 12)
> -#define	GPMI_ECCCTRL_BUFFER_MASK_BCH_PAGE		0x1ff
> -
> -#define	BCH_CTRL					0x00000000
> -#define	BCH_CTRL_COMPLETE_IRQ				(1 << 0)
> -
> -#define	MXS_NAND_DMA_DESCRIPTOR_COUNT			6
> -#define	MXS_NAND_CHUNK_DATA_CHUNK_SIZE			512
> -#define	MXS_NAND_METADATA_SIZE				10
> -#define	MXS_NAND_COMMAND_BUFFER_SIZE			128
> -
>  struct mxs_nand_info {
>  	void __iomem *io_base;
>  	void __iomem *bch_base;
> @@ -352,7 +320,7 @@ static int mxs_nand_read_page(struct mxs_nand_info *info, int writesize,
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -372,7 +340,7 @@ static int mxs_nand_read_page(struct mxs_nand_info *info, int writesize,
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -386,7 +354,7 @@ static int mxs_nand_read_page(struct mxs_nand_info *info, int writesize,
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WAIT_FOR_READY |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_DATA;
>  
>  	if (raw) {
> @@ -398,7 +366,7 @@ static int mxs_nand_read_page(struct mxs_nand_info *info, int writesize,
>  			DMACMD_COMMAND_DMA_WRITE;
>  		d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_READ |
>  			GPMI_CTRL0_WORD_LENGTH |
> -			GPMI_CTRL0_CS(info->cs) |
> +			FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  			GPMI_CTRL0_ADDRESS_NAND_DATA |
>  			(writesize + oobsize);
>  		d->address = (dma_addr_t)databuf;
> @@ -408,7 +376,7 @@ static int mxs_nand_read_page(struct mxs_nand_info *info, int writesize,
>  		d->data = DMACMD_WAIT4END | DMACMD_PIO_WORDS(6);
>  		d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_READ |
>  			GPMI_CTRL0_WORD_LENGTH |
> -			GPMI_CTRL0_CS(info->cs) |
> +			FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  			GPMI_CTRL0_ADDRESS_NAND_DATA |
>  			(writesize + oobsize);
>  		d->pio_words[1] = 0;
> @@ -426,7 +394,7 @@ static int mxs_nand_read_page(struct mxs_nand_info *info, int writesize,
>  			DMACMD_PIO_WORDS(3);
>  		d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WAIT_FOR_READY |
>  			GPMI_CTRL0_WORD_LENGTH |
> -			GPMI_CTRL0_CS(info->cs) |
> +			FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  			GPMI_CTRL0_ADDRESS_NAND_DATA |
>  			(writesize + oobsize);
>  	}
> @@ -499,7 +467,7 @@ static int mxs_nand_get_read_status(struct mxs_nand_info *info, void *databuf)
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -512,7 +480,7 @@ static int mxs_nand_get_read_status(struct mxs_nand_info *info, void *databuf)
>  		DMACMD_COMMAND_DMA_WRITE;
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_READ |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_DATA |
>  		(1);
>  	d->address = (dma_addr_t)databuf;
> @@ -557,7 +525,7 @@ static int mxs_nand_reset(struct mxs_nand_info *info, void *databuf)
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -629,7 +597,7 @@ static int mxs_nand_get_onfi(struct mxs_nand_info *info, void *databuf)
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -643,7 +611,7 @@ static int mxs_nand_get_onfi(struct mxs_nand_info *info, void *databuf)
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WAIT_FOR_READY |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_DATA;
>  
>  	/* Compile DMA descriptor - read. */
> @@ -654,7 +622,7 @@ static int mxs_nand_get_onfi(struct mxs_nand_info *info, void *databuf)
>  		DMACMD_COMMAND_DMA_WRITE;
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_READ |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_DATA |
>  		(sizeof(struct nand_onfi_params));
>  	d->address = (dma_addr_t)databuf;
> @@ -733,7 +701,7 @@ static int mxs_nand_check_onfi(struct mxs_nand_info *info, void *databuf)
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -746,7 +714,7 @@ static int mxs_nand_check_onfi(struct mxs_nand_info *info, void *databuf)
>  		DMACMD_COMMAND_DMA_WRITE;
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_READ |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_DATA |
>  		(sizeof(struct onfi_header));
>  	d->address = (dma_addr_t)databuf;
> @@ -811,7 +779,7 @@ static int mxs_nand_get_readid(struct mxs_nand_info *info, void *databuf)
>  
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_WRITE |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_CLE |
>  		GPMI_CTRL0_ADDRESS_INCREMENT |
>  		cmd_queue_len;
> @@ -824,7 +792,7 @@ static int mxs_nand_get_readid(struct mxs_nand_info *info, void *databuf)
>  		DMACMD_COMMAND_DMA_WRITE;
>  	d->pio_words[0] = GPMI_CTRL0_COMMAND_MODE_READ |
>  		GPMI_CTRL0_WORD_LENGTH |
> -		GPMI_CTRL0_CS(info->cs) |
> +		FIELD_PREP(GPMI_CTRL0_CS, info->cs) |
>  		GPMI_CTRL0_ADDRESS_NAND_DATA |
>  		(sizeof(struct readid_data));
>  	d->address = (dma_addr_t)databuf;
> -- 
> 2.30.2
> 
> 
> 



  reply	other threads:[~2022-11-02  8:12 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-01 15:30 [PATCH 00/14] Add i.MX7 NAND xload support Sascha Hauer
2022-11-01 15:30 ` [PATCH 01/14] mtd: nand: nand-mxs: Move register definitions to separate file Sascha Hauer
2022-11-02  8:08   ` Marco Felsch
2022-11-01 15:30 ` [PATCH 02/14] ARM: i.MX: xload nand: Use common register defines Sascha Hauer
2022-11-02  8:10   ` Marco Felsch [this message]
2022-11-01 15:30 ` [PATCH 03/14] ARM: i.MX: xload nand: add common readid Sascha Hauer
2022-11-02  8:23   ` Marco Felsch
2022-11-01 15:30 ` [PATCH 04/14] dma: apbh-dma: Simplify code Sascha Hauer
2022-11-01 15:30 ` [PATCH 05/14] dma: apbh-dma: unify register defines Sascha Hauer
2022-11-01 15:30 ` [PATCH 06/14] ARM: i.MX: xload-gpmi-nand: refactor for more SoC support Sascha Hauer
2022-11-01 15:30 ` [PATCH 07/14] imx-bbu-nand-fcb: pull printing debug info out of get_fcb() Sascha Hauer
2022-11-01 15:30 ` [PATCH 08/14] ARM: i.MX: xload nand: Pull ECC status checking out of read page Sascha Hauer
2022-11-02  8:33   ` Marco Felsch
2022-11-01 15:30 ` [PATCH 09/14] ARM: i.MX: xload nand: Use final page layout from FCB Sascha Hauer
2022-11-01 15:30 ` [PATCH 10/14] imx-bbu-nand-fcb: Fix reading FCB information from BCH registers Sascha Hauer
2022-11-01 15:30 ` [PATCH 11/14] ARM: i.MX: xload nand: reset NAND before accessing it Sascha Hauer
2022-11-01 15:30 ` [PATCH 12/14] ARM: i.MX: xload nand: Move mxs_nand_mode_fcb_62bit() to header file Sascha Hauer
2022-11-02  8:37   ` Marco Felsch
2022-11-01 15:30 ` [PATCH 13/14] ARM: i.MX: xload nand: Implement i.MX7 support Sascha Hauer
2022-11-02  8:41   ` Marco Felsch
2022-11-02  8:46     ` Sascha Hauer
2022-11-01 15:30 ` [PATCH 14/14] imx-bbu-nand-fcb: Add fcb command Sascha Hauer
2022-11-02  8:44   ` Marco Felsch
2022-11-02 10:55     ` Sascha Hauer
2022-11-02 11:01       ` Marco Felsch
2022-11-02 11:29         ` Sascha Hauer

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=20221102081058.o2nm6lmjzl4m2kb2@pengutronix.de \
    --to=m.felsch@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=s.hauer@pengutronix.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