On Wed, Nov 16, 2016 at 11:11:19AM +0800, yuantian.tang@xxxxxxx wrote: > From: Tang Yuantian <Yuantian.Tang@xxxxxxx> > > For ls1021a and ls1046a socs, sata ecc must be disabled. > If ecc register is not found in sata node in dts, report > a warning. Hi Yuantian, What happens if sata ecc is _not_ disaled on those socs? Can the driver still work? If not then it is probably a better idea to return an error code that can prevent the driver from initialising. Thanks, Mathieu > > Signed-off-by: Tang Yuantian <yuantian.tang@xxxxxxx> > --- > drivers/ata/ahci_qoriq.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/ata/ahci_qoriq.c b/drivers/ata/ahci_qoriq.c > index 45c88de..66eb4b5 100644 > --- a/drivers/ata/ahci_qoriq.c > +++ b/drivers/ata/ahci_qoriq.c > @@ -158,6 +158,7 @@ static int ahci_qoriq_phy_init(struct ahci_host_priv *hpriv) > > switch (qpriv->type) { > case AHCI_LS1021A: > + WARN_ON(!qpriv->ecc_addr); > writel(SATA_ECC_DISABLE, qpriv->ecc_addr); > writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1); > writel(LS1021A_PORT_PHY2, reg_base + PORT_PHY2); > @@ -185,6 +186,7 @@ static int ahci_qoriq_phy_init(struct ahci_host_priv *hpriv) > break; > > case AHCI_LS1046A: > + WARN_ON(!qpriv->ecc_addr); > writel(LS1046A_SATA_ECC_DIS, qpriv->ecc_addr); > writel(AHCI_PORT_PHY_1_CFG, reg_base + PORT_PHY1); > writel(AHCI_PORT_TRANS_CFG, reg_base + PORT_TRANS); > -- > 2.1.0.27.g96db324 > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@xxxxxxxxxxxxxxxxxxx > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html