From: Felipe Balbi <balbi@ti.com>
To: Tony Lindgren <tony@atomide.com>
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Arnd Bergmann <arnd@arndb.de>, Roger Quadros <rogerq@ti.com>
Subject: Re: [PATCH 3/3] memory: gpmc: Move omap gpmc code to live under drivers
Date: Fri, 21 Nov 2014 12:39:11 -0600 [thread overview]
Message-ID: <20141121183911.GA7508@saruman> (raw)
In-Reply-To: <1416594856-15201-4-git-send-email-tony@atomide.com>
[-- Attachment #1: Type: text/plain, Size: 3057 bytes --]
On Fri, Nov 21, 2014 at 10:34:16AM -0800, Tony Lindgren wrote:
> Just move to drivers as further clean-up can now happen there
> finally.
>
> Let's also add Roger and me to the MAINTAINERS so we get
> notified for any patches related to GPMC.
>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Roger Quadros <rogerq@ti.com>
> Signed-off-by: Tony Lindgren <tony@atomide.com>
> ---
> MAINTAINERS | 8 ++++++++
> arch/arm/mach-omap2/Kconfig | 2 ++
> arch/arm/mach-omap2/Makefile | 2 +-
> drivers/memory/Kconfig | 8 ++++++++
> drivers/memory/Makefile | 1 +
> arch/arm/mach-omap2/gpmc.c => drivers/memory/omap-gpmc.c | 0
> 6 files changed, 20 insertions(+), 1 deletion(-)
> rename arch/arm/mach-omap2/gpmc.c => drivers/memory/omap-gpmc.c (100%)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index dab92a7..78cc059 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6629,6 +6629,14 @@ L: linux-omap@vger.kernel.org
> S: Maintained
> F: sound/soc/omap/
>
> +OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
> +M: Roger Quadros <rogerq@ti.com>
> +M: Tony Lindgren <tony@atomide.com>
> +L: linux-omap@vger.kernel.org
> +S: Maintained
> +F: drivers/memory/omap-gpmc.c
> +F: arch/arm/mach-omap2/*gpmc*
> +
> OMAP FRAMEBUFFER SUPPORT
> M: Tomi Valkeinen <tomi.valkeinen@ti.com>
> L: linux-fbdev@vger.kernel.org
> diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
> index f4d06ae..0ea218e 100644
> --- a/arch/arm/mach-omap2/Kconfig
> +++ b/arch/arm/mach-omap2/Kconfig
> @@ -79,7 +79,9 @@ config ARCH_OMAP2PLUS
> select CLKSRC_MMIO
> select GENERIC_IRQ_CHIP
> select MACH_OMAP_GENERIC
> + select MEMORY
> select OMAP_DM_TIMER
> + select OMAP_GPMC
> select PINCTRL
> select SOC_BUS
> select TI_PRIV_EDMA
> diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
> index 3e824f8..bd85741 100644
> --- a/arch/arm/mach-omap2/Makefile
> +++ b/arch/arm/mach-omap2/Makefile
> @@ -6,7 +6,7 @@ ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include \
> -I$(srctree)/arch/arm/plat-omap/include
>
> # Common support
> -obj-y := id.o io.o control.o mux.o devices.o fb.o serial.o gpmc.o timer.o pm.o \
> +obj-y := id.o io.o control.o mux.o devices.o fb.o serial.o timer.o pm.o \
> common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o \
> omap_device.o sram.o drm.o
>
> diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
> index 6d91c27..6759de7 100644
> --- a/drivers/memory/Kconfig
> +++ b/drivers/memory/Kconfig
> @@ -41,6 +41,14 @@ config TI_EMIF
> parameters and other settings during frequency, voltage and
> temperature changes
>
> +config OMAP_GPMC
> + bool
shouldn't you make this selectable ? I might want to build a kernel
without GPMC support because my board just doesn't use GPMC :-)
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: balbi@ti.com (Felipe Balbi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/3] memory: gpmc: Move omap gpmc code to live under drivers
Date: Fri, 21 Nov 2014 12:39:11 -0600 [thread overview]
Message-ID: <20141121183911.GA7508@saruman> (raw)
In-Reply-To: <1416594856-15201-4-git-send-email-tony@atomide.com>
On Fri, Nov 21, 2014 at 10:34:16AM -0800, Tony Lindgren wrote:
> Just move to drivers as further clean-up can now happen there
> finally.
>
> Let's also add Roger and me to the MAINTAINERS so we get
> notified for any patches related to GPMC.
>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Roger Quadros <rogerq@ti.com>
> Signed-off-by: Tony Lindgren <tony@atomide.com>
> ---
> MAINTAINERS | 8 ++++++++
> arch/arm/mach-omap2/Kconfig | 2 ++
> arch/arm/mach-omap2/Makefile | 2 +-
> drivers/memory/Kconfig | 8 ++++++++
> drivers/memory/Makefile | 1 +
> arch/arm/mach-omap2/gpmc.c => drivers/memory/omap-gpmc.c | 0
> 6 files changed, 20 insertions(+), 1 deletion(-)
> rename arch/arm/mach-omap2/gpmc.c => drivers/memory/omap-gpmc.c (100%)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index dab92a7..78cc059 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6629,6 +6629,14 @@ L: linux-omap at vger.kernel.org
> S: Maintained
> F: sound/soc/omap/
>
> +OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
> +M: Roger Quadros <rogerq@ti.com>
> +M: Tony Lindgren <tony@atomide.com>
> +L: linux-omap at vger.kernel.org
> +S: Maintained
> +F: drivers/memory/omap-gpmc.c
> +F: arch/arm/mach-omap2/*gpmc*
> +
> OMAP FRAMEBUFFER SUPPORT
> M: Tomi Valkeinen <tomi.valkeinen@ti.com>
> L: linux-fbdev at vger.kernel.org
> diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
> index f4d06ae..0ea218e 100644
> --- a/arch/arm/mach-omap2/Kconfig
> +++ b/arch/arm/mach-omap2/Kconfig
> @@ -79,7 +79,9 @@ config ARCH_OMAP2PLUS
> select CLKSRC_MMIO
> select GENERIC_IRQ_CHIP
> select MACH_OMAP_GENERIC
> + select MEMORY
> select OMAP_DM_TIMER
> + select OMAP_GPMC
> select PINCTRL
> select SOC_BUS
> select TI_PRIV_EDMA
> diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
> index 3e824f8..bd85741 100644
> --- a/arch/arm/mach-omap2/Makefile
> +++ b/arch/arm/mach-omap2/Makefile
> @@ -6,7 +6,7 @@ ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include \
> -I$(srctree)/arch/arm/plat-omap/include
>
> # Common support
> -obj-y := id.o io.o control.o mux.o devices.o fb.o serial.o gpmc.o timer.o pm.o \
> +obj-y := id.o io.o control.o mux.o devices.o fb.o serial.o timer.o pm.o \
> common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o \
> omap_device.o sram.o drm.o
>
> diff --git a/drivers/memory/Kconfig b/drivers/memory/Kconfig
> index 6d91c27..6759de7 100644
> --- a/drivers/memory/Kconfig
> +++ b/drivers/memory/Kconfig
> @@ -41,6 +41,14 @@ config TI_EMIF
> parameters and other settings during frequency, voltage and
> temperature changes
>
> +config OMAP_GPMC
> + bool
shouldn't you make this selectable ? I might want to build a kernel
without GPMC support because my board just doesn't use GPMC :-)
--
balbi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20141121/ea451d7f/attachment.sig>
next prev parent reply other threads:[~2014-11-21 18:39 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-21 18:34 [PATCHv2 0/3] Move omap GPMC to live in drivers/memory Tony Lindgren
2014-11-21 18:34 ` Tony Lindgren
2014-11-21 18:34 ` [PATCH 1/3] ARM: OMAP2+: Prepare to move GPMC to drivers by platform data header Tony Lindgren
2014-11-21 18:34 ` Tony Lindgren
2014-11-26 11:28 ` Roger Quadros
2014-11-26 11:28 ` Roger Quadros
2014-11-21 18:34 ` [PATCH 2/3] ARM: OMAP2+: Move GPMC initcall to devices.c Tony Lindgren
2014-11-21 18:34 ` Tony Lindgren
2014-11-21 18:34 ` [PATCH 3/3] memory: gpmc: Move omap gpmc code to live under drivers Tony Lindgren
2014-11-21 18:34 ` Tony Lindgren
2014-11-21 18:39 ` Felipe Balbi [this message]
2014-11-21 18:39 ` Felipe Balbi
2014-11-21 18:45 ` Tony Lindgren
2014-11-21 18:45 ` Tony Lindgren
2014-11-24 10:00 ` Roger Quadros
2014-11-24 10:00 ` Roger Quadros
2014-11-24 15:44 ` Tony Lindgren
2014-11-24 15:44 ` Tony Lindgren
2014-11-26 11:22 ` Roger Quadros
2014-11-26 11:22 ` Roger Quadros
2014-11-26 20:10 ` Tony Lindgren
2014-11-26 20:10 ` Tony Lindgren
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=20141121183911.GA7508@saruman \
--to=balbi@ti.com \
--cc=arnd@arndb.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=rogerq@ti.com \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.