1. 09 9月, 2005 1 次提交
  2. 08 9月, 2005 1 次提交
    • H
      [PATCH] scan all enabled ports on ata_piix · 6a690df5
      Hannes Reinecke 提交于
      ICH6 spec defines the PORT_ bits as:
      
      PORT_ENABLED (R/W):
      
        0 = Disabled.  The port is in the off state and cannot detect any
        devices.
      
        1 = Enabled.  The port can transition between the on, partial, and
        slumber states and can detect devices.
      
      PORT_PRESENT  (R/O)
      
        The status of this bit may change at any time.  This bit is cleared
        when the port is disabled via PORT_ENABLED.  This bit is not cleared upon
        surprise removal of a device.
      
      So from a textual view it is not necessary that PORT_PRESENT _must_ be set,
      especially if a device detection has to be done anyway.  And, in fact, this
      is the view that ACER has been taken with its new Laptops (e.g.  Travelmate
      4150).
      
      And the definition of PORT_ENABLED / PORT_PRESENT is mixed up, btw.
      Signed-off-by: NHannes Reinecke <hare@suse.de>
      Signed-off-by: NJens Axboe <axboe@suse.de>
      Cc: Jeff Garzik <jgarzik@pobox.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      6a690df5
  3. 30 8月, 2005 2 次提交
  4. 29 8月, 2005 1 次提交
    • J
      [libata] license change, other bits · af36d7f0
      Jeff Garzik 提交于
      - changes license of all code from OSL+GPL to plain ole GPL
        - except for NVIDIA, who hasn't yet responded about sata_nv
        - copyright holders were already contacted privately
      
      - adds info in each driver about where hardware/protocol docs may be
        obtained
      
      - where I have made major contributions, updated copyright dates
      af36d7f0
  5. 23 8月, 2005 1 次提交
  6. 01 8月, 2005 1 次提交
  7. 29 7月, 2005 1 次提交
  8. 31 5月, 2005 1 次提交
  9. 27 5月, 2005 1 次提交
    • J
      libata: Fix use-after-iounmap · aa8f0dc6
      Jeff Garzik 提交于
      Jens Axboe pointed out that the iounmap() call in libata was occurring
      too early, and some drivers (ahci, probably others) were using ioremap'd
      memory after it had been unmapped.
      
      The patch should address that problem by way of improving the libata
      driver API:
      
      * move ->host_stop() call after all ->port_stop() calls have occurred.
      
      * create default helper function ata_host_stop(), and move iounmap()
      call there.
      
      * add ->host_stop_prewalk() hook, use it in sata_qstor.c (hi Mark).
      sata_qstor appears to require the host-stop-before-port-stop ordering
      that existed prior to applying the attached patch.
      aa8f0dc6
  10. 17 4月, 2005 2 次提交