Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2013 BayHub Technology Ltd.
  4 *
  5 * Authors: Peter Guo <peter.guo@bayhubtech.com>
  6 *          Adam Lee <adam.lee@canonical.com>
  7 *          Ernest Zhang <ernest.zhang@bayhubtech.com>
  8 */
  9
 10#include <linux/pci.h>
 11#include <linux/mmc/host.h>
 12#include <linux/mmc/mmc.h>
 13#include <linux/delay.h>
 14#include <linux/iopoll.h>
 15#include <linux/bitfield.h>
 16
 17#include "sdhci.h"
 18#include "sdhci-pci.h"
 19
 20/*
 21 * O2Micro device registers
 22 */
 23
 24#define O2_SD_MISC_REG5		0x64
 25#define O2_SD_LD0_CTRL		0x68
 26#define O2_SD_DEV_CTRL		0x88
 27#define O2_SD_LOCK_WP		0xD3
 28#define O2_SD_TEST_REG		0xD4
 29#define O2_SD_FUNC_REG0		0xDC
 30#define O2_SD_MULTI_VCC3V	0xEE
 31#define O2_SD_CLKREQ		0xEC
 32#define O2_SD_CAPS		0xE0
 33#define O2_SD_ADMA1		0xE2
 34#define O2_SD_ADMA2		0xE7
 35#define O2_SD_MISC_CTRL2	0xF0
 36#define O2_SD_INF_MOD		0xF1
 37#define O2_SD_MISC_CTRL4	0xFC
 38#define O2_SD_MISC_CTRL		0x1C0
 39#define O2_SD_PWR_FORCE_L0	0x0002
 40#define O2_SD_TUNING_CTRL	0x300
 41#define O2_SD_PLL_SETTING	0x304
 42#define O2_SD_MISC_SETTING	0x308
 43#define O2_SD_CLK_SETTING	0x328
 44#define O2_SD_CAP_REG2		0x330
 45#define O2_SD_CAP_REG0		0x334
 46#define O2_SD_UHS1_CAP_SETTING	0x33C
 47#define O2_SD_DELAY_CTRL	0x350
 48#define O2_SD_OUTPUT_CLK_SOURCE_SWITCH	0x354
 49#define O2_SD_UHS2_L1_CTRL	0x35C
 50#define O2_SD_FUNC_REG3		0x3E0
 51#define O2_SD_FUNC_REG4		0x3E4
 52#define O2_SD_LED_ENABLE	BIT(6)
 53#define O2_SD_FREG0_LEDOFF	BIT(13)
 54#define O2_SD_SEL_DLL		BIT(16)
 55#define O2_SD_FREG4_ENABLE_CLK_SET	BIT(22)
 56#define O2_SD_PHASE_MASK	GENMASK(23, 20)
 57#define O2_SD_FIX_PHASE		FIELD_PREP(O2_SD_PHASE_MASK, 0x9)
 58
 59#define O2_SD_VENDOR_SETTING	0x110
 60#define O2_SD_VENDOR_SETTING2	0x1C8
 61#define O2_SD_HW_TUNING_DISABLE	BIT(4)
 62
 63#define O2_PLL_DLL_WDT_CONTROL1	0x1CC
 64#define  O2_PLL_FORCE_ACTIVE	BIT(18)
 65#define  O2_PLL_LOCK_STATUS	BIT(14)
 66#define  O2_PLL_SOFT_RESET	BIT(12)
 67#define  O2_DLL_LOCK_STATUS	BIT(11)
 68
 69#define O2_SD_DETECT_SETTING 0x324
 70
 71static const u32 dmdn_table[] = {0x2B1C0000,
 72	0x2C1A0000, 0x371B0000, 0x35100000};
 73#define DMDN_SZ ARRAY_SIZE(dmdn_table)
 74
 75struct o2_host {
 76	u8 dll_adjust_count;
 77};
 78
 79static void sdhci_o2_wait_card_detect_stable(struct sdhci_host *host)
 80{
 81	ktime_t timeout;
 82	u32 scratch32;
 83
 84	/* Wait max 50 ms */
 85	timeout = ktime_add_ms(ktime_get(), 50);
 86	while (1) {
 87		bool timedout = ktime_after(ktime_get(), timeout);
 88
 89		scratch32 = sdhci_readl(host, SDHCI_PRESENT_STATE);
 90		if ((scratch32 & SDHCI_CARD_PRESENT) >> SDHCI_CARD_PRES_SHIFT
 91		    == (scratch32 & SDHCI_CD_LVL) >> SDHCI_CD_LVL_SHIFT)
 92			break;
 93
 94		if (timedout) {
 95			pr_err("%s: Card Detect debounce never finished.\n",
 96			       mmc_hostname(host->mmc));
 97			sdhci_dumpregs(host);
 98			return;
 99		}
100		udelay(10);
101	}
102}
103
104static void sdhci_o2_enable_internal_clock(struct sdhci_host *host)
105{
106	ktime_t timeout;
107	u16 scratch;
108	u32 scratch32;
109
110	/* PLL software reset */
111	scratch32 = sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
112	scratch32 |= O2_PLL_SOFT_RESET;
113	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
114	udelay(1);
115	scratch32 &= ~(O2_PLL_SOFT_RESET);
116	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
117
118	/* PLL force active */
119	scratch32 |= O2_PLL_FORCE_ACTIVE;
120	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
121
122	/* Wait max 20 ms */
123	timeout = ktime_add_ms(ktime_get(), 20);
124	while (1) {
125		bool timedout = ktime_after(ktime_get(), timeout);
126
127		scratch = sdhci_readw(host, O2_PLL_DLL_WDT_CONTROL1);
128		if (scratch & O2_PLL_LOCK_STATUS)
129			break;
130		if (timedout) {
131			pr_err("%s: Internal clock never stabilised.\n",
132			       mmc_hostname(host->mmc));
133			sdhci_dumpregs(host);
134			goto out;
135		}
136		udelay(10);
137	}
138
139	/* Wait for card detect finish */
140	udelay(1);
141	sdhci_o2_wait_card_detect_stable(host);
142
143out:
144	/* Cancel PLL force active */
145	scratch32 = sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
146	scratch32 &= ~O2_PLL_FORCE_ACTIVE;
147	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
148}
149
150static int sdhci_o2_get_cd(struct mmc_host *mmc)
151{
152	struct sdhci_host *host = mmc_priv(mmc);
153
154	if (!(sdhci_readw(host, O2_PLL_DLL_WDT_CONTROL1) & O2_PLL_LOCK_STATUS))
155		sdhci_o2_enable_internal_clock(host);
156	else
157		sdhci_o2_wait_card_detect_stable(host);
158
159	return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
160}
161
162static void o2_pci_set_baseclk(struct sdhci_pci_chip *chip, u32 value)
163{
164	u32 scratch_32;
165
166	pci_read_config_dword(chip->pdev,
167			      O2_SD_PLL_SETTING, &scratch_32);
168
169	scratch_32 &= 0x0000FFFF;
170	scratch_32 |= value;
171
172	pci_write_config_dword(chip->pdev,
173			       O2_SD_PLL_SETTING, scratch_32);
174}
175
176static u32 sdhci_o2_pll_dll_wdt_control(struct sdhci_host *host)
177{
178	return sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
179}
180
181/*
182 * This function is used to detect dll lock status.
183 * Since the dll lock status bit will toggle randomly
184 * with very short interval which needs to be polled
185 * as fast as possible. Set sleep_us as 1 microsecond.
186 */
187static int sdhci_o2_wait_dll_detect_lock(struct sdhci_host *host)
188{
189	u32	scratch32 = 0;
190
191	return readx_poll_timeout(sdhci_o2_pll_dll_wdt_control, host,
192		scratch32, !(scratch32 & O2_DLL_LOCK_STATUS), 1, 1000000);
193}
194
195static void sdhci_o2_set_tuning_mode(struct sdhci_host *host)
196{
197	u16 reg;
198
199	/* enable hardware tuning */
200	reg = sdhci_readw(host, O2_SD_VENDOR_SETTING);
201	reg &= ~O2_SD_HW_TUNING_DISABLE;
202	sdhci_writew(host, reg, O2_SD_VENDOR_SETTING);
203}
204
205static void __sdhci_o2_execute_tuning(struct sdhci_host *host, u32 opcode)
206{
207	int i;
208
209	sdhci_send_tuning(host, opcode);
210
211	for (i = 0; i < 150; i++) {
212		u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
213
214		if (!(ctrl & SDHCI_CTRL_EXEC_TUNING)) {
215			if (ctrl & SDHCI_CTRL_TUNED_CLK) {
216				host->tuning_done = true;
217				return;
218			}
219			pr_warn("%s: HW tuning failed !\n",
220				mmc_hostname(host->mmc));
221			break;
222		}
223
224		mdelay(1);
225	}
226
227	pr_info("%s: Tuning failed, falling back to fixed sampling clock\n",
228		mmc_hostname(host->mmc));
229	sdhci_reset_tuning(host);
230}
231
232/*
233 * This function is used to fix o2 dll shift issue.
234 * It isn't necessary to detect card present before recovery.
235 * Firstly, it is used by bht emmc card, which is embedded.
236 * Second, before call recovery card present will be detected
237 * outside of the execute tuning function.
238 */
239static int sdhci_o2_dll_recovery(struct sdhci_host *host)
240{
241	int ret = 0;
242	u8 scratch_8 = 0;
243	u32 scratch_32 = 0;
244	struct sdhci_pci_slot *slot = sdhci_priv(host);
245	struct sdhci_pci_chip *chip = slot->chip;
246	struct o2_host *o2_host = sdhci_pci_priv(slot);
247
248	/* UnLock WP */
249	pci_read_config_byte(chip->pdev,
250			O2_SD_LOCK_WP, &scratch_8);
251	scratch_8 &= 0x7f;
252	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8);
253	while (o2_host->dll_adjust_count < DMDN_SZ && !ret) {
254		/* Disable clock */
255		sdhci_writeb(host, 0, SDHCI_CLOCK_CONTROL);
256
257		/* PLL software reset */
258		scratch_32 = sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
259		scratch_32 |= O2_PLL_SOFT_RESET;
260		sdhci_writel(host, scratch_32, O2_PLL_DLL_WDT_CONTROL1);
261
262		pci_read_config_dword(chip->pdev,
263					    O2_SD_FUNC_REG4,
264					    &scratch_32);
265		/* Enable Base Clk setting change */
266		scratch_32 |= O2_SD_FREG4_ENABLE_CLK_SET;
267		pci_write_config_dword(chip->pdev, O2_SD_FUNC_REG4, scratch_32);
268		o2_pci_set_baseclk(chip, dmdn_table[o2_host->dll_adjust_count]);
269
270		/* Enable internal clock */
271		scratch_8 = SDHCI_CLOCK_INT_EN;
272		sdhci_writeb(host, scratch_8, SDHCI_CLOCK_CONTROL);
273
274		if (sdhci_o2_get_cd(host->mmc)) {
275			/*
276			 * need wait at least 5ms for dll status stable,
277			 * after enable internal clock
278			 */
279			usleep_range(5000, 6000);
280			if (sdhci_o2_wait_dll_detect_lock(host)) {
281				scratch_8 |= SDHCI_CLOCK_CARD_EN;
282				sdhci_writeb(host, scratch_8,
283					SDHCI_CLOCK_CONTROL);
284				ret = 1;
285			} else {
286				pr_warn("%s: DLL unlocked when dll_adjust_count is %d.\n",
287					mmc_hostname(host->mmc),
288					o2_host->dll_adjust_count);
289			}
290		} else {
291			pr_err("%s: card present detect failed.\n",
292				mmc_hostname(host->mmc));
293			break;
294		}
295
296		o2_host->dll_adjust_count++;
297	}
298	if (!ret && o2_host->dll_adjust_count == DMDN_SZ)
299		pr_err("%s: DLL adjust over max times\n",
300		mmc_hostname(host->mmc));
301	/* Lock WP */
302	pci_read_config_byte(chip->pdev,
303				   O2_SD_LOCK_WP, &scratch_8);
304	scratch_8 |= 0x80;
305	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8);
306	return ret;
307}
308
309static int sdhci_o2_execute_tuning(struct mmc_host *mmc, u32 opcode)
310{
311	struct sdhci_host *host = mmc_priv(mmc);
312	struct sdhci_pci_slot *slot = sdhci_priv(host);
313	struct sdhci_pci_chip *chip = slot->chip;
314	int current_bus_width = 0;
315	u32 scratch32 = 0;
316	u16 scratch = 0;
317	u8  scratch_8 = 0;
318	u32 reg_val;
319
320	/*
321	 * This handler implements the hardware tuning that is specific to
322	 * this controller.  Fall back to the standard method for other TIMING.
323	 */
324	if ((host->timing != MMC_TIMING_MMC_HS200) &&
325		(host->timing != MMC_TIMING_UHS_SDR104) &&
326		(host->timing != MMC_TIMING_UHS_SDR50))
327		return sdhci_execute_tuning(mmc, opcode);
328
329	if (WARN_ON(!mmc_op_tuning(opcode)))
 
330		return -EINVAL;
331
332	/* Force power mode enter L0 */
333	scratch = sdhci_readw(host, O2_SD_MISC_CTRL);
334	scratch |= O2_SD_PWR_FORCE_L0;
335	sdhci_writew(host, scratch, O2_SD_MISC_CTRL);
336
337	/* Stop clk */
338	reg_val = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
339	reg_val &= ~SDHCI_CLOCK_CARD_EN;
340	sdhci_writew(host, reg_val, SDHCI_CLOCK_CONTROL);
341
342	/* UnLock WP */
343	pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch_8);
344	scratch_8 &= 0x7f;
345	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8);
346
347	/* Set pcr 0x354[16] to choose dll clock, and set the default phase */
348	pci_read_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, &reg_val);
349	reg_val &= ~(O2_SD_SEL_DLL | O2_SD_PHASE_MASK);
350	reg_val |= (O2_SD_SEL_DLL | O2_SD_FIX_PHASE);
351	pci_write_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, reg_val);
352
353	/* Lock WP */
354	pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch_8);
355	scratch_8 |= 0x80;
356	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8);
357
358	/* Start clk */
359	reg_val = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
360	reg_val |= SDHCI_CLOCK_CARD_EN;
361	sdhci_writew(host, reg_val, SDHCI_CLOCK_CONTROL);
362
363	/* wait DLL lock, timeout value 5ms */
364	if (readx_poll_timeout(sdhci_o2_pll_dll_wdt_control, host,
365		scratch32, (scratch32 & O2_DLL_LOCK_STATUS), 1, 5000))
366		pr_warn("%s: DLL can't lock in 5ms after force L0 during tuning.\n",
367				mmc_hostname(host->mmc));
368	/*
369	 * Judge the tuning reason, whether caused by dll shift
370	 * If cause by dll shift, should call sdhci_o2_dll_recovery
371	 */
372	if (!sdhci_o2_wait_dll_detect_lock(host))
373		if (!sdhci_o2_dll_recovery(host)) {
374			pr_err("%s: o2 dll recovery failed\n",
375				mmc_hostname(host->mmc));
376			return -EINVAL;
377		}
378	/*
379	 * o2 sdhci host didn't support 8bit emmc tuning
380	 */
381	if (mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
382		current_bus_width = mmc->ios.bus_width;
383		mmc->ios.bus_width = MMC_BUS_WIDTH_4;
384		sdhci_set_bus_width(host, MMC_BUS_WIDTH_4);
385	}
386
387	sdhci_o2_set_tuning_mode(host);
388
389	sdhci_start_tuning(host);
390
391	__sdhci_o2_execute_tuning(host, opcode);
392
393	sdhci_end_tuning(host);
394
395	if (current_bus_width == MMC_BUS_WIDTH_8) {
396		mmc->ios.bus_width = MMC_BUS_WIDTH_8;
397		sdhci_set_bus_width(host, current_bus_width);
398	}
399
400	/* Cancel force power mode enter L0 */
401	scratch = sdhci_readw(host, O2_SD_MISC_CTRL);
402	scratch &= ~(O2_SD_PWR_FORCE_L0);
403	sdhci_writew(host, scratch, O2_SD_MISC_CTRL);
404
405	sdhci_reset(host, SDHCI_RESET_CMD);
406	sdhci_reset(host, SDHCI_RESET_DATA);
407
408	host->flags &= ~SDHCI_HS400_TUNING;
409	return 0;
410}
411
412static void o2_pci_led_enable(struct sdhci_pci_chip *chip)
413{
414	int ret;
415	u32 scratch_32;
416
417	/* Set led of SD host function enable */
418	ret = pci_read_config_dword(chip->pdev,
419				    O2_SD_FUNC_REG0, &scratch_32);
420	if (ret)
421		return;
422
423	scratch_32 &= ~O2_SD_FREG0_LEDOFF;
424	pci_write_config_dword(chip->pdev,
425			       O2_SD_FUNC_REG0, scratch_32);
426
427	ret = pci_read_config_dword(chip->pdev,
428				    O2_SD_TEST_REG, &scratch_32);
429	if (ret)
430		return;
431
432	scratch_32 |= O2_SD_LED_ENABLE;
433	pci_write_config_dword(chip->pdev,
434			       O2_SD_TEST_REG, scratch_32);
435}
436
437static void sdhci_pci_o2_fujin2_pci_init(struct sdhci_pci_chip *chip)
438{
439	u32 scratch_32;
440	int ret;
441	/* Improve write performance for SD3.0 */
442	ret = pci_read_config_dword(chip->pdev, O2_SD_DEV_CTRL, &scratch_32);
443	if (ret)
444		return;
445	scratch_32 &= ~((1 << 12) | (1 << 13) | (1 << 14));
446	pci_write_config_dword(chip->pdev, O2_SD_DEV_CTRL, scratch_32);
447
448	/* Enable Link abnormal reset generating Reset */
449	ret = pci_read_config_dword(chip->pdev, O2_SD_MISC_REG5, &scratch_32);
450	if (ret)
451		return;
452	scratch_32 &= ~((1 << 19) | (1 << 11));
453	scratch_32 |= (1 << 10);
454	pci_write_config_dword(chip->pdev, O2_SD_MISC_REG5, scratch_32);
455
456	/* set card power over current protection */
457	ret = pci_read_config_dword(chip->pdev, O2_SD_TEST_REG, &scratch_32);
458	if (ret)
459		return;
460	scratch_32 |= (1 << 4);
461	pci_write_config_dword(chip->pdev, O2_SD_TEST_REG, scratch_32);
462
463	/* adjust the output delay for SD mode */
464	pci_write_config_dword(chip->pdev, O2_SD_DELAY_CTRL, 0x00002492);
465
466	/* Set the output voltage setting of Aux 1.2v LDO */
467	ret = pci_read_config_dword(chip->pdev, O2_SD_LD0_CTRL, &scratch_32);
468	if (ret)
469		return;
470	scratch_32 &= ~(3 << 12);
471	pci_write_config_dword(chip->pdev, O2_SD_LD0_CTRL, scratch_32);
472
473	/* Set Max power supply capability of SD host */
474	ret = pci_read_config_dword(chip->pdev, O2_SD_CAP_REG0, &scratch_32);
475	if (ret)
476		return;
477	scratch_32 &= ~(0x01FE);
478	scratch_32 |= 0x00CC;
479	pci_write_config_dword(chip->pdev, O2_SD_CAP_REG0, scratch_32);
480	/* Set DLL Tuning Window */
481	ret = pci_read_config_dword(chip->pdev,
482				    O2_SD_TUNING_CTRL, &scratch_32);
483	if (ret)
484		return;
485	scratch_32 &= ~(0x000000FF);
486	scratch_32 |= 0x00000066;
487	pci_write_config_dword(chip->pdev, O2_SD_TUNING_CTRL, scratch_32);
488
489	/* Set UHS2 T_EIDLE */
490	ret = pci_read_config_dword(chip->pdev,
491				    O2_SD_UHS2_L1_CTRL, &scratch_32);
492	if (ret)
493		return;
494	scratch_32 &= ~(0x000000FC);
495	scratch_32 |= 0x00000084;
496	pci_write_config_dword(chip->pdev, O2_SD_UHS2_L1_CTRL, scratch_32);
497
498	/* Set UHS2 Termination */
499	ret = pci_read_config_dword(chip->pdev, O2_SD_FUNC_REG3, &scratch_32);
500	if (ret)
501		return;
502	scratch_32 &= ~((1 << 21) | (1 << 30));
503
504	pci_write_config_dword(chip->pdev, O2_SD_FUNC_REG3, scratch_32);
505
506	/* Set L1 Entrance Timer */
507	ret = pci_read_config_dword(chip->pdev, O2_SD_CAPS, &scratch_32);
508	if (ret)
509		return;
510	scratch_32 &= ~(0xf0000000);
511	scratch_32 |= 0x30000000;
512	pci_write_config_dword(chip->pdev, O2_SD_CAPS, scratch_32);
513
514	ret = pci_read_config_dword(chip->pdev,
515				    O2_SD_MISC_CTRL4, &scratch_32);
516	if (ret)
517		return;
518	scratch_32 &= ~(0x000f0000);
519	scratch_32 |= 0x00080000;
520	pci_write_config_dword(chip->pdev, O2_SD_MISC_CTRL4, scratch_32);
521}
522
523static void sdhci_pci_o2_enable_msi(struct sdhci_pci_chip *chip,
524				    struct sdhci_host *host)
525{
526	int ret;
527
528	ret = pci_find_capability(chip->pdev, PCI_CAP_ID_MSI);
529	if (!ret) {
530		pr_info("%s: unsupported MSI, use INTx irq\n",
531			mmc_hostname(host->mmc));
532		return;
533	}
534
535	ret = pci_alloc_irq_vectors(chip->pdev, 1, 1,
536				    PCI_IRQ_MSI | PCI_IRQ_MSIX);
537	if (ret < 0) {
538		pr_err("%s: enable PCI MSI failed, err=%d\n",
539		       mmc_hostname(host->mmc), ret);
540		return;
541	}
542
543	host->irq = pci_irq_vector(chip->pdev, 0);
544}
545
546static void sdhci_o2_enable_clk(struct sdhci_host *host, u16 clk)
547{
548	/* Enable internal clock */
549	clk |= SDHCI_CLOCK_INT_EN;
550	sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
551
552	sdhci_o2_enable_internal_clock(host);
553	if (sdhci_o2_get_cd(host->mmc)) {
554		clk |= SDHCI_CLOCK_CARD_EN;
555		sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
556	}
557}
558
559static void sdhci_pci_o2_set_clock(struct sdhci_host *host, unsigned int clock)
560{
561	u16 clk;
562	u8 scratch;
563	u32 scratch_32;
564	struct sdhci_pci_slot *slot = sdhci_priv(host);
565	struct sdhci_pci_chip *chip = slot->chip;
566
567	host->mmc->actual_clock = 0;
568
569	sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
570
571	if (clock == 0)
572		return;
573
574	/* UnLock WP */
575	pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
576	scratch &= 0x7f;
577	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
578
579	if ((host->timing == MMC_TIMING_UHS_SDR104) && (clock == 200000000)) {
 
 
 
 
 
580		pci_read_config_dword(chip->pdev, O2_SD_PLL_SETTING, &scratch_32);
581
582		if ((scratch_32 & 0xFFFF0000) != 0x2c280000)
583			o2_pci_set_baseclk(chip, 0x2c280000);
584	} else {
585		pci_read_config_dword(chip->pdev, O2_SD_PLL_SETTING, &scratch_32);
586
587		if ((scratch_32 & 0xFFFF0000) != 0x25100000)
588			o2_pci_set_baseclk(chip, 0x25100000);
589	}
590
591	pci_read_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, &scratch_32);
592	scratch_32 &= ~(O2_SD_SEL_DLL | O2_SD_PHASE_MASK);
593	pci_write_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, scratch_32);
594
595	/* Lock WP */
596	pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
597	scratch |= 0x80;
598	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
599
600	clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
601	sdhci_o2_enable_clk(host, clk);
602}
603
604static int sdhci_pci_o2_probe_slot(struct sdhci_pci_slot *slot)
605{
606	struct sdhci_pci_chip *chip;
607	struct sdhci_host *host;
608	struct o2_host *o2_host = sdhci_pci_priv(slot);
609	u32 reg, caps;
610	int ret;
611
612	chip = slot->chip;
613	host = slot->host;
614
615	o2_host->dll_adjust_count = 0;
616	caps = sdhci_readl(host, SDHCI_CAPABILITIES);
617
618	/*
619	 * mmc_select_bus_width() will test the bus to determine the actual bus
620	 * width.
621	 */
622	if (caps & SDHCI_CAN_DO_8BIT)
623		host->mmc->caps |= MMC_CAP_8_BIT_DATA;
624
625	switch (chip->pdev->device) {
626	case PCI_DEVICE_ID_O2_SDS0:
627	case PCI_DEVICE_ID_O2_SEABIRD0:
628	case PCI_DEVICE_ID_O2_SEABIRD1:
629	case PCI_DEVICE_ID_O2_SDS1:
630	case PCI_DEVICE_ID_O2_FUJIN2:
631		reg = sdhci_readl(host, O2_SD_VENDOR_SETTING);
632		if (reg & 0x1)
633			host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12;
634
635		host->quirks2 |= SDHCI_QUIRK2_BROKEN_DDR50;
636
637		sdhci_pci_o2_enable_msi(chip, host);
638
639		if (chip->pdev->device == PCI_DEVICE_ID_O2_SEABIRD0) {
640			ret = pci_read_config_dword(chip->pdev,
641						    O2_SD_MISC_SETTING, &reg);
642			if (ret)
643				return -EIO;
644			if (reg & (1 << 4)) {
645				pr_info("%s: emmc 1.8v flag is set, force 1.8v signaling voltage\n",
646					mmc_hostname(host->mmc));
647				host->flags &= ~SDHCI_SIGNALING_330;
648				host->flags |= SDHCI_SIGNALING_180;
649				host->mmc->caps2 |= MMC_CAP2_NO_SD;
650				host->mmc->caps2 |= MMC_CAP2_NO_SDIO;
651				pci_write_config_dword(chip->pdev,
652						       O2_SD_DETECT_SETTING, 3);
653			}
654
655			slot->host->mmc_host_ops.get_cd = sdhci_o2_get_cd;
656		}
657
658		if (chip->pdev->device == PCI_DEVICE_ID_O2_SEABIRD1) {
659			slot->host->mmc_host_ops.get_cd = sdhci_o2_get_cd;
660			host->mmc->caps2 |= MMC_CAP2_NO_SDIO;
661			host->quirks2 |= SDHCI_QUIRK2_PRESET_VALUE_BROKEN;
662		}
663
664		host->mmc_host_ops.execute_tuning = sdhci_o2_execute_tuning;
665
666		if (chip->pdev->device != PCI_DEVICE_ID_O2_FUJIN2)
667			break;
668		/* set dll watch dog timer */
669		reg = sdhci_readl(host, O2_SD_VENDOR_SETTING2);
670		reg |= (1 << 12);
671		sdhci_writel(host, reg, O2_SD_VENDOR_SETTING2);
672
673		break;
674	default:
675		break;
676	}
677
678	return 0;
679}
680
681static int sdhci_pci_o2_probe(struct sdhci_pci_chip *chip)
682{
683	int ret;
684	u8 scratch;
685	u32 scratch_32;
686
687	switch (chip->pdev->device) {
688	case PCI_DEVICE_ID_O2_8220:
689	case PCI_DEVICE_ID_O2_8221:
690	case PCI_DEVICE_ID_O2_8320:
691	case PCI_DEVICE_ID_O2_8321:
692		/* This extra setup is required due to broken ADMA. */
693		ret = pci_read_config_byte(chip->pdev,
694				O2_SD_LOCK_WP, &scratch);
695		if (ret)
696			return ret;
697		scratch &= 0x7f;
698		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
699
700		/* Set Multi 3 to VCC3V# */
701		pci_write_config_byte(chip->pdev, O2_SD_MULTI_VCC3V, 0x08);
702
703		/* Disable CLK_REQ# support after media DET */
704		ret = pci_read_config_byte(chip->pdev,
705				O2_SD_CLKREQ, &scratch);
706		if (ret)
707			return ret;
708		scratch |= 0x20;
709		pci_write_config_byte(chip->pdev, O2_SD_CLKREQ, scratch);
710
711		/* Choose capabilities, enable SDMA.  We have to write 0x01
712		 * to the capabilities register first to unlock it.
713		 */
714		ret = pci_read_config_byte(chip->pdev, O2_SD_CAPS, &scratch);
715		if (ret)
716			return ret;
717		scratch |= 0x01;
718		pci_write_config_byte(chip->pdev, O2_SD_CAPS, scratch);
719		pci_write_config_byte(chip->pdev, O2_SD_CAPS, 0x73);
720
721		/* Disable ADMA1/2 */
722		pci_write_config_byte(chip->pdev, O2_SD_ADMA1, 0x39);
723		pci_write_config_byte(chip->pdev, O2_SD_ADMA2, 0x08);
724
725		/* Disable the infinite transfer mode */
726		ret = pci_read_config_byte(chip->pdev,
727				O2_SD_INF_MOD, &scratch);
728		if (ret)
729			return ret;
730		scratch |= 0x08;
731		pci_write_config_byte(chip->pdev, O2_SD_INF_MOD, scratch);
732
733		/* Lock WP */
734		ret = pci_read_config_byte(chip->pdev,
735				O2_SD_LOCK_WP, &scratch);
736		if (ret)
737			return ret;
738		scratch |= 0x80;
739		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
740		break;
741	case PCI_DEVICE_ID_O2_SDS0:
742	case PCI_DEVICE_ID_O2_SDS1:
743	case PCI_DEVICE_ID_O2_FUJIN2:
744		/* UnLock WP */
745		ret = pci_read_config_byte(chip->pdev,
746				O2_SD_LOCK_WP, &scratch);
747		if (ret)
748			return ret;
749
750		scratch &= 0x7f;
751		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
752
753		/* DevId=8520 subId= 0x11 or 0x12  Type Chip support */
754		if (chip->pdev->device == PCI_DEVICE_ID_O2_FUJIN2) {
755			ret = pci_read_config_dword(chip->pdev,
756						    O2_SD_FUNC_REG0,
757						    &scratch_32);
758			if (ret)
759				return ret;
760			scratch_32 = ((scratch_32 & 0xFF000000) >> 24);
761
762			/* Check Whether subId is 0x11 or 0x12 */
763			if ((scratch_32 == 0x11) || (scratch_32 == 0x12)) {
764				scratch_32 = 0x25100000;
765
766				o2_pci_set_baseclk(chip, scratch_32);
767				ret = pci_read_config_dword(chip->pdev,
768							    O2_SD_FUNC_REG4,
769							    &scratch_32);
770				if (ret)
771					return ret;
772
773				/* Enable Base Clk setting change */
774				scratch_32 |= O2_SD_FREG4_ENABLE_CLK_SET;
775				pci_write_config_dword(chip->pdev,
776						       O2_SD_FUNC_REG4,
777						       scratch_32);
778
779				/* Set Tuning Window to 4 */
780				pci_write_config_byte(chip->pdev,
781						      O2_SD_TUNING_CTRL, 0x44);
782
783				break;
784			}
785		}
786
787		/* Enable 8520 led function */
788		o2_pci_led_enable(chip);
789
790		/* Set timeout CLK */
791		ret = pci_read_config_dword(chip->pdev,
792					    O2_SD_CLK_SETTING, &scratch_32);
793		if (ret)
794			return ret;
795
796		scratch_32 &= ~(0xFF00);
797		scratch_32 |= 0x07E0C800;
798		pci_write_config_dword(chip->pdev,
799				       O2_SD_CLK_SETTING, scratch_32);
800
801		ret = pci_read_config_dword(chip->pdev,
802					    O2_SD_CLKREQ, &scratch_32);
803		if (ret)
804			return ret;
805		scratch_32 |= 0x3;
806		pci_write_config_dword(chip->pdev, O2_SD_CLKREQ, scratch_32);
807
808		ret = pci_read_config_dword(chip->pdev,
809					    O2_SD_PLL_SETTING, &scratch_32);
810		if (ret)
811			return ret;
812
813		scratch_32 &= ~(0x1F3F070E);
814		scratch_32 |= 0x18270106;
815		pci_write_config_dword(chip->pdev,
816				       O2_SD_PLL_SETTING, scratch_32);
817
818		/* Disable UHS1 funciton */
819		ret = pci_read_config_dword(chip->pdev,
820					    O2_SD_CAP_REG2, &scratch_32);
821		if (ret)
822			return ret;
823		scratch_32 &= ~(0xE0);
824		pci_write_config_dword(chip->pdev,
825				       O2_SD_CAP_REG2, scratch_32);
826
827		if (chip->pdev->device == PCI_DEVICE_ID_O2_FUJIN2)
828			sdhci_pci_o2_fujin2_pci_init(chip);
829
830		/* Lock WP */
831		ret = pci_read_config_byte(chip->pdev,
832					   O2_SD_LOCK_WP, &scratch);
833		if (ret)
834			return ret;
835		scratch |= 0x80;
836		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
837		break;
838	case PCI_DEVICE_ID_O2_SEABIRD0:
839	case PCI_DEVICE_ID_O2_SEABIRD1:
840		/* UnLock WP */
841		ret = pci_read_config_byte(chip->pdev,
842				O2_SD_LOCK_WP, &scratch);
843		if (ret)
844			return ret;
845
846		scratch &= 0x7f;
847		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
848
849		ret = pci_read_config_dword(chip->pdev,
850					    O2_SD_PLL_SETTING, &scratch_32);
851		if (ret)
852			return ret;
853
854		if ((scratch_32 & 0xff000000) == 0x01000000) {
855			scratch_32 &= 0x0000FFFF;
856			scratch_32 |= 0x1F340000;
857
858			pci_write_config_dword(chip->pdev,
859					       O2_SD_PLL_SETTING, scratch_32);
860		} else {
861			scratch_32 &= 0x0000FFFF;
862			scratch_32 |= 0x25100000;
863
864			pci_write_config_dword(chip->pdev,
865					       O2_SD_PLL_SETTING, scratch_32);
866
867			ret = pci_read_config_dword(chip->pdev,
868						    O2_SD_FUNC_REG4,
869						    &scratch_32);
870			if (ret)
871				return ret;
872			scratch_32 |= (1 << 22);
873			pci_write_config_dword(chip->pdev,
874					       O2_SD_FUNC_REG4, scratch_32);
875		}
876
877		/* Set Tuning Windows to 5 */
878		pci_write_config_byte(chip->pdev,
879				O2_SD_TUNING_CTRL, 0x55);
880		//Adjust 1st and 2nd CD debounce time
881		pci_read_config_dword(chip->pdev, O2_SD_MISC_CTRL2, &scratch_32);
882		scratch_32 &= 0xFFE7FFFF;
883		scratch_32 |= 0x00180000;
884		pci_write_config_dword(chip->pdev, O2_SD_MISC_CTRL2, scratch_32);
885		pci_write_config_dword(chip->pdev, O2_SD_DETECT_SETTING, 1);
886		/* Lock WP */
887		ret = pci_read_config_byte(chip->pdev,
888					   O2_SD_LOCK_WP, &scratch);
889		if (ret)
890			return ret;
891		scratch |= 0x80;
892		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
893		break;
894	}
895
896	return 0;
897}
898
899#ifdef CONFIG_PM_SLEEP
900static int sdhci_pci_o2_resume(struct sdhci_pci_chip *chip)
901{
902	sdhci_pci_o2_probe(chip);
903	return sdhci_pci_resume_host(chip);
904}
905#endif
906
907static const struct sdhci_ops sdhci_pci_o2_ops = {
908	.set_clock = sdhci_pci_o2_set_clock,
909	.enable_dma = sdhci_pci_enable_dma,
910	.set_bus_width = sdhci_set_bus_width,
911	.reset = sdhci_reset,
912	.set_uhs_signaling = sdhci_set_uhs_signaling,
913};
914
915const struct sdhci_pci_fixes sdhci_o2 = {
916	.probe = sdhci_pci_o2_probe,
917	.quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
918	.quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
919	.probe_slot = sdhci_pci_o2_probe_slot,
920#ifdef CONFIG_PM_SLEEP
921	.resume = sdhci_pci_o2_resume,
922#endif
923	.ops = &sdhci_pci_o2_ops,
924	.priv_size = sizeof(struct o2_host),
925};
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2013 BayHub Technology Ltd.
  4 *
  5 * Authors: Peter Guo <peter.guo@bayhubtech.com>
  6 *          Adam Lee <adam.lee@canonical.com>
  7 *          Ernest Zhang <ernest.zhang@bayhubtech.com>
  8 */
  9
 10#include <linux/pci.h>
 11#include <linux/mmc/host.h>
 12#include <linux/mmc/mmc.h>
 13#include <linux/delay.h>
 14#include <linux/iopoll.h>
 
 15
 16#include "sdhci.h"
 17#include "sdhci-pci.h"
 18
 19/*
 20 * O2Micro device registers
 21 */
 22
 23#define O2_SD_MISC_REG5		0x64
 24#define O2_SD_LD0_CTRL		0x68
 25#define O2_SD_DEV_CTRL		0x88
 26#define O2_SD_LOCK_WP		0xD3
 27#define O2_SD_TEST_REG		0xD4
 28#define O2_SD_FUNC_REG0		0xDC
 29#define O2_SD_MULTI_VCC3V	0xEE
 30#define O2_SD_CLKREQ		0xEC
 31#define O2_SD_CAPS		0xE0
 32#define O2_SD_ADMA1		0xE2
 33#define O2_SD_ADMA2		0xE7
 
 34#define O2_SD_INF_MOD		0xF1
 35#define O2_SD_MISC_CTRL4	0xFC
 36#define O2_SD_MISC_CTRL		0x1C0
 37#define O2_SD_PWR_FORCE_L0	0x0002
 38#define O2_SD_TUNING_CTRL	0x300
 39#define O2_SD_PLL_SETTING	0x304
 40#define O2_SD_MISC_SETTING	0x308
 41#define O2_SD_CLK_SETTING	0x328
 42#define O2_SD_CAP_REG2		0x330
 43#define O2_SD_CAP_REG0		0x334
 44#define O2_SD_UHS1_CAP_SETTING	0x33C
 45#define O2_SD_DELAY_CTRL	0x350
 
 46#define O2_SD_UHS2_L1_CTRL	0x35C
 47#define O2_SD_FUNC_REG3		0x3E0
 48#define O2_SD_FUNC_REG4		0x3E4
 49#define O2_SD_LED_ENABLE	BIT(6)
 50#define O2_SD_FREG0_LEDOFF	BIT(13)
 
 51#define O2_SD_FREG4_ENABLE_CLK_SET	BIT(22)
 
 
 52
 53#define O2_SD_VENDOR_SETTING	0x110
 54#define O2_SD_VENDOR_SETTING2	0x1C8
 55#define O2_SD_HW_TUNING_DISABLE	BIT(4)
 56
 57#define O2_PLL_DLL_WDT_CONTROL1	0x1CC
 58#define  O2_PLL_FORCE_ACTIVE	BIT(18)
 59#define  O2_PLL_LOCK_STATUS	BIT(14)
 60#define  O2_PLL_SOFT_RESET	BIT(12)
 61#define  O2_DLL_LOCK_STATUS	BIT(11)
 62
 63#define O2_SD_DETECT_SETTING 0x324
 64
 65static const u32 dmdn_table[] = {0x2B1C0000,
 66	0x2C1A0000, 0x371B0000, 0x35100000};
 67#define DMDN_SZ ARRAY_SIZE(dmdn_table)
 68
 69struct o2_host {
 70	u8 dll_adjust_count;
 71};
 72
 73static void sdhci_o2_wait_card_detect_stable(struct sdhci_host *host)
 74{
 75	ktime_t timeout;
 76	u32 scratch32;
 77
 78	/* Wait max 50 ms */
 79	timeout = ktime_add_ms(ktime_get(), 50);
 80	while (1) {
 81		bool timedout = ktime_after(ktime_get(), timeout);
 82
 83		scratch32 = sdhci_readl(host, SDHCI_PRESENT_STATE);
 84		if ((scratch32 & SDHCI_CARD_PRESENT) >> SDHCI_CARD_PRES_SHIFT
 85		    == (scratch32 & SDHCI_CD_LVL) >> SDHCI_CD_LVL_SHIFT)
 86			break;
 87
 88		if (timedout) {
 89			pr_err("%s: Card Detect debounce never finished.\n",
 90			       mmc_hostname(host->mmc));
 91			sdhci_dumpregs(host);
 92			return;
 93		}
 94		udelay(10);
 95	}
 96}
 97
 98static void sdhci_o2_enable_internal_clock(struct sdhci_host *host)
 99{
100	ktime_t timeout;
101	u16 scratch;
102	u32 scratch32;
103
104	/* PLL software reset */
105	scratch32 = sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
106	scratch32 |= O2_PLL_SOFT_RESET;
107	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
108	udelay(1);
109	scratch32 &= ~(O2_PLL_SOFT_RESET);
110	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
111
112	/* PLL force active */
113	scratch32 |= O2_PLL_FORCE_ACTIVE;
114	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
115
116	/* Wait max 20 ms */
117	timeout = ktime_add_ms(ktime_get(), 20);
118	while (1) {
119		bool timedout = ktime_after(ktime_get(), timeout);
120
121		scratch = sdhci_readw(host, O2_PLL_DLL_WDT_CONTROL1);
122		if (scratch & O2_PLL_LOCK_STATUS)
123			break;
124		if (timedout) {
125			pr_err("%s: Internal clock never stabilised.\n",
126			       mmc_hostname(host->mmc));
127			sdhci_dumpregs(host);
128			goto out;
129		}
130		udelay(10);
131	}
132
133	/* Wait for card detect finish */
134	udelay(1);
135	sdhci_o2_wait_card_detect_stable(host);
136
137out:
138	/* Cancel PLL force active */
139	scratch32 = sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
140	scratch32 &= ~O2_PLL_FORCE_ACTIVE;
141	sdhci_writel(host, scratch32, O2_PLL_DLL_WDT_CONTROL1);
142}
143
144static int sdhci_o2_get_cd(struct mmc_host *mmc)
145{
146	struct sdhci_host *host = mmc_priv(mmc);
147
148	if (!(sdhci_readw(host, O2_PLL_DLL_WDT_CONTROL1) & O2_PLL_LOCK_STATUS))
149		sdhci_o2_enable_internal_clock(host);
 
 
150
151	return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
152}
153
154static void o2_pci_set_baseclk(struct sdhci_pci_chip *chip, u32 value)
155{
156	u32 scratch_32;
157
158	pci_read_config_dword(chip->pdev,
159			      O2_SD_PLL_SETTING, &scratch_32);
160
161	scratch_32 &= 0x0000FFFF;
162	scratch_32 |= value;
163
164	pci_write_config_dword(chip->pdev,
165			       O2_SD_PLL_SETTING, scratch_32);
166}
167
168static u32 sdhci_o2_pll_dll_wdt_control(struct sdhci_host *host)
169{
170	return sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
171}
172
173/*
174 * This function is used to detect dll lock status.
175 * Since the dll lock status bit will toggle randomly
176 * with very short interval which needs to be polled
177 * as fast as possible. Set sleep_us as 1 microsecond.
178 */
179static int sdhci_o2_wait_dll_detect_lock(struct sdhci_host *host)
180{
181	u32	scratch32 = 0;
182
183	return readx_poll_timeout(sdhci_o2_pll_dll_wdt_control, host,
184		scratch32, !(scratch32 & O2_DLL_LOCK_STATUS), 1, 1000000);
185}
186
187static void sdhci_o2_set_tuning_mode(struct sdhci_host *host)
188{
189	u16 reg;
190
191	/* enable hardware tuning */
192	reg = sdhci_readw(host, O2_SD_VENDOR_SETTING);
193	reg &= ~O2_SD_HW_TUNING_DISABLE;
194	sdhci_writew(host, reg, O2_SD_VENDOR_SETTING);
195}
196
197static void __sdhci_o2_execute_tuning(struct sdhci_host *host, u32 opcode)
198{
199	int i;
200
201	sdhci_send_tuning(host, opcode);
202
203	for (i = 0; i < 150; i++) {
204		u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
205
206		if (!(ctrl & SDHCI_CTRL_EXEC_TUNING)) {
207			if (ctrl & SDHCI_CTRL_TUNED_CLK) {
208				host->tuning_done = true;
209				return;
210			}
211			pr_warn("%s: HW tuning failed !\n",
212				mmc_hostname(host->mmc));
213			break;
214		}
215
216		mdelay(1);
217	}
218
219	pr_info("%s: Tuning failed, falling back to fixed sampling clock\n",
220		mmc_hostname(host->mmc));
221	sdhci_reset_tuning(host);
222}
223
224/*
225 * This function is used to fix o2 dll shift issue.
226 * It isn't necessary to detect card present before recovery.
227 * Firstly, it is used by bht emmc card, which is embedded.
228 * Second, before call recovery card present will be detected
229 * outside of the execute tuning function.
230 */
231static int sdhci_o2_dll_recovery(struct sdhci_host *host)
232{
233	int ret = 0;
234	u8 scratch_8 = 0;
235	u32 scratch_32 = 0;
236	struct sdhci_pci_slot *slot = sdhci_priv(host);
237	struct sdhci_pci_chip *chip = slot->chip;
238	struct o2_host *o2_host = sdhci_pci_priv(slot);
239
240	/* UnLock WP */
241	pci_read_config_byte(chip->pdev,
242			O2_SD_LOCK_WP, &scratch_8);
243	scratch_8 &= 0x7f;
244	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8);
245	while (o2_host->dll_adjust_count < DMDN_SZ && !ret) {
246		/* Disable clock */
247		sdhci_writeb(host, 0, SDHCI_CLOCK_CONTROL);
248
249		/* PLL software reset */
250		scratch_32 = sdhci_readl(host, O2_PLL_DLL_WDT_CONTROL1);
251		scratch_32 |= O2_PLL_SOFT_RESET;
252		sdhci_writel(host, scratch_32, O2_PLL_DLL_WDT_CONTROL1);
253
254		pci_read_config_dword(chip->pdev,
255					    O2_SD_FUNC_REG4,
256					    &scratch_32);
257		/* Enable Base Clk setting change */
258		scratch_32 |= O2_SD_FREG4_ENABLE_CLK_SET;
259		pci_write_config_dword(chip->pdev, O2_SD_FUNC_REG4, scratch_32);
260		o2_pci_set_baseclk(chip, dmdn_table[o2_host->dll_adjust_count]);
261
262		/* Enable internal clock */
263		scratch_8 = SDHCI_CLOCK_INT_EN;
264		sdhci_writeb(host, scratch_8, SDHCI_CLOCK_CONTROL);
265
266		if (sdhci_o2_get_cd(host->mmc)) {
267			/*
268			 * need wait at least 5ms for dll status stable,
269			 * after enable internal clock
270			 */
271			usleep_range(5000, 6000);
272			if (sdhci_o2_wait_dll_detect_lock(host)) {
273				scratch_8 |= SDHCI_CLOCK_CARD_EN;
274				sdhci_writeb(host, scratch_8,
275					SDHCI_CLOCK_CONTROL);
276				ret = 1;
277			} else {
278				pr_warn("%s: DLL unlocked when dll_adjust_count is %d.\n",
279					mmc_hostname(host->mmc),
280					o2_host->dll_adjust_count);
281			}
282		} else {
283			pr_err("%s: card present detect failed.\n",
284				mmc_hostname(host->mmc));
285			break;
286		}
287
288		o2_host->dll_adjust_count++;
289	}
290	if (!ret && o2_host->dll_adjust_count == DMDN_SZ)
291		pr_err("%s: DLL adjust over max times\n",
292		mmc_hostname(host->mmc));
293	/* Lock WP */
294	pci_read_config_byte(chip->pdev,
295				   O2_SD_LOCK_WP, &scratch_8);
296	scratch_8 |= 0x80;
297	pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8);
298	return ret;
299}
300
301static int sdhci_o2_execute_tuning(struct mmc_host *mmc, u32 opcode)
302{
303	struct sdhci_host *host = mmc_priv(mmc);
 
 
304	int current_bus_width = 0;
305	u32 scratch32 = 0;
306	u16 scratch = 0;
 
 
307
308	/*
309	 * This handler only implements the eMMC tuning that is specific to
310	 * this controller.  Fall back to the standard method for other TIMING.
311	 */
312	if ((host->timing != MMC_TIMING_MMC_HS200) &&
313		(host->timing != MMC_TIMING_UHS_SDR104))
 
314		return sdhci_execute_tuning(mmc, opcode);
315
316	if (WARN_ON((opcode != MMC_SEND_TUNING_BLOCK_HS200) &&
317			(opcode != MMC_SEND_TUNING_BLOCK)))
318		return -EINVAL;
319
320	/* Force power mode enter L0 */
321	scratch = sdhci_readw(host, O2_SD_MISC_CTRL);
322	scratch |= O2_SD_PWR_FORCE_L0;
323	sdhci_writew(host, scratch, O2_SD_MISC_CTRL);
324
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325	/* wait DLL lock, timeout value 5ms */
326	if (readx_poll_timeout(sdhci_o2_pll_dll_wdt_control, host,
327		scratch32, (scratch32 & O2_DLL_LOCK_STATUS), 1, 5000))
328		pr_warn("%s: DLL can't lock in 5ms after force L0 during tuning.\n",
329				mmc_hostname(host->mmc));
330	/*
331	 * Judge the tuning reason, whether caused by dll shift
332	 * If cause by dll shift, should call sdhci_o2_dll_recovery
333	 */
334	if (!sdhci_o2_wait_dll_detect_lock(host))
335		if (!sdhci_o2_dll_recovery(host)) {
336			pr_err("%s: o2 dll recovery failed\n",
337				mmc_hostname(host->mmc));
338			return -EINVAL;
339		}
340	/*
341	 * o2 sdhci host didn't support 8bit emmc tuning
342	 */
343	if (mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
344		current_bus_width = mmc->ios.bus_width;
345		mmc->ios.bus_width = MMC_BUS_WIDTH_4;
346		sdhci_set_bus_width(host, MMC_BUS_WIDTH_4);
347	}
348
349	sdhci_o2_set_tuning_mode(host);
350
351	sdhci_start_tuning(host);
352
353	__sdhci_o2_execute_tuning(host, opcode);
354
355	sdhci_end_tuning(host);
356
357	if (current_bus_width == MMC_BUS_WIDTH_8) {
358		mmc->ios.bus_width = MMC_BUS_WIDTH_8;
359		sdhci_set_bus_width(host, current_bus_width);
360	}
361
362	/* Cancel force power mode enter L0 */
363	scratch = sdhci_readw(host, O2_SD_MISC_CTRL);
364	scratch &= ~(O2_SD_PWR_FORCE_L0);
365	sdhci_writew(host, scratch, O2_SD_MISC_CTRL);
366
367	sdhci_reset(host, SDHCI_RESET_CMD);
368	sdhci_reset(host, SDHCI_RESET_DATA);
369
370	host->flags &= ~SDHCI_HS400_TUNING;
371	return 0;
372}
373
374static void o2_pci_led_enable(struct sdhci_pci_chip *chip)
375{
376	int ret;
377	u32 scratch_32;
378
379	/* Set led of SD host function enable */
380	ret = pci_read_config_dword(chip->pdev,
381				    O2_SD_FUNC_REG0, &scratch_32);
382	if (ret)
383		return;
384
385	scratch_32 &= ~O2_SD_FREG0_LEDOFF;
386	pci_write_config_dword(chip->pdev,
387			       O2_SD_FUNC_REG0, scratch_32);
388
389	ret = pci_read_config_dword(chip->pdev,
390				    O2_SD_TEST_REG, &scratch_32);
391	if (ret)
392		return;
393
394	scratch_32 |= O2_SD_LED_ENABLE;
395	pci_write_config_dword(chip->pdev,
396			       O2_SD_TEST_REG, scratch_32);
397}
398
399static void sdhci_pci_o2_fujin2_pci_init(struct sdhci_pci_chip *chip)
400{
401	u32 scratch_32;
402	int ret;
403	/* Improve write performance for SD3.0 */
404	ret = pci_read_config_dword(chip->pdev, O2_SD_DEV_CTRL, &scratch_32);
405	if (ret)
406		return;
407	scratch_32 &= ~((1 << 12) | (1 << 13) | (1 << 14));
408	pci_write_config_dword(chip->pdev, O2_SD_DEV_CTRL, scratch_32);
409
410	/* Enable Link abnormal reset generating Reset */
411	ret = pci_read_config_dword(chip->pdev, O2_SD_MISC_REG5, &scratch_32);
412	if (ret)
413		return;
414	scratch_32 &= ~((1 << 19) | (1 << 11));
415	scratch_32 |= (1 << 10);
416	pci_write_config_dword(chip->pdev, O2_SD_MISC_REG5, scratch_32);
417
418	/* set card power over current protection */
419	ret = pci_read_config_dword(chip->pdev, O2_SD_TEST_REG, &scratch_32);
420	if (ret)
421		return;
422	scratch_32 |= (1 << 4);
423	pci_write_config_dword(chip->pdev, O2_SD_TEST_REG, scratch_32);
424
425	/* adjust the output delay for SD mode */
426	pci_write_config_dword(chip->pdev, O2_SD_DELAY_CTRL, 0x00002492);
427
428	/* Set the output voltage setting of Aux 1.2v LDO */
429	ret = pci_read_config_dword(chip->pdev, O2_SD_LD0_CTRL, &scratch_32);
430	if (ret)
431		return;
432	scratch_32 &= ~(3 << 12);
433	pci_write_config_dword(chip->pdev, O2_SD_LD0_CTRL, scratch_32);
434
435	/* Set Max power supply capability of SD host */
436	ret = pci_read_config_dword(chip->pdev, O2_SD_CAP_REG0, &scratch_32);
437	if (ret)
438		return;
439	scratch_32 &= ~(0x01FE);
440	scratch_32 |= 0x00CC;
441	pci_write_config_dword(chip->pdev, O2_SD_CAP_REG0, scratch_32);
442	/* Set DLL Tuning Window */
443	ret = pci_read_config_dword(chip->pdev,
444				    O2_SD_TUNING_CTRL, &scratch_32);
445	if (ret)
446		return;
447	scratch_32 &= ~(0x000000FF);
448	scratch_32 |= 0x00000066;
449	pci_write_config_dword(chip->pdev, O2_SD_TUNING_CTRL, scratch_32);
450
451	/* Set UHS2 T_EIDLE */
452	ret = pci_read_config_dword(chip->pdev,
453				    O2_SD_UHS2_L1_CTRL, &scratch_32);
454	if (ret)
455		return;
456	scratch_32 &= ~(0x000000FC);
457	scratch_32 |= 0x00000084;
458	pci_write_config_dword(chip->pdev, O2_SD_UHS2_L1_CTRL, scratch_32);
459
460	/* Set UHS2 Termination */
461	ret = pci_read_config_dword(chip->pdev, O2_SD_FUNC_REG3, &scratch_32);
462	if (ret)
463		return;
464	scratch_32 &= ~((1 << 21) | (1 << 30));
465
466	pci_write_config_dword(chip->pdev, O2_SD_FUNC_REG3, scratch_32);
467
468	/* Set L1 Entrance Timer */
469	ret = pci_read_config_dword(chip->pdev, O2_SD_CAPS, &scratch_32);
470	if (ret)
471		return;
472	scratch_32 &= ~(0xf0000000);
473	scratch_32 |= 0x30000000;
474	pci_write_config_dword(chip->pdev, O2_SD_CAPS, scratch_32);
475
476	ret = pci_read_config_dword(chip->pdev,
477				    O2_SD_MISC_CTRL4, &scratch_32);
478	if (ret)
479		return;
480	scratch_32 &= ~(0x000f0000);
481	scratch_32 |= 0x00080000;
482	pci_write_config_dword(chip->pdev, O2_SD_MISC_CTRL4, scratch_32);
483}
484
485static void sdhci_pci_o2_enable_msi(struct sdhci_pci_chip *chip,
486				    struct sdhci_host *host)
487{
488	int ret;
489
490	ret = pci_find_capability(chip->pdev, PCI_CAP_ID_MSI);
491	if (!ret) {
492		pr_info("%s: unsupport msi, use INTx irq\n",
493			mmc_hostname(host->mmc));
494		return;
495	}
496
497	ret = pci_alloc_irq_vectors(chip->pdev, 1, 1,
498				    PCI_IRQ_MSI | PCI_IRQ_MSIX);
499	if (ret < 0) {
500		pr_err("%s: enable PCI MSI failed, err=%d\n",
501		       mmc_hostname(host->mmc), ret);
502		return;
503	}
504
505	host->irq = pci_irq_vector(chip->pdev, 0);
506}
507
508static void sdhci_o2_enable_clk(struct sdhci_host *host, u16 clk)
509{
510	/* Enable internal clock */
511	clk |= SDHCI_CLOCK_INT_EN;
512	sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
513
514	sdhci_o2_enable_internal_clock(host);
515	if (sdhci_o2_get_cd(host->mmc)) {
516		clk |= SDHCI_CLOCK_CARD_EN;
517		sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
518	}
519}
520
521static void sdhci_pci_o2_set_clock(struct sdhci_host *host, unsigned int clock)
522{
523	u16 clk;
524	u8 scratch;
525	u32 scratch_32;
526	struct sdhci_pci_slot *slot = sdhci_priv(host);
527	struct sdhci_pci_chip *chip = slot->chip;
528
529	host->mmc->actual_clock = 0;
530
531	sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
532
533	if (clock == 0)
534		return;
535
 
 
 
 
 
536	if ((host->timing == MMC_TIMING_UHS_SDR104) && (clock == 200000000)) {
537		pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
538
539		scratch &= 0x7f;
540		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
541
542		pci_read_config_dword(chip->pdev, O2_SD_PLL_SETTING, &scratch_32);
543
544		if ((scratch_32 & 0xFFFF0000) != 0x2c280000)
545			o2_pci_set_baseclk(chip, 0x2c280000);
 
 
546
547		pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch);
 
 
548
549		scratch |= 0x80;
550		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
551	}
 
 
 
 
 
552
553	clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
554	sdhci_o2_enable_clk(host, clk);
555}
556
557static int sdhci_pci_o2_probe_slot(struct sdhci_pci_slot *slot)
558{
559	struct sdhci_pci_chip *chip;
560	struct sdhci_host *host;
561	struct o2_host *o2_host = sdhci_pci_priv(slot);
562	u32 reg, caps;
563	int ret;
564
565	chip = slot->chip;
566	host = slot->host;
567
568	o2_host->dll_adjust_count = 0;
569	caps = sdhci_readl(host, SDHCI_CAPABILITIES);
570
571	/*
572	 * mmc_select_bus_width() will test the bus to determine the actual bus
573	 * width.
574	 */
575	if (caps & SDHCI_CAN_DO_8BIT)
576		host->mmc->caps |= MMC_CAP_8_BIT_DATA;
577
578	switch (chip->pdev->device) {
579	case PCI_DEVICE_ID_O2_SDS0:
580	case PCI_DEVICE_ID_O2_SEABIRD0:
581	case PCI_DEVICE_ID_O2_SEABIRD1:
582	case PCI_DEVICE_ID_O2_SDS1:
583	case PCI_DEVICE_ID_O2_FUJIN2:
584		reg = sdhci_readl(host, O2_SD_VENDOR_SETTING);
585		if (reg & 0x1)
586			host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12;
587
 
 
588		sdhci_pci_o2_enable_msi(chip, host);
589
590		if (chip->pdev->device == PCI_DEVICE_ID_O2_SEABIRD0) {
591			ret = pci_read_config_dword(chip->pdev,
592						    O2_SD_MISC_SETTING, &reg);
593			if (ret)
594				return -EIO;
595			if (reg & (1 << 4)) {
596				pr_info("%s: emmc 1.8v flag is set, force 1.8v signaling voltage\n",
597					mmc_hostname(host->mmc));
598				host->flags &= ~SDHCI_SIGNALING_330;
599				host->flags |= SDHCI_SIGNALING_180;
600				host->mmc->caps2 |= MMC_CAP2_NO_SD;
601				host->mmc->caps2 |= MMC_CAP2_NO_SDIO;
602				pci_write_config_dword(chip->pdev,
603						       O2_SD_DETECT_SETTING, 3);
604			}
605
606			slot->host->mmc_host_ops.get_cd = sdhci_o2_get_cd;
607		}
608
609		if (chip->pdev->device == PCI_DEVICE_ID_O2_SEABIRD1) {
610			slot->host->mmc_host_ops.get_cd = sdhci_o2_get_cd;
611			host->mmc->caps2 |= MMC_CAP2_NO_SDIO;
612			host->quirks2 |= SDHCI_QUIRK2_PRESET_VALUE_BROKEN;
613		}
614
615		host->mmc_host_ops.execute_tuning = sdhci_o2_execute_tuning;
616
617		if (chip->pdev->device != PCI_DEVICE_ID_O2_FUJIN2)
618			break;
619		/* set dll watch dog timer */
620		reg = sdhci_readl(host, O2_SD_VENDOR_SETTING2);
621		reg |= (1 << 12);
622		sdhci_writel(host, reg, O2_SD_VENDOR_SETTING2);
623
624		break;
625	default:
626		break;
627	}
628
629	return 0;
630}
631
632static int sdhci_pci_o2_probe(struct sdhci_pci_chip *chip)
633{
634	int ret;
635	u8 scratch;
636	u32 scratch_32;
637
638	switch (chip->pdev->device) {
639	case PCI_DEVICE_ID_O2_8220:
640	case PCI_DEVICE_ID_O2_8221:
641	case PCI_DEVICE_ID_O2_8320:
642	case PCI_DEVICE_ID_O2_8321:
643		/* This extra setup is required due to broken ADMA. */
644		ret = pci_read_config_byte(chip->pdev,
645				O2_SD_LOCK_WP, &scratch);
646		if (ret)
647			return ret;
648		scratch &= 0x7f;
649		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
650
651		/* Set Multi 3 to VCC3V# */
652		pci_write_config_byte(chip->pdev, O2_SD_MULTI_VCC3V, 0x08);
653
654		/* Disable CLK_REQ# support after media DET */
655		ret = pci_read_config_byte(chip->pdev,
656				O2_SD_CLKREQ, &scratch);
657		if (ret)
658			return ret;
659		scratch |= 0x20;
660		pci_write_config_byte(chip->pdev, O2_SD_CLKREQ, scratch);
661
662		/* Choose capabilities, enable SDMA.  We have to write 0x01
663		 * to the capabilities register first to unlock it.
664		 */
665		ret = pci_read_config_byte(chip->pdev, O2_SD_CAPS, &scratch);
666		if (ret)
667			return ret;
668		scratch |= 0x01;
669		pci_write_config_byte(chip->pdev, O2_SD_CAPS, scratch);
670		pci_write_config_byte(chip->pdev, O2_SD_CAPS, 0x73);
671
672		/* Disable ADMA1/2 */
673		pci_write_config_byte(chip->pdev, O2_SD_ADMA1, 0x39);
674		pci_write_config_byte(chip->pdev, O2_SD_ADMA2, 0x08);
675
676		/* Disable the infinite transfer mode */
677		ret = pci_read_config_byte(chip->pdev,
678				O2_SD_INF_MOD, &scratch);
679		if (ret)
680			return ret;
681		scratch |= 0x08;
682		pci_write_config_byte(chip->pdev, O2_SD_INF_MOD, scratch);
683
684		/* Lock WP */
685		ret = pci_read_config_byte(chip->pdev,
686				O2_SD_LOCK_WP, &scratch);
687		if (ret)
688			return ret;
689		scratch |= 0x80;
690		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
691		break;
692	case PCI_DEVICE_ID_O2_SDS0:
693	case PCI_DEVICE_ID_O2_SDS1:
694	case PCI_DEVICE_ID_O2_FUJIN2:
695		/* UnLock WP */
696		ret = pci_read_config_byte(chip->pdev,
697				O2_SD_LOCK_WP, &scratch);
698		if (ret)
699			return ret;
700
701		scratch &= 0x7f;
702		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
703
704		/* DevId=8520 subId= 0x11 or 0x12  Type Chip support */
705		if (chip->pdev->device == PCI_DEVICE_ID_O2_FUJIN2) {
706			ret = pci_read_config_dword(chip->pdev,
707						    O2_SD_FUNC_REG0,
708						    &scratch_32);
709			if (ret)
710				return ret;
711			scratch_32 = ((scratch_32 & 0xFF000000) >> 24);
712
713			/* Check Whether subId is 0x11 or 0x12 */
714			if ((scratch_32 == 0x11) || (scratch_32 == 0x12)) {
715				scratch_32 = 0x25100000;
716
717				o2_pci_set_baseclk(chip, scratch_32);
718				ret = pci_read_config_dword(chip->pdev,
719							    O2_SD_FUNC_REG4,
720							    &scratch_32);
721				if (ret)
722					return ret;
723
724				/* Enable Base Clk setting change */
725				scratch_32 |= O2_SD_FREG4_ENABLE_CLK_SET;
726				pci_write_config_dword(chip->pdev,
727						       O2_SD_FUNC_REG4,
728						       scratch_32);
729
730				/* Set Tuning Window to 4 */
731				pci_write_config_byte(chip->pdev,
732						      O2_SD_TUNING_CTRL, 0x44);
733
734				break;
735			}
736		}
737
738		/* Enable 8520 led function */
739		o2_pci_led_enable(chip);
740
741		/* Set timeout CLK */
742		ret = pci_read_config_dword(chip->pdev,
743					    O2_SD_CLK_SETTING, &scratch_32);
744		if (ret)
745			return ret;
746
747		scratch_32 &= ~(0xFF00);
748		scratch_32 |= 0x07E0C800;
749		pci_write_config_dword(chip->pdev,
750				       O2_SD_CLK_SETTING, scratch_32);
751
752		ret = pci_read_config_dword(chip->pdev,
753					    O2_SD_CLKREQ, &scratch_32);
754		if (ret)
755			return ret;
756		scratch_32 |= 0x3;
757		pci_write_config_dword(chip->pdev, O2_SD_CLKREQ, scratch_32);
758
759		ret = pci_read_config_dword(chip->pdev,
760					    O2_SD_PLL_SETTING, &scratch_32);
761		if (ret)
762			return ret;
763
764		scratch_32 &= ~(0x1F3F070E);
765		scratch_32 |= 0x18270106;
766		pci_write_config_dword(chip->pdev,
767				       O2_SD_PLL_SETTING, scratch_32);
768
769		/* Disable UHS1 funciton */
770		ret = pci_read_config_dword(chip->pdev,
771					    O2_SD_CAP_REG2, &scratch_32);
772		if (ret)
773			return ret;
774		scratch_32 &= ~(0xE0);
775		pci_write_config_dword(chip->pdev,
776				       O2_SD_CAP_REG2, scratch_32);
777
778		if (chip->pdev->device == PCI_DEVICE_ID_O2_FUJIN2)
779			sdhci_pci_o2_fujin2_pci_init(chip);
780
781		/* Lock WP */
782		ret = pci_read_config_byte(chip->pdev,
783					   O2_SD_LOCK_WP, &scratch);
784		if (ret)
785			return ret;
786		scratch |= 0x80;
787		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
788		break;
789	case PCI_DEVICE_ID_O2_SEABIRD0:
790	case PCI_DEVICE_ID_O2_SEABIRD1:
791		/* UnLock WP */
792		ret = pci_read_config_byte(chip->pdev,
793				O2_SD_LOCK_WP, &scratch);
794		if (ret)
795			return ret;
796
797		scratch &= 0x7f;
798		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
799
800		ret = pci_read_config_dword(chip->pdev,
801					    O2_SD_PLL_SETTING, &scratch_32);
802		if (ret)
803			return ret;
804
805		if ((scratch_32 & 0xff000000) == 0x01000000) {
806			scratch_32 &= 0x0000FFFF;
807			scratch_32 |= 0x1F340000;
808
809			pci_write_config_dword(chip->pdev,
810					       O2_SD_PLL_SETTING, scratch_32);
811		} else {
812			scratch_32 &= 0x0000FFFF;
813			scratch_32 |= 0x25100000;
814
815			pci_write_config_dword(chip->pdev,
816					       O2_SD_PLL_SETTING, scratch_32);
817
818			ret = pci_read_config_dword(chip->pdev,
819						    O2_SD_FUNC_REG4,
820						    &scratch_32);
821			if (ret)
822				return ret;
823			scratch_32 |= (1 << 22);
824			pci_write_config_dword(chip->pdev,
825					       O2_SD_FUNC_REG4, scratch_32);
826		}
827
828		/* Set Tuning Windows to 5 */
829		pci_write_config_byte(chip->pdev,
830				O2_SD_TUNING_CTRL, 0x55);
 
 
 
 
 
 
831		/* Lock WP */
832		ret = pci_read_config_byte(chip->pdev,
833					   O2_SD_LOCK_WP, &scratch);
834		if (ret)
835			return ret;
836		scratch |= 0x80;
837		pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch);
838		break;
839	}
840
841	return 0;
842}
843
844#ifdef CONFIG_PM_SLEEP
845static int sdhci_pci_o2_resume(struct sdhci_pci_chip *chip)
846{
847	sdhci_pci_o2_probe(chip);
848	return sdhci_pci_resume_host(chip);
849}
850#endif
851
852static const struct sdhci_ops sdhci_pci_o2_ops = {
853	.set_clock = sdhci_pci_o2_set_clock,
854	.enable_dma = sdhci_pci_enable_dma,
855	.set_bus_width = sdhci_set_bus_width,
856	.reset = sdhci_reset,
857	.set_uhs_signaling = sdhci_set_uhs_signaling,
858};
859
860const struct sdhci_pci_fixes sdhci_o2 = {
861	.probe = sdhci_pci_o2_probe,
862	.quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
863	.quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
864	.probe_slot = sdhci_pci_o2_probe_slot,
865#ifdef CONFIG_PM_SLEEP
866	.resume = sdhci_pci_o2_resume,
867#endif
868	.ops = &sdhci_pci_o2_ops,
869	.priv_size = sizeof(struct o2_host),
870};