can.c 27.5 KB
Newer Older
A
Aubr.Cool 已提交
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
A
Aubr.Cool 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
A
Aubr.Cool 已提交
5 6
 *
 * Change Logs:
7 8
 * Date           Author            Notes
 * 2015-05-14     aubrcool@qq.com   first version
9
 * 2015-07-06     Bernard           code cleanup and remove RT_CAN_USING_LED;
A
Aubr.Cool 已提交
10
 */
11

A
Aubr.Cool 已提交
12 13 14 15
#include <rthw.h>
#include <rtthread.h>
#include <rtdevice.h>

16 17 18
#define CAN_LOCK(can)   rt_mutex_take(&(can->lock), RT_WAITING_FOREVER)
#define CAN_UNLOCK(can) rt_mutex_release(&(can->lock))

A
Aubr.Cool 已提交
19 20 21 22 23 24 25 26 27 28 29
static rt_err_t rt_can_init(struct rt_device *dev)
{
    rt_err_t result = RT_EOK;
    struct rt_can_device *can;

    RT_ASSERT(dev != RT_NULL);
    can = (struct rt_can_device *)dev;

    /* initialize rx/tx */
    can->can_rx = RT_NULL;
    can->can_tx = RT_NULL;
T
tyustli 已提交
30 31 32
#ifdef RT_CAN_USING_HDR
    can->hdr = RT_NULL;
#endif
A
Aubr.Cool 已提交
33 34 35 36

    /* apply configuration */
    if (can->ops->configure)
        result = can->ops->configure(can, &can->config);
T
tyustli 已提交
37 38
    else
        result = -RT_ENOSYS;
A
Aubr.Cool 已提交
39 40 41

    return result;
}
42

A
Aubr.Cool 已提交
43 44 45 46 47 48
/*
 * can interrupt routines
 */
rt_inline int _can_int_rx(struct rt_can_device *can, struct rt_can_msg *data, int msgs)
{
    int size;
49
    struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
50
    RT_ASSERT(can != RT_NULL);
51 52 53
    size = msgs;

    rx_fifo = (struct rt_can_rx_fifo *) can->can_rx;
A
Aubr.Cool 已提交
54 55 56 57 58 59
    RT_ASSERT(rx_fifo != RT_NULL);

    /* read from software FIFO */
    while (msgs)
    {
        rt_base_t level;
A
Aubr.Cool 已提交
60
#ifdef RT_CAN_USING_HDR
61
        rt_int8_t hdr;
A
Aubr.Cool 已提交
62
#endif /*RT_CAN_USING_HDR*/
63 64
        struct rt_can_msg_list *listmsg = RT_NULL;

A
Aubr.Cool 已提交
65 66 67
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
#ifdef RT_CAN_USING_HDR
68 69 70
        hdr = data->hdr;

        if (hdr >= 0 && can->hdr && hdr < can->config.maxhdr && !rt_list_isempty(&can->hdr[hdr].list))
A
Aubr.Cool 已提交
71
        {
72 73 74 75 76 77 78 79 80 81 82
            listmsg = rt_list_entry(can->hdr[hdr].list.next, struct rt_can_msg_list, hdrlist);
            rt_list_remove(&listmsg->list);
            rt_list_remove(&listmsg->hdrlist);
            if (can->hdr[hdr].msgs)
            {
                can->hdr[hdr].msgs--;
            }
            listmsg->owner = RT_NULL;
        }
        else if (hdr == -1)
#endif /*RT_CAN_USING_HDR*/
83
        {
84 85 86 87
            if (!rt_list_isempty(&rx_fifo->uselist))
            {
                listmsg = rt_list_entry(rx_fifo->uselist.next, struct rt_can_msg_list, list);
                rt_list_remove(&listmsg->list);
A
Aubr.Cool 已提交
88
#ifdef RT_CAN_USING_HDR
89 90 91 92 93 94
                rt_list_remove(&listmsg->hdrlist);
                if (listmsg->owner != RT_NULL && listmsg->owner->msgs)
                {
                    listmsg->owner->msgs--;
                }
                listmsg->owner = RT_NULL;
95
#endif /*RT_CAN_USING_HDR*/
96 97 98 99 100 101 102
            }
            else
            {
                /* no data, enable interrupt and break out */
                rt_hw_interrupt_enable(level);
                break;
            }
103
        }
A
Aubr.Cool 已提交
104 105 106

        /* enable interrupt */
        rt_hw_interrupt_enable(level);
107
        if (listmsg != RT_NULL)
A
Aubr.Cool 已提交
108
        {
109
            rt_memcpy(data, &listmsg->data, sizeof(struct rt_can_msg));
110

A
Aubr.Cool 已提交
111
            level = rt_hw_interrupt_disable();
112
            rt_list_insert_before(&rx_fifo->freelist, &listmsg->list);
A
Aubr.Cool 已提交
113 114 115
            rx_fifo->freenumbers++;
            RT_ASSERT(rx_fifo->freenumbers <= can->config.msgboxsz);
            rt_hw_interrupt_enable(level);
116

A
Aubr.Cool 已提交
117
            listmsg = RT_NULL;
118 119 120
        }
        else
        {
A
Aubr.Cool 已提交
121
            break;
A
Aubr.Cool 已提交
122
        }
123 124
        data ++;
        msgs -= sizeof(struct rt_can_msg);
A
Aubr.Cool 已提交
125 126 127 128 129 130 131 132 133
    }

    return (size - msgs);
}

rt_inline int _can_int_tx(struct rt_can_device *can, const struct rt_can_msg *data, int msgs)
{
    int size;
    struct rt_can_tx_fifo *tx_fifo;
134

A
Aubr.Cool 已提交
135 136 137
    RT_ASSERT(can != RT_NULL);

    size = msgs;
138
    tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
A
Aubr.Cool 已提交
139 140 141
    RT_ASSERT(tx_fifo != RT_NULL);

    while (msgs)
142
    {
A
Aubr.Cool 已提交
143 144
        rt_base_t level;
        rt_uint32_t no;
145 146 147
        rt_uint32_t result;
        struct rt_can_sndbxinx_list *tx_tosnd = RT_NULL;

148
        rt_sem_take(&(tx_fifo->sem), RT_WAITING_FOREVER);
A
Aubr.Cool 已提交
149
        level = rt_hw_interrupt_disable();
150 151 152
        tx_tosnd = rt_list_entry(tx_fifo->freelist.next, struct rt_can_sndbxinx_list, list);
        RT_ASSERT(tx_tosnd != RT_NULL);
        rt_list_remove(&tx_tosnd->list);
A
Aubr.Cool 已提交
153
        rt_hw_interrupt_enable(level);
154 155

        no = ((rt_uint32_t)tx_tosnd - (rt_uint32_t)tx_fifo->buffer) / sizeof(struct rt_can_sndbxinx_list);
156 157
        tx_tosnd->result = RT_CAN_SND_RESULT_WAIT;
        if (can->ops->sendmsg(can, data, no) != RT_EOK)
A
Aubr.Cool 已提交
158
        {
159
            /* send failed. */
A
Aubr.Cool 已提交
160
            level = rt_hw_interrupt_disable();
161
            rt_list_insert_after(&tx_fifo->freelist, &tx_tosnd->list);
A
Aubr.Cool 已提交
162
            rt_hw_interrupt_enable(level);
163
            rt_sem_release(&(tx_fifo->sem));
A
Aubr.Cool 已提交
164 165
            continue;
        }
166

A
Aubr.Cool 已提交
167 168
        can->status.sndchange = 1;
        rt_completion_wait(&(tx_tosnd->completion), RT_WAITING_FOREVER);
169

A
Aubr.Cool 已提交
170
        level = rt_hw_interrupt_disable();
171 172 173 174
        result = tx_tosnd->result;
        if (!rt_list_isempty(&tx_tosnd->list))
        {
            rt_list_remove(&tx_tosnd->list);
A
Aubr.Cool 已提交
175
        }
176
        rt_list_insert_before(&tx_fifo->freelist, &tx_tosnd->list);
A
Aubr.Cool 已提交
177
        rt_hw_interrupt_enable(level);
178
        rt_sem_release(&(tx_fifo->sem));
179

180
        if (result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
181 182 183 184
        {
            level = rt_hw_interrupt_disable();
            can->status.sndpkg++;
            rt_hw_interrupt_enable(level);
185

186 187 188
            data ++;
            msgs -= sizeof(struct rt_can_msg);
            if (!msgs) break;
A
Aubr.Cool 已提交
189 190 191 192 193 194 195 196 197 198 199 200
        }
        else
        {
            level = rt_hw_interrupt_disable();
            can->status.dropedsndpkg++;
            rt_hw_interrupt_enable(level);
            break;
        }
    }

    return (size - msgs);
}
201

A
Aubr.Cool 已提交
202 203 204
rt_inline int _can_int_tx_priv(struct rt_can_device *can, const struct rt_can_msg *data, int msgs)
{
    int size;
205 206
    rt_base_t level;
    rt_uint32_t no, result;
A
Aubr.Cool 已提交
207
    struct rt_can_tx_fifo *tx_fifo;
208

A
Aubr.Cool 已提交
209 210 211
    RT_ASSERT(can != RT_NULL);

    size = msgs;
212
    tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
A
Aubr.Cool 已提交
213 214 215
    RT_ASSERT(tx_fifo != RT_NULL);

    while (msgs)
216
    {
A
Aubr.Cool 已提交
217
        no = data->priv;
218 219 220
        if (no >= can->config.sndboxnumber)
        {
            break;
A
Aubr.Cool 已提交
221
        }
222

A
Aubr.Cool 已提交
223
        level = rt_hw_interrupt_disable();
224
        if ((tx_fifo->buffer[no].result != RT_CAN_SND_RESULT_OK))
225 226
        {
            rt_hw_interrupt_enable(level);
227

228 229
            rt_completion_wait(&(tx_fifo->buffer[no].completion), RT_WAITING_FOREVER);
            continue;
A
Aubr.Cool 已提交
230
        }
231
        tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_WAIT;
A
Aubr.Cool 已提交
232
        rt_hw_interrupt_enable(level);
233

234
        if (can->ops->sendmsg(can, data, no) != RT_EOK)
A
Aubr.Cool 已提交
235 236 237 238 239
        {
            continue;
        }
        can->status.sndchange = 1;
        rt_completion_wait(&(tx_fifo->buffer[no].completion), RT_WAITING_FOREVER);
240

A
Aubr.Cool 已提交
241
        result = tx_fifo->buffer[no].result;
242
        if (result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
243 244 245 246
        {
            level = rt_hw_interrupt_disable();
            can->status.sndpkg++;
            rt_hw_interrupt_enable(level);
247 248 249
            data ++;
            msgs -= sizeof(struct rt_can_msg);
            if (!msgs) break;
A
Aubr.Cool 已提交
250 251 252 253 254 255 256 257 258 259 260 261
        }
        else
        {
            level = rt_hw_interrupt_disable();
            can->status.dropedsndpkg++;
            rt_hw_interrupt_enable(level);
            break;
        }
    }

    return (size - msgs);
}
262

A
Aubr.Cool 已提交
263 264 265
static rt_err_t rt_can_open(struct rt_device *dev, rt_uint16_t oflag)
{
    struct rt_can_device *can;
266
    char tmpname[16];
A
Aubr.Cool 已提交
267 268 269
    RT_ASSERT(dev != RT_NULL);
    can = (struct rt_can_device *)dev;

270 271
    CAN_LOCK(can);

A
Aubr.Cool 已提交
272 273 274 275 276 277
    /* get open flags */
    dev->open_flag = oflag & 0xff;
    if (can->can_rx == RT_NULL)
    {
        if (oflag & RT_DEVICE_FLAG_INT_RX)
        {
278
            int i = 0;
279
            struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
280

281 282
            rx_fifo = (struct rt_can_rx_fifo *) rt_malloc(sizeof(struct rt_can_rx_fifo) +
                      can->config.msgboxsz * sizeof(struct rt_can_msg_list));
A
Aubr.Cool 已提交
283
            RT_ASSERT(rx_fifo != RT_NULL);
284

285
            rx_fifo->buffer = (struct rt_can_msg_list *)(rx_fifo + 1);
A
Aubr.Cool 已提交
286 287 288
            rt_memset(rx_fifo->buffer, 0, can->config.msgboxsz * sizeof(struct rt_can_msg_list));
            rt_list_init(&rx_fifo->freelist);
            rt_list_init(&rx_fifo->uselist);
289 290
            rx_fifo->freenumbers = can->config.msgboxsz;
            for (i = 0;  i < can->config.msgboxsz; i++)
A
Aubr.Cool 已提交
291
            {
292
                rt_list_insert_before(&rx_fifo->freelist, &rx_fifo->buffer[i].list);
A
Aubr.Cool 已提交
293
#ifdef RT_CAN_USING_HDR
294 295
                rt_list_init(&rx_fifo->buffer[i].hdrlist);
                rx_fifo->buffer[i].owner = RT_NULL;
A
Aubr.Cool 已提交
296 297 298
#endif
            }
            can->can_rx = rx_fifo;
299

A
Aubr.Cool 已提交
300
            dev->open_flag |= RT_DEVICE_FLAG_INT_RX;
T
tyustli 已提交
301
            /* open can rx interrupt */
A
Aubr.Cool 已提交
302 303
            can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_FLAG_INT_RX);
        }
304 305
    }

A
Aubr.Cool 已提交
306 307 308 309
    if (can->can_tx == RT_NULL)
    {
        if (oflag & RT_DEVICE_FLAG_INT_TX)
        {
310
            int i = 0;
A
Aubr.Cool 已提交
311 312
            struct rt_can_tx_fifo *tx_fifo;

313 314
            tx_fifo = (struct rt_can_tx_fifo *) rt_malloc(sizeof(struct rt_can_tx_fifo) +
                      can->config.sndboxnumber * sizeof(struct rt_can_sndbxinx_list));
A
Aubr.Cool 已提交
315
            RT_ASSERT(tx_fifo != RT_NULL);
316

317 318
            tx_fifo->buffer = (struct rt_can_sndbxinx_list *)(tx_fifo + 1);
            rt_memset(tx_fifo->buffer, 0,
T
tyustli 已提交
319
                    can->config.sndboxnumber * sizeof(struct rt_can_sndbxinx_list));
A
Aubr.Cool 已提交
320
            rt_list_init(&tx_fifo->freelist);
321
            for (i = 0;  i < can->config.sndboxnumber; i++)
A
Aubr.Cool 已提交
322
            {
323 324
                rt_list_insert_before(&tx_fifo->freelist, &tx_fifo->buffer[i].list);
                rt_completion_init(&(tx_fifo->buffer[i].completion));
325
                tx_fifo->buffer[i].result = RT_CAN_SND_RESULT_OK;
A
Aubr.Cool 已提交
326
            }
327 328 329

            rt_sprintf(tmpname, "%stl", dev->parent.name);
            rt_sem_init(&(tx_fifo->sem), tmpname, can->config.sndboxnumber, RT_IPC_FLAG_FIFO);
A
Aubr.Cool 已提交
330
            can->can_tx = tx_fifo;
331

A
Aubr.Cool 已提交
332
            dev->open_flag |= RT_DEVICE_FLAG_INT_TX;
T
tyustli 已提交
333
            /* open can tx interrupt */
A
Aubr.Cool 已提交
334 335
            can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_FLAG_INT_TX);
        }
336 337
    }

A
Aubr.Cool 已提交
338
    can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_CAN_INT_ERR);
339

A
Aubr.Cool 已提交
340
#ifdef RT_CAN_USING_HDR
341 342
    if (can->hdr == RT_NULL)
    {
A
Aubr.Cool 已提交
343
        int i = 0;
344 345 346 347 348 349
        struct rt_can_hdr *phdr;

        phdr = (struct rt_can_hdr *) rt_malloc(can->config.maxhdr * sizeof(struct rt_can_hdr));
        RT_ASSERT(phdr != RT_NULL);
        rt_memset(phdr, 0, can->config.maxhdr * sizeof(struct rt_can_hdr));
        for (i = 0;  i < can->config.maxhdr; i++)
A
Aubr.Cool 已提交
350
        {
351
            rt_list_init(&phdr[i].list);
A
Aubr.Cool 已提交
352
        }
353

A
Aubr.Cool 已提交
354 355 356
        can->hdr = phdr;
    }
#endif
357 358 359

    if (!can->timerinitflag)
    {
A
Aubr.Cool 已提交
360
        can->timerinitflag = 1;
361

A
Aubr.Cool 已提交
362
        rt_timer_start(&can->timer);
363
    }
364 365

    CAN_UNLOCK(can);
366

A
Aubr.Cool 已提交
367 368 369 370 371 372 373 374 375 376
    return RT_EOK;
}

static rt_err_t rt_can_close(struct rt_device *dev)
{
    struct rt_can_device *can;

    RT_ASSERT(dev != RT_NULL);
    can = (struct rt_can_device *)dev;

377 378
    CAN_LOCK(can);

A
Aubr.Cool 已提交
379
    /* this device has more reference count */
380 381 382 383 384
    if (dev->ref_count > 1)
    {
        CAN_UNLOCK(can);
        return RT_EOK;
    }
385 386 387

    if (can->timerinitflag)
    {
A
Aubr.Cool 已提交
388
        can->timerinitflag = 0;
389

A
Aubr.Cool 已提交
390 391
        rt_timer_stop(&can->timer);
    }
392

A
Aubr.Cool 已提交
393 394
    can->status_indicate.ind = RT_NULL;
    can->status_indicate.args = RT_NULL;
395

A
Aubr.Cool 已提交
396
#ifdef RT_CAN_USING_HDR
397 398
    if (can->hdr != RT_NULL)
    {
399
        rt_free(can->hdr);
A
Aubr.Cool 已提交
400 401 402
        can->hdr = RT_NULL;
    }
#endif
403

A
Aubr.Cool 已提交
404 405
    if (dev->open_flag & RT_DEVICE_FLAG_INT_RX)
    {
406
        struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
407

408
        rx_fifo = (struct rt_can_rx_fifo *)can->can_rx;
A
Aubr.Cool 已提交
409 410 411 412
        RT_ASSERT(rx_fifo != RT_NULL);

        rt_free(rx_fifo);
        dev->open_flag &= ~RT_DEVICE_FLAG_INT_RX;
N
Noe Xu 已提交
413
        can->can_rx = RT_NULL;
T
tyustli 已提交
414
        /* clear can rx interrupt */
415
        can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_RX);
A
Aubr.Cool 已提交
416
    }
417

A
Aubr.Cool 已提交
418 419
    if (dev->open_flag & RT_DEVICE_FLAG_INT_TX)
    {
420
        struct rt_can_tx_fifo *tx_fifo;
A
Aubr.Cool 已提交
421

wuyangyong's avatar
wuyangyong 已提交
422
        tx_fifo = (struct rt_can_tx_fifo *)can->can_tx;
A
Aubr.Cool 已提交
423 424
        RT_ASSERT(tx_fifo != RT_NULL);

425
        rt_sem_detach(&(tx_fifo->sem));
A
Aubr.Cool 已提交
426 427
        rt_free(tx_fifo);
        dev->open_flag &= ~RT_DEVICE_FLAG_INT_TX;
N
Noe Xu 已提交
428
        can->can_tx = RT_NULL;
T
tyustli 已提交
429
        /* clear can tx interrupt */
430
        can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_TX);
A
Aubr.Cool 已提交
431
    }
432

A
Aubr.Cool 已提交
433
    can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_CAN_INT_ERR);
434 435 436

    CAN_UNLOCK(can);

A
Aubr.Cool 已提交
437 438 439 440
    return RT_EOK;
}

static rt_size_t rt_can_read(struct rt_device *dev,
441 442 443
                             rt_off_t          pos,
                             void             *buffer,
                             rt_size_t         size)
A
Aubr.Cool 已提交
444 445 446 447 448 449 450 451
{
    struct rt_can_device *can;

    RT_ASSERT(dev != RT_NULL);
    if (size == 0) return 0;

    can = (struct rt_can_device *)dev;

452
    if ((dev->open_flag & RT_DEVICE_FLAG_INT_RX) && (dev->ref_count > 0))
A
Aubr.Cool 已提交
453
    {
454
        return _can_int_rx(can, buffer, size);
A
Aubr.Cool 已提交
455
    }
456

A
Aubr.Cool 已提交
457 458 459 460
    return 0;
}

static rt_size_t rt_can_write(struct rt_device *dev,
461 462 463
                              rt_off_t          pos,
                              const void       *buffer,
                              rt_size_t         size)
A
Aubr.Cool 已提交
464 465 466 467 468 469 470 471
{
    struct rt_can_device *can;

    RT_ASSERT(dev != RT_NULL);
    if (size == 0) return 0;

    can = (struct rt_can_device *)dev;

472
    if ((dev->open_flag & RT_DEVICE_FLAG_INT_TX) && (dev->ref_count > 0))
A
Aubr.Cool 已提交
473
    {
474 475 476 477 478 479 480 481
        if (can->config.privmode)
        {
            return _can_int_tx_priv(can, buffer, size);
        }
        else
        {
            return _can_int_tx(can, buffer, size);
        }
A
Aubr.Cool 已提交
482 483 484 485 486
    }
    return 0;
}

static rt_err_t rt_can_control(struct rt_device *dev,
487
                               int              cmd,
488
                               void             *args)
A
Aubr.Cool 已提交
489 490 491 492
{
    struct rt_can_device *can;
    rt_err_t res;

T
tyustli 已提交
493
    res = RT_EOK;
A
Aubr.Cool 已提交
494 495 496 497 498
    RT_ASSERT(dev != RT_NULL);
    can = (struct rt_can_device *)dev;

    switch (cmd)
    {
499 500 501 502
    case RT_DEVICE_CTRL_SUSPEND:
        /* suspend device */
        dev->flag |= RT_DEVICE_FLAG_SUSPENDED;
        break;
A
Aubr.Cool 已提交
503

504 505 506 507
    case RT_DEVICE_CTRL_RESUME:
        /* resume device */
        dev->flag &= ~RT_DEVICE_FLAG_SUSPENDED;
        break;
A
Aubr.Cool 已提交
508

509 510
    case RT_DEVICE_CTRL_CONFIG:
        /* configure device */
T
tyustli 已提交
511
        res = can->ops->configure(can, (struct can_configure *)args);
512
        break;
T
tyustli 已提交
513

514 515 516 517 518 519 520 521
    case RT_CAN_CMD_SET_PRIV:
        /* configure device */
        if ((rt_uint32_t)args != can->config.privmode)
        {
            int i;
            rt_base_t level;
            struct rt_can_tx_fifo *tx_fifo;

522 523
            res = can->ops->control(can, cmd, args);
            if (res != RT_EOK) return res;
524 525 526 527 528
            tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
            if (can->config.privmode)
            {
                for (i = 0;  i < can->config.sndboxnumber; i++)
                {
529 530 531
                    level = rt_hw_interrupt_disable();
                    if(rt_list_isempty(&tx_fifo->buffer[i].list))
                    {
T
tyustli 已提交
532
                        rt_sem_release(&(tx_fifo->sem));
533 534 535
                    }
                    else
                    {
T
tyustli 已提交
536
                        rt_list_remove(&tx_fifo->buffer[i].list);
537
                    }
538
                    rt_hw_interrupt_enable(level);
539
                }
540

541 542 543 544 545 546
            }
            else
            {
                for (i = 0;  i < can->config.sndboxnumber; i++)
                {
                    level = rt_hw_interrupt_disable();
547
                    if (tx_fifo->buffer[i].result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
548
                    {
549
                        rt_list_insert_before(&tx_fifo->freelist, &tx_fifo->buffer[i].list);
A
Aubr.Cool 已提交
550
                    }
551 552
                    rt_hw_interrupt_enable(level);
                }
A
Aubr.Cool 已提交
553
            }
554 555
        }
        break;
556

557 558 559 560
    case RT_CAN_CMD_SET_STATUS_IND:
        can->status_indicate.ind = ((rt_can_status_ind_type_t)args)->ind;
        can->status_indicate.args = ((rt_can_status_ind_type_t)args)->args;
        break;
561

A
Aubr.Cool 已提交
562
#ifdef RT_CAN_USING_HDR
563 564 565 566 567 568 569
    case RT_CAN_CMD_SET_FILTER:
        res = can->ops->control(can, cmd, args);
        if (res != RT_EOK || can->hdr == RT_NULL)
        {
            return res;
        }

T
tyustli 已提交
570 571 572 573
        struct rt_can_filter_config *pfilter;
        struct rt_can_filter_item *pitem;
        rt_uint32_t count;
        rt_base_t level;
574

T
tyustli 已提交
575 576 577 578 579 580 581
        pfilter = (struct rt_can_filter_config *)args;
        RT_ASSERT(pfilter);
        count = pfilter->count;
        pitem = pfilter->items;
        if (pfilter->actived)
        {
            while (count)
582
            {
T
tyustli 已提交
583
                if (pitem->hdr >= can->config.maxhdr || pitem->hdr < 0)
584 585 586
                {
                    count--;
                    pitem++;
T
tyustli 已提交
587
                    continue;
588
                }
T
tyustli 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604

                level = rt_hw_interrupt_disable();
                if (!can->hdr[pitem->hdr].connected)
                {
                    rt_hw_interrupt_enable(level);
                    rt_memcpy(&can->hdr[pitem->hdr].filter, pitem,
                              sizeof(struct rt_can_filter_item));
                    level = rt_hw_interrupt_disable();
                    can->hdr[pitem->hdr].connected = 1;
                    can->hdr[pitem->hdr].msgs = 0;
                    rt_list_init(&can->hdr[pitem->hdr].list);
                }
                rt_hw_interrupt_enable(level);

                count--;
                pitem++;
A
Aubr.Cool 已提交
605
            }
T
tyustli 已提交
606 607 608 609
        }
        else
        {
            while (count)
A
Aubr.Cool 已提交
610
            {
T
tyustli 已提交
611
                if (pitem->hdr >= can->config.maxhdr || pitem->hdr < 0)
612
                {
T
tyustli 已提交
613 614 615 616 617
                    count--;
                    pitem++;
                    continue;
                }
                level = rt_hw_interrupt_disable();
618

T
tyustli 已提交
619 620 621 622 623
                if (can->hdr[pitem->hdr].connected)
                {
                    can->hdr[pitem->hdr].connected = 0;
                    can->hdr[pitem->hdr].msgs = 0;
                    if (!rt_list_isempty(&can->hdr[pitem->hdr].list))
624
                    {
T
tyustli 已提交
625
                        rt_list_remove(can->hdr[pitem->hdr].list.next);
626
                    }
T
tyustli 已提交
627 628 629 630 631 632 633
                    rt_hw_interrupt_enable(level);
                    rt_memset(&can->hdr[pitem->hdr].filter, 0,
                              sizeof(struct rt_can_filter_item));
                }
                else
                {
                    rt_hw_interrupt_enable(level);
634
                }
T
tyustli 已提交
635 636
                count--;
                pitem++;
A
Aubr.Cool 已提交
637
            }
638 639
        }
        break;
A
Aubr.Cool 已提交
640
#endif /*RT_CAN_USING_HDR*/
A
Aubr.Cool 已提交
641 642 643 644 645
#ifdef RT_CAN_USING_BUS_HOOK
    case RT_CAN_CMD_SET_BUS_HOOK:
        can->bus_hook = (rt_can_bus_hook) args;
        break;
#endif /*RT_CAN_USING_BUS_HOOK*/
646 647 648 649
    default :
        /* control device */
        if (can->ops->control != RT_NULL)
        {
T
tyustli 已提交
650 651 652 653 654
            res = can->ops->control(can, cmd, args);
        }
        else
        {
            res = -RT_ENOSYS;
655 656
        }
        break;
A
Aubr.Cool 已提交
657 658
    }

T
tyustli 已提交
659
    return res;
A
Aubr.Cool 已提交
660
}
661

A
Aubr.Cool 已提交
662 663 664
/*
 * can timer
 */
665
static void cantimeout(void *arg)
A
Aubr.Cool 已提交
666
{
T
tyustli 已提交
667
    rt_can_t can;
668

T
tyustli 已提交
669 670
    can = (rt_can_t)arg;
    RT_ASSERT(can);
671
    rt_device_control((rt_device_t)can, RT_CAN_CMD_GET_STATUS, (void *)&can->status);
672

673 674 675 676
    if (can->status_indicate.ind != RT_NULL)
    {
        can->status_indicate.ind(can, can->status_indicate.args);
    }
A
Aubr.Cool 已提交
677 678 679 680 681 682 683 684 685 686
#ifdef RT_CAN_USING_BUS_HOOK
    if(can->bus_hook)
    {
        can->bus_hook(can);
    }
#endif /*RT_CAN_USING_BUS_HOOK*/
    if (can->timerinitflag == 1)
    {
        can->timerinitflag = 0xFF;
    }
A
Aubr.Cool 已提交
687 688
}

B
Bernard Xiong 已提交
689 690 691 692 693 694 695 696 697 698 699 700
#ifdef RT_USING_DEVICE_OPS
const static struct rt_device_ops can_device_ops =
{
    rt_can_init,
    rt_can_open,
    rt_can_close,
    rt_can_read,
    rt_can_write,
    rt_can_control
};
#endif

A
Aubr.Cool 已提交
701 702 703
/*
 * can register
 */
T
tyustli 已提交
704
rt_err_t rt_hw_can_register(struct rt_can_device    *can,
705 706 707
                            const char              *name,
                            const struct rt_can_ops *ops,
                            void                    *data)
A
Aubr.Cool 已提交
708 709 710 711 712 713 714 715 716 717 718 719 720 721
{
    struct rt_device *device;
    RT_ASSERT(can != RT_NULL);

    device = &(can->parent);

    device->type        = RT_Device_Class_CAN;
    device->rx_indicate = RT_NULL;
    device->tx_complete = RT_NULL;
#ifdef RT_CAN_USING_HDR
    can->hdr            = RT_NULL;
#endif
    can->can_rx         = RT_NULL;
    can->can_tx         = RT_NULL;
722
    rt_mutex_init(&(can->lock), "can", RT_IPC_FLAG_PRIO);
A
Aubr.Cool 已提交
723 724 725
#ifdef RT_CAN_USING_BUS_HOOK
    can->bus_hook       = RT_NULL;
#endif /*RT_CAN_USING_BUS_HOOK*/
B
Bernard Xiong 已提交
726 727 728 729

#ifdef RT_USING_DEVICE_OPS
    device->ops         = &can_device_ops;
#else
A
Aubr.Cool 已提交
730 731 732 733 734 735
    device->init        = rt_can_init;
    device->open        = rt_can_open;
    device->close       = rt_can_close;
    device->read        = rt_can_read;
    device->write       = rt_can_write;
    device->control     = rt_can_control;
B
Bernard Xiong 已提交
736
#endif
A
Aubr.Cool 已提交
737 738 739 740
    can->ops            = ops;

    can->status_indicate.ind  = RT_NULL;
    can->status_indicate.args = RT_NULL;
741
    rt_memset(&can->status, 0, sizeof(can->status));
A
Aubr.Cool 已提交
742 743

    device->user_data   = data;
744 745

    can->timerinitflag  = 0;
746 747 748 749 750 751
    rt_timer_init(&can->timer,
                  name,
                  cantimeout,
                  (void *)can,
                  can->config.ticks,
                  RT_TIMER_FLAG_PERIODIC);
A
Aubr.Cool 已提交
752 753 754 755 756 757 758 759 760
    /* register a character device */
    return rt_device_register(device, name, RT_DEVICE_FLAG_RDWR);
}

/* ISR for can interrupt */
void rt_hw_can_isr(struct rt_can_device *can, int event)
{
    switch (event & 0xff)
    {
761 762 763 764 765 766 767 768 769 770 771 772 773
    case RT_CAN_EVENT_RXOF_IND:
    {
        rt_base_t level;
        level = rt_hw_interrupt_disable();
        can->status.dropedrcvpkg++;
        rt_hw_interrupt_enable(level);
    }
    case RT_CAN_EVENT_RX_IND:
    {
        struct rt_can_msg tmpmsg;
        struct rt_can_rx_fifo *rx_fifo;
        struct rt_can_msg_list *listmsg = RT_NULL;
#ifdef RT_CAN_USING_HDR
774
        rt_int8_t hdr;
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
#endif
        int ch = -1;
        rt_base_t level;
        rt_uint32_t no;

        rx_fifo = (struct rt_can_rx_fifo *)can->can_rx;
        RT_ASSERT(rx_fifo != RT_NULL);
        /* interrupt mode receive */
        RT_ASSERT(can->parent.open_flag & RT_DEVICE_FLAG_INT_RX);

        no = event >> 8;
        ch = can->ops->recvmsg(can, &tmpmsg, no);
        if (ch == -1) break;

        /* disable interrupt */
        level = rt_hw_interrupt_disable();
        can->status.rcvpkg++;
        can->status.rcvchange = 1;
        if (!rt_list_isempty(&rx_fifo->freelist))
A
Aubr.Cool 已提交
794
        {
795 796 797 798 799 800 801 802 803 804 805 806
            listmsg = rt_list_entry(rx_fifo->freelist.next, struct rt_can_msg_list, list);
            rt_list_remove(&listmsg->list);
#ifdef RT_CAN_USING_HDR
            rt_list_remove(&listmsg->hdrlist);
            if (listmsg->owner != RT_NULL && listmsg->owner->msgs)
            {
                listmsg->owner->msgs--;
            }
            listmsg->owner = RT_NULL;
#endif /*RT_CAN_USING_HDR*/
            RT_ASSERT(rx_fifo->freenumbers > 0);
            rx_fifo->freenumbers--;
A
Aubr.Cool 已提交
807
        }
808
        else if (!rt_list_isempty(&rx_fifo->uselist))
A
Aubr.Cool 已提交
809
        {
810 811 812
            listmsg = rt_list_entry(rx_fifo->uselist.next, struct rt_can_msg_list, list);
            can->status.dropedrcvpkg++;
            rt_list_remove(&listmsg->list);
A
Aubr.Cool 已提交
813
#ifdef RT_CAN_USING_HDR
814 815 816 817 818 819
            rt_list_remove(&listmsg->hdrlist);
            if (listmsg->owner != RT_NULL && listmsg->owner->msgs)
            {
                listmsg->owner->msgs--;
            }
            listmsg->owner = RT_NULL;
A
Aubr.Cool 已提交
820
#endif
821 822 823 824 825 826 827
        }
        /* enable interrupt */
        rt_hw_interrupt_enable(level);

        if (listmsg != RT_NULL)
        {
            rt_memcpy(&listmsg->data, &tmpmsg, sizeof(struct rt_can_msg));
A
Aubr.Cool 已提交
828
            level = rt_hw_interrupt_disable();
829
            rt_list_insert_before(&rx_fifo->uselist, &listmsg->list);
A
Aubr.Cool 已提交
830
#ifdef RT_CAN_USING_HDR
831 832 833 834 835 836 837 838 839 840 841 842
            hdr = tmpmsg.hdr;
            if (can->hdr != RT_NULL)
            {
                RT_ASSERT(hdr < can->config.maxhdr && hdr >= 0);
                if (can->hdr[hdr].connected)
                {
                    rt_list_insert_before(&can->hdr[hdr].list, &listmsg->hdrlist);
                    listmsg->owner = &can->hdr[hdr];
                    can->hdr[hdr].msgs++;
                }

            }
A
Aubr.Cool 已提交
843 844
#endif
            rt_hw_interrupt_enable(level);
845 846 847
        }

        /* invoke callback */
A
Aubr.Cool 已提交
848
#ifdef RT_CAN_USING_HDR
849 850 851 852 853 854 855 856
        if (can->hdr != RT_NULL && can->hdr[hdr].connected && can->hdr[hdr].filter.ind)
        {
            rt_size_t rx_length;
            RT_ASSERT(hdr < can->config.maxhdr && hdr >= 0);

            level = rt_hw_interrupt_disable();
            rx_length = can->hdr[hdr].msgs * sizeof(struct rt_can_msg);
            rt_hw_interrupt_enable(level);
857 858 859 860
            if (rx_length)
            {
                can->hdr[hdr].filter.ind(&can->parent, can->hdr[hdr].filter.args, hdr, rx_length);
            }
861 862
        }
        else
A
Aubr.Cool 已提交
863
#endif
864
        {
865 866
            if (can->parent.rx_indicate != RT_NULL)
            {
A
Aubr.Cool 已提交
867
                rt_size_t rx_length;
868

A
Aubr.Cool 已提交
869
                level = rt_hw_interrupt_disable();
870
                /* get rx length */
871
                rx_length = rt_list_len(&rx_fifo->uselist)* sizeof(struct rt_can_msg);
A
Aubr.Cool 已提交
872 873
                rt_hw_interrupt_enable(level);

874 875 876 877
                if (rx_length)
                {
                    can->parent.rx_indicate(&can->parent, rx_length);
                }
A
Aubr.Cool 已提交
878
            }
879
        }
880 881 882 883 884 885 886 887 888 889 890
        break;
    }

    case RT_CAN_EVENT_TX_DONE:
    case RT_CAN_EVENT_TX_FAIL:
    {
        struct rt_can_tx_fifo *tx_fifo;
        rt_uint32_t no;
        no = event >> 8;
        tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
        RT_ASSERT(tx_fifo != RT_NULL);
891

892 893
        if ((event & 0xff) == RT_CAN_EVENT_TX_DONE)
        {
894
            tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_OK;
A
Aubr.Cool 已提交
895
        }
896
        else
A
Aubr.Cool 已提交
897
        {
898
            tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_ERR;
A
Aubr.Cool 已提交
899
        }
900 901 902
        rt_completion_done(&(tx_fifo->buffer[no].completion));
        break;
    }
A
Aubr.Cool 已提交
903 904
    }
}
905

A
Aubr.Cool 已提交
906 907
#ifdef RT_USING_FINSH
#include <finsh.h>
908
int cmd_canstat(int argc, void **argv)
A
Aubr.Cool 已提交
909
{
910 911 912 913 914 915
    static const char *ErrCode[] =
    {
        "No Error!",
        "Warning !",
        "Passive !",
        "Bus Off !"
A
Aubr.Cool 已提交
916
    };
917 918 919 920

    if (argc >= 2)
    {
        struct rt_can_status status;
A
Aubr.Cool 已提交
921
        rt_device_t candev = rt_device_find(argv[1]);
922 923 924
        if (!candev)
        {
            rt_kprintf(" Can't find can device %s\n", argv[1]);
A
Aubr.Cool 已提交
925 926
            return -1;
        }
927 928 929
        rt_kprintf(" Finded can device: %s...", argv[1]);

        rt_device_control(candev, RT_CAN_CMD_GET_STATUS, &status);
A
Aubr.Cool 已提交
930
        rt_kprintf("\n Receive...error..count: %010ld. Send.....error....count: %010ld.",
931
                   status.rcverrcnt, status.snderrcnt);
A
Aubr.Cool 已提交
932
        rt_kprintf("\n Bit..pad..error..count: %010ld. Format...error....count: %010ld",
933
                   status.bitpaderrcnt, status.formaterrcnt);
A
Aubr.Cool 已提交
934
        rt_kprintf("\n Ack.......error..count: %010ld. Bit......error....count: %010ld.",
935
                   status.ackerrcnt, status.biterrcnt);
A
Aubr.Cool 已提交
936
        rt_kprintf("\n CRC.......error..count: %010ld. Error.code.[%010ld]: ",
937 938 939
                   status.crcerrcnt, status.errcode);
        switch (status.errcode)
        {
A
Aubr.Cool 已提交
940
        case 0:
941 942
            rt_kprintf("%s.", ErrCode[0]);
            break;
A
Aubr.Cool 已提交
943
        case 1:
944 945
            rt_kprintf("%s.", ErrCode[1]);
            break;
A
Aubr.Cool 已提交
946 947
        case 2:
        case 3:
948 949
            rt_kprintf("%s.", ErrCode[2]);
            break;
A
Aubr.Cool 已提交
950 951 952 953
        case 4:
        case 5:
        case 6:
        case 7:
954 955
            rt_kprintf("%s.", ErrCode[3]);
            break;
A
Aubr.Cool 已提交
956 957
        }
        rt_kprintf("\n Total.receive.packages: %010ld. Droped.receive.packages: %010ld.",
958
                   status.rcvpkg, status.dropedrcvpkg);
A
Aubr.Cool 已提交
959
        rt_kprintf("\n Total..send...packages: %010ld. Droped...send..packages: %010ld.\n",
960 961 962 963 964 965
                   status.sndpkg + status.dropedsndpkg, status.dropedsndpkg);
    }
    else
    {
        rt_kprintf(" Invalid Call %s\n", argv[0]);
        rt_kprintf(" Please using %s cannamex .Here canname is driver name and x is candrive number.\n", argv[0]);
A
Aubr.Cool 已提交
966 967 968
    }
    return 0;
}
969
MSH_CMD_EXPORT_ALIAS(cmd_canstat, canstat, stat can device status);
A
Aubr.Cool 已提交
970
#endif