From: Ben Dooks <ben-linux@fluff.org>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org,
Nios2 development list <nios2-dev@sopc.et.ntust.edu.tw>,
linux-kernel@vger.kernel.org, Ian Abbott <abbotti@mev.co.uk>,
Thomas Abraham <thomas.ab@samsung.com>,
Thomas Chou <thomas@wytron.com.tw>,
ben-linux@fluff.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [git patches] new hardware support for atang tree
Date: Thu, 4 Feb 2010 08:16:54 +0000 [thread overview]
Message-ID: <20100204081654.GD13267@trinity.fluff.org> (raw)
In-Reply-To: <201002031940.20129.bzolnier@gmail.com>
On Wed, Feb 03, 2010 at 07:40:20PM +0100, Bartlomiej Zolnierkiewicz wrote:
>
> Since I haven't seen any progress on mainstreaming of s3c-ide and
> pata_altera_cf patches in the recent months I decided to merge them
> into staging section of my tree in order to help in keeping them
> in-sync with ongoing changes..
Please be aware the plat-s3c64xx and plat-s3c is currently in the process
of being removed, the s3c64xx is an development dead-end and thus we know
exactly what has to be supported, plat-s3c is getting so empty i've shoved
the stuff either up into plat-s3c24xx or down into plat-samsung.
Quite a lot of this change is currently in RMK's trees, the rest is just
being finalised for submission next week.
I might be interested in taking the platform definitions into my tree
as the registers should be usable either for libata or ide.
> DISCLAIMER: the fact of getting patches merged into atang tree means
> that from now on they will be getting updates for changes happening
> in atang tree and it should not be treated as an indication regarding
> decisions taken by 'upstream' kernel trees
>
>
> The following changes since commit 18c77417cbb9c595935d5ccb2e55309f0fb75a06:
> Bartlomiej Zolnierkiewicz (1):
> ide: remove hwif_chipset_t type
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/bart/misc.git atang-v4.4
>
> Thomas Abraham (8):
> S3C64XX: Add physical address definition for Compact Flash controller.
> S3C64XX: Add MEM_SYS_CFG register definition.
> S3C64XX: Add IDE controller register definitions.
> S3C64XX: Add clock source definition for IDE controller.
> S3C64XX: Add platform data and driver resources for IDE controller driver.
> S3C6410: Add platform data for S3C IDE controller driver
> S3C64XX: Include IDE device code in compilation.
> drivers/staging: Add Samsung S3C IDE controller driver
>
> Thomas Chou (1):
> drivers/staging: New PATA driver for Altera CompactFlash.
>
> arch/arm/mach-s3c6400/include/mach/map.h | 4 +
> arch/arm/mach-s3c6410/mach-smdk6410.c | 14 +-
> arch/arm/plat-s3c/include/plat/devs.h | 1 +
> arch/arm/plat-s3c/include/plat/ide.h | 36 +
> arch/arm/plat-s3c/include/plat/regs-ide.h | 56 ++
> arch/arm/plat-s3c64xx/Makefile | 1 +
> arch/arm/plat-s3c64xx/clock.c | 6 +
> arch/arm/plat-s3c64xx/dev-ide.c | 88 +++
> arch/arm/plat-s3c64xx/include/plat/regs-clock.h | 3 +
> drivers/staging/Kconfig | 4 +
> drivers/staging/Makefile | 2 +
> drivers/staging/pata_altera_cf/Kconfig | 11 +
> drivers/staging/pata_altera_cf/Makefile | 1 +
> drivers/staging/pata_altera_cf/TODO | 5 +
> drivers/staging/pata_altera_cf/pata_altera_cf.c | 582 ++++++++++++++++
> drivers/staging/s3c-ide/Kconfig | 8 +
> drivers/staging/s3c-ide/Makefile | 1 +
> drivers/staging/s3c-ide/TODO | 6 +
> drivers/staging/s3c-ide/s3c-ide.c | 822 +++++++++++++++++++++++
> 19 files changed, 1650 insertions(+), 1 deletions(-)
> create mode 100644 arch/arm/plat-s3c/include/plat/ide.h
> create mode 100644 arch/arm/plat-s3c/include/plat/regs-ide.h
> create mode 100644 arch/arm/plat-s3c64xx/dev-ide.c
> create mode 100644 drivers/staging/pata_altera_cf/Kconfig
> create mode 100644 drivers/staging/pata_altera_cf/Makefile
> create mode 100644 drivers/staging/pata_altera_cf/TODO
> create mode 100644 drivers/staging/pata_altera_cf/pata_altera_cf.c
> create mode 100644 drivers/staging/s3c-ide/Kconfig
> create mode 100644 drivers/staging/s3c-ide/Makefile
> create mode 100644 drivers/staging/s3c-ide/TODO
> create mode 100644 drivers/staging/s3c-ide/s3c-ide.c
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
WARNING: multiple messages have this Message-ID (diff)
From: ben-linux@fluff.org (Ben Dooks)
To: linux-arm-kernel@lists.infradead.org
Subject: [git patches] new hardware support for atang tree
Date: Thu, 4 Feb 2010 08:16:54 +0000 [thread overview]
Message-ID: <20100204081654.GD13267@trinity.fluff.org> (raw)
In-Reply-To: <201002031940.20129.bzolnier@gmail.com>
On Wed, Feb 03, 2010 at 07:40:20PM +0100, Bartlomiej Zolnierkiewicz wrote:
>
> Since I haven't seen any progress on mainstreaming of s3c-ide and
> pata_altera_cf patches in the recent months I decided to merge them
> into staging section of my tree in order to help in keeping them
> in-sync with ongoing changes..
Please be aware the plat-s3c64xx and plat-s3c is currently in the process
of being removed, the s3c64xx is an development dead-end and thus we know
exactly what has to be supported, plat-s3c is getting so empty i've shoved
the stuff either up into plat-s3c24xx or down into plat-samsung.
Quite a lot of this change is currently in RMK's trees, the rest is just
being finalised for submission next week.
I might be interested in taking the platform definitions into my tree
as the registers should be usable either for libata or ide.
> DISCLAIMER: the fact of getting patches merged into atang tree means
> that from now on they will be getting updates for changes happening
> in atang tree and it should not be treated as an indication regarding
> decisions taken by 'upstream' kernel trees
>
>
> The following changes since commit 18c77417cbb9c595935d5ccb2e55309f0fb75a06:
> Bartlomiej Zolnierkiewicz (1):
> ide: remove hwif_chipset_t type
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/bart/misc.git atang-v4.4
>
> Thomas Abraham (8):
> S3C64XX: Add physical address definition for Compact Flash controller.
> S3C64XX: Add MEM_SYS_CFG register definition.
> S3C64XX: Add IDE controller register definitions.
> S3C64XX: Add clock source definition for IDE controller.
> S3C64XX: Add platform data and driver resources for IDE controller driver.
> S3C6410: Add platform data for S3C IDE controller driver
> S3C64XX: Include IDE device code in compilation.
> drivers/staging: Add Samsung S3C IDE controller driver
>
> Thomas Chou (1):
> drivers/staging: New PATA driver for Altera CompactFlash.
>
> arch/arm/mach-s3c6400/include/mach/map.h | 4 +
> arch/arm/mach-s3c6410/mach-smdk6410.c | 14 +-
> arch/arm/plat-s3c/include/plat/devs.h | 1 +
> arch/arm/plat-s3c/include/plat/ide.h | 36 +
> arch/arm/plat-s3c/include/plat/regs-ide.h | 56 ++
> arch/arm/plat-s3c64xx/Makefile | 1 +
> arch/arm/plat-s3c64xx/clock.c | 6 +
> arch/arm/plat-s3c64xx/dev-ide.c | 88 +++
> arch/arm/plat-s3c64xx/include/plat/regs-clock.h | 3 +
> drivers/staging/Kconfig | 4 +
> drivers/staging/Makefile | 2 +
> drivers/staging/pata_altera_cf/Kconfig | 11 +
> drivers/staging/pata_altera_cf/Makefile | 1 +
> drivers/staging/pata_altera_cf/TODO | 5 +
> drivers/staging/pata_altera_cf/pata_altera_cf.c | 582 ++++++++++++++++
> drivers/staging/s3c-ide/Kconfig | 8 +
> drivers/staging/s3c-ide/Makefile | 1 +
> drivers/staging/s3c-ide/TODO | 6 +
> drivers/staging/s3c-ide/s3c-ide.c | 822 +++++++++++++++++++++++
> 19 files changed, 1650 insertions(+), 1 deletions(-)
> create mode 100644 arch/arm/plat-s3c/include/plat/ide.h
> create mode 100644 arch/arm/plat-s3c/include/plat/regs-ide.h
> create mode 100644 arch/arm/plat-s3c64xx/dev-ide.c
> create mode 100644 drivers/staging/pata_altera_cf/Kconfig
> create mode 100644 drivers/staging/pata_altera_cf/Makefile
> create mode 100644 drivers/staging/pata_altera_cf/TODO
> create mode 100644 drivers/staging/pata_altera_cf/pata_altera_cf.c
> create mode 100644 drivers/staging/s3c-ide/Kconfig
> create mode 100644 drivers/staging/s3c-ide/Makefile
> create mode 100644 drivers/staging/s3c-ide/TODO
> create mode 100644 drivers/staging/s3c-ide/s3c-ide.c
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
next prev parent reply other threads:[~2010-02-04 8:17 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-03 18:40 [git patches] new hardware support for atang tree Bartlomiej Zolnierkiewicz
2010-02-03 18:40 ` Bartlomiej Zolnierkiewicz
2010-02-03 19:58 ` Jeff Garzik
2010-02-03 19:58 ` Jeff Garzik
2010-02-04 8:16 ` Ben Dooks [this message]
2010-02-04 8:16 ` Ben Dooks
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=20100204081654.GD13267@trinity.fluff.org \
--to=ben-linux@fluff.org \
--cc=abbotti@mev.co.uk \
--cc=bzolnier@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nios2-dev@sopc.et.ntust.edu.tw \
--cc=thomas.ab@samsung.com \
--cc=thomas@wytron.com.tw \
/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.