forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquec_uhc_driver_stm32.c
342 lines (283 loc) · 7.48 KB
/
quec_uhc_driver_stm32.c
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/*
* Copyright (c) 2025 Quectel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <soc.h>
#include <stm32_ll_bus.h>
#include <stm32_ll_pwr.h>
#include <stm32_ll_rcc.h>
#include <stm32_ll_system.h>
#include <string.h>
#include <zephyr/drivers/clock_control/stm32_clock_control.h>
#include <zephyr/sys/util.h>
#include <zephyr/drivers/gpio.h>
#include <zephyr/drivers/pinctrl.h>
#include <zephyr/irq.h>
#include "stm32_hsem.h"
#include "quec_uhc_driver.h"
#include "stm32h5xx_hal_rcc_ex.h"
#define DT_DRV_COMPAT st_stm32_usb
LOG_MODULE_REGISTER(quec_uhc_drv, LOG_LEVEL_DBG);
/*===========================================================================
* variables
===========================================================================*/
static quec_udrv_mgr_t uhc_control = {0};
static void uhc_debounce_callback(struct k_timer *timer);
K_MSGQ_DEFINE(uhc_urb_msgq, sizeof(quec_uhc_msg_t), 10, 4);
K_TIMER_DEFINE(uhc_dec_timer, uhc_debounce_callback, NULL);
/*===========================================================================
* Functions
===========================================================================*/
void HAL_HCD_Connect_Callback(HCD_HandleTypeDef *hhcd)
{
quec_udrv_mgr_t *driver = (quec_udrv_mgr_t *)hhcd->pData;
if(driver == NULL)
{
quec_print("driver err");
return;
}
driver->status = QUEC_STATUS_DEBOUNCE;
k_timer_start(&uhc_dec_timer, K_MSEC(50), K_MSEC(0));
}
void HAL_HCD_Disconnect_Callback(HCD_HandleTypeDef *hhcd)
{
quec_udrv_mgr_t *driver = (quec_udrv_mgr_t *)hhcd->pData;
if(driver == NULL)
{
quec_print("driver err");
return;
}
if(driver->status == QUEC_STATUS_DEBOUNCE)
{
k_timer_stop(&uhc_dec_timer);
}
else if(driver->status != QUEC_STATUS_DISCONNECT)
{
if(driver->callback)
{
driver->callback(QUEC_DEVICE_DISCONNECT, NULL);
}
}
driver->status = QUEC_STATUS_DISCONNECT;
}
void uhc_debounce_callback(struct k_timer *timer)
{
uhc_control.status = QUEC_STATUS_CONNECT;
if(uhc_control.callback)
{
uhc_control.callback(QUEC_DEVICE_CONNECT, NULL);
}
}
void HAL_HCD_HC_NotifyURBChange_Callback(HCD_HandleTypeDef *hhcd, uint8_t chnum, HCD_URBStateTypeDef urb_state)
{
quec_udrv_mgr_t *driver = (quec_udrv_mgr_t *)hhcd->pData;
if(driver == NULL || chnum > 16)
{
quec_print("driver err %p %d", driver, chnum);
return;
}
quec_udrv_port_t *port = &driver->port[chnum];
if(port->xfer == NULL || port->xfer->callback == NULL)
{
quec_print("port err %d %d %p", chnum, urb_state, port->xfer);
return;
}
if(urb_state == URB_DONE || urb_state == URB_STALL)
{
uint32_t irq_hd = irq_lock();
port->xfer->status = (urb_state == URB_DONE ? 0 : -1);
port->xfer->actual = HAL_HCD_HC_GetXferCount(hhcd, chnum);
port->xfer->callback(port->xfer);
irq_unlock(irq_hd);
}
}
static void uhc_stm32_isr(const void *arg)
{
HAL_HCD_IRQHandler(&uhc_control.hcd);
}
static int uhc_stm32_hw_init(HCD_HandleTypeDef *hcd)
{
quec_print("start init uhc...");
hcd->Instance = USB_DRD_FS;
hcd->Init.Host_channels = 8;
hcd->Init.speed = HCD_SPEED_FULL;
hcd->Init.dma_enable = DISABLE;
hcd->Init.phy_itface = HCD_PHY_EMBEDDED;
hcd->Init.Sof_enable = ENABLE;
hcd->pData = (void *)&uhc_control;
if (HAL_HCD_Init(hcd) != HAL_OK)
{
quec_print("HCD init failed");
return -1;
}
if(HAL_HCD_Start(hcd) != HAL_OK)
{
quec_print("HCD start failed");
return -1;
}
IRQ_CONNECT(USB_DRD_FS_IRQn, 0, uhc_stm32_isr, 0, 0);
irq_enable(USB_DRD_FS_IRQn);
quec_print("uhc init ok");
return 0;
}
static int uhc_stm32_clock_enable(void)
{
const struct device *const clk = DEVICE_DT_GET(STM32_CLOCK_CONTROL_NODE);
const struct stm32_pclken pclken[] = STM32_DT_INST_CLOCKS(0);
if (!device_is_ready(clk))
{
quec_print("clock control device not ready");
return -1;
}
LL_PWR_EnableVDDUSB();
if (DT_INST_NUM_CLOCKS(0) > 1)
{
if (clock_control_configure(clk, (clock_control_subsys_t)&pclken[1], NULL) != 0)
{
quec_print("Could not select USB domain clock");
return -1;
}
}
if (clock_control_on(clk, (clock_control_subsys_t)&pclken[0]) != 0)
{
quec_print("Unable to enable USB clock");
return -1;
}
quec_print("uhc clock enabled");
return 0;
}
static int quec_stm32_chip_init(const struct device *dev)
{
if(uhc_stm32_clock_enable() != 0)
{
return -1;
}
return 0;
}
static uint8_t quec_stm32_alloc_port(quec_udrv_mgr_t *uhc_mgr)
{
uint8_t index;
for (index = 1; index <= 16 ; index++)
{
if(uhc_mgr->port[index].occupied == false)
{
uhc_mgr->port[index].occupied = true;
uhc_mgr->port[index].xfer = NULL;
return index;
}
}
return UHC_PORT_INVALID;
}
static void quec_stm32_free_port(quec_udrv_mgr_t *uhc_mgr, uint8_t port_id)
{
uhc_mgr->port[port_id].occupied = false;
uhc_mgr->port[port_id].xfer = NULL;
quec_print("free port %d", port_id);
}
static int quec_stm32_enqueue(const struct device *dev, quec_uhc_xfer_t *xfer)
{
quec_udrv_mgr_t *uhc_cfg = dev->data;
int ret = 0;
uhc_cfg->port[xfer->port_num].xfer = xfer;
ret = HAL_HCD_HC_SubmitRequest(&uhc_cfg->hcd,
xfer->port_num,
(xfer->ep_desc->bEndpointAddress & 0x80) >> 7,
xfer->ep_desc->bmAttributes,
xfer->token,
xfer->buffer,
xfer->nbytes,
0);
if(ret != HAL_OK)
{
uhc_cfg->port[xfer->port_num].xfer = NULL;
quec_print("transfer request fail");
return -1;
}
return 0;
}
static int quec_stm32_reset(const struct device *dev)
{
quec_udrv_mgr_t *uhc_cfg = dev->data;
HAL_HCD_ResetPort(&uhc_cfg->hcd);
quec_print("stm32 reset usb");
return 0;
}
static int quec_stm32_init(const struct device *dev, quec_uhc_drv_cb_t callback)
{
quec_udrv_mgr_t *uhc_cfg = dev->data;
uhc_cfg->callback = callback;
if(uhc_stm32_hw_init(&uhc_cfg->hcd) != 0)
{
return -1;
}
return 0;
}
static int quec_stm32_deinit(const struct device *dev)
{
quec_udrv_mgr_t *uhc_cfg = dev->data;
uhc_cfg->callback = NULL;
irq_disable(USB_DRD_FS_IRQn);
HAL_HCD_Stop(&uhc_cfg->hcd);
HAL_HCD_DeInit(&uhc_cfg->hcd);
return 0;
}
static int quec_stm32_set_address(const struct device *dev, uint8_t address)
{
quec_udrv_mgr_t *uhc_cfg = dev->data;
uhc_cfg->dev_address = address;
return 0;
}
static int quec_stm32_ep_enable(const struct device *dev, usb_endp_desc_t *ep_desc)
{
int ret = 0;
uint8_t port_num = 0;
quec_udrv_mgr_t *uhc_cfg = dev->data;
if(ep_desc->bEndpointAddress == 0x80 || ep_desc->bEndpointAddress == 0)
{
port_num = 0;
}
else
{
port_num = quec_stm32_alloc_port(uhc_cfg);
}
if(port_num == UHC_PORT_INVALID)
{
quec_print("no valid port");
return -1;
}
ret = HAL_HCD_HC_Init(&uhc_cfg->hcd,
port_num,
ep_desc->bEndpointAddress,
uhc_cfg->dev_address,
USB_DRD_SPEED_FS,
ep_desc->bmAttributes,
ep_desc->wMaxPacketSize);
if(ret != 0)
{
quec_print("ep 0x%x enable failed", ep_desc->bEndpointAddress);
return -1;
}
return port_num;
}
static int quec_stm32_ep_disable(const struct device *dev, uint8_t port)
{
quec_udrv_mgr_t *uhc_cfg = dev->data;
HAL_HCD_HC_Halt(&uhc_cfg->hcd, port);
HAL_HCD_HC_Close(&uhc_cfg->hcd, port);
quec_stm32_free_port(uhc_cfg, port);
return 0;
}
static const quec_udrv_api_t uhc_stm32_api = {
.init = quec_stm32_init,
.deinit = quec_stm32_deinit,
.reset = quec_stm32_reset,
.set_address = quec_stm32_set_address,
.ep_enable = quec_stm32_ep_enable,
.ep_disable = quec_stm32_ep_disable,
.enqueue = quec_stm32_enqueue,
};
DEVICE_DEFINE(QCX216, "QCX216", quec_stm32_chip_init,
NULL, &uhc_control, NULL,
POST_KERNEL, 98,
&uhc_stm32_api);