From: Brijesh Singh <brijesh.singh@amd.com>
To: linux-kernel@vger.kernel.org, tj@kernel.org, linux-ide@vger.kernel.org
Cc: brijesh.singh@amd.com, hdegoede@redhat.com, arnd@arndb.de
Subject: Re: [PATCH v2] ata: add AMD Seattle platform driver
Date: Wed, 20 Jan 2016 15:24:04 -0600 [thread overview]
Message-ID: <569FFAF4.6020807@amd.com> (raw)
In-Reply-To: <1452789071-4090-1-git-send-email-brijesh.singh@amd.com>
Hi Tejun,
Ping ?
-Brijesh
On 01/14/2016 10:31 AM, Brijesh Singh wrote:
> AMD Seattle SATA controller mostly conforms to AHCI interface with some
> special register to control SGPIO interface. In the case of an AHCI
> controller, the SGPIO feature is ideally implemented using the
> "Enclosure Management" register of the AHCI controller, but those
> registeres are not implemented in the Seattle SoC. Instead SoC
> (Rev B0 onwards) provides a 32-bit SGPIO control register which should
> be programmed to control the activity, locate and fault LEDs.
>
> The driver is based on ahci_platform driver.
>
> Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
> Acked-by: Hans de Goede <hdegoede@redhat.com>
> CC: tj@kernel.org
> CC: linux-ide@vger.kernel.org
> ---
> v1 patch and discussion is available here [1].
>
> Changes since v1:
> * use intverted test (fixes per Joe Perches review feedback)
> * remove the DT binding, the DT support will be implemented by
> extending the generic driver to use LED trigger frameworks
> (recommend by Arnd Bergmann)
>
> [1] https://lkml.org/lkml/2016/1/7/681
>
> drivers/ata/Kconfig | 8 ++
> drivers/ata/Makefile | 1 +
> drivers/ata/ahci_seattle.c | 210 +++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 219 insertions(+)
> create mode 100644 drivers/ata/ahci_seattle.c
>
> diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
> index 861643ea..f2ba9c0 100644
> --- a/drivers/ata/Kconfig
> +++ b/drivers/ata/Kconfig
> @@ -193,6 +193,14 @@ config SATA_FSL
>
> If unsure, say N.
>
> +config SATA_AHCI_SEATTLE
> + tristate "AMD Seattle 6.0Gbps AHCI SATA host controller support"
> + depends on ARCH_SEATTLE
> + help
> + This option enables support for AMD Seattle SATA host controller.
> +
> + If unsure, say N
> +
> config SATA_INIC162X
> tristate "Initio 162x SATA support (Very Experimental)"
> depends on PCI
> diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile
> index af45eff..9c0a96a 100644
> --- a/drivers/ata/Makefile
> +++ b/drivers/ata/Makefile
> @@ -4,6 +4,7 @@ obj-$(CONFIG_ATA) += libata.o
> # non-SFF interface
> obj-$(CONFIG_SATA_AHCI) += ahci.o libahci.o
> obj-$(CONFIG_SATA_ACARD_AHCI) += acard-ahci.o libahci.o
> +obj-$(CONFIG_SATA_AHCI_SEATTLE) += ahci_seattle.o libahci.o libahci_platform.o
> obj-$(CONFIG_SATA_AHCI_PLATFORM) += ahci_platform.o libahci.o libahci_platform.o
> obj-$(CONFIG_SATA_FSL) += sata_fsl.o
> obj-$(CONFIG_SATA_INIC162X) += sata_inic162x.o
> diff --git a/drivers/ata/ahci_seattle.c b/drivers/ata/ahci_seattle.c
> new file mode 100644
> index 0000000..6e702ab
> --- /dev/null
> +++ b/drivers/ata/ahci_seattle.c
> @@ -0,0 +1,210 @@
> +/*
> + * AMD Seattle AHCI SATA driver
> + *
> + * Copyright (c) 2015, Advanced Micro Devices
> + * Author: Brijesh Singh <brijesh.singh@amd.com>
> + *
> + * based on the AHCI SATA platform driver by Jeff Garzik and Anton Vorontsov
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/pm.h>
> +#include <linux/device.h>
> +#include <linux/of_device.h>
> +#include <linux/platform_device.h>
> +#include <linux/libata.h>
> +#include <linux/ahci_platform.h>
> +#include <linux/acpi.h>
> +#include <linux/pci_ids.h>
> +#include "ahci.h"
> +
> +/* SGPIO Control Register definition
> + *
> + * Bit Type Description
> + * 31 RW OD7.2 (activity)
> + * 30 RW OD7.1 (locate)
> + * 29 RW OD7.0 (fault)
> + * 28...8 RW OD6.2...OD0.0 (3bits per port, 1 bit per LED)
> + * 7 RO SGPIO feature flag
> + * 6:4 RO Reserved
> + * 3:0 RO Number of ports (0 means no port supported)
> + */
> +#define ACTIVITY_BIT_POS(x) (8 + (3 * x))
> +#define LOCATE_BIT_POS(x) (ACTIVITY_BIT_POS(x) + 1)
> +#define FAULT_BIT_POS(x) (LOCATE_BIT_POS(x) + 1)
> +
> +#define ACTIVITY_MASK 0x00010000
> +#define LOCATE_MASK 0x00080000
> +#define FAULT_MASK 0x00400000
> +
> +#define DRV_NAME "ahci-seattle"
> +
> +static ssize_t seattle_transmit_led_message(struct ata_port *ap, u32 state,
> + ssize_t size);
> +
> +struct seattle_plat_data {
> + void __iomem *sgpio_ctrl;
> +};
> +
> +static struct ata_port_operations ahci_port_ops = {
> + .inherits = &ahci_ops,
> +};
> +
> +static const struct ata_port_info ahci_port_info = {
> + .flags = AHCI_FLAG_COMMON,
> + .pio_mask = ATA_PIO4,
> + .udma_mask = ATA_UDMA6,
> + .port_ops = &ahci_port_ops,
> +};
> +
> +static struct ata_port_operations ahci_seattle_ops = {
> + .inherits = &ahci_ops,
> + .transmit_led_message = seattle_transmit_led_message,
> +};
> +
> +static const struct ata_port_info ahci_port_seattle_info = {
> + .flags = AHCI_FLAG_COMMON | ATA_FLAG_EM | ATA_FLAG_SW_ACTIVITY,
> + .link_flags = ATA_LFLAG_SW_ACTIVITY,
> + .pio_mask = ATA_PIO4,
> + .udma_mask = ATA_UDMA6,
> + .port_ops = &ahci_seattle_ops,
> +};
> +
> +static struct scsi_host_template ahci_platform_sht = {
> + AHCI_SHT(DRV_NAME),
> +};
> +
> +static ssize_t seattle_transmit_led_message(struct ata_port *ap, u32 state,
> + ssize_t size)
> +{
> + struct ahci_host_priv *hpriv = ap->host->private_data;
> + struct ahci_port_priv *pp = ap->private_data;
> + struct seattle_plat_data *plat_data = hpriv->plat_data;
> + unsigned long flags;
> + int pmp;
> + struct ahci_em_priv *emp;
> + u32 val;
> +
> + /* get the slot number from the message */
> + pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
> + if (pmp >= EM_MAX_SLOTS)
> + return -EINVAL;
> + emp = &pp->em_priv[pmp];
> +
> + val = ioread32(plat_data->sgpio_ctrl);
> + if (state & ACTIVITY_MASK)
> + val |= 1 << ACTIVITY_BIT_POS((ap->port_no));
> + else
> + val &= ~(1 << ACTIVITY_BIT_POS((ap->port_no)));
> +
> + if (state & LOCATE_MASK)
> + val |= 1 << LOCATE_BIT_POS((ap->port_no));
> + else
> + val &= ~(1 << LOCATE_BIT_POS((ap->port_no)));
> +
> + if (state & FAULT_MASK)
> + val |= 1 << FAULT_BIT_POS((ap->port_no));
> + else
> + val &= ~(1 << FAULT_BIT_POS((ap->port_no)));
> +
> + iowrite32(val, plat_data->sgpio_ctrl);
> +
> + spin_lock_irqsave(ap->lock, flags);
> +
> + /* save off new led state for port/slot */
> + emp->led_state = state;
> +
> + spin_unlock_irqrestore(ap->lock, flags);
> +
> + return size;
> +}
> +
> +static const struct ata_port_info *ahci_seattle_get_port_info(
> + struct platform_device *pdev, struct ahci_host_priv *hpriv)
> +{
> + struct device *dev = &pdev->dev;
> + struct seattle_plat_data *plat_data;
> + u32 val;
> +
> + plat_data = devm_kzalloc(dev, sizeof(*plat_data), GFP_KERNEL);
> + if (IS_ERR(plat_data))
> + return &ahci_port_info;
> +
> + plat_data->sgpio_ctrl = devm_ioremap_resource(dev,
> + platform_get_resource(pdev, IORESOURCE_MEM, 1));
> + if (IS_ERR(plat_data->sgpio_ctrl))
> + return &ahci_port_info;
> +
> + val = ioread32(plat_data->sgpio_ctrl);
> +
> + if (!(val & 0xf))
> + return &ahci_port_info;
> +
> + hpriv->em_loc = 0;
> + hpriv->em_buf_sz = 4;
> + hpriv->em_msg_type = EM_MSG_TYPE_LED;
> + hpriv->plat_data = plat_data;
> +
> + dev_info(dev, "SGPIO LED control is enabled.\n");
> + return &ahci_port_seattle_info;
> +}
> +
> +static int ahci_seattle_probe(struct platform_device *pdev)
> +{
> + int rc;
> + struct ahci_host_priv *hpriv;
> +
> + hpriv = ahci_platform_get_resources(pdev);
> + if (IS_ERR(hpriv))
> + return PTR_ERR(hpriv);
> +
> + rc = ahci_platform_enable_resources(hpriv);
> + if (rc)
> + return rc;
> +
> + rc = ahci_platform_init_host(pdev, hpriv,
> + ahci_seattle_get_port_info(pdev, hpriv),
> + &ahci_platform_sht);
> + if (rc)
> + goto disable_resources;
> +
> + return 0;
> +disable_resources:
> + ahci_platform_disable_resources(hpriv);
> + return rc;
> +}
> +
> +static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
> + ahci_platform_resume);
> +
> +static const struct acpi_device_id ahci_acpi_match[] = {
> + { "AMDI0600", 0 },
> + {}
> +};
> +MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
> +
> +static struct platform_driver ahci_seattle_driver = {
> + .probe = ahci_seattle_probe,
> + .remove = ata_platform_remove_one,
> + .driver = {
> + .name = DRV_NAME,
> + .acpi_match_table = ahci_acpi_match,
> + .pm = &ahci_pm_ops,
> + },
> +};
> +module_platform_driver(ahci_seattle_driver);
> +
> +MODULE_DESCRIPTION("Seattle AHCI SATA platform driver");
> +MODULE_AUTHOR("Brijesh Singh <brijesh.singh@amd.com>");
> +MODULE_LICENSE("GPL");
> +MODULE_ALIAS("platform:" DRV_NAME);
>
WARNING: multiple messages have this Message-ID (diff)
From: Brijesh Singh <brijesh.singh@amd.com>
To: <linux-kernel@vger.kernel.org>, <tj@kernel.org>,
<linux-ide@vger.kernel.org>
Cc: <brijesh.singh@amd.com>, <hdegoede@redhat.com>, <arnd@arndb.de>
Subject: Re: [PATCH v2] ata: add AMD Seattle platform driver
Date: Wed, 20 Jan 2016 15:24:04 -0600 [thread overview]
Message-ID: <569FFAF4.6020807@amd.com> (raw)
In-Reply-To: <1452789071-4090-1-git-send-email-brijesh.singh@amd.com>
Hi Tejun,
Ping ?
-Brijesh
On 01/14/2016 10:31 AM, Brijesh Singh wrote:
> AMD Seattle SATA controller mostly conforms to AHCI interface with some
> special register to control SGPIO interface. In the case of an AHCI
> controller, the SGPIO feature is ideally implemented using the
> "Enclosure Management" register of the AHCI controller, but those
> registeres are not implemented in the Seattle SoC. Instead SoC
> (Rev B0 onwards) provides a 32-bit SGPIO control register which should
> be programmed to control the activity, locate and fault LEDs.
>
> The driver is based on ahci_platform driver.
>
> Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
> Acked-by: Hans de Goede <hdegoede@redhat.com>
> CC: tj@kernel.org
> CC: linux-ide@vger.kernel.org
> ---
> v1 patch and discussion is available here [1].
>
> Changes since v1:
> * use intverted test (fixes per Joe Perches review feedback)
> * remove the DT binding, the DT support will be implemented by
> extending the generic driver to use LED trigger frameworks
> (recommend by Arnd Bergmann)
>
> [1] https://lkml.org/lkml/2016/1/7/681
>
> drivers/ata/Kconfig | 8 ++
> drivers/ata/Makefile | 1 +
> drivers/ata/ahci_seattle.c | 210 +++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 219 insertions(+)
> create mode 100644 drivers/ata/ahci_seattle.c
>
> diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
> index 861643ea..f2ba9c0 100644
> --- a/drivers/ata/Kconfig
> +++ b/drivers/ata/Kconfig
> @@ -193,6 +193,14 @@ config SATA_FSL
>
> If unsure, say N.
>
> +config SATA_AHCI_SEATTLE
> + tristate "AMD Seattle 6.0Gbps AHCI SATA host controller support"
> + depends on ARCH_SEATTLE
> + help
> + This option enables support for AMD Seattle SATA host controller.
> +
> + If unsure, say N
> +
> config SATA_INIC162X
> tristate "Initio 162x SATA support (Very Experimental)"
> depends on PCI
> diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile
> index af45eff..9c0a96a 100644
> --- a/drivers/ata/Makefile
> +++ b/drivers/ata/Makefile
> @@ -4,6 +4,7 @@ obj-$(CONFIG_ATA) += libata.o
> # non-SFF interface
> obj-$(CONFIG_SATA_AHCI) += ahci.o libahci.o
> obj-$(CONFIG_SATA_ACARD_AHCI) += acard-ahci.o libahci.o
> +obj-$(CONFIG_SATA_AHCI_SEATTLE) += ahci_seattle.o libahci.o libahci_platform.o
> obj-$(CONFIG_SATA_AHCI_PLATFORM) += ahci_platform.o libahci.o libahci_platform.o
> obj-$(CONFIG_SATA_FSL) += sata_fsl.o
> obj-$(CONFIG_SATA_INIC162X) += sata_inic162x.o
> diff --git a/drivers/ata/ahci_seattle.c b/drivers/ata/ahci_seattle.c
> new file mode 100644
> index 0000000..6e702ab
> --- /dev/null
> +++ b/drivers/ata/ahci_seattle.c
> @@ -0,0 +1,210 @@
> +/*
> + * AMD Seattle AHCI SATA driver
> + *
> + * Copyright (c) 2015, Advanced Micro Devices
> + * Author: Brijesh Singh <brijesh.singh@amd.com>
> + *
> + * based on the AHCI SATA platform driver by Jeff Garzik and Anton Vorontsov
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/pm.h>
> +#include <linux/device.h>
> +#include <linux/of_device.h>
> +#include <linux/platform_device.h>
> +#include <linux/libata.h>
> +#include <linux/ahci_platform.h>
> +#include <linux/acpi.h>
> +#include <linux/pci_ids.h>
> +#include "ahci.h"
> +
> +/* SGPIO Control Register definition
> + *
> + * Bit Type Description
> + * 31 RW OD7.2 (activity)
> + * 30 RW OD7.1 (locate)
> + * 29 RW OD7.0 (fault)
> + * 28...8 RW OD6.2...OD0.0 (3bits per port, 1 bit per LED)
> + * 7 RO SGPIO feature flag
> + * 6:4 RO Reserved
> + * 3:0 RO Number of ports (0 means no port supported)
> + */
> +#define ACTIVITY_BIT_POS(x) (8 + (3 * x))
> +#define LOCATE_BIT_POS(x) (ACTIVITY_BIT_POS(x) + 1)
> +#define FAULT_BIT_POS(x) (LOCATE_BIT_POS(x) + 1)
> +
> +#define ACTIVITY_MASK 0x00010000
> +#define LOCATE_MASK 0x00080000
> +#define FAULT_MASK 0x00400000
> +
> +#define DRV_NAME "ahci-seattle"
> +
> +static ssize_t seattle_transmit_led_message(struct ata_port *ap, u32 state,
> + ssize_t size);
> +
> +struct seattle_plat_data {
> + void __iomem *sgpio_ctrl;
> +};
> +
> +static struct ata_port_operations ahci_port_ops = {
> + .inherits = &ahci_ops,
> +};
> +
> +static const struct ata_port_info ahci_port_info = {
> + .flags = AHCI_FLAG_COMMON,
> + .pio_mask = ATA_PIO4,
> + .udma_mask = ATA_UDMA6,
> + .port_ops = &ahci_port_ops,
> +};
> +
> +static struct ata_port_operations ahci_seattle_ops = {
> + .inherits = &ahci_ops,
> + .transmit_led_message = seattle_transmit_led_message,
> +};
> +
> +static const struct ata_port_info ahci_port_seattle_info = {
> + .flags = AHCI_FLAG_COMMON | ATA_FLAG_EM | ATA_FLAG_SW_ACTIVITY,
> + .link_flags = ATA_LFLAG_SW_ACTIVITY,
> + .pio_mask = ATA_PIO4,
> + .udma_mask = ATA_UDMA6,
> + .port_ops = &ahci_seattle_ops,
> +};
> +
> +static struct scsi_host_template ahci_platform_sht = {
> + AHCI_SHT(DRV_NAME),
> +};
> +
> +static ssize_t seattle_transmit_led_message(struct ata_port *ap, u32 state,
> + ssize_t size)
> +{
> + struct ahci_host_priv *hpriv = ap->host->private_data;
> + struct ahci_port_priv *pp = ap->private_data;
> + struct seattle_plat_data *plat_data = hpriv->plat_data;
> + unsigned long flags;
> + int pmp;
> + struct ahci_em_priv *emp;
> + u32 val;
> +
> + /* get the slot number from the message */
> + pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;
> + if (pmp >= EM_MAX_SLOTS)
> + return -EINVAL;
> + emp = &pp->em_priv[pmp];
> +
> + val = ioread32(plat_data->sgpio_ctrl);
> + if (state & ACTIVITY_MASK)
> + val |= 1 << ACTIVITY_BIT_POS((ap->port_no));
> + else
> + val &= ~(1 << ACTIVITY_BIT_POS((ap->port_no)));
> +
> + if (state & LOCATE_MASK)
> + val |= 1 << LOCATE_BIT_POS((ap->port_no));
> + else
> + val &= ~(1 << LOCATE_BIT_POS((ap->port_no)));
> +
> + if (state & FAULT_MASK)
> + val |= 1 << FAULT_BIT_POS((ap->port_no));
> + else
> + val &= ~(1 << FAULT_BIT_POS((ap->port_no)));
> +
> + iowrite32(val, plat_data->sgpio_ctrl);
> +
> + spin_lock_irqsave(ap->lock, flags);
> +
> + /* save off new led state for port/slot */
> + emp->led_state = state;
> +
> + spin_unlock_irqrestore(ap->lock, flags);
> +
> + return size;
> +}
> +
> +static const struct ata_port_info *ahci_seattle_get_port_info(
> + struct platform_device *pdev, struct ahci_host_priv *hpriv)
> +{
> + struct device *dev = &pdev->dev;
> + struct seattle_plat_data *plat_data;
> + u32 val;
> +
> + plat_data = devm_kzalloc(dev, sizeof(*plat_data), GFP_KERNEL);
> + if (IS_ERR(plat_data))
> + return &ahci_port_info;
> +
> + plat_data->sgpio_ctrl = devm_ioremap_resource(dev,
> + platform_get_resource(pdev, IORESOURCE_MEM, 1));
> + if (IS_ERR(plat_data->sgpio_ctrl))
> + return &ahci_port_info;
> +
> + val = ioread32(plat_data->sgpio_ctrl);
> +
> + if (!(val & 0xf))
> + return &ahci_port_info;
> +
> + hpriv->em_loc = 0;
> + hpriv->em_buf_sz = 4;
> + hpriv->em_msg_type = EM_MSG_TYPE_LED;
> + hpriv->plat_data = plat_data;
> +
> + dev_info(dev, "SGPIO LED control is enabled.\n");
> + return &ahci_port_seattle_info;
> +}
> +
> +static int ahci_seattle_probe(struct platform_device *pdev)
> +{
> + int rc;
> + struct ahci_host_priv *hpriv;
> +
> + hpriv = ahci_platform_get_resources(pdev);
> + if (IS_ERR(hpriv))
> + return PTR_ERR(hpriv);
> +
> + rc = ahci_platform_enable_resources(hpriv);
> + if (rc)
> + return rc;
> +
> + rc = ahci_platform_init_host(pdev, hpriv,
> + ahci_seattle_get_port_info(pdev, hpriv),
> + &ahci_platform_sht);
> + if (rc)
> + goto disable_resources;
> +
> + return 0;
> +disable_resources:
> + ahci_platform_disable_resources(hpriv);
> + return rc;
> +}
> +
> +static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
> + ahci_platform_resume);
> +
> +static const struct acpi_device_id ahci_acpi_match[] = {
> + { "AMDI0600", 0 },
> + {}
> +};
> +MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
> +
> +static struct platform_driver ahci_seattle_driver = {
> + .probe = ahci_seattle_probe,
> + .remove = ata_platform_remove_one,
> + .driver = {
> + .name = DRV_NAME,
> + .acpi_match_table = ahci_acpi_match,
> + .pm = &ahci_pm_ops,
> + },
> +};
> +module_platform_driver(ahci_seattle_driver);
> +
> +MODULE_DESCRIPTION("Seattle AHCI SATA platform driver");
> +MODULE_AUTHOR("Brijesh Singh <brijesh.singh@amd.com>");
> +MODULE_LICENSE("GPL");
> +MODULE_ALIAS("platform:" DRV_NAME);
>
next prev parent reply other threads:[~2016-01-20 21:26 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-14 16:31 [PATCH v2] ata: add AMD Seattle platform driver Brijesh Singh
2016-01-14 16:31 ` Brijesh Singh
2016-01-20 21:24 ` Brijesh Singh [this message]
2016-01-20 21:24 ` Brijesh Singh
2016-01-25 20:43 ` Tejun Heo
2016-01-26 9:36 ` Hans de Goede
2016-03-16 20:12 ` Brijesh Singh
2016-03-16 20:12 ` Brijesh Singh
2016-01-26 12:17 ` Arnd Bergmann
2016-01-26 16:56 ` Brijesh Singh
2016-01-26 16:56 ` Brijesh Singh
2016-01-29 21:22 ` Arnd Bergmann
2016-01-29 21:31 ` One Thousand Gnomes
2016-02-01 18:56 ` Brijesh Singh
2016-02-01 18:56 ` Brijesh Singh
2016-02-01 20:14 ` Arnd Bergmann
2016-02-01 22:15 ` Brijesh Singh
2016-02-01 22:15 ` Brijesh Singh
2016-02-02 14:08 ` Arnd Bergmann
2016-02-02 18:37 ` Brijesh Singh
2016-02-02 18:37 ` Brijesh Singh
2016-02-05 14:50 ` Arnd Bergmann
2016-02-05 17:23 ` Brijesh Singh
2016-02-05 17:23 ` Brijesh Singh
2016-02-08 18:12 ` Brijesh Singh
2016-02-08 18:12 ` Brijesh Singh
2016-03-16 21:07 ` Tejun Heo
2016-03-17 17:36 ` Arnd Bergmann
2016-03-18 18:36 ` Brijesh Singh
2016-03-18 18:36 ` Brijesh Singh
2016-03-18 20:19 ` Tejun Heo
2016-04-14 9:08 ` Matthias Brugger
2016-04-14 22:14 ` Brijesh Singh
2016-04-14 22:14 ` Brijesh Singh
2016-04-13 19:15 ` Tejun Heo
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=569FFAF4.6020807@amd.com \
--to=brijesh.singh@amd.com \
--cc=arnd@arndb.de \
--cc=hdegoede@redhat.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tj@kernel.org \
/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.