From patchwork Thu Feb 11 05:20:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: vimal singh X-Patchwork-Id: 78638 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.3) with ESMTP id o1B5JbPB028367 for ; Thu, 11 Feb 2010 05:20:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751266Ab0BKFUr (ORCPT ); Thu, 11 Feb 2010 00:20:47 -0500 Received: from mail-bw0-f219.google.com ([209.85.218.219]:63772 "EHLO mail-bw0-f219.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750938Ab0BKFUr (ORCPT ); Thu, 11 Feb 2010 00:20:47 -0500 Received: by bwz19 with SMTP id 19so21483bwz.28 for ; Wed, 10 Feb 2010 21:20:45 -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=T4tU2cT2Y6XuP5NVgDO3cuetDg9P0Vh7dLnTMAYxoG8=; b=liUSMAY5/96udTdWdRdEDihawBPGDr9+1iv/ysZXy3JF9SqGaAX4Nmnf4A/XRZdIEH oEUhDCHGCmiLkfuTDyqzwcwEbG+ZYUzoO4PMT4OXy9HGuDbMIsApoVOcLoK0niRcjAPC WqAibnjaVsfFnhLQfX6HPfm2Yjg766Lghh15g= 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=oGYRGBdIgYVuKYsTw8Sxb6V8srV7g/Pt0Tb8l8//BfXNkWp4rFyAm0yuuRAWKhjcqx AVVBXm3Az6RRf0Mvq0IfuU/sk4Qm0x7j9KZ1DLoGURCs+aW5f9IanU3Xl+VqjIOuXvlM a25rSx/FSTouYd7IOfUyA4BOTDEw8FGhY4Hp4= MIME-Version: 1.0 Received: by 10.204.34.208 with SMTP id m16mr824600bkd.180.1265865645241; Wed, 10 Feb 2010 21:20:45 -0800 (PST) From: Vimal Singh Date: Thu, 11 Feb 2010 10:50:25 +0530 Message-ID: Subject: [PATCH v2 2/3] OMAP3: Add support for NAND on ZOOM2 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 X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 11 Feb 2010 05:20:48 +0000 (UTC) diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index d3e54da..bd37d6e 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -110,6 +110,7 @@ obj-$(CONFIG_MACH_NOKIA_RX51) += board-rx51.o \ board-rx51-peripherals.o \ hsmmc.o obj-$(CONFIG_MACH_OMAP_ZOOM2) += board-zoom2.o \ + board-zoom-flash.o \ board-zoom-peripherals.o \ hsmmc.o \ board-zoom-debugboard.o diff --git a/arch/arm/mach-omap2/board-zoom2.c b/arch/arm/mach-omap2/board-zoom2.c index 9a26f84..1e39677 100644 --- a/arch/arm/mach-omap2/board-zoom2.c +++ b/arch/arm/mach-omap2/board-zoom2.c @@ -77,10 +77,59 @@ static struct omap_board_mux board_mux[] #define board_mux NULL #endif +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_zoom2_init(void) { omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); zoom_peripherals_init(); + zoom_flash_init(zoom_flash_partitions, ZOOM_NAND_CS); zoom_debugboard_init(); }