Skip to content

Commit 120357e

Browse files
Uenal Mutluaxboe
authored andcommitted
drivers: ata: ahci_sunxi: Increased SATA/AHCI DMA TX/RX FIFOs
Increasing the SATA/AHCI DMA TX/RX FIFOs (P0DMACR.TXTS and .RXTS, ie. TX_TRANSACTION_SIZE and RX_TRANSACTION_SIZE) from default 0x0 each to 0x3 each, gives a write performance boost of 120 MiB/s to 132 MiB/s from lame 36 MiB/s to 45 MiB/s previously. Read performance is above 200 MiB/s. [tested on SSD using dd bs=4K/8K/12K/16K/20K/24K/32K: peak-perf at 12K] Tested on the SBCs Banana Pi R1 (aka Lamobo R1) and Banana Pi M1 which are based on the Allwinner A20 32bit-SoC (ARMv7-a / arm-linux-gnueabihf). These devices are RaspberryPi-like small devices. This problem of slow SATA write-speed with these small devices lasts for about 7 years now (beginning with the A10 SoC). Many commentators throughout the years wrongly assumed the slow write speed was a hardware limitation. This patch finally solves the problem, which in fact was just a hard-to-find software problem due to lack of SATA/AHCI documentation by the SoC-maker Allwinner Technology. Lists of the affected sunxi and other boards and SoCs with SATA using the ahci_sunxi driver: $ grep -i -e "^&ahci" arch/arm/boot/dts/sun*dts and http://linux-sunxi.org/SATA#Devices_with_SATA_ports See also http://linux-sunxi.org/Category:Devices_with_SATA_port Tested-by: Chen-Yu Tsai <[email protected]> Acked-by: Maxime Ripard <[email protected]> Reviewed-by: Hans de Goede <[email protected]> Signed-off-by: Uenal Mutlu <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
1 parent 8756a25 commit 120357e

File tree

1 file changed

+45
-2
lines changed

1 file changed

+45
-2
lines changed

drivers/ata/ahci_sunxi.c

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,51 @@ static void ahci_sunxi_start_engine(struct ata_port *ap)
149149
void __iomem *port_mmio = ahci_port_base(ap);
150150
struct ahci_host_priv *hpriv = ap->host->private_data;
151151

152-
/* Setup DMA before DMA start */
153-
sunxi_clrsetbits(hpriv->mmio + AHCI_P0DMACR, 0x0000ff00, 0x00004400);
152+
/* Setup DMA before DMA start
153+
*
154+
* NOTE: A similar SoC with SATA/AHCI by Texas Instruments documents
155+
* this Vendor Specific Port (P0DMACR, aka PxDMACR) in its
156+
* User's Guide document (TMS320C674x/OMAP-L1x Processor
157+
* Serial ATA (SATA) Controller, Literature Number: SPRUGJ8C,
158+
* March 2011, Chapter 4.33 Port DMA Control Register (P0DMACR),
159+
* p.68, https://www.ti.com/lit/ug/sprugj8c/sprugj8c.pdf)
160+
* as equivalent to the following struct:
161+
*
162+
* struct AHCI_P0DMACR_t
163+
* {
164+
* unsigned TXTS : 4;
165+
* unsigned RXTS : 4;
166+
* unsigned TXABL : 4;
167+
* unsigned RXABL : 4;
168+
* unsigned Reserved : 16;
169+
* };
170+
*
171+
* TXTS: Transmit Transaction Size (TX_TRANSACTION_SIZE).
172+
* This field defines the DMA transaction size in DWORDs for
173+
* transmit (system bus read, device write) operation. [...]
174+
*
175+
* RXTS: Receive Transaction Size (RX_TRANSACTION_SIZE).
176+
* This field defines the Port DMA transaction size in DWORDs
177+
* for receive (system bus write, device read) operation. [...]
178+
*
179+
* TXABL: Transmit Burst Limit.
180+
* This field allows software to limit the VBUSP master read
181+
* burst size. [...]
182+
*
183+
* RXABL: Receive Burst Limit.
184+
* Allows software to limit the VBUSP master write burst
185+
* size. [...]
186+
*
187+
* Reserved: Reserved.
188+
*
189+
*
190+
* NOTE: According to the above document, the following alternative
191+
* to the code below could perhaps be a better option
192+
* (or preparation) for possible further improvements later:
193+
* sunxi_clrsetbits(hpriv->mmio + AHCI_P0DMACR, 0x0000ffff,
194+
* 0x00000033);
195+
*/
196+
sunxi_clrsetbits(hpriv->mmio + AHCI_P0DMACR, 0x0000ffff, 0x00004433);
154197

155198
/* Start DMA */
156199
sunxi_setbits(port_mmio + PORT_CMD, PORT_CMD_START);

0 commit comments

Comments
 (0)