i2c: isch: Add module parameter for backbone clock rate if divider is unset
authorAlexander Stein <alexander.stein@systec-electronic.com>
Mon, 28 Jan 2013 09:44:12 +0000 (10:44 +0100)
committerWolfram Sang <wolfram@the-dreams.de>
Mon, 11 Feb 2013 14:53:49 +0000 (15:53 +0100)
It was observed the Host Clock Divider was not written by the driver. It
was still set to (default) 0, if not already set by BIOS, which caused
garbage on SMBus.
This driver adds a parameters which is used to calculate the divider
appropriately for a default bitrate of 100 KHz. This new divider is only
applied if the clock divider is still default 0.

Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
Reviewed-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Wolfram Sang <wolfram@the-dreams.de>
drivers/i2c/busses/i2c-isch.c

index 4099f79c228066b44dcc8e47d47987dbf63db43b..8c38aaa7417c154d330945a11f697a8288797475 100644 (file)
@@ -40,6 +40,7 @@
 /* SCH SMBus address offsets */
 #define SMBHSTCNT      (0 + sch_smba)
 #define SMBHSTSTS      (1 + sch_smba)
+#define SMBHSTCLK      (2 + sch_smba)
 #define SMBHSTADD      (4 + sch_smba) /* TSA */
 #define SMBHSTCMD      (5 + sch_smba)
 #define SMBHSTDAT0     (6 + sch_smba)
@@ -58,6 +59,9 @@
 
 static unsigned short sch_smba;
 static struct i2c_adapter sch_adapter;
+static int backbone_speed = 33000; /* backbone speed in kHz */
+module_param(backbone_speed, int, S_IRUSR | S_IWUSR);
+MODULE_PARM_DESC(backbone_speed, "Backbone speed in kHz, (default = 33000)");
 
 /*
  * Start the i2c transaction -- the i2c_access will prepare the transaction
@@ -156,6 +160,19 @@ static s32 sch_access(struct i2c_adapter *adap, u16 addr,
                dev_dbg(&sch_adapter.dev, "SMBus busy (%02x)\n", temp);
                return -EAGAIN;
        }
+       temp = inw(SMBHSTCLK);
+       if (!temp) {
+               /*
+                * We can't determine if we have 33 or 25 MHz clock for
+                * SMBus, so expect 33 MHz and calculate a bus clock of
+                * 100 kHz. If we actually run at 25 MHz the bus will be
+                * run ~75 kHz instead which should do no harm.
+                */
+               dev_notice(&sch_adapter.dev,
+                       "Clock divider unitialized. Setting defaults\n");
+               outw(backbone_speed / (4 * 100), SMBHSTCLK);
+       }
+
        dev_dbg(&sch_adapter.dev, "access size: %d %s\n", size,
                (read_write)?"READ":"WRITE");
        switch (size) {