linux-omap2 git: add LED and NAND drivers
authorKoen Kooi <koen@openembedded.org>
Fri, 30 May 2008 12:33:50 +0000 (12:33 +0000)
committerKoen Kooi <koen@openembedded.org>
Fri, 30 May 2008 12:33:50 +0000 (12:33 +0000)
packages/linux/linux-omap2-git/beagleboard/0001-omap3beagle-add-a-platform-device-to-hook-up-the-GP.patch [new file with mode: 0644]
packages/linux/linux-omap2-git/beagleboard/defconfig
packages/linux/linux-omap2-git/beagleboard/flash.patch [new file with mode: 0644]
packages/linux/linux-omap2_git.bb

diff --git a/packages/linux/linux-omap2-git/beagleboard/0001-omap3beagle-add-a-platform-device-to-hook-up-the-GP.patch b/packages/linux/linux-omap2-git/beagleboard/0001-omap3beagle-add-a-platform-device-to-hook-up-the-GP.patch
new file mode 100644 (file)
index 0000000..17329be
--- /dev/null
@@ -0,0 +1,69 @@
+From 7a444ee080c5f1a62ac5042f1e7926622b3e1ce7 Mon Sep 17 00:00:00 2001
+From: Koen Kooi <koen@openembedded.org>
+Date: Fri, 30 May 2008 13:43:36 +0200
+Subject: [PATCH] ARM: OMAP: omap3beagle: add a platform device to hook up the GPIO leds to the leds-gpio driver
+
+omap3beagle: add a platform device to hook up the GPIO leds to the leds-gpio driver
+ * on revision A5 and earlier board the two leds can't be controlled seperately, should be fixed in rev. B and C boards.
+
+Signed-off-by: Koen Kooi <koen@openembedded.org>
+---
+ arch/arm/mach-omap2/board-omap3beagle.c |   28 ++++++++++++++++++++++++++++
+ 1 files changed, 28 insertions(+), 0 deletions(-)
+
+diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
+index c992cc7..83891fc 100644
+--- a/arch/arm/mach-omap2/board-omap3beagle.c
++++ b/arch/arm/mach-omap2/board-omap3beagle.c
+@@ -19,6 +19,7 @@
+ #include <linux/err.h>
+ #include <linux/clk.h>
+ #include <linux/io.h>
++#include <linux/leds.h>
+ #include <asm/hardware.h>
+ #include <asm/mach-types.h>
+@@ -72,6 +73,32 @@ static struct omap_lcd_config omap3_beagle_lcd_config __initdata = {
+       .ctrl_name      = "internal",
+ };
++struct gpio_led gpio_leds[] = {
++      {
++              .name = "beagleboard::led0",
++              .default_trigger = "none",
++              .gpio = 149,
++      },
++      {
++              .name = "beagleboard::led1",
++              .default_trigger = "none",
++              .gpio = 150,
++      },
++};
++
++static struct gpio_led_platform_data gpio_led_info = {
++      .leds = gpio_leds,
++      .num_leds = ARRAY_SIZE(gpio_leds),
++};
++
++static struct platform_device leds_gpio = {
++      .name = "leds-gpio",
++      .id   = -1,
++      .dev  = {
++              .platform_data = &gpio_led_info,
++      },
++};
++
+ static struct omap_board_config_kernel omap3_beagle_config[] __initdata = {
+       { OMAP_TAG_UART,        &omap3_beagle_uart_config },
+       { OMAP_TAG_MMC,         &omap3beagle_mmc_config },
+@@ -83,6 +110,7 @@ static struct platform_device *omap3_beagle_devices[] __initdata = {
+ #ifdef CONFIG_RTC_DRV_TWL4030
+       &omap3_beagle_twl4030rtc_device,
+ #endif
++      &leds_gpio,
+ };
+ static void __init omap3_beagle_init(void)
+-- 
+1.5.4.3
+
index ba27d9d..15f1b47 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
 # Linux kernel version: 2.6.26-rc4-omap1
-# Thu May 29 00:40:28 2008
+# Fri May 30 14:03:36 2008
 #
 CONFIG_ARM=y
 CONFIG_SYS_SUPPORTS_APM_EMULATION=y
@@ -179,9 +179,7 @@ CONFIG_OMAP_BOOT_TAG=y
 CONFIG_OMAP_BOOT_REASON=y
 # CONFIG_OMAP_COMPONENT_VERSION is not set
 # CONFIG_OMAP_GPIO_SWITCH is not set
-CONFIG_OMAP_MUX=y
-CONFIG_OMAP_MUX_DEBUG=y
-CONFIG_OMAP_MUX_WARNINGS=y
+# CONFIG_OMAP_MUX is not set
 CONFIG_OMAP_MCBSP=y
 # CONFIG_OMAP_MMU_FWK is not set
 # CONFIG_OMAP_MBOX_FWK is not set
@@ -192,7 +190,6 @@ CONFIG_OMAP_DM_TIMER=y
 # CONFIG_OMAP_LL_DEBUG_UART1 is not set
 # CONFIG_OMAP_LL_DEBUG_UART2 is not set
 CONFIG_OMAP_LL_DEBUG_UART3=y
-CONFIG_OMAP_SERIAL_WAKE=y
 CONFIG_ARCH_OMAP34XX=y
 CONFIG_ARCH_OMAP3430=y
 
@@ -273,7 +270,7 @@ CONFIG_SPLIT_PTLOCK_CPUS=4
 CONFIG_ZONE_DMA_FLAG=1
 CONFIG_BOUNCE=y
 CONFIG_VIRT_TO_BUS=y
-# CONFIG_LEDS is not set
+CONFIG_LEDS=y
 CONFIG_ALIGNMENT_TRAP=y
 
 #
@@ -514,7 +511,7 @@ CONFIG_MTD_PARTITIONS=y
 CONFIG_MTD_CHAR=y
 CONFIG_MTD_BLKDEVS=y
 CONFIG_MTD_BLOCK=y
-CONFIG_FTL=y
+CONFIG_FTL=n
 # CONFIG_NFTL is not set
 # CONFIG_INFTL is not set
 # CONFIG_RFD_FTL is not set
@@ -566,6 +563,7 @@ CONFIG_MTD_NAND=y
 # CONFIG_MTD_NAND_VERIFY_WRITE is not set
 # CONFIG_MTD_NAND_ECC_SMC is not set
 # CONFIG_MTD_NAND_MUSEUM_IDS is not set
+CONFIG_MTD_NAND_OMAP2=y
 CONFIG_MTD_NAND_IDS=y
 # CONFIG_MTD_NAND_DISKONCHIP is not set
 # CONFIG_MTD_NAND_NANDSIM is not set
@@ -1451,7 +1449,7 @@ CONFIG_LEDS_CLASS=y
 # CONFIG_LEDS_OMAP_DEBUG is not set
 # CONFIG_LEDS_OMAP is not set
 # CONFIG_LEDS_OMAP_PWM is not set
-CONFIG_LEDS_GPIO=m
+CONFIG_LEDS_GPIO=y
 
 #
 # LED Triggers
diff --git a/packages/linux/linux-omap2-git/beagleboard/flash.patch b/packages/linux/linux-omap2-git/beagleboard/flash.patch
new file mode 100644 (file)
index 0000000..4c76cd9
--- /dev/null
@@ -0,0 +1,558 @@
+diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
+index 13d0043..d582b8f 100644
+--- a/arch/arm/mach-omap2/Makefile
++++ b/arch/arm/mach-omap2/Makefile
+@@ -44,7 +44,8 @@ obj-$(CONFIG_MACH_OMAP3EVM)          += board-omap3evm.o \
+                                          board-omap3evm-flash.o
+ obj-$(CONFIG_MACH_OMAP3_BEAGLE)               += board-omap3beagle.o \
+                                          usb-musb.o usb-ehci.o \
+-                                         hsmmc.o
++                                         hsmmc.o \
++                                         board-omap3beagle-flash.o
+ obj-$(CONFIG_MACH_OMAP_LDP)           += board-ldp.o \
+                                          hsmmc.o \
+                                          usb-musb.o
+diff --git a/arch/arm/mach-omap2/board-omap3beagle-flash.c b/arch/arm/mach-omap2/board-omap3beagle-flash.c
+new file mode 100644
+index 0000000..5346df0
+--- /dev/null
++++ b/arch/arm/mach-omap2/board-omap3beagle-flash.c
+@@ -0,0 +1,119 @@
++/*
++ * board-omap3beagle-flash.c
++ * 
++ * Copyright (c) 2008 Texas Instruments
++ *
++ * Modified from board-omap3evm-flash.c
++ *
++ * This program is free software; you can redistribute it and/or modify
++ * it under the terms of the GNU General Public License version 2 as
++ * published by the Free Software Foundation.
++ */
++
++#include <linux/kernel.h>
++#include <linux/platform_device.h>
++#include <linux/mtd/mtd.h>
++#include <linux/mtd/partitions.h>
++#include <linux/mtd/nand.h>
++#include <linux/types.h>
++#include <linux/io.h>
++
++#include <asm/mach/flash.h>
++#include <asm/arch/board.h>
++#include <asm/arch/gpmc.h>
++#include <asm/arch/nand.h>
++
++#define GPMC_CS0_BASE  0x60
++#define GPMC_CS_SIZE   0x30
++
++static struct mtd_partition omap3beagle_nand_partitions[] = {
++      /* All the partition sizes are listed in terms of NAND block size */
++      {
++              .name           = "X-Loader",
++              .offset         = 0,
++              .size           = 4*(64 * 2048),        
++              .mask_flags     = MTD_WRITEABLE,        /* force read-only */
++      },
++      {
++              .name           = "U-Boot",
++              .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x80000 */
++              .size           = 15*(64 * 2048),
++              .mask_flags     = MTD_WRITEABLE,        /* force read-only */
++      },
++      {
++              .name           = "U-Boot Env",
++              .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x260000 */
++              .size           = 1*(64 * 2048),
++      },
++      {
++              .name           = "Kernel",
++              .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x280000 */
++              .size           = 32*(64 * 2048),
++      },
++      {
++              .name           = "File System",
++              .offset         = MTDPART_OFS_APPEND,   /* Offset = 0x680000 */
++              .size           = MTDPART_SIZ_FULL,
++      },
++};
++
++static struct omap_nand_platform_data omap3beagle_nand_data = {
++      .parts          = omap3beagle_nand_partitions,
++      .nr_parts       = ARRAY_SIZE(omap3beagle_nand_partitions),
++      .dma_channel    = -1,           /* disable DMA in OMAP NAND driver */
++      .nand_setup     = NULL,
++      .dev_ready      = NULL,
++};
++
++static struct resource omap3beagle_nand_resource = {
++      .flags          = IORESOURCE_MEM,
++};
++
++static struct platform_device omap3beagle_nand_device = {
++      .name           = "omap2-nand",
++      .id             = -1,
++      .dev            = {
++              .platform_data  = &omap3beagle_nand_data,
++      },
++      .num_resources  = 1,
++      .resource       = &omap3beagle_nand_resource,
++};
++
++
++void __init omap3beagle_flash_init(void)
++{
++      u8 cs = 0;
++      u8 nandcs = GPMC_CS_NUM + 1;
++
++      u32 gpmc_base_add = OMAP34XX_GPMC_VIRT;
++
++      /* find out the chip-select on which NAND exists */
++      while (cs < GPMC_CS_NUM) {
++              u32 ret = 0;
++              ret = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1);
++
++              if ((ret & 0xC00) == 0x800) {
++                      printk(KERN_INFO "Found NAND on CS%d\n", cs);
++                      if (nandcs > GPMC_CS_NUM)
++                              nandcs = cs;
++              }
++              cs++;
++      }
++
++      if (nandcs > GPMC_CS_NUM) {
++              printk(KERN_INFO "NAND: Unable to find configuration "
++                               "in GPMC\n ");
++              return;
++      }
++
++      if (nandcs < GPMC_CS_NUM) {
++              omap3beagle_nand_data.cs = nandcs;
++              omap3beagle_nand_data.gpmc_cs_baseaddr = (void *)(gpmc_base_add +
++                      GPMC_CS0_BASE + nandcs * GPMC_CS_SIZE);
++              omap3beagle_nand_data.gpmc_baseaddr = (void *) (gpmc_base_add);
++
++              printk(KERN_INFO "Registering NAND on CS%d\n", nandcs);
++              if (platform_device_register(&omap3beagle_nand_device) < 0)
++                      printk(KERN_ERR "Unable to register NAND device\n");
++      }
++}
+diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
+index c992cc7..99e042e 100644
+--- a/arch/arm/mach-omap2/board-omap3beagle.c
++++ b/arch/arm/mach-omap2/board-omap3beagle.c
+@@ -94,6 +94,7 @@ static void __init omap3_beagle_init(void)
+       hsmmc_init();
+       usb_musb_init();
+       usb_ehci_init();
++      omap3beagle_flash_init();
+ }
+ arch_initcall(omap3_beagle_i2c_init);
+diff --git a/drivers/mtd/nand/Kconfig b/drivers/mtd/nand/Kconfig
+index 3d5e432..02b9ced 100644
+--- a/drivers/mtd/nand/Kconfig
++++ b/drivers/mtd/nand/Kconfig
+@@ -71,7 +71,7 @@ config MTD_NAND_AMS_DELTA
+ config MTD_NAND_OMAP2
+       tristate "NAND Flash device on OMAP 2420H4/2430SDP boards"
+-      depends on (ARM && ARCH_OMAP2 && MTD_NAND)
++      depends on ARM && MTD_NAND && (ARCH_OMAP2 || ARCH_OMAP3)
+       help
+           Support for NAND flash on Texas Instruments 2430SDP/2420H4 platforms.
+diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
+index 3b7307c..3aac1d2 100644
+--- a/drivers/mtd/nand/omap2.c
++++ b/drivers/mtd/nand/omap2.c
+@@ -111,15 +111,6 @@
+ static const char *part_probes[] = { "cmdlinepart", NULL };
+ #endif
+-static int hw_ecc = 1;
+-
+-/* new oob placement block for use with hardware ecc generation */
+-static struct nand_ecclayout omap_hw_eccoob = {
+-      .eccbytes = 12,
+-      .eccpos = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13},
+-      .oobfree = {{16, 32}, {33, 63} },
+-};
+-
+ struct omap_nand_info {
+       struct nand_hw_control          controller;
+       struct omap_nand_platform_data  *pdata;
+@@ -133,6 +124,13 @@ struct omap_nand_info {
+       void __iomem                    *gpmc_cs_baseaddr;
+       void __iomem                    *gpmc_baseaddr;
+ };
++
++/*
++ * omap_nand_wp - This function enable or disable the Write Protect feature on
++ * NAND device
++ * @mtd: MTD device structure
++ * @mode: WP ON/OFF
++ */
+ static void omap_nand_wp(struct mtd_info *mtd, int mode)
+ {
+       struct omap_nand_info *info = container_of(mtd,
+@@ -189,11 +187,11 @@ static void omap_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int ctrl)
+ }
+ /*
+-* omap_read_buf - read data from NAND controller into buffer
+-* @mtd: MTD device structure
+-* @buf: buffer to store date
+-* @len: number of bytes to read
+-*/
++ * omap_read_buf - read data from NAND controller into buffer
++ * @mtd: MTD device structure
++ * @buf: buffer to store date
++ * @len: number of bytes to read
++ */
+ static void omap_read_buf(struct mtd_info *mtd, u_char *buf, int len)
+ {
+       struct omap_nand_info *info = container_of(mtd,
+@@ -207,11 +205,11 @@ static void omap_read_buf(struct mtd_info *mtd, u_char *buf, int len)
+ }
+ /*
+-* omap_write_buf - write buffer to NAND controller
+-* @mtd: MTD device structure
+-* @buf: data buffer
+-* @len: number of bytes to write
+-*/
++ * omap_write_buf - write buffer to NAND controller
++ * @mtd: MTD device structure
++ * @buf: data buffer
++ * @len: number of bytes to write
++ */
+ static void omap_write_buf(struct mtd_info *mtd, const u_char * buf, int len)
+ {
+       struct omap_nand_info *info = container_of(mtd,
+@@ -250,10 +248,16 @@ static int omap_verify_buf(struct mtd_info *mtd, const u_char * buf, int len)
+       return 0;
+ }
++#ifdef CONFIG_MTD_NAND_OMAP_HWECC
++/*
++ * omap_hwecc_init-Initialize the Hardware ECC for NAND flash in GPMC controller
++ * @mtd: MTD device structure
++ */
+ static void omap_hwecc_init(struct mtd_info *mtd)
+ {
+       struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
+                                                       mtd);
++      register struct nand_chip *chip = mtd->priv;
+       unsigned long val = 0x0;
+       /* Read from ECC Control Register */
+@@ -264,16 +268,15 @@ static void omap_hwecc_init(struct mtd_info *mtd)
+       /* Read from ECC Size Config Register */
+       val = __raw_readl(info->gpmc_baseaddr + GPMC_ECC_SIZE_CONFIG);
+-      /* ECCSIZE1=512 | ECCSIZE0=8bytes | Select eccResultsize[0123] */
+-      val = ((0x000000FF<<22) | (0x00000003<<12) | (0x0000000F));
++      /* ECCSIZE1=512 | Select eccResultsize[0-3] */
++      val = ((((chip->ecc.size >> 1) - 1) << 22) | (0x0000000F));
+       __raw_writel(val, info->gpmc_baseaddr + GPMC_ECC_SIZE_CONFIG);
+-
+-
+ }
+ /*
+- * This function will generate true ECC value, which can be used
++ * gen_true_ecc - This function will generate true ECC value, which can be used
+  * when correcting data read from NAND flash memory core
++ * @ecc_buf: buffer to store ecc code
+  */
+ static void gen_true_ecc(u8 *ecc_buf)
+ {
+@@ -289,8 +292,12 @@ static void gen_true_ecc(u8 *ecc_buf)
+ }
+ /*
+- * This function compares two ECC's and indicates if there is an error.
+- * If the error can be corrected it will be corrected to the buffer
++ * omap_compare_ecc - This function compares two ECC's and indicates if there
++ * is an error. If the error can be corrected it will be corrected to the
++ * buffer
++ * @ecc_data1:  ecc code from nand spare area
++ * @ecc_data2:  ecc code from hardware register obtained from hardware ecc
++ * @page_data:  page data
+  */
+ static int omap_compare_ecc(u8 *ecc_data1,    /* read from NAND memory */
+                           u8 *ecc_data2,      /* read from register */
+@@ -409,6 +416,14 @@ static int omap_compare_ecc(u8 *ecc_data1,        /* read from NAND memory */
+       }
+ }
++/*
++ * omap_correct_data - Compares the ecc read from nand spare area with ECC
++ * registers values and corrects one bit error if it has occured
++ * @mtd: MTD device structure
++ * @dat: page data
++ * @read_ecc: ecc read from nand flash
++ * @calc_ecc: ecc read from ECC registers
++ */
+ static int omap_correct_data(struct mtd_info *mtd, u_char * dat,
+                               u_char * read_ecc, u_char * calc_ecc)
+ {
+@@ -436,65 +451,64 @@ static int omap_correct_data(struct mtd_info *mtd, u_char * dat,
+ }
+ /*
+-** Generate non-inverted ECC bytes.
+-**
+-** Using noninverted ECC can be considered ugly since writing a blank
+-** page ie. padding will clear the ECC bytes. This is no problem as long
+-** nobody is trying to write data on the seemingly unused page.
+-**
+-** Reading an erased page will produce an ECC mismatch between
+-** generated and read ECC bytes that has to be dealt with separately.
+-*/
++ * omap_calcuate_ecc - Generate non-inverted ECC bytes.
++ * Using noninverted ECC can be considered ugly since writing a blank
++ * page ie. padding will clear the ECC bytes. This is no problem as long
++ * nobody is trying to write data on the seemingly unused page. Reading
++ * an erased page will produce an ECC mismatch between generated and read
++ * ECC bytes that has to be dealt with separately.
++ * @mtd: MTD device structure
++ * @dat: The pointer to data on which ecc is computed
++ * @ecc_code: The ecc_code buffer
++ */
+ static int omap_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
+                               u_char *ecc_code)
+ {
+       struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
+                                                       mtd);
+       unsigned long val = 0x0;
+-      unsigned long reg, n;
+-
+-      /* Ex NAND_ECC_HW12_2048 */
+-      if ((info->nand.ecc.mode == NAND_ECC_HW) &&
+-              (info->nand.ecc.size  == 2048))
+-              n = 4;
+-      else
+-              n = 1;
++      unsigned long reg;
+       /* Start Reading from HW ECC1_Result = 0x200 */
+       reg = (unsigned long)(info->gpmc_baseaddr + GPMC_ECC1_RESULT);
+-      while (n--) {
+-              val = __raw_readl(reg);
+-              *ecc_code++ = val;              /* P128e, ..., P1e */
+-              *ecc_code++ = val >> 16;        /* P128o, ..., P1o */
+-              /* P2048o, P1024o, P512o, P256o, P2048e, P1024e, P512e, P256e */
+-              *ecc_code++ = ((val >> 8) & 0x0f) | ((val >> 20) & 0xf0);
+-              reg += 4;
+-      }
++      val = __raw_readl(reg);
++      *ecc_code++ = val;          /* P128e, ..., P1e */
++      *ecc_code++ = val >> 16;    /* P128o, ..., P1o */
++      /* P2048o, P1024o, P512o, P256o, P2048e, P1024e, P512e, P256e */
++      *ecc_code++ = ((val >> 8) & 0x0f) | ((val >> 20) & 0xf0);
++      reg += 4;
+       return 0;
+-} /* omap_calculate_ecc */
++}
++/*
++ * omap_enable_hwecc - This function enables the hardware ecc functionality
++ * @mtd: MTD device structure
++ * @mode: Read/Write mode
++ */
+ static void omap_enable_hwecc(struct mtd_info *mtd, int mode)
+ {
+       struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
+                                                       mtd);
++      register struct nand_chip *chip = mtd->priv;
++      unsigned int dev_width = (chip->options & NAND_BUSWIDTH_16) ? 1 : 0;
+       unsigned long val = __raw_readl(info->gpmc_baseaddr + GPMC_ECC_CONFIG);
+       switch (mode) {
+       case NAND_ECC_READ    :
+               __raw_writel(0x101, info->gpmc_baseaddr + GPMC_ECC_CONTROL);
+-              /* ECC 16 bit col) | ( CS 0 )  | ECC Enable */
+-              val = (1 << 7) | (0x0) | (0x1) ;
++              /* (ECC 16 or 8 bit col) | ( CS  )  | ECC Enable */
++              val = (dev_width << 7) | (info->gpmc_cs << 1) | (0x1);
+               break;
+       case NAND_ECC_READSYN :
+-              __raw_writel(0x100, info->gpmc_baseaddr + GPMC_ECC_CONTROL);
+-              /* ECC 16 bit col) | ( CS 0 )  | ECC Enable */
+-              val = (1 << 7) | (0x0) | (0x1) ;
++               __raw_writel(0x100, info->gpmc_baseaddr + GPMC_ECC_CONTROL);
++              /* (ECC 16 or 8 bit col) | ( CS  )  | ECC Enable */
++              val = (dev_width << 7) | (info->gpmc_cs << 1) | (0x1);
+               break;
+       case NAND_ECC_WRITE   :
+               __raw_writel(0x101, info->gpmc_baseaddr + GPMC_ECC_CONTROL);
+-              /* ECC 16 bit col) | ( CS 0 )  | ECC Enable */
+-              val = (1 << 7) | (0x0) | (0x1) ;
++              /* (ECC 16 or 8 bit col) | ( CS  )  | ECC Enable */
++              val = (dev_width << 7) | (info->gpmc_cs << 1) | (0x1);
+               break;
+       default:
+               DEBUG(MTD_DEBUG_LEVEL0, "Error: Unrecognized Mode[%d]!\n",
+@@ -504,7 +518,38 @@ static void omap_enable_hwecc(struct mtd_info *mtd, int mode)
+       __raw_writel(val, info->gpmc_baseaddr + GPMC_ECC_CONFIG);
+ }
++#endif
++/*
++ * omap_wait - Wait function is called during Program and erase
++ * operations and the way it is called from MTD layer, we should wait
++ * till the NAND chip is ready after the programming/erase operation
++ * has completed.
++ * @mtd: MTD device structure
++ * @chip: NAND Chip structure
++ */
++static int omap_wait(struct mtd_info *mtd, struct nand_chip *chip)
++{
++      register struct nand_chip *this = mtd->priv;
++      struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
++                                                      mtd);
++      int status = 0;
++
++      this->IO_ADDR_W = (void *) info->gpmc_cs_baseaddr +
++                                              GPMC_CS_NAND_COMMAND;
++      this->IO_ADDR_R = (void *) info->gpmc_cs_baseaddr + GPMC_CS_NAND_DATA;
++
++      while (!(status & 0x40)) {
++               __raw_writeb(NAND_CMD_STATUS & 0xFF, this->IO_ADDR_W);
++              status = __raw_readb(this->IO_ADDR_R);
++      }
++      return status;
++}
++
++/*
++ * omap_dev_ready - calls the platform specific dev_ready function
++ * @mtd: MTD device structure
++ */
+ static int omap_dev_ready(struct mtd_info *mtd)
+ {
+       struct omap_nand_info *info = container_of(mtd, struct omap_nand_info,
+@@ -534,7 +579,7 @@ static int __devinit omap_nand_probe(struct platform_device *pdev)
+       struct omap_nand_info           *info;
+       struct omap_nand_platform_data  *pdata;
+       int                             err;
+-      unsigned long val;
++      unsigned long                   val;
+       pdata = pdev->dev.platform_data;
+@@ -568,15 +613,20 @@ static int __devinit omap_nand_probe(struct platform_device *pdev)
+       }
+       /* Enable RD PIN Monitoring Reg */
+-      val  = gpmc_cs_read_reg(info->gpmc_cs, GPMC_CS_CONFIG1);
+-      val |= WR_RD_PIN_MONITORING;
+-      gpmc_cs_write_reg(info->gpmc_cs, GPMC_CS_CONFIG1, val);
++      if (pdata->dev_ready) {
++              val  = gpmc_cs_read_reg(info->gpmc_cs, GPMC_CS_CONFIG1);
++              val |= WR_RD_PIN_MONITORING;
++              gpmc_cs_write_reg(info->gpmc_cs, GPMC_CS_CONFIG1, val);
++      }
+       val  = gpmc_cs_read_reg(info->gpmc_cs, GPMC_CS_CONFIG7);
+       val &= ~(0xf << 8);
+       val |=  (0xc & 0xf) << 8;
+       gpmc_cs_write_reg(info->gpmc_cs, GPMC_CS_CONFIG7, val);
++      /* NAND write protect off */
++      omap_nand_wp(&info->mtd, NAND_WP_OFF);
++
+       if (!request_mem_region(info->phys_base, NAND_IO_SIZE,
+                               pdev->dev.driver->name)) {
+               err = -EBUSY;
+@@ -597,29 +647,39 @@ static int __devinit omap_nand_probe(struct platform_device *pdev)
+       info->nand.write_buf  = omap_write_buf;
+       info->nand.verify_buf = omap_verify_buf;
+-      info->nand.dev_ready  = omap_dev_ready;
+-      info->nand.chip_delay = 0;
+-
+-      /* Options */
+-      info->nand.options   = NAND_BUSWIDTH_16;
+-      info->nand.options  |= NAND_SKIP_BBTSCAN;
+-
+-      if (hw_ecc) {
+-              /* init HW ECC */
+-              omap_hwecc_init(&info->mtd);
+-
+-              info->nand.ecc.calculate = omap_calculate_ecc;
+-              info->nand.ecc.hwctl     = omap_enable_hwecc;
+-              info->nand.ecc.correct   = omap_correct_data;
+-              info->nand.ecc.mode      = NAND_ECC_HW;
+-              info->nand.ecc.bytes     = 12;
+-              info->nand.ecc.size      = 2048;
+-              info->nand.ecc.layout    = &omap_hw_eccoob;
+-
++      /*
++      * If RDY/BSY line is connected to OMAP then use the omap ready funcrtion
++      * and the generic nand_wait function which reads the status register
++      * after monitoring the RDY/BSY line.Otherwise use a standard chip delay
++      * which is slightly more than tR (AC Timing) of the NAND device and read
++      * status register until you get a failure or success
++      */
++      if (pdata->dev_ready) {
++              info->nand.dev_ready = omap_dev_ready;
++              info->nand.chip_delay = 0;
+       } else {
+-              info->nand.ecc.mode = NAND_ECC_SOFT;
++              info->nand.waitfunc = omap_wait;
++              info->nand.chip_delay = 50;
+       }
++      info->nand.options  |= NAND_SKIP_BBTSCAN;
++      if ((gpmc_cs_read_reg(info->gpmc_cs, GPMC_CS_CONFIG1) & 0x3000)
++                                                              == 0x1000)
++              info->nand.options  |= NAND_BUSWIDTH_16;
++
++#ifdef CONFIG_MTD_NAND_OMAP_HWECC
++      info->nand.ecc.bytes            = 3;
++      info->nand.ecc.size             = 512;
++      info->nand.ecc.calculate        = omap_calculate_ecc;
++      info->nand.ecc.hwctl            = omap_enable_hwecc;
++      info->nand.ecc.correct          = omap_correct_data;
++      info->nand.ecc.mode             = NAND_ECC_HW;
++
++      /* init HW ECC */
++      omap_hwecc_init(&info->mtd);
++#else
++      info->nand.ecc.mode = NAND_ECC_SOFT;
++#endif
+       /* DIP switches on some boards change between 8 and 16 bit
+        * bus widths for flash.  Try the other width if the first try fails.
+@@ -636,14 +696,12 @@ static int __devinit omap_nand_probe(struct platform_device *pdev)
+       err = parse_mtd_partitions(&info->mtd, part_probes, &info->parts, 0);
+       if (err > 0)
+               add_mtd_partitions(&info->mtd, info->parts, err);
+-      else if (err < 0 && pdata->parts)
++      else if (err <= 0 && pdata->parts)
+               add_mtd_partitions(&info->mtd, pdata->parts, pdata->nr_parts);
+       else
+ #endif
+               add_mtd_device(&info->mtd);
+-      omap_nand_wp(&info->mtd, NAND_WP_OFF);
+-
+       platform_set_drvdata(pdev, &info->mtd);
+       return 0;
+diff --git a/include/asm-arm/arch-omap/board-omap3beagle.h b/include/asm-arm/arch-omap/board-omap3beagle.h
+index 46dff31..26ecfb8 100644
+--- a/include/asm-arm/arch-omap/board-omap3beagle.h
++++ b/include/asm-arm/arch-omap/board-omap3beagle.h
+@@ -29,5 +29,7 @@
+ #ifndef __ASM_ARCH_OMAP3_BEAGLE_H
+ #define __ASM_ARCH_OMAP3_BEAGLE_H
++extern void omap3beagle_flash_init(void);
++
+ #endif /* __ASM_ARCH_OMAP3_BEAGLE_H */
index 6c920a2..0b85223 100644 (file)
@@ -5,7 +5,7 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/linux-omap2-git/${MA
 SRCREV = "6b403428164c53d94bd9377d84e69052563dd57d"
 
 PV = "2.6.25+2.6.26-rc4+git${SRCREV}"
-PR = "r18"
+PR = "r19"
 
 
 SRC_URI = "git://source.mvista.com/git/linux-omap-2.6.git;protocol=git \
@@ -19,6 +19,8 @@ SRC_URI_append_beagleboard = " file://no-harry-potter.diff;patch=1 \
            file://0001-ASoC-OMAP-Add-basic-support-for-OMAP34xx-in-McBSP.patch;patch=1 \
            file://mux.patch;patch=1 \
            file://mcbsp-fix-include.patch;patch=1 \    
+          file://0001-omap3beagle-add-a-platform-device-to-hook-up-the-GP.patch;patch=1 \
+          file://flash.patch;patch=1 \
 "
 
 COMPATIBLE_MACHINE = "omap2430sdp|omap2420h4|beagleboard"