All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 00/23] memory: Cleanup, improve and compile test memory drivers
@ 2020-07-23  7:37 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 123+ messages in thread
From: Krzysztof Kozlowski @ 2020-07-23  7:37 UTC (permalink / raw)
  To: Arnd Bergmann, Olof Johansson, arm, soc, Krzysztof Kozlowski,
	Markus Mayer, bcm-kernel-feedback-list, Florian Fainelli,
	Santosh Shilimkar, Matthias Brugger, Roger Quadros,
	Tony Lindgren, Vladimir Zapolskiy, Thierry Reding,
	Jonathan Hunter, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-omap, linux-tegra
  Cc: Greg Kroah-Hartman, Andrew Morton, Linus Torvalds

Dear All,

The drivers/memory directory contains generic code (of_memory.c) and a
bunch of drivers.  Changes to generic code were coming usually through
different trees with the driver code.

Over last days, memory drivers grew in numbers but not necessarily in
quality.  They lacked compile testing and code cleanup.  Also lacked
maintainer.

I would be happy to take care about this part.

If there are no objections, the patches could go either to Linus or to
arm-soc (most of drivers are ARM specific).

Driver-specific changes in the patchset were only compile-tested. Tests
are welcome. The generic code was tested on ARMv7 Exynos based boards
with a exynos5422-dmc memory controller driver.

Best regards,
Krzysztof


Krzysztof Kozlowski (23):
  memory: omap-gpmc: Remove unneeded asm/mach-types.h inclusion
  memory: omap-gpmc: Remove unused file-scope phys_base and mem_size
  memory: omap-gpmc: Include <linux/sizes.h> for SZ_16M
  memory: ti-aemif: Rename SS to SSTROBE to avoid name conflicts
  memory: Enable compile testing for most of the drivers
  memory: of: Remove unused headers
  memory: of: Remove __func__ in device related messages
  memory: of: Correct indentation
  memory: of: Remove unneeded extern from function declarations
  memory: emif-asm-offsets: Add GPLv2 SPDX license header
  memory: emif: Put constant in comparison on the right side
  memory: emif: Fix whitespace coding style violations
  memory: emif: Silence platform_get_irq() error in driver
  memory: ti-emif-pm: Fix cast to iomem pointer
  memory: renesas-rpc-if: Simplify with PTR_ERR_OR_ZERO
  memory: brcmstb_dpfe: Constify the contents of string
  memory: brcmstb_dpfe: Remove unneeded braces
  memory: mtk-smi: Add argument to function definition
  memory: omap-gpmc: Enclose macro statements in do-while
  memory: omap-gpmc: Fix whitespace issue
  memory: pl172: Add GPLv2 SPDX license header
  memory: tegra: tegra210-emc: Fix indentation
  MAINTAINERS: Add Krzysztof Kozlowski as maintainer of memory
    controllers

 MAINTAINERS                                   |  7 +++++
 drivers/memory/Kconfig                        | 31 +++++++++++--------
 drivers/memory/brcmstb_dpfe.c                 |  5 ++-
 drivers/memory/emif-asm-offsets.c             | 10 +-----
 drivers/memory/emif.c                         | 23 ++++++--------
 drivers/memory/mtk-smi.c                      |  2 +-
 drivers/memory/of_memory.c                    | 28 ++++++++---------
 drivers/memory/of_memory.h                    | 21 +++++++------
 drivers/memory/omap-gpmc.c                    | 21 ++++++-------
 drivers/memory/pl172.c                        |  5 +--
 drivers/memory/renesas-rpc-if.c               |  4 +--
 drivers/memory/tegra/tegra210-emc-cc-r21021.c |  2 +-
 drivers/memory/ti-aemif.c                     | 16 +++++-----
 drivers/memory/ti-emif-pm.c                   |  2 +-
 14 files changed, 84 insertions(+), 93 deletions(-)

-- 
2.17.1


_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

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

end of thread, other threads:[~2020-07-24  7:17 UTC | newest]

Thread overview: 123+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-23  7:37 [RFC PATCH 00/23] memory: Cleanup, improve and compile test memory drivers Krzysztof Kozlowski
2020-07-23  7:37 ` Krzysztof Kozlowski
2020-07-23  7:37 ` [RFT 01/23] memory: omap-gpmc: Remove unneeded asm/mach-types.h inclusion Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [RFT 02/23] memory: omap-gpmc: Remove unused file-scope phys_base and mem_size Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 03/23] memory: omap-gpmc: Include <linux/sizes.h> for SZ_16M Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [RFT 04/23] memory: ti-aemif: Rename SS to SSTROBE to avoid name conflicts Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 05/23] memory: Enable compile testing for most of the drivers Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 06/23] memory: of: Remove unused headers Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 07/23] memory: of: Remove __func__ in device related messages Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 08/23] memory: of: Correct indentation Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 09/23] memory: of: Remove unneeded extern from function declarations Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 10/23] memory: emif-asm-offsets: Add GPLv2 SPDX license header Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 11/23] memory: emif: Put constant in comparison on the right side Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 12/23] memory: emif: Fix whitespace coding style violations Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 13/23] memory: emif: Silence platform_get_irq() error in driver Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 14/23] memory: ti-emif-pm: Fix cast to iomem pointer Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
     [not found]   ` <20200723073744.13400-15-krzk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2020-07-23  8:48     ` Arnd Bergmann
2020-07-23  8:48       ` Arnd Bergmann
2020-07-23  8:48       ` Arnd Bergmann
2020-07-23  8:48       ` Arnd Bergmann
     [not found]       ` <CAK8P3a3btGD5oqmPXJk=UOmA=wuUxn-vOOO982uAjuRcE3crVg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-23  9:02         ` Krzysztof Kozlowski
2020-07-23  9:02           ` Krzysztof Kozlowski
2020-07-23  9:02           ` Krzysztof Kozlowski
2020-07-23  9:02           ` Krzysztof Kozlowski
2020-07-23  9:14           ` Arnd Bergmann
2020-07-23  9:14             ` Arnd Bergmann
2020-07-23  9:14             ` Arnd Bergmann
2020-07-23  9:14             ` Arnd Bergmann
     [not found]             ` <CAK8P3a2O4bCb_Bcpc+Y4BuXmrO6mbVwgo67aGF5E=uxHQpeTnw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-23 10:01               ` Krzysztof Kozlowski
2020-07-23 10:01                 ` Krzysztof Kozlowski
2020-07-23 10:01                 ` Krzysztof Kozlowski
2020-07-23 10:01                 ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 15/23] memory: renesas-rpc-if: Simplify with PTR_ERR_OR_ZERO Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 16/23] memory: brcmstb_dpfe: Constify the contents of string Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
     [not found]   ` <20200723073744.13400-17-krzk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2020-07-23 17:11     ` Florian Fainelli
2020-07-23 17:11       ` Florian Fainelli
2020-07-23 17:11       ` Florian Fainelli
2020-07-23 17:11       ` Florian Fainelli
2020-07-23 17:15       ` Markus Mayer
2020-07-23 17:15         ` Markus Mayer
2020-07-23 17:15         ` Markus Mayer
2020-07-23 17:15         ` Markus Mayer
2020-07-23  7:37 ` [PATCH 17/23] memory: brcmstb_dpfe: Remove unneeded braces Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23 17:11   ` Florian Fainelli
2020-07-23 17:11     ` Florian Fainelli
2020-07-23 17:11     ` Florian Fainelli
     [not found]     ` <e65d4ed3-3c01-acb7-f324-be99201815df-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-07-23 17:15       ` Markus Mayer
2020-07-23 17:15         ` Markus Mayer
2020-07-23 17:15         ` Markus Mayer
2020-07-23 17:15         ` Markus Mayer
2020-07-23  7:37 ` [PATCH 18/23] memory: mtk-smi: Add argument to function definition Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
     [not found]   ` <20200723073744.13400-19-krzk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2020-07-23  8:50     ` Arnd Bergmann
2020-07-23  8:50       ` Arnd Bergmann
2020-07-23  8:50       ` Arnd Bergmann
2020-07-23  8:50       ` Arnd Bergmann
2020-07-23  8:55       ` Krzysztof Kozlowski
2020-07-23  8:55         ` Krzysztof Kozlowski
2020-07-23  8:55         ` Krzysztof Kozlowski
2020-07-23  8:55         ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 19/23] memory: omap-gpmc: Enclose macro statements in do-while Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
     [not found]   ` <20200723073744.13400-20-krzk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2020-07-23  9:09     ` Arnd Bergmann
2020-07-23  9:09       ` Arnd Bergmann
2020-07-23  9:09       ` Arnd Bergmann
2020-07-23  9:09       ` Arnd Bergmann
2020-07-23 10:16       ` Krzysztof Kozlowski
2020-07-23 10:16         ` Krzysztof Kozlowski
2020-07-23 10:16         ` Krzysztof Kozlowski
2020-07-23 10:16         ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 20/23] memory: omap-gpmc: Fix whitespace issue Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
     [not found]   ` <20200723073744.13400-21-krzk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2020-07-23  9:11     ` Arnd Bergmann
2020-07-23  9:11       ` Arnd Bergmann
2020-07-23  9:11       ` Arnd Bergmann
2020-07-23  9:11       ` Arnd Bergmann
     [not found]       ` <CAK8P3a1=WCQ5326Et5RRK7yiOYeHH7uUkQ+T3YPtj2XRh+gkgA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-23 10:08         ` Krzysztof Kozlowski
2020-07-23 10:08           ` Krzysztof Kozlowski
2020-07-23 10:08           ` Krzysztof Kozlowski
2020-07-23 10:08           ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 21/23] memory: pl172: Add GPLv2 SPDX license header Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 22/23] memory: tegra: tegra210-emc: Fix indentation Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23  7:37 ` [PATCH 23/23] MAINTAINERS: Add Krzysztof Kozlowski as maintainer of memory controllers Krzysztof Kozlowski
2020-07-23  7:37   ` Krzysztof Kozlowski
2020-07-23 17:12   ` Florian Fainelli
2020-07-23 17:12     ` Florian Fainelli
2020-07-23 17:12     ` Florian Fainelli
2020-07-24  7:15     ` Krzysztof Kozlowski
2020-07-24  7:15       ` Krzysztof Kozlowski
2020-07-24  7:15       ` Krzysztof Kozlowski
2020-07-23  7:46 ` [RFC PATCH 00/23] memory: Cleanup, improve and compile test memory drivers Greg Kroah-Hartman
2020-07-23  7:46   ` Greg Kroah-Hartman
     [not found] ` <20200723073744.13400-1-krzk-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2020-07-23  9:31   ` Arnd Bergmann
2020-07-23  9:31     ` Arnd Bergmann
2020-07-23  9:31     ` Arnd Bergmann
2020-07-23  9:31     ` Arnd Bergmann
     [not found]     ` <CAK8P3a0hcVhBbKCBDSZYXChmPpRVsEi_G6+oj5quC6uUiPeeiA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-07-23  9:52       ` Krzysztof Kozlowski
2020-07-23  9:52         ` Krzysztof Kozlowski
2020-07-23  9:52         ` Krzysztof Kozlowski
2020-07-23  9:52         ` Krzysztof Kozlowski
2020-07-23 10:14         ` Arnd Bergmann
2020-07-23 10:14           ` Arnd Bergmann
2020-07-23 10:14           ` Arnd Bergmann
2020-07-23 10:14           ` Arnd Bergmann

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.