blob: 3effc9a1778c31eb0b9f683e0fa5cb7ecb305270 [file] [log] [blame]
David Box894acb22015-01-15 01:12:17 -08001/*
2 * Intel BayTrail PMIC I2C bus semaphore implementaion
3 * Copyright (c) 2014, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 */
David Box894acb22015-01-15 01:12:17 -080014#include <linux/delay.h>
15#include <linux/device.h>
16#include <linux/acpi.h>
17#include <linux/i2c.h>
18#include <linux/interrupt.h>
Hans de Goede086cb4a2017-02-10 11:27:56 +010019#include <linux/pm_qos.h>
Andy Shevchenkoc8e043e2015-02-10 19:06:08 +020020
David Box894acb22015-01-15 01:12:17 -080021#include <asm/iosf_mbi.h>
Andy Shevchenkoc8e043e2015-02-10 19:06:08 +020022
David Box894acb22015-01-15 01:12:17 -080023#include "i2c-designware-core.h"
24
25#define SEMAPHORE_TIMEOUT 100
26#define PUNIT_SEMAPHORE 0x7
Hans de Goedefd476fa2017-02-10 11:27:58 +010027#define PUNIT_SEMAPHORE_CHT 0x10e
Andy Shevchenko9b5c9f02015-02-10 19:06:06 +020028#define PUNIT_SEMAPHORE_BIT BIT(0)
29#define PUNIT_SEMAPHORE_ACQUIRE BIT(1)
David Box894acb22015-01-15 01:12:17 -080030
31static unsigned long acquired;
32
Hans de Goedefd476fa2017-02-10 11:27:58 +010033static u32 get_sem_addr(struct dw_i2c_dev *dev)
34{
35 if (dev->flags & MODEL_CHERRYTRAIL)
36 return PUNIT_SEMAPHORE_CHT;
37 else
38 return PUNIT_SEMAPHORE;
39}
40
Hans de Goede62aee932017-02-10 11:27:54 +010041static int get_sem(struct dw_i2c_dev *dev, u32 *sem)
David Box894acb22015-01-15 01:12:17 -080042{
Hans de Goedefd476fa2017-02-10 11:27:58 +010043 u32 addr = get_sem_addr(dev);
Andy Shevchenko9b5c9f02015-02-10 19:06:06 +020044 u32 data;
David Box894acb22015-01-15 01:12:17 -080045 int ret;
46
Hans de Goedefd476fa2017-02-10 11:27:58 +010047 ret = iosf_mbi_read(BT_MBI_UNIT_PMC, MBI_REG_READ, addr, &data);
David Box894acb22015-01-15 01:12:17 -080048 if (ret) {
Hans de Goede62aee932017-02-10 11:27:54 +010049 dev_err(dev->dev, "iosf failed to read punit semaphore\n");
David Box894acb22015-01-15 01:12:17 -080050 return ret;
51 }
52
Andy Shevchenko9b5c9f02015-02-10 19:06:06 +020053 *sem = data & PUNIT_SEMAPHORE_BIT;
David Box894acb22015-01-15 01:12:17 -080054
55 return 0;
56}
57
Hans de Goede62aee932017-02-10 11:27:54 +010058static void reset_semaphore(struct dw_i2c_dev *dev)
David Box894acb22015-01-15 01:12:17 -080059{
Hans de Goedefd476fa2017-02-10 11:27:58 +010060 if (iosf_mbi_modify(BT_MBI_UNIT_PMC, MBI_REG_READ, get_sem_addr(dev),
Hans de Goede519e23a2017-02-10 11:27:57 +010061 0, PUNIT_SEMAPHORE_BIT))
Hans de Goede62aee932017-02-10 11:27:54 +010062 dev_err(dev->dev, "iosf failed to reset punit semaphore during write\n");
Hans de Goede086cb4a2017-02-10 11:27:56 +010063
64 pm_qos_update_request(&dev->pm_qos, PM_QOS_DEFAULT_VALUE);
David Box894acb22015-01-15 01:12:17 -080065}
66
Andy Shevchenkoc8e043e2015-02-10 19:06:08 +020067static int baytrail_i2c_acquire(struct dw_i2c_dev *dev)
David Box894acb22015-01-15 01:12:17 -080068{
Hans de Goedefd476fa2017-02-10 11:27:58 +010069 u32 addr = get_sem_addr(dev);
Andy Shevchenko4077a382015-11-11 19:59:29 +020070 u32 sem = PUNIT_SEMAPHORE_ACQUIRE;
David Box894acb22015-01-15 01:12:17 -080071 int ret;
72 unsigned long start, end;
73
Andy Shevchenkoebf2ef82015-02-10 19:06:10 +020074 might_sleep();
75
David Box894acb22015-01-15 01:12:17 -080076 if (!dev || !dev->dev)
77 return -ENODEV;
78
Andy Shevchenko30be7742015-02-10 19:06:09 +020079 if (!dev->release_lock)
David Box894acb22015-01-15 01:12:17 -080080 return 0;
81
Hans de Goede086cb4a2017-02-10 11:27:56 +010082 /*
83 * Disallow the CPU to enter C6 or C7 state, entering these states
84 * requires the punit to talk to the pmic and if this happens while
85 * we're holding the semaphore, the SoC hangs.
86 */
87 pm_qos_update_request(&dev->pm_qos, 0);
88
Andy Shevchenko9b5c9f02015-02-10 19:06:06 +020089 /* host driver writes to side band semaphore register */
Hans de Goedefd476fa2017-02-10 11:27:58 +010090 ret = iosf_mbi_write(BT_MBI_UNIT_PMC, MBI_REG_WRITE, addr, sem);
David Box894acb22015-01-15 01:12:17 -080091 if (ret) {
92 dev_err(dev->dev, "iosf punit semaphore request failed\n");
Hans de Goede086cb4a2017-02-10 11:27:56 +010093 goto out;
David Box894acb22015-01-15 01:12:17 -080094 }
95
96 /* host driver waits for bit 0 to be set in semaphore register */
97 start = jiffies;
98 end = start + msecs_to_jiffies(SEMAPHORE_TIMEOUT);
Andy Shevchenkoebf2ef82015-02-10 19:06:10 +020099 do {
Hans de Goede62aee932017-02-10 11:27:54 +0100100 ret = get_sem(dev, &sem);
David Box894acb22015-01-15 01:12:17 -0800101 if (!ret && sem) {
102 acquired = jiffies;
103 dev_dbg(dev->dev, "punit semaphore acquired after %ums\n",
104 jiffies_to_msecs(jiffies - start));
105 return 0;
106 }
107
108 usleep_range(1000, 2000);
Andy Shevchenkoebf2ef82015-02-10 19:06:10 +0200109 } while (time_before(jiffies, end));
David Box894acb22015-01-15 01:12:17 -0800110
111 dev_err(dev->dev, "punit semaphore timed out, resetting\n");
Hans de Goede086cb4a2017-02-10 11:27:56 +0100112out:
Hans de Goede62aee932017-02-10 11:27:54 +0100113 reset_semaphore(dev);
David Box894acb22015-01-15 01:12:17 -0800114
Hans de Goedefd476fa2017-02-10 11:27:58 +0100115 ret = iosf_mbi_read(BT_MBI_UNIT_PMC, MBI_REG_READ, addr, &sem);
Andy Shevchenko259aada2015-02-10 19:06:07 +0200116 if (ret)
David Box894acb22015-01-15 01:12:17 -0800117 dev_err(dev->dev, "iosf failed to read punit semaphore\n");
118 else
119 dev_err(dev->dev, "PUNIT SEM: %d\n", sem);
120
121 WARN_ON(1);
122
123 return -ETIMEDOUT;
124}
David Box894acb22015-01-15 01:12:17 -0800125
Andy Shevchenkoc8e043e2015-02-10 19:06:08 +0200126static void baytrail_i2c_release(struct dw_i2c_dev *dev)
David Box894acb22015-01-15 01:12:17 -0800127{
128 if (!dev || !dev->dev)
129 return;
130
131 if (!dev->acquire_lock)
132 return;
133
Hans de Goede62aee932017-02-10 11:27:54 +0100134 reset_semaphore(dev);
David Box894acb22015-01-15 01:12:17 -0800135 dev_dbg(dev->dev, "punit semaphore held for %ums\n",
136 jiffies_to_msecs(jiffies - acquired));
137}
David Box894acb22015-01-15 01:12:17 -0800138
Hans de Goede086cb4a2017-02-10 11:27:56 +0100139int i2c_dw_probe_lock_support(struct dw_i2c_dev *dev)
David Box894acb22015-01-15 01:12:17 -0800140{
141 acpi_status status;
142 unsigned long long shared_host = 0;
143 acpi_handle handle;
144
145 if (!dev || !dev->dev)
146 return 0;
147
148 handle = ACPI_HANDLE(dev->dev);
149 if (!handle)
150 return 0;
151
152 status = acpi_evaluate_integer(handle, "_SEM", NULL, &shared_host);
David Box894acb22015-01-15 01:12:17 -0800153 if (ACPI_FAILURE(status))
154 return 0;
155
Hans de Goedee234ed22017-02-10 11:27:55 +0100156 if (!shared_host)
157 return 0;
David Box894acb22015-01-15 01:12:17 -0800158
159 if (!iosf_mbi_available())
160 return -EPROBE_DEFER;
161
Hans de Goedee234ed22017-02-10 11:27:55 +0100162 dev_info(dev->dev, "I2C bus managed by PUNIT\n");
163 dev->acquire_lock = baytrail_i2c_acquire;
164 dev->release_lock = baytrail_i2c_release;
165 dev->pm_runtime_disabled = true;
166
Hans de Goede086cb4a2017-02-10 11:27:56 +0100167 pm_qos_add_request(&dev->pm_qos, PM_QOS_CPU_DMA_LATENCY,
168 PM_QOS_DEFAULT_VALUE);
169
David Box894acb22015-01-15 01:12:17 -0800170 return 0;
171}
Hans de Goede086cb4a2017-02-10 11:27:56 +0100172
173void i2c_dw_remove_lock_support(struct dw_i2c_dev *dev)
174{
175 if (dev->acquire_lock)
176 pm_qos_remove_request(&dev->pm_qos);
177}