can.c 27.6 KB
Newer Older
A
Aubr.Cool 已提交
1 2 3 4 5
/*
 * File      : can.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2015, RT-Thread Development Team
 *
6 7 8 9 10 11 12 13 14 15 16 17 18
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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 for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
A
Aubr.Cool 已提交
19 20
 *
 * Change Logs:
21 22
 * Date           Author            Notes
 * 2015-05-14     aubrcool@qq.com   first version
23
 * 2015-07-06     Bernard           code cleanup and remove RT_CAN_USING_LED;
A
Aubr.Cool 已提交
24
 */
25

A
Aubr.Cool 已提交
26 27 28 29
#include <rthw.h>
#include <rtthread.h>
#include <rtdevice.h>

30 31 32
#define CAN_LOCK(can)   rt_mutex_take(&(can->lock), RT_WAITING_FOREVER)
#define CAN_UNLOCK(can) rt_mutex_release(&(can->lock))

A
Aubr.Cool 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
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;

    /* apply configuration */
    if (can->ops->configure)
        result = can->ops->configure(can, &can->config);

    return result;
}
51

A
Aubr.Cool 已提交
52 53 54 55 56 57
/*
 * can interrupt routines
 */
rt_inline int _can_int_rx(struct rt_can_device *can, struct rt_can_msg *data, int msgs)
{
    int size;
58
    struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
59
    RT_ASSERT(can != RT_NULL);
60 61 62
    size = msgs;

    rx_fifo = (struct rt_can_rx_fifo *) can->can_rx;
A
Aubr.Cool 已提交
63 64 65 66 67 68
    RT_ASSERT(rx_fifo != RT_NULL);

    /* read from software FIFO */
    while (msgs)
    {
        rt_base_t level;
A
Aubr.Cool 已提交
69 70 71
#ifdef RT_CAN_USING_HDR
        rt_int32_t hdr;
#endif /*RT_CAN_USING_HDR*/
72 73
        struct rt_can_msg_list *listmsg = RT_NULL;

A
Aubr.Cool 已提交
74 75 76
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
#ifdef RT_CAN_USING_HDR
77 78 79
        hdr = data->hdr;

        if (hdr >= 0 && can->hdr && hdr < can->config.maxhdr && !rt_list_isempty(&can->hdr[hdr].list))
A
Aubr.Cool 已提交
80
        {
81 82 83 84 85 86 87 88 89 90 91
            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*/
92
        {
93 94 95 96
            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 已提交
97
#ifdef RT_CAN_USING_HDR
98 99 100 101 102 103
                rt_list_remove(&listmsg->hdrlist);
                if (listmsg->owner != RT_NULL && listmsg->owner->msgs)
                {
                    listmsg->owner->msgs--;
                }
                listmsg->owner = RT_NULL;
104
#endif /*RT_CAN_USING_HDR*/
105 106 107 108 109 110 111
            }
            else
            {
                /* no data, enable interrupt and break out */
                rt_hw_interrupt_enable(level);
                break;
            }
112
        }
A
Aubr.Cool 已提交
113 114 115

        /* enable interrupt */
        rt_hw_interrupt_enable(level);
116
        if (listmsg != RT_NULL)
A
Aubr.Cool 已提交
117
        {
118
            rt_memcpy(data, &listmsg->data, sizeof(struct rt_can_msg));
119

A
Aubr.Cool 已提交
120
            level = rt_hw_interrupt_disable();
121
            rt_list_insert_before(&rx_fifo->freelist, &listmsg->list);
A
Aubr.Cool 已提交
122 123 124
            rx_fifo->freenumbers++;
            RT_ASSERT(rx_fifo->freenumbers <= can->config.msgboxsz);
            rt_hw_interrupt_enable(level);
125

A
Aubr.Cool 已提交
126
            listmsg = RT_NULL;
127 128 129
        }
        else
        {
A
Aubr.Cool 已提交
130
            break;
A
Aubr.Cool 已提交
131
        }
132 133
        data ++;
        msgs -= sizeof(struct rt_can_msg);
A
Aubr.Cool 已提交
134 135 136 137 138 139 140 141 142
    }

    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;
143

A
Aubr.Cool 已提交
144 145 146
    RT_ASSERT(can != RT_NULL);

    size = msgs;
147
    tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
A
Aubr.Cool 已提交
148 149 150
    RT_ASSERT(tx_fifo != RT_NULL);

    while (msgs)
151
    {
A
Aubr.Cool 已提交
152 153
        rt_base_t level;
        rt_uint32_t no;
154 155 156
        rt_uint32_t result;
        struct rt_can_sndbxinx_list *tx_tosnd = RT_NULL;

A
Aubr.Cool 已提交
157
        level = rt_hw_interrupt_disable();
158
        if (!rt_list_isempty(&tx_fifo->freelist))
A
Aubr.Cool 已提交
159 160 161 162
        {
            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);
163 164 165
        }
        else
        {
A
Aubr.Cool 已提交
166
            rt_hw_interrupt_enable(level);
167

A
Aubr.Cool 已提交
168 169 170 171
            rt_completion_wait(&(tx_fifo->completion), RT_WAITING_FOREVER);
            continue;
        }
        rt_hw_interrupt_enable(level);
172 173

        no = ((rt_uint32_t)tx_tosnd - (rt_uint32_t)tx_fifo->buffer) / sizeof(struct rt_can_sndbxinx_list);
174 175
        tx_tosnd->result = RT_CAN_SND_RESULT_WAIT;
        if (can->ops->sendmsg(can, data, no) != RT_EOK)
A
Aubr.Cool 已提交
176
        {
177
            /* send failed. */
A
Aubr.Cool 已提交
178
            level = rt_hw_interrupt_disable();
179
            rt_list_insert_after(&tx_fifo->freelist, &tx_tosnd->list);
A
Aubr.Cool 已提交
180 181 182
            rt_hw_interrupt_enable(level);
            continue;
        }
183

A
Aubr.Cool 已提交
184 185
        can->status.sndchange = 1;
        rt_completion_wait(&(tx_tosnd->completion), RT_WAITING_FOREVER);
186

A
Aubr.Cool 已提交
187
        level = rt_hw_interrupt_disable();
188 189 190 191
        result = tx_tosnd->result;
        if (!rt_list_isempty(&tx_tosnd->list))
        {
            rt_list_remove(&tx_tosnd->list);
A
Aubr.Cool 已提交
192
        }
193
        rt_list_insert_before(&tx_fifo->freelist, &tx_tosnd->list);
194
        rt_completion_done(&(tx_fifo->completion));
A
Aubr.Cool 已提交
195
        rt_hw_interrupt_enable(level);
196

197
        if (result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
198 199 200 201
        {
            level = rt_hw_interrupt_disable();
            can->status.sndpkg++;
            rt_hw_interrupt_enable(level);
202

203 204 205
            data ++;
            msgs -= sizeof(struct rt_can_msg);
            if (!msgs) break;
A
Aubr.Cool 已提交
206 207 208 209 210 211 212 213 214 215 216 217
        }
        else
        {
            level = rt_hw_interrupt_disable();
            can->status.dropedsndpkg++;
            rt_hw_interrupt_enable(level);
            break;
        }
    }

    return (size - msgs);
}
218

A
Aubr.Cool 已提交
219 220 221
rt_inline int _can_int_tx_priv(struct rt_can_device *can, const struct rt_can_msg *data, int msgs)
{
    int size;
222 223
    rt_base_t level;
    rt_uint32_t no, result;
A
Aubr.Cool 已提交
224
    struct rt_can_tx_fifo *tx_fifo;
225

A
Aubr.Cool 已提交
226 227 228
    RT_ASSERT(can != RT_NULL);

    size = msgs;
229
    tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
A
Aubr.Cool 已提交
230 231 232
    RT_ASSERT(tx_fifo != RT_NULL);

    while (msgs)
233
    {
A
Aubr.Cool 已提交
234
        no = data->priv;
235 236 237
        if (no >= can->config.sndboxnumber)
        {
            break;
A
Aubr.Cool 已提交
238
        }
239

A
Aubr.Cool 已提交
240
        level = rt_hw_interrupt_disable();
241
        if ((tx_fifo->buffer[no].result != RT_CAN_SND_RESULT_OK))
242 243
        {
            rt_hw_interrupt_enable(level);
244

245 246
            rt_completion_wait(&(tx_fifo->buffer[no].completion), RT_WAITING_FOREVER);
            continue;
A
Aubr.Cool 已提交
247
        }
248
        tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_WAIT;
A
Aubr.Cool 已提交
249
        rt_hw_interrupt_enable(level);
250

251
        if (can->ops->sendmsg(can, data, no) != RT_EOK)
A
Aubr.Cool 已提交
252 253 254 255 256
        {
            continue;
        }
        can->status.sndchange = 1;
        rt_completion_wait(&(tx_fifo->buffer[no].completion), RT_WAITING_FOREVER);
257

A
Aubr.Cool 已提交
258
        result = tx_fifo->buffer[no].result;
259
        if (result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
260 261 262 263
        {
            level = rt_hw_interrupt_disable();
            can->status.sndpkg++;
            rt_hw_interrupt_enable(level);
264 265 266
            data ++;
            msgs -= sizeof(struct rt_can_msg);
            if (!msgs) break;
A
Aubr.Cool 已提交
267 268 269 270 271 272 273 274 275 276 277 278
        }
        else
        {
            level = rt_hw_interrupt_disable();
            can->status.dropedsndpkg++;
            rt_hw_interrupt_enable(level);
            break;
        }
    }

    return (size - msgs);
}
279

A
Aubr.Cool 已提交
280 281 282 283 284 285 286
static rt_err_t rt_can_open(struct rt_device *dev, rt_uint16_t oflag)
{
    struct rt_can_device *can;

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

287 288
    CAN_LOCK(can);

A
Aubr.Cool 已提交
289 290 291 292 293 294
    /* get open flags */
    dev->open_flag = oflag & 0xff;
    if (can->can_rx == RT_NULL)
    {
        if (oflag & RT_DEVICE_FLAG_INT_RX)
        {
295
            int i = 0;
296
            struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
297

298 299
            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 已提交
300
            RT_ASSERT(rx_fifo != RT_NULL);
301

302
            rx_fifo->buffer = (struct rt_can_msg_list *)(rx_fifo + 1);
A
Aubr.Cool 已提交
303 304 305
            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);
306 307
            rx_fifo->freenumbers = can->config.msgboxsz;
            for (i = 0;  i < can->config.msgboxsz; i++)
A
Aubr.Cool 已提交
308
            {
309
                rt_list_insert_before(&rx_fifo->freelist, &rx_fifo->buffer[i].list);
A
Aubr.Cool 已提交
310
#ifdef RT_CAN_USING_HDR
311 312
                rt_list_init(&rx_fifo->buffer[i].hdrlist);
                rx_fifo->buffer[i].owner = RT_NULL;
A
Aubr.Cool 已提交
313 314 315
#endif
            }
            can->can_rx = rx_fifo;
316

A
Aubr.Cool 已提交
317 318 319 320
            dev->open_flag |= RT_DEVICE_FLAG_INT_RX;
            /* configure low level device */
            can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_FLAG_INT_RX);
        }
321 322
    }

A
Aubr.Cool 已提交
323 324 325 326
    if (can->can_tx == RT_NULL)
    {
        if (oflag & RT_DEVICE_FLAG_INT_TX)
        {
327
            int i = 0;
A
Aubr.Cool 已提交
328 329
            struct rt_can_tx_fifo *tx_fifo;

330 331
            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 已提交
332
            RT_ASSERT(tx_fifo != RT_NULL);
333

334 335 336
            tx_fifo->buffer = (struct rt_can_sndbxinx_list *)(tx_fifo + 1);
            rt_memset(tx_fifo->buffer, 0,
                      can->config.sndboxnumber * sizeof(struct rt_can_sndbxinx_list));
A
Aubr.Cool 已提交
337
            rt_list_init(&tx_fifo->freelist);
338
            for (i = 0;  i < can->config.sndboxnumber; i++)
A
Aubr.Cool 已提交
339
            {
340 341
                rt_list_insert_before(&tx_fifo->freelist, &tx_fifo->buffer[i].list);
                rt_completion_init(&(tx_fifo->buffer[i].completion));
342
                tx_fifo->buffer[i].result = RT_CAN_SND_RESULT_OK;
A
Aubr.Cool 已提交
343 344 345
            }
            rt_completion_init(&(tx_fifo->completion));
            can->can_tx = tx_fifo;
346

A
Aubr.Cool 已提交
347 348 349 350
            dev->open_flag |= RT_DEVICE_FLAG_INT_TX;
            /* configure low level device */
            can->ops->control(can, RT_DEVICE_CTRL_SET_INT, (void *)RT_DEVICE_FLAG_INT_TX);
        }
351 352
    }

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

A
Aubr.Cool 已提交
355
#ifdef RT_CAN_USING_HDR
356 357
    if (can->hdr == RT_NULL)
    {
A
Aubr.Cool 已提交
358
        int i = 0;
359 360 361 362 363 364
        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 已提交
365
        {
366
            rt_list_init(&phdr[i].list);
A
Aubr.Cool 已提交
367
        }
368

A
Aubr.Cool 已提交
369 370 371
        can->hdr = phdr;
    }
#endif
372 373 374

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

A
Aubr.Cool 已提交
377
        rt_timer_start(&can->timer);
378
    }
379 380

    CAN_UNLOCK(can);
381

A
Aubr.Cool 已提交
382 383 384 385 386 387 388 389 390 391
    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;

392 393
    CAN_LOCK(can);

A
Aubr.Cool 已提交
394
    /* this device has more reference count */
395 396 397 398 399
    if (dev->ref_count > 1)
    {
        CAN_UNLOCK(can);
        return RT_EOK;
    }
400 401 402

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

A
Aubr.Cool 已提交
405 406
        rt_timer_stop(&can->timer);
    }
407

A
Aubr.Cool 已提交
408 409
    can->status_indicate.ind = RT_NULL;
    can->status_indicate.args = RT_NULL;
410

A
Aubr.Cool 已提交
411
#ifdef RT_CAN_USING_HDR
412 413
    if (can->hdr != RT_NULL)
    {
414
        rt_free(can->hdr);
A
Aubr.Cool 已提交
415 416 417
        can->hdr = RT_NULL;
    }
#endif
418

A
Aubr.Cool 已提交
419 420
    if (dev->open_flag & RT_DEVICE_FLAG_INT_RX)
    {
421
        struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
422

423
        rx_fifo = (struct rt_can_rx_fifo *)can->can_rx;
A
Aubr.Cool 已提交
424 425 426 427 428
        RT_ASSERT(rx_fifo != RT_NULL);

        rt_free(rx_fifo);
        dev->open_flag &= ~RT_DEVICE_FLAG_INT_RX;
        /* configure low level device */
429
        can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_RX);
A
Aubr.Cool 已提交
430
    }
431

A
Aubr.Cool 已提交
432 433
    if (dev->open_flag & RT_DEVICE_FLAG_INT_TX)
    {
434
        struct rt_can_tx_fifo *tx_fifo;
A
Aubr.Cool 已提交
435

wuyangyong's avatar
wuyangyong 已提交
436
        tx_fifo = (struct rt_can_tx_fifo *)can->can_tx;
A
Aubr.Cool 已提交
437 438 439 440 441
        RT_ASSERT(tx_fifo != RT_NULL);

        rt_free(tx_fifo);
        dev->open_flag &= ~RT_DEVICE_FLAG_INT_TX;
        /* configure low level device */
442
        can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_FLAG_INT_TX);
A
Aubr.Cool 已提交
443
    }
444

A
Aubr.Cool 已提交
445
    can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_CAN_INT_ERR);
446 447 448

    CAN_UNLOCK(can);

A
Aubr.Cool 已提交
449 450 451 452
    return RT_EOK;
}

static rt_size_t rt_can_read(struct rt_device *dev,
453 454 455
                             rt_off_t          pos,
                             void             *buffer,
                             rt_size_t         size)
A
Aubr.Cool 已提交
456 457 458 459 460 461 462 463
{
    struct rt_can_device *can;

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

    can = (struct rt_can_device *)dev;

464
    if ((dev->open_flag & RT_DEVICE_FLAG_INT_RX) && (dev->ref_count > 0))
A
Aubr.Cool 已提交
465
    {
466
        return _can_int_rx(can, buffer, size);
A
Aubr.Cool 已提交
467
    }
468

A
Aubr.Cool 已提交
469 470 471 472
    return 0;
}

static rt_size_t rt_can_write(struct rt_device *dev,
473 474 475
                              rt_off_t          pos,
                              const void       *buffer,
                              rt_size_t         size)
A
Aubr.Cool 已提交
476 477 478 479 480 481 482 483
{
    struct rt_can_device *can;

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

    can = (struct rt_can_device *)dev;

484
    if ((dev->open_flag & RT_DEVICE_FLAG_INT_TX) && (dev->ref_count > 0))
A
Aubr.Cool 已提交
485
    {
486 487 488 489 490 491 492 493
        if (can->config.privmode)
        {
            return _can_int_tx_priv(can, buffer, size);
        }
        else
        {
            return _can_int_tx(can, buffer, size);
        }
A
Aubr.Cool 已提交
494 495 496 497 498
    }
    return 0;
}

static rt_err_t rt_can_control(struct rt_device *dev,
499 500
                               rt_uint8_t        cmd,
                               void             *args)
A
Aubr.Cool 已提交
501 502 503 504 505 506 507 508 509
{
    struct rt_can_device *can;
    rt_err_t res;

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

    switch (cmd)
    {
510 511 512 513
    case RT_DEVICE_CTRL_SUSPEND:
        /* suspend device */
        dev->flag |= RT_DEVICE_FLAG_SUSPENDED;
        break;
A
Aubr.Cool 已提交
514

515 516 517 518
    case RT_DEVICE_CTRL_RESUME:
        /* resume device */
        dev->flag &= ~RT_DEVICE_FLAG_SUSPENDED;
        break;
A
Aubr.Cool 已提交
519

520 521 522 523 524 525 526 527 528 529 530 531
    case RT_DEVICE_CTRL_CONFIG:
        /* configure device */
        can->ops->configure(can, (struct can_configure *)args);
        break;
    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;

532 533
            res = can->ops->control(can, cmd, args);
            if (res != RT_EOK) return res;
534 535 536 537 538 539 540 541

            tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
            if (can->config.privmode)
            {
                rt_completion_done(&(tx_fifo->completion));

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

563 564 565 566
    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;
567

A
Aubr.Cool 已提交
568
#ifdef RT_CAN_USING_HDR
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
    case RT_CAN_CMD_SET_FILTER:
        res = can->ops->control(can, cmd, args);
        if (res != RT_EOK || can->hdr == RT_NULL)
        {
            return res;
        }

        {
            struct rt_can_filter_config *pfilter;
            struct rt_can_filter_item *pitem;
            rt_uint32_t count;
            rt_base_t level;

            pfilter = (struct rt_can_filter_config *)args;
            count = pfilter->count;
            pitem = pfilter->items;
            if (pfilter->actived)
            {
                while (count)
                {
                    if (pitem->hdr >= can->config.maxhdr || pitem->hdr < 0)
                    {
                        count--;
                        pitem++;
                        continue;
                    }

596
                    level = rt_hw_interrupt_disable();
597 598
                    if (!can->hdr[pitem->hdr].connected)
                    {
599
                        rt_hw_interrupt_enable(level);
600 601
                        rt_memcpy(&can->hdr[pitem->hdr].filter, pitem,
                                  sizeof(struct rt_can_filter_item));
602
			level = rt_hw_interrupt_disable();
603 604 605 606 607
                        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);
608

609 610 611
                    count--;
                    pitem++;
                }
A
Aubr.Cool 已提交
612
            }
613
            else
A
Aubr.Cool 已提交
614
            {
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
                while (count)
                {
                    if (pitem->hdr >= can->config.maxhdr || pitem->hdr < 0)
                    {
                        count--;
                        pitem++;
                        continue;
                    }
                    level = rt_hw_interrupt_disable();

                    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))
                        {
                            rt_list_remove(can->hdr[pitem->hdr].list.next);
A
Aubr.Cool 已提交
632
                        }
633 634 635
                        rt_hw_interrupt_enable(level);
                        rt_memset(&can->hdr[pitem->hdr].filter, 0,
                                  sizeof(struct rt_can_filter_item));
636
                    }
637 638 639 640
		    else
		    {
                        rt_hw_interrupt_enable(level);
		    }
641 642 643
                    count--;
                    pitem++;
                }
A
Aubr.Cool 已提交
644
            }
645 646
        }
        break;
A
Aubr.Cool 已提交
647
#endif /*RT_CAN_USING_HDR*/
A
Aubr.Cool 已提交
648 649 650 651 652
#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*/
653 654 655 656 657 658 659
    default :
        /* control device */
        if (can->ops->control != RT_NULL)
        {
            can->ops->control(can, cmd, args);
        }
        break;
A
Aubr.Cool 已提交
660 661 662 663
    }

    return RT_EOK;
}
664

A
Aubr.Cool 已提交
665 666 667
/*
 * can timer
 */
668
static void cantimeout(void *arg)
A
Aubr.Cool 已提交
669
{
670 671 672
    rt_can_t can = (rt_can_t)arg;

    rt_device_control((rt_device_t)can, RT_CAN_CMD_GET_STATUS, (void *)&can->status);
673

674 675 676 677
    if (can->status_indicate.ind != RT_NULL)
    {
        can->status_indicate.ind(can, can->status_indicate.args);
    }
A
Aubr.Cool 已提交
678 679 680 681 682 683 684 685 686 687
#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 已提交
688 689 690 691 692 693
}

/*
 * can register
 */
rt_err_t rt_hw_can_register(struct rt_can_device *can,
694 695 696
                            const char              *name,
                            const struct rt_can_ops *ops,
                            void                    *data)
A
Aubr.Cool 已提交
697 698 699 700 701 702 703 704 705 706 707 708 709 710
{
    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;
711
    rt_mutex_init(&(can->lock), "can", RT_IPC_FLAG_PRIO);
A
Aubr.Cool 已提交
712 713 714
#ifdef RT_CAN_USING_BUS_HOOK
    can->bus_hook       = RT_NULL;
#endif /*RT_CAN_USING_BUS_HOOK*/
A
Aubr.Cool 已提交
715 716 717 718 719 720 721 722 723 724
    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;
    can->ops            = ops;

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

    device->user_data   = data;
728 729

    can->timerinitflag  = 0;
730 731 732 733 734 735
    rt_timer_init(&can->timer,
                  name,
                  cantimeout,
                  (void *)can,
                  can->config.ticks,
                  RT_TIMER_FLAG_PERIODIC);
A
Aubr.Cool 已提交
736 737 738 739 740 741 742 743 744
    /* 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)
    {
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
    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
        rt_int32_t hdr;
#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 已提交
778
        {
779 780 781 782 783 784 785 786 787 788 789 790
            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 已提交
791
        }
792
        else if (!rt_list_isempty(&rx_fifo->uselist))
A
Aubr.Cool 已提交
793
        {
794 795 796
            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 已提交
797
#ifdef RT_CAN_USING_HDR
798 799 800 801 802 803
            rt_list_remove(&listmsg->hdrlist);
            if (listmsg->owner != RT_NULL && listmsg->owner->msgs)
            {
                listmsg->owner->msgs--;
            }
            listmsg->owner = RT_NULL;
A
Aubr.Cool 已提交
804
#endif
805 806 807 808 809 810 811
        }
        /* enable interrupt */
        rt_hw_interrupt_enable(level);

        if (listmsg != RT_NULL)
        {
            rt_memcpy(&listmsg->data, &tmpmsg, sizeof(struct rt_can_msg));
A
Aubr.Cool 已提交
812
            level = rt_hw_interrupt_disable();
813
            rt_list_insert_before(&rx_fifo->uselist, &listmsg->list);
A
Aubr.Cool 已提交
814
#ifdef RT_CAN_USING_HDR
815 816 817 818 819 820 821 822 823 824 825 826
            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 已提交
827 828
#endif
            rt_hw_interrupt_enable(level);
829 830 831
        }

        /* invoke callback */
A
Aubr.Cool 已提交
832
#ifdef RT_CAN_USING_HDR
833 834 835 836 837 838 839 840 841 842 843
        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);
            can->hdr[hdr].filter.ind(&can->parent, can->hdr[hdr].filter.args, hdr, rx_length);
        }
        else
A
Aubr.Cool 已提交
844
#endif
845
        {
846 847
            if (can->parent.rx_indicate != RT_NULL)
            {
A
Aubr.Cool 已提交
848
                rt_size_t rx_length;
849

A
Aubr.Cool 已提交
850
                level = rt_hw_interrupt_disable();
851 852
                /* get rx length */
                rx_length = rx_fifo->freenumbers * sizeof(struct rt_can_msg);
A
Aubr.Cool 已提交
853 854 855 856
                rt_hw_interrupt_enable(level);

                can->parent.rx_indicate(&can->parent, rx_length);
            }
857
        }
858 859 860 861 862 863 864 865 866 867 868
        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);
869

870 871
        if ((event & 0xff) == RT_CAN_EVENT_TX_DONE)
        {
872
            tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_OK;
A
Aubr.Cool 已提交
873
        }
874
        else
A
Aubr.Cool 已提交
875
        {
876
            tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_ERR;
A
Aubr.Cool 已提交
877
        }
878 879 880
        rt_completion_done(&(tx_fifo->buffer[no].completion));
        break;
    }
A
Aubr.Cool 已提交
881 882
    }
}
883

A
Aubr.Cool 已提交
884 885
#ifdef RT_USING_FINSH
#include <finsh.h>
886
int cmd_canstat(int argc, void **argv)
A
Aubr.Cool 已提交
887
{
888 889 890 891 892 893
    static const char *ErrCode[] =
    {
        "No Error!",
        "Warning !",
        "Passive !",
        "Bus Off !"
A
Aubr.Cool 已提交
894
    };
895 896 897 898

    if (argc >= 2)
    {
        struct rt_can_status status;
A
Aubr.Cool 已提交
899
        rt_device_t candev = rt_device_find(argv[1]);
900 901 902
        if (!candev)
        {
            rt_kprintf(" Can't find can device %s\n", argv[1]);
A
Aubr.Cool 已提交
903 904
            return -1;
        }
905 906 907
        rt_kprintf(" Finded can device: %s...", argv[1]);

        rt_device_control(candev, RT_CAN_CMD_GET_STATUS, &status);
A
Aubr.Cool 已提交
908
        rt_kprintf("\n Receive...error..count: %010ld. Send.....error....count: %010ld.",
909
                   status.rcverrcnt, status.snderrcnt);
A
Aubr.Cool 已提交
910
        rt_kprintf("\n Bit..pad..error..count: %010ld. Format...error....count: %010ld",
911
                   status.bitpaderrcnt, status.formaterrcnt);
A
Aubr.Cool 已提交
912
        rt_kprintf("\n Ack.......error..count: %010ld. Bit......error....count: %010ld.",
913
                   status.ackerrcnt, status.biterrcnt);
A
Aubr.Cool 已提交
914
        rt_kprintf("\n CRC.......error..count: %010ld. Error.code.[%010ld]: ",
915 916 917
                   status.crcerrcnt, status.errcode);
        switch (status.errcode)
        {
A
Aubr.Cool 已提交
918
        case 0:
919 920
            rt_kprintf("%s.", ErrCode[0]);
            break;
A
Aubr.Cool 已提交
921
        case 1:
922 923
            rt_kprintf("%s.", ErrCode[1]);
            break;
A
Aubr.Cool 已提交
924 925
        case 2:
        case 3:
926 927
            rt_kprintf("%s.", ErrCode[2]);
            break;
A
Aubr.Cool 已提交
928 929 930 931
        case 4:
        case 5:
        case 6:
        case 7:
932 933
            rt_kprintf("%s.", ErrCode[3]);
            break;
A
Aubr.Cool 已提交
934 935
        }
        rt_kprintf("\n Total.receive.packages: %010ld. Droped.receive.packages: %010ld.",
936
                   status.rcvpkg, status.dropedrcvpkg);
A
Aubr.Cool 已提交
937
        rt_kprintf("\n Total..send...packages: %010ld. Droped...send..packages: %010ld.\n",
938 939 940 941 942 943
                   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 已提交
944 945 946 947 948
    }
    return 0;
}
FINSH_FUNCTION_EXPORT_ALIAS(cmd_canstat, __cmd_canstat, Stat Can Device Status.);
#endif
949