public inbox for linux-ide@vger.kernel.org
 help / color / mirror / Atom feed
From: Damien Le Moal <dlemoal@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	linux-ide@vger.kernel.org
Cc: Niklas Cassel <cassel@kernel.org>
Subject: [GIT PULL] ata changes for 6.20-rc1
Date: Fri, 13 Feb 2026 09:24:25 +0900	[thread overview]
Message-ID: <20260213002425.113971-1-dlemoal@kernel.org> (raw)

Linus,

The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8:

  Linux 6.19-rc1 (2025-12-14 16:05:07 +1200)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/libata/linux tags/ata-6.20-rc1

for you to fetch changes up to ff4a46c278ac6a4b3f39be1492a4568b6dcc6105:

  ata: pata_ftide010: Fix some DMA timings (2026-02-04 12:23:23 +0100)

Note that this pull request generates a conflict with the scsi changes. This
conflict is starightforward to resolve. Here is the resulotion applied to
linux-next by Mark Brown:

diff --cc drivers/ata/libata.h
index 9b4e578ad07ec,0e48bd1c0c206..0000000000000
--- a/drivers/ata/libata.h
+++ b/drivers/ata/libata.h
@@@ -165,9 -164,8 +165,10 @@@ extern int ata_scsi_user_scan(struct Sc
  void ata_scsi_sdev_config(struct scsi_device *sdev);
  int ata_scsi_dev_config(struct scsi_device *sdev, struct queue_limits *lim,
  		struct ata_device *dev);
- int __ata_scsi_queuecmd(struct scsi_cmnd *scmd, struct ata_device *dev);
+ enum scsi_qc_status __ata_scsi_queuecmd(struct scsi_cmnd *scmd,
+ 					struct ata_device *dev);
 +void ata_scsi_deferred_qc_work(struct work_struct *work);
 +void ata_scsi_requeue_deferred_qc(struct ata_port *ap);

  /* libata-eh.c */
  extern unsigned int ata_internal_cmd_timeout(struct ata_device *dev, u8 cmd);


----------------------------------------------------------------
ATA changes for 6.20

 - Cleanup IRQ masking in the handling of completed report zones
   commands (Niklas).

 - Improve the handling of Thunderbolt attached devices to speed up
   device removal (Henry).

 - Several patches to generalize the existing max_sec quirks to
   facilitates quirking the maximum command size of buggy drives, many
   of which have recently showed up with the recent increase of the
   default max_sectors block limit (Niklas).

 - Cleanup the ahci-platform and sata dt-bindings schema (Rob,
   Manivannan).

 - Improve device node scan in the ahci-dwc driver (Krzysztof).

 - Remove clang W=1 warnings with the ahci-imx and ahci-xgene drivers
   (Krzysztof).

 - Fix a long standing potential command starvation situation with
   non-NCQ commands issued when NCQ commands are on-going (me).

 - Limit max_sectors to 8191 on the INTEL SSDSC2KG480G8 SSD (Niklas).

 - Remove Vesa Local Bus (VLB) support in the pata_legacy driver
   (Ethan).

 - Simple fixes in the pata_cypress (typo) and pata_ftide010 (timing)
   drivers (Ethan, Linus W.)

----------------------------------------------------------------
Damien Le Moal (2):
      ata: libata-scsi: refactor ata_scsi_translate()
      ata: libata-scsi: avoid Non-NCQ command starvation

Ethan Nelson-Moore (2):
      ata: pata_legacy: remove VLB support
      ata: pata_cypress: fix typo in error message

Henry Tseng (1):
      ata: libata: avoid long timeouts on hot-unplugged SATA DAS

Krzysztof Kozlowski (3):
      ata: ahci-dwc: Simplify with scoped for each OF child loop
      ata: ahci-imx: Fix Wvoid-pointer-to-enum-cast warning
      ata: ahci-xgene: Fix Wvoid-pointer-to-enum-cast warning

Linus Walleij (1):
      ata: pata_ftide010: Fix some DMA timings

Manivannan Sadhasivam (1):
      dt-bindings: ata: sata: Document the graph port

Niklas Cassel (8):
      ata: libata-scsi: Remove superfluous local_irq_save()
      ata: libata: Add ATA_QUIRK_MAX_SEC and convert all device quirks
      ata: libata: Add ata_force_get_fe_for_dev() helper
      ata: libata: Change libata.force to use the generic ATA_QUIRK_MAX_SEC quirk
      ata: libata: Add support to parse equal sign in libata.force
      ata: libata: Add libata.force parameter max_sec
      ata: libata: Allow more quirks
      ata: libata-core: Quirk INTEL SSDSC2KG480G8 max_sectors

Rob Herring (Arm) (1):
      dt-bindings: ata: ahci-platform: Drop unnecessary select schema

 Documentation/admin-guide/kernel-parameters.txt    |   5 +
 .../devicetree/bindings/ata/ahci-platform.yaml     |  20 -
 .../devicetree/bindings/ata/sata-common.yaml       |   3 +
 drivers/ata/Kconfig                                |  17 +-
 drivers/ata/ahci_dwc.c                             |  10 +-
 drivers/ata/ahci_imx.c                             |   2 +-
 drivers/ata/ahci_xgene.c                           |   2 +-
 drivers/ata/libata-core.c                          | 237 ++++--
 drivers/ata/libata-eh.c                            |   9 +-
 drivers/ata/libata-scsi.c                          | 182 ++++-
 drivers/ata/libata.h                               |   3 +
 drivers/ata/pata_cypress.c                         |   2 +-
 drivers/ata/pata_ftide010.c                        |   6 +-
 drivers/ata/pata_legacy.c                          | 867 +--------------------
 include/linux/ata.h                                |   3 -
 include/linux/libata.h                             |  73 +-
 16 files changed, 402 insertions(+), 1039 deletions(-)

             reply	other threads:[~2026-02-13  0:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-13  0:24 Damien Le Moal [this message]
2026-02-13  1:18 ` [GIT PULL] ata changes for 6.20-rc1 pr-tracker-bot

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=20260213002425.113971-1-dlemoal@kernel.org \
    --to=dlemoal@kernel.org \
    --cc=cassel@kernel.org \
    --cc=linux-ide@vger.kernel.org \
    --cc=torvalds@linux-foundation.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox