devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] ARM: omap: mtd: nand: Support GPMC NAND on non-OMAP platforms
@ 2015-07-10 12:23 Roger Quadros
       [not found] ` <1436531019-18088-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
                   ` (10 more replies)
  0 siblings, 11 replies; 35+ messages in thread
From: Roger Quadros @ 2015-07-10 12:23 UTC (permalink / raw)
  To: tony-4v6yS6AI5VpBDgjK7y7TUQ, dwmw2-wEGCiKHe2LqWVfeAwA7xHQ,
	computersforpeace-Re5JQEeQqe8AvxtiuMwx3w,
	bcousson-rdvid1DuHRBWk0Htik3J/w
  Cc: ezequiel-30ULvvUtt6G51wMPkGsGjgyUoB5FGQPZ,
	linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-omap-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Roger Quadros

Hi,

The OMAP GPMC IP is being used on non-OMAP platforms as well
and this series aims at cleaning up device tree implementation
for GPMC NAND so that it can be used on non-OMAP platforms.

NAND is now treated as any other generic GPMC child and has to
have its own compatible-id and address+interrupt resource.

Tested NAND on following boards
- dra7-evm
- am437x-gp-evm
- beagleboard C4

--
cheers,
-roger

Roger Quadros (12):
  ARM: OMAP2+: gpmc: Add platform data
  ARM: OMAP2+: gpmc: Add gpmc timings and settings to platform data
  mtd: nand: omap: Move IRQ handling from GPMC to NAND driver
  mtd: nand: omap: Move gpmc_update_nand_reg to nand driver
  mtd: nand: omap: Move NAND write protect code from GPMC to NAND driver
  mtd: nand: omap: Copy platform data parameters to omap_nand_info data
  mtd: nand: omap: Clean up device tree support
  mtd: nand: omap: Update DT binding documentation
  memory: omap-gpmc: use module_platform_driver()
  memory: omap-gpmc: Prevent mapping into 1st 16MB
  ARM: dts: OMAP2+: Fix NAND device nodes
  ARM: dts: omap3: Fix gpmc memory resource size

 .../devicetree/bindings/mtd/gpmc-nand.txt          |  16 +-
 arch/arm/boot/dts/am335x-baltos-ir5221.dts         |   9 +-
 arch/arm/boot/dts/am335x-chilisom.dtsi             |   8 +-
 arch/arm/boot/dts/am335x-evm.dts                   |   8 +-
 arch/arm/boot/dts/am335x-igep0033.dtsi             |   8 +-
 arch/arm/boot/dts/am437x-gp-evm.dts                |   8 +-
 arch/arm/boot/dts/am43x-epos-evm.dts               |   8 +-
 arch/arm/boot/dts/dm8168-evm.dts                   |   8 +-
 arch/arm/boot/dts/dra7-evm.dts                     |   8 +-
 arch/arm/boot/dts/dra72-evm.dts                    |   8 +-
 arch/arm/boot/dts/logicpd-torpedo-som.dtsi         |   9 +-
 arch/arm/boot/dts/omap3-beagle.dts                 |   7 +-
 arch/arm/boot/dts/omap3-cm-t3x.dtsi                |   8 +-
 arch/arm/boot/dts/omap3-devkit8000.dts             |   9 +-
 arch/arm/boot/dts/omap3-evm-37xx.dts               |  10 +-
 arch/arm/boot/dts/omap3-gta04.dtsi                 |   8 +-
 arch/arm/boot/dts/omap3-igep.dtsi                  |   5 +-
 arch/arm/boot/dts/omap3-igep0020-common.dtsi       |   5 +-
 arch/arm/boot/dts/omap3-igep0030-common.dtsi       |   6 +
 arch/arm/boot/dts/omap3-ldp.dts                    |  10 +-
 arch/arm/boot/dts/omap3-lilly-a83x.dtsi            |   8 +-
 arch/arm/boot/dts/omap3-lilly-dbb056.dts           |   7 +-
 arch/arm/boot/dts/omap3-pandora-common.dtsi        |   8 +-
 arch/arm/boot/dts/omap3-tao3530.dtsi               |   8 +-
 arch/arm/boot/dts/omap3.dtsi                       |   2 +-
 arch/arm/boot/dts/omap3430-sdp.dts                 |   8 +-
 arch/arm/mach-omap2/gpmc-nand.c                    |  19 +-
 drivers/memory/omap-gpmc.c                         | 427 +++------------------
 drivers/mtd/nand/omap2.c                           | 380 ++++++++++++++----
 include/linux/omap-gpmc.h                          | 148 +------
 include/linux/platform_data/gpmc-omap.h            | 169 ++++++++
 include/linux/platform_data/mtd-nand-omap2.h       |  10 +-
 32 files changed, 705 insertions(+), 655 deletions(-)
 create mode 100644 include/linux/platform_data/gpmc-omap.h

-- 
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2015-08-03 13:08 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-10 12:23 [PATCH 00/12] ARM: omap: mtd: nand: Support GPMC NAND on non-OMAP platforms Roger Quadros
     [not found] ` <1436531019-18088-1-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2015-07-10 12:23   ` [PATCH 01/12] ARM: OMAP2+: gpmc: Add platform data Roger Quadros
2015-07-10 12:23   ` [PATCH 05/12] mtd: nand: omap: Move NAND write protect code from GPMC to NAND driver Roger Quadros
2015-07-10 12:23 ` [PATCH 02/12] ARM: OMAP2+: gpmc: Add gpmc timings and settings to platform data Roger Quadros
     [not found]   ` <1436531019-18088-3-git-send-email-rogerq-l0cyMroinI0@public.gmane.org>
2015-07-13 13:31     ` Tony Lindgren
2015-07-13 13:34       ` Roger Quadros
2015-07-10 12:23 ` [PATCH 03/12] mtd: nand: omap: Move IRQ handling from GPMC to NAND driver Roger Quadros
2015-07-13  7:10   ` Tony Lindgren
     [not found]     ` <20150713071008.GC26485-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2015-07-13 10:04       ` Roger Quadros
2015-07-13 12:40         ` Tony Lindgren
2015-07-13 12:51           ` nick
     [not found]             ` <55A3B467.8030409-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-07-13 13:01               ` Tony Lindgren
2015-07-13 13:03                 ` nick
2015-07-13 13:12                   ` Roger Quadros
2015-07-13 13:15                     ` nick
2015-07-13 13:21                       ` Roger Quadros
2015-07-13 13:32                         ` nick
     [not found]                           ` <55A3BDE3.2080004-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-07-13 13:35                             ` Roger Quadros
     [not found]           ` <20150713124059.GF26485-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2015-07-29 12:06             ` Roger Quadros
2015-07-29 12:13               ` nick
2015-07-29 13:52                 ` Roger Quadros
2015-07-29 14:08                   ` nick
2015-07-29 15:12                     ` Roger Quadros
2015-07-29 15:26                       ` nick
     [not found]                         ` <55B8F0B3.5000009-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-07-29 15:39                           ` Roger Quadros
     [not found]               ` <55B8C1D5.3090807-l0cyMroinI0@public.gmane.org>
2015-07-31 10:21                 ` Roger Quadros
     [not found]                   ` <55BB4C1D.5080905-l0cyMroinI0@public.gmane.org>
2015-08-03 13:08                     ` Tony Lindgren
2015-07-10 12:23 ` [PATCH 04/12] mtd: nand: omap: Move gpmc_update_nand_reg to nand driver Roger Quadros
2015-07-10 12:23 ` [PATCH 06/12] mtd: nand: omap: Copy platform data parameters to omap_nand_info data Roger Quadros
2015-07-10 12:23 ` [PATCH 07/12] mtd: nand: omap: Clean up device tree support Roger Quadros
2015-07-10 12:23 ` [PATCH 08/12] mtd: nand: omap: Update DT binding documentation Roger Quadros
2015-07-10 12:23 ` [PATCH 09/12] memory: omap-gpmc: use module_platform_driver() Roger Quadros
2015-07-10 12:23 ` [PATCH 10/12] memory: omap-gpmc: Prevent mapping into 1st 16MB Roger Quadros
2015-07-10 12:23 ` [PATCH 11/12] ARM: dts: OMAP2+: Fix NAND device nodes Roger Quadros
2015-07-10 12:23 ` [PATCH 12/12] ARM: dts: omap3: Fix gpmc memory resource size Roger Quadros

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).