From: Vikram Narayanan <vikram186@gmail.com>
To: Huang Shijie <b32955@freescale.com>
Cc: dirk.behme@de.bosch.com, dedekind1@gmail.com,
linux-mtd@lists.infradead.org, ffainelli@freebox.fr,
shawn.guo@linaro.org, dwmw2@infradead.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 5/9] mtd: gpmi: add a new field for HW_GPMI_CTRL1
Date: Tue, 11 Sep 2012 23:34:28 +0530 [thread overview]
Message-ID: <504F7D2C.5090707@gmail.com> (raw)
In-Reply-To: <1347344231-10295-6-git-send-email-b32955@freescale.com>
Hello Huang Shijie,
On 9/11/2012 11:47 AM, Huang Shijie wrote:
> add the WRN_DLY_SEL field for HW_GPMI_CTRL1.
> This field is used as delay for gpmi write strobe.
>
> Signed-off-by: Huang Shijie<b32955@freescale.com>
> ---
> drivers/mtd/nand/gpmi-nand/gpmi-lib.c | 6 ++++++
> drivers/mtd/nand/gpmi-nand/gpmi-nand.h | 2 ++
> drivers/mtd/nand/gpmi-nand/gpmi-regs.h | 5 +++++
> 3 files changed, 13 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-lib.c b/drivers/mtd/nand/gpmi-nand/gpmi-lib.c
> index eee0159..037438a 100644
> --- a/drivers/mtd/nand/gpmi-nand/gpmi-lib.c
> +++ b/drivers/mtd/nand/gpmi-nand/gpmi-lib.c
> @@ -731,6 +731,7 @@ return_results:
> hw->use_half_periods = dll_use_half_periods;
> hw->sample_delay_factor = sample_delay_factor;
> hw->device_busy_timeout = 0x500; /* default busy timeout value. */
> + hw->wrn_dly_sel = 0;
>
> /* Return success. */
> return 0;
> @@ -769,6 +770,11 @@ void gpmi_begin(struct gpmi_nand_data *this)
>
> /* [3] The following code is to set the HW_GPMI_CTRL1. */
>
> + /* Set the WRN_DLY_SEL */
> + writel(BM_GPMI_CTRL1_WRN_DLY_SEL, gpmi_regs + HW_GPMI_CTRL1_CLR);
> + writel(BF_GPMI_CTRL1_WRN_DLY_SEL(hw.wrn_dly_sel),
> + gpmi_regs + HW_GPMI_CTRL1_SET);
> +
> /* DLL_ENABLE must be set to 0 when setting RDN_DELAY or HALF_PERIOD. */
> writel(BM_GPMI_CTRL1_DLL_ENABLE, gpmi_regs + HW_GPMI_CTRL1_CLR);
>
> diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.h b/drivers/mtd/nand/gpmi-nand/gpmi-nand.h
> index e68bbac..39f1f76 100644
> --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.h
> +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.h
> @@ -195,6 +195,7 @@ struct gpmi_nand_data {
> * @use_half_periods: Indicates the clock is running slowly, so the
> * NFC DLL should use half-periods.
> * @sample_delay_factor: The sample delay factor.
> + * @wrn_dly_sel: The delay on the GPMI write strobe.
> */
> struct gpmi_nfc_hardware_timing {
> /* for HW_GPMI_TIMING0 */
> @@ -208,6 +209,7 @@ struct gpmi_nfc_hardware_timing {
> /* for HW_GPMI_CTRL1 */
> bool use_half_periods;
> uint8_t sample_delay_factor;
> + uint8_t wrn_dly_sel;
> };
>
> /**
> diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-regs.h b/drivers/mtd/nand/gpmi-nand/gpmi-regs.h
> index 7961c14..ab428d6 100644
> --- a/drivers/mtd/nand/gpmi-nand/gpmi-regs.h
> +++ b/drivers/mtd/nand/gpmi-nand/gpmi-regs.h
> @@ -108,6 +108,11 @@
> #define HW_GPMI_CTRL1_CLR 0x00000068
> #define HW_GPMI_CTRL1_TOG 0x0000006c
>
> +#define BP_GPMI_CTRL1_WRN_DLY_SEL 22
> +#define BM_GPMI_CTRL1_WRN_DLY_SEL 0x00C00000
In [PATCH 3/9] mtd: gpmi: add a new field for HW_GPMI_TIMING1,
the above is done in a different way.
#define BM_GPMI_TIMING1_BUSY_TIMEOUT
(0xff << BP_GPMI_TIMING1_BUSY_TIMEOUT)
I think it would be good if we follow the same conventions in all the
places.
> +#define BF_GPMI_CTRL1_WRN_DLY_SEL(v) \
> + (((v)<< BP_GPMI_CTRL1_WRN_DLY_SEL)& BM_GPMI_CTRL1_WRN_DLY_SEL)
> +
> #define BM_GPMI_CTRL1_BCH_MODE (1<< 18)
>
> #define BP_GPMI_CTRL1_DLL_ENABLE 17
Regards,
Vikram
next prev parent reply other threads:[~2012-09-11 18:04 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-11 6:17 [PATCH 0/9] add EDO feature for gpmi-nand driver Huang Shijie
2012-09-11 6:17 ` [PATCH 1/9] mtd: add helpers to set/get features for ONFI nand Huang Shijie
2012-09-11 6:17 ` [PATCH 2/9] mtd: add helpers to get the supportted ONFI timing mode Huang Shijie
2012-09-11 6:17 ` [PATCH 3/9] mtd: gpmi: add a new field for HW_GPMI_TIMING1 Huang Shijie
2012-09-11 18:00 ` Vikram Narayanan
2012-09-12 2:15 ` Huang Shijie
2012-09-12 17:10 ` Vikram Narayanan
2012-09-11 6:17 ` [PATCH 4/9] mtd: gpmi: do not get the clock frequency in gpmi_begin() Huang Shijie
2012-09-11 6:17 ` [PATCH 5/9] mtd: gpmi: add a new field for HW_GPMI_CTRL1 Huang Shijie
2012-09-11 18:04 ` Vikram Narayanan [this message]
2012-09-12 2:18 ` Huang Shijie
2012-09-11 6:17 ` [PATCH 6/9] mtd: gpmi: simplify the setting DLL code Huang Shijie
2012-09-11 18:08 ` Vikram Narayanan
2012-09-12 2:28 ` Huang Shijie
2012-09-12 7:00 ` Huang Shijie
2012-09-11 6:17 ` [PATCH 7/9] mtd: gpmi: do not set the default values for the extra clocks Huang Shijie
2012-09-11 6:17 ` [PATCH 8/9] mtd: gpmi: add EDO feature for imx6q Huang Shijie
2012-09-11 6:17 ` [PATCH 9/9] mtd: gpmi: initialize the timing registers only one time Huang Shijie
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=504F7D2C.5090707@gmail.com \
--to=vikram186@gmail.com \
--cc=b32955@freescale.com \
--cc=dedekind1@gmail.com \
--cc=dirk.behme@de.bosch.com \
--cc=dwmw2@infradead.org \
--cc=ffainelli@freebox.fr \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=shawn.guo@linaro.org \
/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;
as well as URLs for NNTP newsgroup(s).