summaryrefslogtreecommitdiff
path: root/drivers/phy/phy-exynos4210-usb.c
blob: 6102aac2447473bbe4259b2a4a1f9a461b6acddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/*
 * Samsung S5P/EXYNOS SoC series USB PHY driver
 *
 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
 * Author: Kamil Debski <k.debski@samsung.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include "phy-exynos-usb.h"

/* Exynos USB PHY registers */

/* PHY power control */
#define EXYNOS_4210_UPHYPWR			0x0

#define EXYNOS_4210_UPHYPWR_PHY0_SUSPEND	(1 << 0)
#define EXYNOS_4210_UPHYPWR_PHY0_PWR		(1 << 3)
#define EXYNOS_4210_UPHYPWR_PHY0_OTG_PWR	(1 << 4)
#define EXYNOS_4210_UPHYPWR_PHY0_SLEEP		(1 << 5)
#define EXYNOS_4210_UPHYPWR_PHY0	( \
	EXYNOS_4210_UPHYPWR_PHY0_SUSPEND | \
	EXYNOS_4210_UPHYPWR_PHY0_PWR | \
	EXYNOS_4210_UPHYPWR_PHY0_OTG_PWR | \
	EXYNOS_4210_UPHYPWR_PHY0_SLEEP)

#define EXYNOS_4210_UPHYPWR_PHY1_SUSPEND	(1 << 6)
#define EXYNOS_4210_UPHYPWR_PHY1_PWR		(1 << 7)
#define EXYNOS_4210_UPHYPWR_PHY1_SLEEP		(1 << 8)
#define EXYNOS_4210_UPHYPWR_PHY1 ( \
	EXYNOS_4210_UPHYPWR_PHY1_SUSPEND | \
	EXYNOS_4210_UPHYPWR_PHY1_PWR | \
	EXYNOS_4210_UPHYPWR_PHY1_SLEEP)

#define EXYNOS_4210_UPHYPWR_HSCI0_SUSPEND	(1 << 9)
#define EXYNOS_4210_UPHYPWR_HSCI0_SLEEP		(1 << 10)
#define EXYNOS_4210_UPHYPWR_HSCI0 ( \
	EXYNOS_4210_UPHYPWR_HSCI0_SUSPEND | \
	EXYNOS_4210_UPHYPWR_HSCI0_SLEEP)

#define EXYNOS_4210_UPHYPWR_HSCI1_SUSPEND	(1 << 11)
#define EXYNOS_4210_UPHYPWR_HSCI1_SLEEP		(1 << 12)
#define EXYNOS_4210_UPHYPWR_HSCI1 ( \
	EXYNOS_4210_UPHYPWR_HSCI1_SUSPEND | \
	EXYNOS_4210_UPHYPWR_HSCI1_SLEEP)

/* PHY clock control */
#define EXYNOS_4210_UPHYCLK			0x4

#define EXYNOS_4210_UPHYCLK_PHYFSEL_MASK	(0x3 << 0)
#define EXYNOS_4210_UPHYCLK_PHYFSEL_48MHZ	(0x0 << 0)
#define EXYNOS_4210_UPHYCLK_PHYFSEL_24MHZ	(0x3 << 0)
#define EXYNOS_4210_UPHYCLK_PHYFSEL_12MHZ	(0x2 << 0)

#define EXYNOS_4210_UPHYCLK_PHY0_ID_PULLUP	(0x1 << 2)
#define EXYNOS_4210_UPHYCLK_PHY0_COMMON_ON	(0x1 << 4)
#define EXYNOS_4210_UPHYCLK_PHY1_COMMON_ON	(0x1 << 7)

/* PHY reset control */
#define EXYNOS_4210_UPHYRST			0x8

#define EXYNOS_4210_URSTCON_PHY0		(1 << 0)
#define EXYNOS_4210_URSTCON_OTG_HLINK		(1 << 1)
#define EXYNOS_4210_URSTCON_OTG_PHYLINK		(1 << 2)
#define EXYNOS_4210_URSTCON_PHY1_ALL		(1 << 3)
#define EXYNOS_4210_URSTCON_PHY1_P0		(1 << 4)
#define EXYNOS_4210_URSTCON_PHY1_P1P2		(1 << 5)
#define EXYNOS_4210_URSTCON_HOST_LINK_ALL	(1 << 6)
#define EXYNOS_4210_URSTCON_HOST_LINK_P0	(1 << 7)
#define EXYNOS_4210_URSTCON_HOST_LINK_P1	(1 << 8)
#define EXYNOS_4210_URSTCON_HOST_LINK_P2	(1 << 9)

/* Isolation, configured in the power management unit */
#define EXYNOS_4210_USB_ISOL_DEVICE_OFFSET	0x0
#define EXYNOS_4210_USB_ISOL_DEVICE		(1 << 0)
#define EXYNOS_4210_USB_ISOL_HOST_OFFSET	0x4
#define EXYNOS_4210_USB_ISOL_HOST		(1 << 0)

/* USBYPHY1 Floating prevention */
#define EXYNOS_4210_UPHY1CON			0x34
#define EXYNOS_4210_UPHY1CON_FLOAT_PREVENTION	0x1

enum exynos4210_phy_id {
	EXYNOS4210_DEVICE,
	EXYNOS4210_HOST,
	EXYNOS4210_HSIC0,
	EXYNOS4210_HSIC1,
	EXYNOS4210_NUM_PHYS,
};

/* exynos4210_rate_to_clk() converts the supplied clock rate to the value that
 * can be written to the phy register. */
static u32 exynos4210_rate_to_clk(unsigned long rate)
{
	unsigned int clksel;

	switch (rate) {
	case 12 * MHZ:
		clksel = EXYNOS_4210_UPHYCLK_PHYFSEL_12MHZ;
		break;
	case 24 * MHZ:
		clksel = EXYNOS_4210_UPHYCLK_PHYFSEL_24MHZ;
		break;
	case 48 * MHZ:
		clksel = EXYNOS_4210_UPHYCLK_PHYFSEL_48MHZ;
		break;
	default:
		clksel = CLKSEL_ERROR;
	}

	return clksel;
}

static void exynos4210_isol(struct uphy_instance *inst, bool on)
{
	struct uphy_driver *drv = inst->drv;
	u32 offset;
	u32 mask;
	u32 tmp;

	if (!drv->reg_isol)
		return;

	switch (inst->cfg->id) {
	case EXYNOS4210_DEVICE:
		offset = EXYNOS_4210_USB_ISOL_DEVICE_OFFSET;
		mask = EXYNOS_4210_USB_ISOL_DEVICE;
		break;
	case EXYNOS4210_HOST:
		offset = EXYNOS_4210_USB_ISOL_HOST_OFFSET;
		mask = EXYNOS_4210_USB_ISOL_HOST;
		break;
	default:
		return;
	};

	tmp = readl(drv->reg_isol + offset);
	if (on)
		tmp &= ~mask;
	else
		tmp |= mask;
	writel(tmp, drv->reg_isol + offset);
}

static void exynos4210_phy_pwr(struct uphy_instance *inst, bool on)
{
	struct uphy_driver *drv = inst->drv;
	u32 rstbits = 0;
	u32 phypwr = 0;
	u32 rst;
	u32 pwr;

	switch (inst->cfg->id) {
	case EXYNOS4210_DEVICE:
		phypwr =	EXYNOS_4210_UPHYPWR_PHY0;
		rstbits =	EXYNOS_4210_URSTCON_PHY0;
		break;
	case EXYNOS4210_HOST:
		phypwr =	EXYNOS_4210_UPHYPWR_PHY1;
		rstbits =	EXYNOS_4210_URSTCON_PHY1_ALL |
				EXYNOS_4210_URSTCON_PHY1_P0 |
				EXYNOS_4210_URSTCON_PHY1_P1P2 |
				EXYNOS_4210_URSTCON_HOST_LINK_ALL |
				EXYNOS_4210_URSTCON_HOST_LINK_P0;
		writel(on, drv->reg_phy + EXYNOS_4210_UPHY1CON);
		break;
	case EXYNOS4210_HSIC0:
		phypwr =	EXYNOS_4210_UPHYPWR_HSCI0;
		rstbits =	EXYNOS_4210_URSTCON_PHY1_P1P2 |
				EXYNOS_4210_URSTCON_HOST_LINK_P1;
		break;
	case EXYNOS4210_HSIC1:
		phypwr =	EXYNOS_4210_UPHYPWR_HSCI1;
		rstbits =	EXYNOS_4210_URSTCON_PHY1_P1P2 |
				EXYNOS_4210_URSTCON_HOST_LINK_P2;
		break;
	};

	if (on) {
		writel(inst->clk, drv->reg_phy + EXYNOS_4210_UPHYCLK);

		pwr = readl(drv->reg_phy + EXYNOS_4210_UPHYPWR);
		pwr &= ~phypwr;
		writel(pwr, drv->reg_phy + EXYNOS_4210_UPHYPWR);

		rst = readl(drv->reg_phy + EXYNOS_4210_UPHYRST);
		rst |= rstbits;
		writel(rst, drv->reg_phy + EXYNOS_4210_UPHYRST);
		udelay(10);
		rst &= ~rstbits;
		writel(rst, drv->reg_phy + EXYNOS_4210_UPHYRST);
	} else {
		pwr = readl(drv->reg_phy + EXYNOS_4210_UPHYPWR);
		pwr |= phypwr;
		writel(pwr, drv->reg_phy + EXYNOS_4210_UPHYPWR);
	}
}

static int exynos4210_power_on(struct uphy_instance *inst)
{
	struct uphy_driver *drv = inst->drv;

	if (inst->state == STATE_ON) {
		dev_err(drv->dev, "usb phy \"%s\" already on",
							inst->cfg->label);
		return -ENODEV;
	}
	inst->state = STATE_ON;
	inst->ref_cnt++;
	if (inst->ref_cnt > 1)
		return 0;

	/* Order of initialisation is important - first power then isolation */
	exynos4210_phy_pwr(inst, 1);
	exynos4210_isol(inst, 0);

	return 0;
}

static int exynos4210_power_off(struct uphy_instance *inst)
{
	struct uphy_driver *drv = inst->drv;

	if (inst->state == STATE_OFF) {
		dev_err(drv->dev, "usb phy \"%s\" already off",
							inst->cfg->label);
		return -EINVAL;
	}

	inst->state = STATE_OFF;
	inst->ref_cnt--;
	if (inst->ref_cnt > 0)
		return 0;

	exynos4210_phy_pwr(inst, 0);
	exynos4210_isol(inst, 1);

	return 0;
}


static const struct common_phy exynos4210_phys[] = {
	{
		.label		= "device",
		.type		= PHY_DEVICE,
		.id		= EXYNOS4210_DEVICE,
		.rate_to_clk	= exynos4210_rate_to_clk,
		.power_on	= exynos4210_power_on,
		.power_off	= exynos4210_power_off,
	},
	{
		.label		= "host",
		.type		= PHY_HOST,
		.id		= EXYNOS4210_HOST,
		.rate_to_clk	= exynos4210_rate_to_clk,
		.power_on	= exynos4210_power_on,
		.power_off	= exynos4210_power_off,
	},
	{
		.label		= "hsic0",
		.type		= PHY_HOST,
		.id		= EXYNOS4210_HSIC0,
		.rate_to_clk	= exynos4210_rate_to_clk,
		.power_on	= exynos4210_power_on,
		.power_off	= exynos4210_power_off,
	},
	{
		.label		= "hsic1",
		.type		= PHY_HOST,
		.id		= EXYNOS4210_HSIC1,
		.rate_to_clk	= exynos4210_rate_to_clk,
		.power_on	= exynos4210_power_on,
		.power_off	= exynos4210_power_off,
	},
	{},
};

const struct uphy_config exynos4210_uphy_config = {
	.cpu		= TYPE_EXYNOS4210,
	.num_phys	= EXYNOS4210_NUM_PHYS,
	.phys		= exynos4210_phys,
};