public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: mike@compulab•co.il (Mike Rapoport)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH 09/17] ARM: pxa/raumfeld: add NAND partitions
Date: Wed, 25 Nov 2009 17:26:41 +0200	[thread overview]
Message-ID: <4B0D4CB1.4000608@compulab.co.il> (raw)
In-Reply-To: <1259145751-3331-10-git-send-email-daniel@caiaq.de>



Daniel Mack wrote:
> Signed-off-by: Daniel Mack <daniel@caiaq•de>
> ---
>  arch/arm/mach-pxa/raumfeld.c |   36 ++++++++++++++++++++++++++++++++++++
>  1 files changed, 36 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/mach-pxa/raumfeld.c b/arch/arm/mach-pxa/raumfeld.c
> index 5d85f98..66b9af1 100644
> --- a/arch/arm/mach-pxa/raumfeld.c
> +++ b/arch/arm/mach-pxa/raumfeld.c
> @@ -37,6 +37,7 @@
>  #include <mach/pxa3xx-regs.h>
>  #include <mach/mfp-pxa3xx.h>
>  #include <mach/mfp-pxa300.h>
> +#include <mach/pxa3xx_nand.h>
>  #include <mach/ohci.h>
>  
>  #include "generic.h"
> @@ -152,6 +153,40 @@ static void __init raumfeld_eth_init(void)
>  }
>  
>  /**
> + * NAND
> + */
> +static struct mtd_partition raumfeld_nand_partitions[] = {
> +	{
> +		.name		= "Bootloader",
> +		.offset		= 0,
> +		.size		= 0xa0000,
> +		.mask_flags	= MTD_WRITEABLE, /* force read-only */
> +	},
> +	{
> +		.name		= "BootloaderEnvironment",
> +		.offset		= 0xa0000,
> +		.size		= 0x20000,
> +	},
> +	{
> +		.name		= "BootloaderSplashScreen",
> +		.offset		= 0xc0000,
> +		.size		= 0x60000,
> +	},
> +	{
> +		.name		= "UBI",
> +		.offset		= 0x120000,
> +		.size		= MTDPART_SIZ_FULL,
> +	},
> +};
> +
> +static struct pxa3xx_nand_platform_data raumfeld_nand_info = {
> +	.enable_arbiter	= 1,
> +	.keep_config	= 1,
> +	.parts		= raumfeld_nand_partitions,
> +	.nr_parts	= ARRAY_SIZE(raumfeld_nand_partitions),
> +};
> +
> +/**
>   * USB (OHCI) support
>   */
>  static struct pxaohci_platform_data raumfeld_ohci_info = {
> @@ -355,6 +390,7 @@ static void __init raumfeld_common_init(void)
>  	pxa3xx_mfp_config(ARRAY_AND_SIZE(raumfeld_pin_config));
>  	pxa_set_ohci_info(&raumfeld_ohci_info);
>  	platform_add_devices(ARRAY_AND_SIZE(raumfeld_common_devices));
> +	pxa3xx_set_nand_info(&raumfeld_nand_info);

Wouldn't it be nicer to group all the pxa_set_* calls together?

>  }
>  
>  static void __init raumfeld_controller_init(void)

-- 
Sincerely yours,
Mike.

  reply	other threads:[~2009-11-25 15:26 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-25 10:42 ARM: pxa: add support for Raumfeld audio devices Daniel Mack
2009-11-25 10:42 ` [PATCH 01/17] ARM: pxa/raumfeld: add basic structure for devices Daniel Mack
2009-11-25 15:26   ` Mike Rapoport
2009-11-25 15:44     ` Daniel Mack
2009-11-25 16:51     ` Marek Vasut
2009-11-25 17:06       ` Russell King - ARM Linux
2009-11-25 10:42 ` [PATCH 02/17] ARM: pxa/raumfeld: add GPIO definitions Daniel Mack
2009-11-25 10:42 ` [PATCH 03/17] ARM: pxa/raumfeld: add SMSC9220 ethernet support Daniel Mack
2009-11-25 15:26   ` Mike Rapoport
2009-11-25 15:49     ` Daniel Mack
2009-11-25 16:56       ` Russell King - ARM Linux
2009-11-26 17:55         ` Daniel Mack
2009-11-25 10:42 ` [PATCH 04/17] ARM: pxa/raumfeld: add OHCI function Daniel Mack
2009-11-25 10:42 ` [PATCH 05/17] ARM: pxa/raumfeld: add rotary encoder support Daniel Mack
2009-11-25 15:26   ` Mike Rapoport
2009-11-25 15:50     ` Daniel Mack
2009-11-25 16:59     ` Russell King - ARM Linux
2009-11-25 10:42 ` [PATCH 06/17] ARM: pxa/raumfeld: add GPIO buttons Daniel Mack
2009-11-25 10:42 ` [PATCH 07/17] ARM: pxa/raumfeld: add GPIO connected LEDs Daniel Mack
2009-11-25 10:42 ` [PATCH 08/17] ARM: pxa/raumfeld: add one-wire function Daniel Mack
2009-11-25 17:02   ` Russell King - ARM Linux
2009-11-25 10:42 ` [PATCH 09/17] ARM: pxa/raumfeld: add NAND partitions Daniel Mack
2009-11-25 15:26   ` Mike Rapoport [this message]
2009-11-25 10:42 ` [PATCH 10/17] ARM: pxa/raumfeld: add framebuffer and backlight devices Daniel Mack
2009-11-25 10:42 ` [PATCH 11/17] ARM: pxa/raumfeld: add SPI controlled devices Daniel Mack
2009-11-25 10:42 ` [PATCH 12/17] ARM: pxa/raumfeld: add audio related functions Daniel Mack
2009-11-25 11:41   ` Mark Brown
2009-11-25 12:28     ` Daniel Mack
2009-11-25 13:07       ` Mark Brown
2009-11-25 13:53         ` Daniel Mack
2009-11-25 14:00           ` Mark Brown
2009-11-25 17:07   ` Russell King - ARM Linux
2009-11-25 10:42 ` [PATCH 13/17] ARM: pxa/raumfeld: add Marvell Libertas via SDIO Daniel Mack
2009-11-25 11:49   ` Mark Brown
2009-11-25 13:04     ` Daniel Mack
2009-11-25 13:36       ` Mark Brown
2009-11-25 10:42 ` [PATCH 14/17] ARM: pxa/raumfeld: add power supply framework Daniel Mack
2009-11-25 10:42 ` [PATCH 15/17] ARM: pxa/raumfeld: add support for I2C controlled devices Daniel Mack
2009-11-25 10:42 ` [PATCH 16/17] ALSA: ARM: add Raumfeld audio support Daniel Mack
2009-11-25 11:02   ` Mark Brown
2009-11-25 12:24     ` Daniel Mack
2009-11-25 13:29       ` Mark Brown
2009-11-26 17:51         ` Daniel Mack
2009-11-25 10:42 ` [PATCH 17/17] ARM: pxa/raumfeld: Add defconfig Daniel Mack
2009-11-25 11:27 ` ARM: pxa: add support for Raumfeld audio devices Mike Rapoport
2009-11-25 12:14   ` Daniel Mack

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=4B0D4CB1.4000608@compulab.co.il \
    --to=mike@compulab$(echo .)co.il \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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