public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 3/7] sunxi: Enable UBI and NAND support
Date: Tue, 8 Nov 2016 17:27:48 +0100	[thread overview]
Message-ID: <20161108172748.5a920362@bbrezillon> (raw)
In-Reply-To: <6c44b7aa93af6ffd76d4d0bee5713f087e082c62.1478621974.git-series.maxime.ripard@free-electrons.com>

On Tue,  8 Nov 2016 17:21:13 +0100
Maxime Ripard <maxime.ripard@free-electrons.com> wrote:

> From: Hans de Goede <hdegoede@redhat.com>
> 
> Enable the NAND and UBI support in the configuration header so that we can
> (finally) use it.
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> ---
>  include/configs/sunxi-common.h | 26 ++++++++++++++++++++++----
>  1 file changed, 22 insertions(+), 4 deletions(-)
> 
> diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h
> index 8363414828fa..1733767ba53b 100644
> --- a/include/configs/sunxi-common.h
> +++ b/include/configs/sunxi-common.h
> @@ -129,9 +129,23 @@
>  #define CONFIG_SERIAL_TAG
>  
>  #ifdef CONFIG_NAND_SUNXI
> +#define CONFIG_SYS_NAND_U_BOOT_OFFS	(8 << 20) /* 8 MiB */

Can we make this configurable through Kconfig?

>  #define CONFIG_SYS_NAND_MAX_ECCPOS 1664
>  #define CONFIG_SYS_NAND_ONFI_DETECTION
>  #define CONFIG_SYS_MAX_NAND_DEVICE 8
> +
> +/* Requirements for UBI */
> +#define CONFIG_RBTREE
> +#define CONFIG_LZO
> +#define CONFIG_CMD_MTDPARTS
> +#define CONFIG_CMD_UBI
> +#define CONFIG_CMD_UBIFS
> +#define CONFIG_MTD_DEVICE
> +
> +#define CONFIG_MTD_PARTITIONS
> +
> +#define CONFIG_CMD_NAND
> +#define CONFIG_CMD_NAND_TRIMFFS
>  #endif
>  
>  #ifdef CONFIG_SPL_SPI_SUNXI
> @@ -143,7 +157,14 @@
>  #define CONFIG_GENERIC_MMC
>  #define CONFIG_MMC_SUNXI
>  #define CONFIG_MMC_SUNXI_SLOT		0
> -#define CONFIG_ENV_IS_IN_MMC
> +#endif
> +
> +#if defined(CONFIG_ENV_IS_IN_NAND)
> +#define CONFIG_ENV_OFFSET			0xc00000
> +#define CONFIG_ENV_SIZE				0x400000

Ditto.

> +#elif defined(CONFIG_ENV_IS_IN_MMC)
> +#define CONFIG_ENV_OFFSET			(544 << 10) /* (8 + 24 + 512) KiB */
> +#define CONFIG_ENV_SIZE				(128 << 10) /* 128 KiB */
>  #define CONFIG_SYS_MMC_ENV_DEV		0	/* first detected MMC controller */
>  #endif
>  
> @@ -175,9 +196,6 @@
>  
>  #define CONFIG_SYS_MONITOR_LEN		(768 << 10)	/* 768 KiB */
>  
> -#define CONFIG_ENV_OFFSET		(544 << 10) /* (8 + 24 + 512) KiB */
> -#define CONFIG_ENV_SIZE			(128 << 10)	/* 128 KiB */
> -
>  #define CONFIG_FAT_WRITE	/* enable write access */
>  
>  #define CONFIG_SPL_FRAMEWORK

  parent reply	other threads:[~2016-11-08 16:27 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-08 16:21 [U-Boot] [PATCH 0/7] sunxi: Add support for the CHIP Pro Maxime Ripard
2016-11-08 16:21 ` [U-Boot] [PATCH 1/7] sunxi: Sync GR8 DTS and AXP209 with the kernel Maxime Ripard
2016-11-14 11:15   ` Hans de Goede
2016-11-08 16:21 ` [U-Boot] [PATCH 2/7] mtd: nand: add support for the TC58NVG2S0H chip Maxime Ripard
2016-11-14 11:15   ` Hans de Goede
2016-11-15  5:04   ` Scott Wood
2016-11-08 16:21 ` [U-Boot] [PATCH 3/7] sunxi: Enable UBI and NAND support Maxime Ripard
2016-11-08 16:27   ` Boris Brezillon
2016-11-08 16:27   ` Boris Brezillon [this message]
2016-11-09 14:32     ` Maxime Ripard
2016-11-09 14:57       ` Boris Brezillon
2016-11-14 11:18   ` Hans de Goede
2016-11-14 14:09     ` Maxime Ripard
2016-11-14 14:12       ` Hans de Goede
2016-11-14 14:12     ` Maxime Ripard
2016-11-14 14:21       ` Hans de Goede
2016-11-14 17:03         ` Tom Rini
2016-11-17 22:27         ` Maxime Ripard
2016-11-08 16:21 ` [U-Boot] [PATCH 4/7] tools: sunxi: Add spl image builder Maxime Ripard
2016-11-08 16:29   ` Boris Brezillon
2016-11-08 20:45     ` Maxime Ripard
2016-11-11 16:20   ` Tom Rini
2016-11-14 15:20     ` Maxime Ripard
2016-11-14 15:25       ` Tom Rini
2016-11-14 18:58         ` Maxime Ripard
2016-11-14 18:59           ` Tom Rini
2016-11-14 11:18   ` Hans de Goede
2016-11-14 11:29     ` Hans de Goede
2016-11-14 13:53       ` Maxime Ripard
2016-11-14 14:01         ` Hans de Goede
2016-11-08 16:21 ` [U-Boot] [PATCH 5/7] nand: sunxi: Add options for the SPL NAND configuration Maxime Ripard
2016-11-08 16:31   ` Boris Brezillon
2016-11-14 11:19   ` Hans de Goede
2016-11-15  5:07   ` Scott Wood
2016-11-08 16:21 ` [U-Boot] [PATCH 6/7] scripts: sunxi: Build an raw SPL image Maxime Ripard
2016-11-08 16:33   ` Boris Brezillon
2016-11-14 11:19   ` Hans de Goede
2016-11-14 11:30     ` Hans de Goede
2016-11-08 16:21 ` [U-Boot] [PATCH 7/7] sunxi: Add support for the CHIP Pro Maxime Ripard
2016-11-14 11:20   ` Hans de Goede
2016-11-09  7:47 ` [U-Boot] [PATCH 0/7] " Heiko Schocher
2016-11-09 14:44   ` Maxime Ripard
2016-11-10 11:57     ` Heiko Schocher
2016-11-11 16:24       ` Tom Rini

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=20161108172748.5a920362@bbrezillon \
    --to=boris.brezillon@free-electrons.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