linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6]  SPI platform device consolidation
@ 2011-11-04 12:43 Padmavathi Venna
  2011-11-04 12:43 ` [PATCH 1/6] ARM: SAMSUNG: Consolidation of SPI platform devices to plat-samsung Padmavathi Venna
                   ` (6 more replies)
  0 siblings, 7 replies; 13+ messages in thread
From: Padmavathi Venna @ 2011-11-04 12:43 UTC (permalink / raw)
  To: linux-arm-kernel

SPI platform devices are defined in respective machine folder of
Samsung S3C64XX and S5P series SoCs.This patchset moves S3C64XX
and S5P series of SPI platform devices to a common place plat-samsung.
This patchset also creates SPI setup files for GPIO configurations and
initializes the platform specific data in the corresponding machine file.

Padmavathi Venna (6):
  ARM: SAMSUNG: Consolidation of SPI platform devices to    
    plat-samsung
  ARM: S3C64XX: Modified files for SPI consolidation work
  ARM: S5PC100: Modified files for SPI consolidation work.
  ARM: S5P64X0: Modified files for SPI consolidation work
  ARM: S5PV210: Modified files for SPI consolidation work

The following patch make the corresponding SPI changes required for
Wolfson Cragganmore S3C6410 variant. This patch is only build tested.

  ARM: S3C64XX: Modified according to SPI consolidation work.

 arch/arm/mach-s3c64xx/Kconfig                    |    8 +-
 arch/arm/mach-s3c64xx/Makefile                   |    2 +-
 arch/arm/mach-s3c64xx/dev-spi.c                  |  172 -----------------
 arch/arm/mach-s3c64xx/include/mach/map.h         |    2 +
 arch/arm/mach-s3c64xx/mach-crag6410.c            |    9 +
 arch/arm/mach-s3c64xx/mach-smdk6410.c            |   19 ++
 arch/arm/mach-s3c64xx/setup-spi.c                |   32 +++
 arch/arm/mach-s5p64x0/Kconfig                    |    7 +-
 arch/arm/mach-s5p64x0/Makefile                   |    2 +-
 arch/arm/mach-s5p64x0/dev-spi.c                  |  218 ---------------------
 arch/arm/mach-s5p64x0/include/mach/map.h         |    3 +
 arch/arm/mach-s5p64x0/mach-smdk6440.c            |   19 ++
 arch/arm/mach-s5p64x0/mach-smdk6450.c            |   19 ++
 arch/arm/mach-s5p64x0/setup-spi.c                |   42 ++++
 arch/arm/mach-s5pc100/Kconfig                    |    5 +
 arch/arm/mach-s5pc100/Makefile                   |    2 +-
 arch/arm/mach-s5pc100/dev-spi.c                  |  220 ----------------------
 arch/arm/mach-s5pc100/include/mach/map.h         |    3 +
 arch/arm/mach-s5pc100/mach-smdkc100.c            |   31 +++
 arch/arm/mach-s5pc100/setup-spi.c                |   43 +++++
 arch/arm/mach-s5pv210/Kconfig                    |    5 +
 arch/arm/mach-s5pv210/Makefile                   |    2 +-
 arch/arm/mach-s5pv210/dev-spi.c                  |  169 -----------------
 arch/arm/mach-s5pv210/include/mach/map.h         |    2 +
 arch/arm/mach-s5pv210/mach-smdkv210.c            |   21 ++
 arch/arm/mach-s5pv210/setup-spi.c                |   36 ++++
 arch/arm/plat-samsung/Kconfig                    |   14 ++-
 arch/arm/plat-samsung/devs.c                     |  112 +++++++++++
 arch/arm/plat-samsung/include/plat/devs.h        |    8 +-
 arch/arm/plat-samsung/include/plat/s3c64xx-spi.h |   16 +-
 30 files changed, 444 insertions(+), 799 deletions(-)
 delete mode 100644 arch/arm/mach-s3c64xx/dev-spi.c
 create mode 100644 arch/arm/mach-s3c64xx/setup-spi.c
 delete mode 100644 arch/arm/mach-s5p64x0/dev-spi.c
 create mode 100644 arch/arm/mach-s5p64x0/setup-spi.c
 delete mode 100644 arch/arm/mach-s5pc100/dev-spi.c
 create mode 100644 arch/arm/mach-s5pc100/setup-spi.c
 delete mode 100644 arch/arm/mach-s5pv210/dev-spi.c
 create mode 100644 arch/arm/mach-s5pv210/setup-spi.c

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

end of thread, other threads:[~2011-11-17  1:41 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-04 12:43 [PATCH 0/6] SPI platform device consolidation Padmavathi Venna
2011-11-04 12:43 ` [PATCH 1/6] ARM: SAMSUNG: Consolidation of SPI platform devices to plat-samsung Padmavathi Venna
2011-11-15  7:08   ` Kukjin Kim
2011-11-17  1:39     ` padma venkat
2011-11-04 12:43 ` [PATCH 2/6] ARM: S3C64XX: Modified files for SPI consolidation work Padmavathi Venna
2011-11-04 12:43 ` [PATCH 3/6] ARM: S5PC100: " Padmavathi Venna
2011-11-04 12:43 ` [PATCH 4/6] ARM: S5P64X0: " Padmavathi Venna
2011-11-04 12:43 ` [PATCH 5/6] ARM: S5PV210: " Padmavathi Venna
2011-11-04 12:43 ` [PATCH 6/6] ARM: S3C64XX: Modified according to " Padmavathi Venna
2011-11-04 10:57   ` Mark Brown
     [not found]     ` <CAAgF-Bcj3vm50YOU4Sq4cGrOE8EHixjOuFrQq-MR6FVLf7Dekg@mail.gmail.com>
2011-11-15  7:09       ` Kukjin Kim
2011-11-17  1:41         ` padma venkat
2011-11-05  3:32 ` [PATCH 0/6] SPI platform device consolidation Kukjin Kim

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).