30 Sep, 2016

1 commit

  • This reverts commit 640847298e2b7f19 ("ahci: qoriq: Disable NCQ
    on ls2080a SoC")

    The erratum has been fixed in ls2080a v2.0 and later soc.
    In reality, customer will not get any ls2080a v1.0 soc. Neither apply
    to any products. So reverting this commit won't create any side effect.

    Blacklisting v2.0 could also be a option, but that needs to check the
    soc version which is not suitable in the driver.

    Signed-off-by: Tang Yuantian
    Signed-off-by: Tejun Heo

    Tang Yuantian
     

10 Aug, 2016

2 commits


16 Dec, 2015

3 commits


31 Oct, 2015

2 commits


16 Oct, 2015

1 commit

  • kbuild test robot reports the warnings:
    drivers/ata/ahci_qoriq.c: In function 'ahci_qoriq_hardreset':
    >> include/asm-generic/io.h:163:2: warning: 'px_is' may be used
    >> uninitialized in this function [-Wuninitialized]
    drivers/ata/ahci_qoriq.c:70:14: note: 'px_is' was declared here
    >> include/asm-generic/io.h:163:2: warning: 'px_cmd' may be used
    >> uninitialized in this function [-Wuninitialized]
    drivers/ata/ahci_qoriq.c:70:6: note: 'px_cmd' was declared here

    This patch fixed it by introducing a local variable.

    Signed-off-by: Arnd Bergmann
    Signed-off-by: Tang Yuantian
    Signed-off-by: Tejun Heo

    Arnd Bergmann
     

09 Sep, 2015

1 commit

  • Currently Freescale QorIQ series SATA is supported by ahci_platform
    driver. Some SoC specific settings have been put in uboot. So whether
    SATA works or not heavily depends on uboot.
    This patch will add a new driver to support QorIQ sata which removes
    the dependency on any other boot loader.
    Freescale QorIQ series sata, like ls1021a ls2085a ls1043a, is
    compatible with serial ATA 3.0 and AHCI 1.3 specification.

    Signed-off-by: Yuantian Tang
    Reviewed-by: Hans de Goede
    Signed-off-by: Tejun Heo

    Tang Yuantian