1. 02 Mar, 2010 33 commits
  2. 01 Mar, 2010 7 commits
    • Linus Torvalds's avatar
      Merge branch 'davinci-for-linus' of... · 13dda80e
      Linus Torvalds authored
      Merge branch 'davinci-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-davinci
      
      * 'davinci-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-davinci: (40 commits)
        DaVinci DM365: Adding support for SPI EEPROM
        DaVinci DM365: Adding DM365 SPI support
        DaVinci DM355: Modifications to DM355 SPI support
        DaVinci: SPI: Adding header file for SPI support.
        davinci: dm646x: CDCE clocks: davinci_clk converted to clk_lookup
        davinci: clkdev cleanup: remove clk_lookup wrapper, use clkdev_add_table()
        DaVinci: DM365: Voice codec support for the DM365 SoC
        davinci: clock: let clk->set_rate function sleep
        Add SDA and SCL pin numbers to i2c platform data
        davinci: da8xx/omap-l1xx: Add EDMA platform data for da850/omap-l138
        davinci: build list of unused EDMA events dynamically
        davinci: Fix edma_alloc_channel api for EDMA_CHANNEL_ANY case
        davinci: Keep count of channel controllers on a platform
        davinci: Correct return value of edma_alloc_channel api
        davinci: add CDCE949 support on DM6467 EVM
        davinci: add support for CDCE949 clock synthesizer
        davinci: da850/omap-l138 EVM: register for suspend support
        davinci: da850/omap-l138: add support for SoC suspend
        davinci: add power management support
        DaVinci: DM365: Changing default queue for DM365.
        ...
      13dda80e
    • Linus Torvalds's avatar
      Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev · 379e3a82
      Linus Torvalds authored
      * 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev: (38 commits)
        sata_via: Delay on vt6420 when starting ATAPI DMA write
        ata: Detect Delkin Devices compact flash
        pata_efar: Enable parallel scanning
        pata_atiixp: enable parallel scan
        [libata] pata_atiixp: add locking for parallel scanning
        [libata] pata_efar: add locking for parallel scanning
        libata: Pass host flags into the pci helper
        [libata] pata_marvell: CONFIG_AHCI is really CONFIG_SATA_AHCI
        libata: Allow pata_legacy to be built on non-ISA but PCI systems
        pata_pdc202xx_old: fix UDMA mode for PDC2026x chipsets
        pata_pdc202xx_old: fix UDMA mode for Promise UDMA33 cards
        [libata] pata_at91: fix backslash-continued string
        pata_via: store UDMA masks in via_isa_bridges table
        pata_via: fix address setup timings underlocking
        pata_serverworks: fix error message
        pata_serverworks: fix PIO setup for the second channel
        pata_efar: fix secondary port support
        pata_cypress: fix PIO timings underclocking
        pata_cs5535: use correct values for PIO1 and PIO2 data timings
        pata_cmd64x: remove unused definitions
        ...
      379e3a82
    • Bart Hartgers's avatar
      sata_via: Delay on vt6420 when starting ATAPI DMA write · a55ab496
      Bart Hartgers authored
      When writing a disc on certain lite-on dvd-writers (also rebadged
      as optiarc/LG/...) connected to a vt6420, the ATAPI CDB ends
      up in the datastream and on the disc, causing silent corruption.
      Delaying between sending the CDB and starting DMA seems to
      prevent this.
      
      I do not know if there are burners that do not suffer from
      this, but the patch should be safe for those as well.
      
      There are many reports of this issue, but AFAICT no solution was
      found before. For example:
      http://lkml.indiana.edu/hypermail/linux/kernel/0802.3/0561.htmlSigned-off-by: default avatarBart Hartgers <bart.hartgers@gmail.com>
      Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
      a55ab496
    • Ben Gardner's avatar
      ata: Detect Delkin Devices compact flash · 4b7d1c05
      Ben Gardner authored
      I have a Delkin Devices compact flash card that isn't being recognized using the
      SATA/PATA drivers.
      The card is recognized and works with the deprecated ATA drivers.
      
      The error I am seeing is:
      ata1.00: failed to IDENTIFY (device reports invalid type, err_mask=0x0)
      
      I tracked it down to ata_id_is_cfa() in include/linux/ata.h.
      The Delkin card has id[0] set to 0x844a and id[83] set to 0.
      This isn't what the kernel expects and is probably incorrect.
      
      The simplest work-around is to add a check for 0x844a to ata_id_is_cfa().
      Signed-off-by: default avatarBen Gardner <gardner.ben@gmail.com>
      Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
      4b7d1c05
    • Alan Cox's avatar
      pata_efar: Enable parallel scanning · 7e044a12
      Alan Cox authored
      Again originally proposed by Bartlomiej but this does it by using the
      generic helper logic instead.
      Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
      Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
      7e044a12
    • Alan Cox's avatar
      pata_atiixp: enable parallel scan · 1d3a8118
      Alan Cox authored
      This was originally proposed by Bartlomiej but as a device specific
      expansion of the init_one function rather than making the helper more
      generic.
      
      Enable the parallel scan via the generic flags.
      Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
      Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
      1d3a8118
    • Bartlomiej Zolnierkiewicz's avatar
      [libata] pata_atiixp: add locking for parallel scanning · e99846f1
      Bartlomiej Zolnierkiewicz authored
      This is similar change as commit 60c3be38 for ata_piix host driver
      and while pata_atiixp doesn't enable parallel scan yet the race
      could probably also be triggered by requesting re-scanning of both
      ports at the same time using SCSI sysfs interface.
      
      [Ported to current tree without other patch dependancies by Alan Cox]
      
      Original is
      Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
      
      This one is
      Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
      Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
      e99846f1