From patchwork Wed Jan 13 07:03:55 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: vimal singh X-Patchwork-Id: 72518 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.2) with ESMTP id o0D74Hfi006868 for ; Wed, 13 Jan 2010 07:04:18 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753381Ab0AMHER (ORCPT ); Wed, 13 Jan 2010 02:04:17 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751312Ab0AMHER (ORCPT ); Wed, 13 Jan 2010 02:04:17 -0500 Received: from mail-bw0-f227.google.com ([209.85.218.227]:38347 "EHLO mail-bw0-f227.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751453Ab0AMHEQ (ORCPT ); Wed, 13 Jan 2010 02:04:16 -0500 Received: by bwz27 with SMTP id 27so1719055bwz.21 for ; Tue, 12 Jan 2010 23:04:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:cc:content-type; bh=lhdNht8kexfxq3Pn59xoK3a9iJqEiinCt7cLQLedY+M=; b=pDjWnn0yiZXkqNeFNOxeV5+WIynNSHMFVJBY7DOLxjCCCyjERHmoCEQBDm5PWrC17G FrO+jFTpRiKK6l+fJL/ZVOkaf/YiCJItYkWuDQU/BYiio7JWOXtPcyLFqnCNGw02YJL/ 7BUbXQt3KgYVcjGYdkJa4oLSM9FydMeMtJjpk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:cc:content-type; b=iKaXIwIpP6aNqz0iYYxWIyUruZm6Tln+IUx2dliIwHfbDWbtajS9az75TdcKLe2lOG q5dHZhwkTIzXokJu0IpidHuRd4ALMPjAgYzrAf3LsN7d+ewk35Kb6rLDeQFY0FGAhOAI ERL+Ze7V0Bk0gNlUn4IxjSzctzpCSMiDjUTpc= MIME-Version: 1.0 Received: by 10.204.157.26 with SMTP id z26mr4921498bkw.124.1263366255143; Tue, 12 Jan 2010 23:04:15 -0800 (PST) From: Vimal Singh Date: Wed, 13 Jan 2010 12:33:55 +0530 Message-ID: Subject: [PATCH 3/3] OMAP3: Add support for NAND on ZOOM3 board To: linux-omap@vger.kernel.org Cc: Tony Lindgren Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 434310e..f9b8473 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -97,6 +97,7 @@ obj-$(CONFIG_MACH_OMAP_ZOOM2) += board-zoom2.o \ mmc-twl4030.o \ board-zoom-debugboard.o obj-$(CONFIG_MACH_OMAP_ZOOM3) += board-zoom3.o \ + board-zoom-flash.o \ board-zoom-peripherals.o \ mmc-twl4030.o \ board-zoom-debugboard.o diff --git a/arch/arm/mach-omap2/board-zoom3.c b/arch/arm/mach-omap2/board-zoom3.c index a9fe918..3b5e45a 100644 --- a/arch/arm/mach-omap2/board-zoom3.c +++ b/arch/arm/mach-omap2/board-zoom3.c @@ -33,6 +33,54 @@ static void __init omap_zoom_map_io(void) static struct omap_board_config_kernel zoom_config[] __initdata = { }; +static struct mtd_partition zoom_nand_partitions[] = { + /* All the partition sizes are listed in terms of NAND block size */ + { + .name = "X-Loader-NAND", + .offset = 0, + .size = 4 * (64 * 2048), /* 512KB, 0x80000 */ + .mask_flags = MTD_WRITEABLE, /* force read-only */ + }, + { + .name = "U-Boot-NAND", + .offset = MTDPART_OFS_APPEND, /* Offset = 0x80000 */ + .size = 10 * (64 * 2048), /* 1.25MB, 0x140000 */ + .mask_flags = MTD_WRITEABLE, /* force read-only */ + }, + { + .name = "Boot Env-NAND", + .offset = MTDPART_OFS_APPEND, /* Offset = 0x1c0000 */ + .size = 2 * (64 * 2048), /* 256KB, 0x40000 */ + }, + { + .name = "Kernel-NAND", + .offset = MTDPART_OFS_APPEND, /* Offset = 0x0200000*/ + .size = 240 * (64 * 2048), /* 30M, 0x1E00000 */ + }, + { + .name = "system", + .offset = MTDPART_OFS_APPEND, /* Offset = 0x2000000 */ + .size = 1280 * (64 * 2048), /* 160M, 0xA000000 */ + }, + { + .name = "userdata", + .offset = MTDPART_OFS_APPEND, /* Offset = 0xC000000 */ + .size = 256 * (64 * 2048), /* 32M, 0x2000000 */ + }, + { + .name = "cache", + .offset = MTDPART_OFS_APPEND, /* Offset = 0xE000000 */ + .size = 256 * (64 * 2048), /* 32M, 0x2000000 */ + }, +}; + +static struct flash_partitions zoom_flash_partitions[] = { + { + .parts = zoom_nand_partitions, + .nr_parts = ARRAY_SIZE(zoom_nand_partitions), + }, +}; + static void __init omap_zoom_init_irq(void) { omap_board_config = zoom_config; @@ -55,6 +103,7 @@ static void __init omap_zoom_init(void) { omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); zoom_peripherals_init(); + zoom_flash_init(zoom_flash_partitions, ZOOM_NAND_CS); zoom_debugboard_init(); }