21 May, 2019

1 commit

  • Add SPDX license identifiers to all files which:

    - Have no license information of any form

    - Have MODULE_LICENCE("GPL*") inside which was used in the initial
    scan/conversion to ignore the file

    These files fall under the project license, GPL v2 only. The resulting SPDX
    license identifier is:

    GPL-2.0-only

    Signed-off-by: Thomas Gleixner
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

12 Aug, 2017

2 commits

  • The IDE pins are managed by the pin controller, if we want to
    use these, we need to ask the pin controller to explicitly enable
    them as by default, these pins are used for other business and
    most users just rely on the SATA bridge.

    Signed-off-by: Linus Walleij
    Signed-off-by: Tejun Heo

    Linus Walleij
     
  • I added a proper pin control driver for the Gemini SoC, so retire
    this custom code and rely on the pin controller to set up the pads.

    The "IOMUX" which is routing signals between the ATA and SATA
    bridge inside of the chip is not about pin control and remains in
    place.

    Signed-off-by: Linus Walleij
    Signed-off-by: Tejun Heo

    Linus Walleij
     

02 Aug, 2017

2 commits

  • Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting
    reset lines") started to transition the reset control request API calls
    to explicitly state whether the driver needs exclusive or shared reset
    control behavior. Convert all drivers requesting exclusive resets to the
    explicit API call so the temporary transition helpers can be removed.

    No functional changes.

    Cc: linux-ide@vger.kernel.org
    Signed-off-by: Philipp Zabel
    Acked-by: Linus Walleij
    Signed-off-by: Tejun Heo

    Philipp Zabel
     
  • Drop static on a local variable, when the variable is initialized before
    any possible use. Thus, the static has no benefit.

    The semantic patch that fixes this problem is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @bad exists@
    position p;
    identifier x;
    type T;
    @@
    static T x@p;
    ...
    x =

    @@
    identifier x;
    expression e;
    type T;
    position p != bad.p;
    @@
    -static
    T x@p;
    ... when != x
    when strict
    ?x = e;
    //

    Signed-off-by: Julia Lawall
    Acked-by: Linus Walleij
    Signed-off-by: Tejun Heo

    Julia Lawall
     

13 Jun, 2017

1 commit

  • This adds a driver for the Faraday Technology FTIDE010
    PATA IP block.

    When used with the Storlink/Storm/Cortina Systems Gemini
    SoC, the PATA interface is accompanied by a PATASATA
    bridge, so while the device appear as a PATA controller,
    it attaches physically to SATA disks, and also has a
    designated memory area with registers to set up the bridge.

    The Gemini SATA bridge is separated into its own driver
    file to make things modular and make it possible to reuse
    the PATA driver as stand-alone on other systems than the
    Gemini.

    dmesg excerpt from the D-Link DIR-685 storage router:
    gemini-sata-bridge 46000000.sata: SATA ID 00000e00, PHY ID: 01000100
    gemini-sata-bridge 46000000.sata: set up the Gemini IDE/SATA nexus
    ftide010 63000000.ata: set up Gemini PATA0
    ftide010 63000000.ata: device ID 00000500, irq 26, io base 0x63000000
    ftide010 63000000.ata: SATA0 (master) start
    gemini-sata-bridge 46000000.sata: SATA0 PHY ready
    scsi host0: pata-ftide010
    ata1: PATA max UDMA/133 irq 26
    ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10302, max UDMA/133
    ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 0/32)
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 0302 PQ: 0 ANSI: 5
    ata1.00: Enabling discard_zeroes_data
    sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Write cache: enabled, read cache:
    enabled, doesn't support DPO or FUA
    ata1.00: Enabling discard_zeroes_data
    ata1.00: Enabling discard_zeroes_data
    sd 0:0:0:0: [sda] Attached SCSI disk

    After this I can flawlessly mount and read/write copy etc files
    from /dev/sda[n].

    Cc: John Feng-Hsin Chiang
    Cc: Greentime Hu
    Acked-by: Hans Ulli Kroll
    Signed-off-by: Linus Walleij
    Acked-by: Bartlomiej Zolnierkiewicz
    Signed-off-by: Tejun Heo

    Linus Walleij