blob: 3e9c6c908a793c944eb91c2fdb790ba569fe3fb3 [file] [log] [blame]
Thomas Gleixnera10e7632019-05-31 01:09:32 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Hu Ziji3a3748d2017-03-30 17:22:59 +02002/*
3 * Copyright (C) 2016 Marvell, All Rights Reserved.
4 *
5 * Author: Hu Ziji <huziji@marvell.com>
6 * Date: 2016-8-24
Hu Ziji3a3748d2017-03-30 17:22:59 +02007 */
8#ifndef SDHCI_XENON_H_
9#define SDHCI_XENON_H_
10
11/* Register Offset of Xenon SDHC self-defined register */
12#define XENON_SYS_CFG_INFO 0x0104
13#define XENON_SLOT_TYPE_SDIO_SHIFT 24
14#define XENON_NR_SUPPORTED_SLOT_MASK 0x7
15
16#define XENON_SYS_OP_CTRL 0x0108
17#define XENON_AUTO_CLKGATE_DISABLE_MASK BIT(20)
18#define XENON_SDCLK_IDLEOFF_ENABLE_SHIFT 8
19#define XENON_SLOT_ENABLE_SHIFT 0
20
21#define XENON_SYS_EXT_OP_CTRL 0x010C
22#define XENON_MASK_CMD_CONFLICT_ERR BIT(8)
23
Hu Ziji06c8b662017-03-30 17:23:00 +020024#define XENON_SLOT_OP_STATUS_CTRL 0x0128
25#define XENON_TUN_CONSECUTIVE_TIMES_SHIFT 16
26#define XENON_TUN_CONSECUTIVE_TIMES_MASK 0x7
27#define XENON_TUN_CONSECUTIVE_TIMES 0x4
28#define XENON_TUNING_STEP_SHIFT 12
29#define XENON_TUNING_STEP_MASK 0xF
30#define XENON_TUNING_STEP_DIVIDER BIT(6)
31
32#define XENON_SLOT_EMMC_CTRL 0x0130
Hu Zijiaab6e25a2017-08-23 11:15:02 -070033#define XENON_ENABLE_RESP_STROBE BIT(25)
Hu Ziji06c8b662017-03-30 17:23:00 +020034#define XENON_ENABLE_DATA_STROBE BIT(24)
35
Hu Ziji3a3748d2017-03-30 17:22:59 +020036#define XENON_SLOT_RETUNING_REQ_CTRL 0x0144
37/* retuning compatible */
38#define XENON_RETUNING_COMPATIBLE 0x1
39
Hu Ziji06c8b662017-03-30 17:23:00 +020040#define XENON_SLOT_EXT_PRESENT_STATE 0x014C
41#define XENON_DLL_LOCK_STATE 0x1
42
43#define XENON_SLOT_DLL_CUR_DLY_VAL 0x0150
44
Hu Ziji3a3748d2017-03-30 17:22:59 +020045/* Tuning Parameter */
46#define XENON_TMR_RETUN_NO_PRESENT 0xF
47#define XENON_DEF_TUNING_COUNT 0x9
48
49#define XENON_DEFAULT_SDCLK_FREQ 400000
Hu Ziji06c8b662017-03-30 17:23:00 +020050#define XENON_LOWEST_SDCLK_FREQ 100000
Hu Ziji3a3748d2017-03-30 17:22:59 +020051
52/* Xenon specific Mode Select value */
53#define XENON_CTRL_HS200 0x5
54#define XENON_CTRL_HS400 0x6
55
Marcin Wojtasf75fda32020-12-04 18:16:23 +010056enum xenon_variant {
57 XENON_A3700,
58 XENON_AP806,
59 XENON_AP807,
60 XENON_CP110
61};
62
Hu Ziji3a3748d2017-03-30 17:22:59 +020063struct xenon_priv {
64 unsigned char tuning_count;
65 /* idx of SDHC */
66 u8 sdhc_id;
67
68 /*
69 * eMMC/SD/SDIO require different register settings.
70 * Xenon driver has to recognize card type
71 * before mmc_host->card is not available.
72 * This field records the card type during init.
73 * It is updated in xenon_init_card().
74 *
75 * It is only valid during initialization after it is updated.
76 * Do not access this variable in normal transfers after
77 * initialization completes.
78 */
79 unsigned int init_card_type;
Hu Ziji06c8b662017-03-30 17:23:00 +020080
81 /*
82 * The bus_width, timing, and clock fields in below
83 * record the current ios setting of Xenon SDHC.
84 * Driver will adjust PHY setting if any change to
85 * ios affects PHY timing.
86 */
87 unsigned char bus_width;
88 unsigned char timing;
89 unsigned int clock;
Gregory CLEMENTbb16ea12017-10-02 16:58:52 +020090 struct clk *axi_clk;
Hu Ziji06c8b662017-03-30 17:23:00 +020091
92 int phy_type;
93 /*
94 * Contains board-specific PHY parameters
95 * passed from device tree.
96 */
97 void *phy_params;
98 struct xenon_emmc_phy_regs *emmc_phy_regs;
Zhoujie Wua027b2c2017-08-29 11:54:49 -070099 bool restore_needed;
Marcin Wojtasf75fda32020-12-04 18:16:23 +0100100 enum xenon_variant hw_version;
Hu Ziji3a3748d2017-03-30 17:22:59 +0200101};
102
Hu Ziji06c8b662017-03-30 17:23:00 +0200103int xenon_phy_adj(struct sdhci_host *host, struct mmc_ios *ios);
Marcin Wojtasf29bf662020-12-04 18:16:24 +0100104int xenon_phy_parse_params(struct device *dev,
105 struct sdhci_host *host);
Hu Ziji298269c2017-03-30 17:23:01 +0200106void xenon_soc_pad_ctrl(struct sdhci_host *host,
107 unsigned char signal_voltage);
Hu Ziji3a3748d2017-03-30 17:22:59 +0200108#endif