From: Hans de Goede <hdegoede@redhat.com>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Tejun Heo <tj@kernel.org>
Cc: Shiraz Hashim <shiraz.hashim@st.com>,
Kevin Hilman <khilman@deeprootsystems.com>,
Sekhar Nori <nsekhar@ti.com>,
linux-kernel@vger.kernel.org, davinci-@jasper.es,
linux-ide@vger.kernel.org, Viresh Kumar <viresh.linux@gmail.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 0/4] ata: add remaining new-style AHCI platform drivers
Date: Mon, 17 Mar 2014 20:18:41 +0100 [thread overview]
Message-ID: <53274A91.8020809@redhat.com> (raw)
In-Reply-To: <1395081118-15248-1-git-send-email-b.zolnierkie@samsung.com>
Hi,
On 03/17/2014 07:31 PM, Bartlomiej Zolnierkiewicz wrote:
> Hi,
>
> This patch series adds new-style AHCI platform drivers for DaVinci DA850
> AHCI controller and ST SPEAr1340 AHCI controller. As a preparation for
> adding these drivers it also fixes ahci_platform_data->suspend() handling
> (patch #1) and moves library AHCI platform code to its own file (patch #2).
> The new AHCI platform drivers are only compile tested (they are marked as
> experimental because of this) and I would ask somebody with the hardware
> to verify them (thanks!).
Thanks for working on this.
Patches 1/2 seem sensible to me, and 3/4 are obviously a good idea. Also
all patches look good to me, so this series is:
Acked-by: Hans de Goede <hdegoede@redhat.com>
Regards,
Hans
>
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
>
>
> Bartlomiej Zolnierkiewicz (4):
> ata: ahci_platform: fix ahci_platform_data->suspend method handling
> ata: move library code from ahci_platform.c to libahci_platform.c
> ata: add new-style AHCI platform driver for DaVinci DA850 AHCI
> controller
> ata: add new-style AHCI platform driver for ST SPEAr1340 AHCI
> controller
>
> drivers/ata/Kconfig | 23 +-
> drivers/ata/Makefile | 10 +-
> drivers/ata/ahci_da850.c | 178 ++++++++++++++
> drivers/ata/ahci_platform.c | 508 --------------------------------------
> drivers/ata/ahci_spear1340.c | 222 +++++++++++++++++
> drivers/ata/libahci_platform.c | 541 +++++++++++++++++++++++++++++++++++++++++
> 6 files changed, 967 insertions(+), 515 deletions(-)
> create mode 100644 drivers/ata/ahci_da850.c
> create mode 100644 drivers/ata/ahci_spear1340.c
> create mode 100644 drivers/ata/libahci_platform.c
>
WARNING: multiple messages have this Message-ID (diff)
From: hdegoede@redhat.com (Hans de Goede)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/4] ata: add remaining new-style AHCI platform drivers
Date: Mon, 17 Mar 2014 20:18:41 +0100 [thread overview]
Message-ID: <53274A91.8020809@redhat.com> (raw)
In-Reply-To: <1395081118-15248-1-git-send-email-b.zolnierkie@samsung.com>
Hi,
On 03/17/2014 07:31 PM, Bartlomiej Zolnierkiewicz wrote:
> Hi,
>
> This patch series adds new-style AHCI platform drivers for DaVinci DA850
> AHCI controller and ST SPEAr1340 AHCI controller. As a preparation for
> adding these drivers it also fixes ahci_platform_data->suspend() handling
> (patch #1) and moves library AHCI platform code to its own file (patch #2).
> The new AHCI platform drivers are only compile tested (they are marked as
> experimental because of this) and I would ask somebody with the hardware
> to verify them (thanks!).
Thanks for working on this.
Patches 1/2 seem sensible to me, and 3/4 are obviously a good idea. Also
all patches look good to me, so this series is:
Acked-by: Hans de Goede <hdegoede@redhat.com>
Regards,
Hans
>
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
>
>
> Bartlomiej Zolnierkiewicz (4):
> ata: ahci_platform: fix ahci_platform_data->suspend method handling
> ata: move library code from ahci_platform.c to libahci_platform.c
> ata: add new-style AHCI platform driver for DaVinci DA850 AHCI
> controller
> ata: add new-style AHCI platform driver for ST SPEAr1340 AHCI
> controller
>
> drivers/ata/Kconfig | 23 +-
> drivers/ata/Makefile | 10 +-
> drivers/ata/ahci_da850.c | 178 ++++++++++++++
> drivers/ata/ahci_platform.c | 508 --------------------------------------
> drivers/ata/ahci_spear1340.c | 222 +++++++++++++++++
> drivers/ata/libahci_platform.c | 541 +++++++++++++++++++++++++++++++++++++++++
> 6 files changed, 967 insertions(+), 515 deletions(-)
> create mode 100644 drivers/ata/ahci_da850.c
> create mode 100644 drivers/ata/ahci_spear1340.c
> create mode 100644 drivers/ata/libahci_platform.c
>
WARNING: multiple messages have this Message-ID (diff)
From: Hans de Goede <hdegoede@redhat.com>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Tejun Heo <tj@kernel.org>
Cc: Sekhar Nori <nsekhar@ti.com>,
Kevin Hilman <khilman@deeprootsystems.com>,
Viresh Kumar <viresh.linux@gmail.com>,
Shiraz Hashim <shiraz.hashim@st.com>,
linux-ide@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, davinci-@jasper.es
Subject: Re: [PATCH 0/4] ata: add remaining new-style AHCI platform drivers
Date: Mon, 17 Mar 2014 20:18:41 +0100 [thread overview]
Message-ID: <53274A91.8020809@redhat.com> (raw)
In-Reply-To: <1395081118-15248-1-git-send-email-b.zolnierkie@samsung.com>
Hi,
On 03/17/2014 07:31 PM, Bartlomiej Zolnierkiewicz wrote:
> Hi,
>
> This patch series adds new-style AHCI platform drivers for DaVinci DA850
> AHCI controller and ST SPEAr1340 AHCI controller. As a preparation for
> adding these drivers it also fixes ahci_platform_data->suspend() handling
> (patch #1) and moves library AHCI platform code to its own file (patch #2).
> The new AHCI platform drivers are only compile tested (they are marked as
> experimental because of this) and I would ask somebody with the hardware
> to verify them (thanks!).
Thanks for working on this.
Patches 1/2 seem sensible to me, and 3/4 are obviously a good idea. Also
all patches look good to me, so this series is:
Acked-by: Hans de Goede <hdegoede@redhat.com>
Regards,
Hans
>
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
>
>
> Bartlomiej Zolnierkiewicz (4):
> ata: ahci_platform: fix ahci_platform_data->suspend method handling
> ata: move library code from ahci_platform.c to libahci_platform.c
> ata: add new-style AHCI platform driver for DaVinci DA850 AHCI
> controller
> ata: add new-style AHCI platform driver for ST SPEAr1340 AHCI
> controller
>
> drivers/ata/Kconfig | 23 +-
> drivers/ata/Makefile | 10 +-
> drivers/ata/ahci_da850.c | 178 ++++++++++++++
> drivers/ata/ahci_platform.c | 508 --------------------------------------
> drivers/ata/ahci_spear1340.c | 222 +++++++++++++++++
> drivers/ata/libahci_platform.c | 541 +++++++++++++++++++++++++++++++++++++++++
> 6 files changed, 967 insertions(+), 515 deletions(-)
> create mode 100644 drivers/ata/ahci_da850.c
> create mode 100644 drivers/ata/ahci_spear1340.c
> create mode 100644 drivers/ata/libahci_platform.c
>
next prev parent reply other threads:[~2014-03-17 19:18 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-17 18:31 [PATCH 0/4] ata: add remaining new-style AHCI platform drivers Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` [PATCH 1/4] ata: ahci_platform: fix ahci_platform_data->suspend method handling Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` [PATCH 2/4] ata: move library code from ahci_platform.c to libahci_platform.c Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` [PATCH 3/4] ata: add new-style AHCI platform driver for DaVinci DA850 AHCI controller Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` Bartlomiej Zolnierkiewicz
[not found] ` <1395081118-15248-4-git-send-email-b.zolnierkie-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-03-20 8:11 ` Sekhar Nori
2014-03-20 8:11 ` Sekhar Nori
2014-03-20 8:11 ` Sekhar Nori
2014-03-20 12:57 ` Bartlomiej Zolnierkiewicz
2014-03-20 12:57 ` Bartlomiej Zolnierkiewicz
2014-03-20 13:23 ` Sekhar Nori
2014-03-20 13:23 ` Sekhar Nori
2014-03-20 13:23 ` Sekhar Nori
2014-03-20 14:24 ` Bartlomiej Zolnierkiewicz
2014-03-20 14:24 ` Bartlomiej Zolnierkiewicz
2014-03-20 15:07 ` Bartlomiej Zolnierkiewicz
2014-03-20 15:07 ` Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` [PATCH 4/4] ata: add new-style AHCI platform driver for ST SPEAr1340 " Bartlomiej Zolnierkiewicz
2014-03-17 18:31 ` Bartlomiej Zolnierkiewicz
2014-03-20 8:57 ` Pratyush Anand
2014-03-20 8:57 ` Pratyush Anand
2014-03-20 8:57 ` Pratyush Anand
2014-03-20 11:51 ` Bartlomiej Zolnierkiewicz
2014-03-20 11:51 ` Bartlomiej Zolnierkiewicz
2014-03-17 18:57 ` [PATCH 0/4] ata: add remaining new-style AHCI platform drivers Tejun Heo
2014-03-17 18:57 ` Tejun Heo
2014-03-17 19:18 ` Hans de Goede [this message]
2014-03-17 19:18 ` Hans de Goede
2014-03-17 19:18 ` Hans de Goede
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=53274A91.8020809@redhat.com \
--to=hdegoede@redhat.com \
--cc=b.zolnierkie@samsung.com \
--cc=davinci-@jasper.es \
--cc=khilman@deeprootsystems.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nsekhar@ti.com \
--cc=shiraz.hashim@st.com \
--cc=tj@kernel.org \
--cc=viresh.linux@gmail.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.