From 28bb276ff858caecddfde78133f6b5b261c40a59 Mon Sep 17 00:00:00 2001
From: "Matwey V. Kornilov" <mat...@sai.msu.ru>
Date: Wed, 25 Jun 2014 00:53:54 +0400
Subject: [PATCH 1/2] parport: parport_pc: Introduce intel_bug_present function.

Put the code to check present of the Intel bug from parport_EPP_supported
into new intel_bug_present function. The later also return ECR register
to the state it has before function call.

Tested-by: Heiko Andreas Sommer <hsom...@eso.org>
Signed-off-by: Matwey V. Kornilov <mat...@sai.msu.ru>
---
 drivers/parport/parport_pc.c | 35 +++++++++++++++++++++++++----------
 1 file changed, 25 insertions(+), 10 deletions(-)

diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c
index 76ee775..4b851bb 100644
--- a/drivers/parport/parport_pc.c
+++ b/drivers/parport/parport_pc.c
@@ -1702,6 +1702,29 @@ static int parport_ECP_supported(struct parport *pb)
 }
 #endif

+static int intel_bug_present(struct parport *pb)
+{
+       int bug_present = 0;
+
+       if (priv->ecr) {
+               /* store value of ECR */
+               unsigned char ecr = inb(ECONTROL(pb));
+               unsigned char i;
+               for (i = 0x00; i < 0x80; i += 0x20) {
+                       ECR_WRITE(pb, i);
+                       if (clear_epp_timeout(pb)) {
+                               /* Phony EPP in ECP. */
+                               bug_present = 1;
+                               break;
+                       }
+               }
+               /* return ECR into the inital state */
+               ECR_WRITE(pb, ecr);
+       }
+
+       return bug_present;
+}
+
 static int parport_ECPPS2_supported(struct parport *pb)
 {
        const struct parport_pc_private *priv = pb->private_data;
@@ -1742,16 +1765,8 @@ static int parport_EPP_supported(struct parport *pb)
                return 0;  /* No way to clear timeout */

        /* Check for Intel bug. */
-       if (priv->ecr) {
-               unsigned char i;
-               for (i = 0x00; i < 0x80; i += 0x20) {
-                       ECR_WRITE(pb, i);
-                       if (clear_epp_timeout(pb)) {
-                               /* Phony EPP in ECP. */
-                               return 0;
-                       }
-               }
-       }
+       if (intel_bug_present(pb))
+               return 0;

        pb->modes |= PARPORT_MODE_EPP;

--
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to