All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ata: sata_mv: setting PHY speed according to SControl speed
@ 2013-12-23 12:07 ` Simon Guinot
  0 siblings, 0 replies; 32+ messages in thread
From: Simon Guinot @ 2013-12-23 12:07 UTC (permalink / raw)
  To: Jeff Garzik, Tejun Heo
  Cc: linux-ide, linux-arm-kernel, Lior Amsalem, Simon Guinot,
	Thomas Petazzoni, Jason Cooper, Andrew Lunn, Gregory Clement,
	Sebastian Hesselbarth, stable

From: Lior Amsalem <alior@marvell.com>

From: Lior Amsalem <alior@marvell.com>

This patch fixes a SATA hotplug issue on the Armada 370 and Armada XP
SoCs. Without it, if a disk is unplugged from a SATA port, then further
hotplug notification are now longer received on this port.

This should be applied to every -stable kernel supporting Armada SoCs.

Signed-off-by: Lior Amsalem <alior@marvell.com>
Signed-off-by: Nadav Haklai <nadavh@marvell.com>
Signed-off-by: Simon Guinot <simon.guinot@sequanux.org>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Gregory Clement <gregory.clement@free-electrons.com>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: stable@vger.kernel.org
---
 drivers/ata/sata_mv.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c
index 56be318..89ca472 100644
--- a/drivers/ata/sata_mv.c
+++ b/drivers/ata/sata_mv.c
@@ -304,6 +304,7 @@ enum {
 	MV5_LTMODE		= 0x30,
 	MV5_PHY_CTL		= 0x0C,
 	SATA_IFCFG		= 0x050,
+	LP_PHY_CTL		= 0x058,
 
 	MV_M2_PREAMP_MASK	= 0x7e0,
 
@@ -1358,6 +1359,7 @@ static int mv_scr_write(struct ata_link *link, unsigned int sc_reg_in, u32 val)
 
 	if (ofs != 0xffffffffU) {
 		void __iomem *addr = mv_ap_base(link->ap) + ofs;
+		void __iomem *lp_phy_addr = mv_ap_base(link->ap) + LP_PHY_CTL;
 		if (sc_reg_in == SCR_CONTROL) {
 			/*
 			 * Workaround for 88SX60x1 FEr SATA#26:
@@ -1374,6 +1376,14 @@ static int mv_scr_write(struct ata_link *link, unsigned int sc_reg_in, u32 val)
 			 */
 			if ((val & 0xf) == 1 || (readl(addr) & 0xf) == 1)
 				val |= 0xf000;
+
+			/*
+			 * Setting PHY speed according to SControl speed
+			 */
+			if ((val & 0xf0) == 0x10)
+				writelfl(0x7, lp_phy_addr);
+			else
+				writelfl(0x227, lp_phy_addr);
 		}
 		writelfl(val, addr);
 		return 0;
-- 
1.8.5.1

^ permalink raw reply related	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2014-01-13 14:36 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-23 12:07 [PATCH] ata: sata_mv: setting PHY speed according to SControl speed Simon Guinot
2013-12-23 12:07 ` Simon Guinot
2013-12-24 19:46 ` Jason Cooper
2013-12-24 19:46   ` Jason Cooper
2013-12-25 16:41   ` Andrew Lunn
2013-12-25 16:41     ` Andrew Lunn
2013-12-25 22:40   ` Simon Guinot
2013-12-25 22:40     ` Simon Guinot
2013-12-26  7:53     ` Thomas Petazzoni
2013-12-26  7:53       ` Thomas Petazzoni
2013-12-26 11:54       ` Simon Guinot
2013-12-26 11:54         ` Simon Guinot
2013-12-26 13:34         ` Thomas Petazzoni
2013-12-26 13:34           ` Thomas Petazzoni
2013-12-27 15:49     ` Jason Cooper
2013-12-27 15:49       ` Jason Cooper
2013-12-26 18:01 ` Andrew Lunn
2013-12-26 18:01   ` Andrew Lunn
2013-12-27 17:37   ` Simon Guinot
2013-12-27 17:37     ` Simon Guinot
2013-12-31 12:12 ` Tejun Heo
2013-12-31 12:12   ` Tejun Heo
2013-12-31 17:05   ` Andrew Lunn
2013-12-31 17:05     ` Andrew Lunn
2014-01-08 13:45     ` Lior Amsalem
2014-01-08 13:45       ` Lior Amsalem
2014-01-10 17:44       ` Jason Cooper
2014-01-10 17:44         ` Jason Cooper
2014-01-10 23:55         ` Thomas Petazzoni
2014-01-10 23:55           ` Thomas Petazzoni
2014-01-13 14:36           ` Jason Cooper
2014-01-13 14:36             ` Jason Cooper

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.