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
|
/*
* DesignWare HS OTG controller driver
* Copyright (C) 2006 Synopsys, Inc.
* Portions Copyright (C) 2010 Applied Micro Circuits Corporation.
*
* 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.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License version 2 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see http://www.gnu.org/licenses
* or write to the Free Software Foundation, Inc., 51 Franklin Street,
* Suite 500, Boston, MA 02110-1335 USA.
*
* Based on Synopsys driver version 2.60a
* Modified by Mark Miesfeld <mmiesfeld@apm.com>
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL SYNOPSYS, INC. BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES
* (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
/*
* This file provides dwc_otg driver parameter and parameter checking.
*/
#include "cil.h"
/*
* Encapsulate the module parameter settings
*/
struct core_params dwc_otg_module_params = {
.otg_cap = -1,
.dma_enable = -1,
.dma_burst_size = -1,
.speed = -1,
.host_support_fs_ls_low_power = -1,
.host_ls_low_power_phy_clk = -1,
.enable_dynamic_fifo = -1,
.dev_rx_fifo_size = -1,
.dev_nperio_tx_fifo_size = -1,
.dev_perio_tx_fifo_size = {-1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1}, /* 15 */
.host_rx_fifo_size = -1,
.host_nperio_tx_fifo_size = -1,
.host_perio_tx_fifo_size = -1,
.max_transfer_size = -1,
.max_packet_count = -1,
.host_channels = -1,
.dev_endpoints = -1,
.phy_type = -1,
.phy_utmi_width = -1,
.phy_ulpi_ddr = -1,
.phy_ulpi_ext_vbus = -1,
.i2c_enable = -1,
.ulpi_fs_ls = -1,
.ts_dline = -1,
.en_multiple_tx_fifo = -1,
.dev_tx_fifo_size = {-1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1}, /* 15 */
.thr_ctl = -1,
.tx_thr_length = -1,
.rx_thr_length = -1,
};
/**
* Checks that parameter settings for the periodic Tx FIFO sizes are correct
* according to the hardware configuration. Sets the size to the hardware
* configuration if an incorrect size is detected.
*/
static int set_valid_perio_tx_fifo_sizes(struct core_if *core_if)
{
ulong regs = (u32) core_if->core_global_regs;
u32 *param_size = &dwc_otg_module_params.dev_perio_tx_fifo_size[0];
u32 i, size;
for (i = 0; i < MAX_PERIO_FIFOS; i++, param_size++) {
size = dwc_reg_read(regs, DWC_DPTX_FSIZ_DIPTXF(i));
*param_size = size;
}
return 0;
}
/**
* Checks that parameter settings for the Tx FIFO sizes are correct according to
* the hardware configuration. Sets the size to the hardware configuration if
* an incorrect size is detected.
*/
static int set_valid_tx_fifo_sizes(struct core_if *core_if)
{
ulong regs = (u32) core_if->core_global_regs;
u32 *param_size = &dwc_otg_module_params.dev_tx_fifo_size[0];
u32 i, size;
for (i = 0; i < MAX_TX_FIFOS; i++, param_size) {
size = dwc_reg_read(regs, DWC_DPTX_FSIZ_DIPTXF(i));
*param_size = size;
}
return 0;
}
/**
* This function is called during module intialization to verify that
* the module parameters are in a valid state.
*/
int check_parameters(struct core_if *core_if)
{
/* Default values */
dwc_otg_module_params.otg_cap = dwc_param_otg_cap_default;
dwc_otg_module_params.dma_enable = dwc_param_dma_enable_default;
dwc_otg_module_params.speed = dwc_param_speed_default;
dwc_otg_module_params.host_support_fs_ls_low_power =
dwc_param_host_support_fs_ls_low_power_default;
dwc_otg_module_params.host_ls_low_power_phy_clk =
dwc_param_host_ls_low_power_phy_clk_default;
dwc_otg_module_params.phy_type = dwc_param_phy_type_default;
dwc_otg_module_params.phy_ulpi_ddr = dwc_param_phy_ulpi_ddr_default;
dwc_otg_module_params.phy_ulpi_ext_vbus =
dwc_param_phy_ulpi_ext_vbus_default;
dwc_otg_module_params.i2c_enable = dwc_param_i2c_enable_default;
dwc_otg_module_params.ulpi_fs_ls = dwc_param_ulpi_fs_ls_default;
dwc_otg_module_params.ts_dline = dwc_param_ts_dline_default;
dwc_otg_module_params.dma_burst_size = dwc_param_dma_burst_size_default;
dwc_otg_module_params.phy_utmi_width = dwc_param_phy_utmi_width_default;
dwc_otg_module_params.thr_ctl = dwc_param_thr_ctl_default;
dwc_otg_module_params.tx_thr_length = dwc_param_tx_thr_length_default;
dwc_otg_module_params.rx_thr_length = dwc_param_rx_thr_length_default;
/*
* Hardware configurations of the OTG core.
*/
dwc_otg_module_params.enable_dynamic_fifo =
DWC_HWCFG2_DYN_FIFO_RD(core_if->hwcfg2);
dwc_otg_module_params.dev_rx_fifo_size =
dwc_reg_read(core_if->core_global_regs, DWC_GRXFSIZ);
dwc_otg_module_params.dev_nperio_tx_fifo_size =
dwc_reg_read(core_if->core_global_regs, DWC_GNPTXFSIZ) >> 16;
dwc_otg_module_params.host_rx_fifo_size =
dwc_reg_read(core_if->core_global_regs, DWC_GRXFSIZ);
dwc_otg_module_params.host_nperio_tx_fifo_size =
dwc_reg_read(core_if->core_global_regs, DWC_GNPTXFSIZ) >> 16;
dwc_otg_module_params.host_perio_tx_fifo_size =
dwc_reg_read(core_if->core_global_regs, DWC_HPTXFSIZ) >> 16;
dwc_otg_module_params.max_transfer_size =
(1 << (DWC_HWCFG3_XFERSIZE_CTR_WIDTH_RD(core_if->hwcfg3) + 11))
- 1;
dwc_otg_module_params.max_packet_count =
(1 << (DWC_HWCFG3_PKTSIZE_CTR_WIDTH_RD(core_if->hwcfg3) + 4))
- 1;
dwc_otg_module_params.host_channels =
DWC_HWCFG2_NO_HST_CHAN_RD(core_if->hwcfg2) + 1;
dwc_otg_module_params.dev_endpoints =
DWC_HWCFG2_NO_DEV_EP_RD(core_if->hwcfg2);
dwc_otg_module_params.en_multiple_tx_fifo =
(DWC_HWCFG4_DED_FIFO_ENA_RD(core_if->hwcfg4) == 0)
? 0 : 1, 0;
set_valid_perio_tx_fifo_sizes(core_if);
set_valid_tx_fifo_sizes(core_if);
return 0;
}
module_param_named(dma_enable, dwc_otg_module_params.dma_enable, bool, 0444);
MODULE_PARM_DESC(dma_enable, "DMA Mode 0=Slave 1=DMA enabled");
|