can.c 27.7 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;

157
        rt_sem_take(&(tx_fifo->sem), RT_WAITING_FOREVER);
A
Aubr.Cool 已提交
158
        level = rt_hw_interrupt_disable();
159 160 161
        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 已提交
162
        rt_hw_interrupt_enable(level);
163 164

        no = ((rt_uint32_t)tx_tosnd - (rt_uint32_t)tx_fifo->buffer) / sizeof(struct rt_can_sndbxinx_list);
165 166
        tx_tosnd->result = RT_CAN_SND_RESULT_WAIT;
        if (can->ops->sendmsg(can, data, no) != RT_EOK)
A
Aubr.Cool 已提交
167
        {
168
            /* send failed. */
A
Aubr.Cool 已提交
169
            level = rt_hw_interrupt_disable();
170
            rt_list_insert_after(&tx_fifo->freelist, &tx_tosnd->list);
A
Aubr.Cool 已提交
171
            rt_hw_interrupt_enable(level);
172
            rt_sem_release(&(tx_fifo->sem));
A
Aubr.Cool 已提交
173 174
            continue;
        }
175

A
Aubr.Cool 已提交
176 177
        can->status.sndchange = 1;
        rt_completion_wait(&(tx_tosnd->completion), RT_WAITING_FOREVER);
178

A
Aubr.Cool 已提交
179
        level = rt_hw_interrupt_disable();
180 181 182 183
        result = tx_tosnd->result;
        if (!rt_list_isempty(&tx_tosnd->list))
        {
            rt_list_remove(&tx_tosnd->list);
A
Aubr.Cool 已提交
184
        }
185
        rt_list_insert_before(&tx_fifo->freelist, &tx_tosnd->list);
A
Aubr.Cool 已提交
186
        rt_hw_interrupt_enable(level);
187
        rt_sem_release(&(tx_fifo->sem));
188

189
        if (result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
190 191 192 193
        {
            level = rt_hw_interrupt_disable();
            can->status.sndpkg++;
            rt_hw_interrupt_enable(level);
194

195 196 197
            data ++;
            msgs -= sizeof(struct rt_can_msg);
            if (!msgs) break;
A
Aubr.Cool 已提交
198 199 200 201 202 203 204 205 206 207 208 209
        }
        else
        {
            level = rt_hw_interrupt_disable();
            can->status.dropedsndpkg++;
            rt_hw_interrupt_enable(level);
            break;
        }
    }

    return (size - msgs);
}
210

A
Aubr.Cool 已提交
211 212 213
rt_inline int _can_int_tx_priv(struct rt_can_device *can, const struct rt_can_msg *data, int msgs)
{
    int size;
214 215
    rt_base_t level;
    rt_uint32_t no, result;
A
Aubr.Cool 已提交
216
    struct rt_can_tx_fifo *tx_fifo;
217

A
Aubr.Cool 已提交
218 219 220
    RT_ASSERT(can != RT_NULL);

    size = msgs;
221
    tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
A
Aubr.Cool 已提交
222 223 224
    RT_ASSERT(tx_fifo != RT_NULL);

    while (msgs)
225
    {
A
Aubr.Cool 已提交
226
        no = data->priv;
227 228 229
        if (no >= can->config.sndboxnumber)
        {
            break;
A
Aubr.Cool 已提交
230
        }
231

A
Aubr.Cool 已提交
232
        level = rt_hw_interrupt_disable();
233
        if ((tx_fifo->buffer[no].result != RT_CAN_SND_RESULT_OK))
234 235
        {
            rt_hw_interrupt_enable(level);
236

237 238
            rt_completion_wait(&(tx_fifo->buffer[no].completion), RT_WAITING_FOREVER);
            continue;
A
Aubr.Cool 已提交
239
        }
240
        tx_fifo->buffer[no].result = RT_CAN_SND_RESULT_WAIT;
A
Aubr.Cool 已提交
241
        rt_hw_interrupt_enable(level);
242

243
        if (can->ops->sendmsg(can, data, no) != RT_EOK)
A
Aubr.Cool 已提交
244 245 246 247 248
        {
            continue;
        }
        can->status.sndchange = 1;
        rt_completion_wait(&(tx_fifo->buffer[no].completion), RT_WAITING_FOREVER);
249

A
Aubr.Cool 已提交
250
        result = tx_fifo->buffer[no].result;
251
        if (result == RT_CAN_SND_RESULT_OK)
A
Aubr.Cool 已提交
252 253 254 255
        {
            level = rt_hw_interrupt_disable();
            can->status.sndpkg++;
            rt_hw_interrupt_enable(level);
256 257 258
            data ++;
            msgs -= sizeof(struct rt_can_msg);
            if (!msgs) break;
A
Aubr.Cool 已提交
259 260 261 262 263 264 265 266 267 268 269 270
        }
        else
        {
            level = rt_hw_interrupt_disable();
            can->status.dropedsndpkg++;
            rt_hw_interrupt_enable(level);
            break;
        }
    }

    return (size - msgs);
}
271

A
Aubr.Cool 已提交
272 273 274
static rt_err_t rt_can_open(struct rt_device *dev, rt_uint16_t oflag)
{
    struct rt_can_device *can;
275
    char tmpname[16];
A
Aubr.Cool 已提交
276 277 278
    RT_ASSERT(dev != RT_NULL);
    can = (struct rt_can_device *)dev;

279 280
    CAN_LOCK(can);

A
Aubr.Cool 已提交
281 282 283 284 285 286
    /* get open flags */
    dev->open_flag = oflag & 0xff;
    if (can->can_rx == RT_NULL)
    {
        if (oflag & RT_DEVICE_FLAG_INT_RX)
        {
287
            int i = 0;
288
            struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
289

290 291
            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 已提交
292
            RT_ASSERT(rx_fifo != RT_NULL);
293

294
            rx_fifo->buffer = (struct rt_can_msg_list *)(rx_fifo + 1);
A
Aubr.Cool 已提交
295 296 297
            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);
298 299
            rx_fifo->freenumbers = can->config.msgboxsz;
            for (i = 0;  i < can->config.msgboxsz; i++)
A
Aubr.Cool 已提交
300
            {
301
                rt_list_insert_before(&rx_fifo->freelist, &rx_fifo->buffer[i].list);
A
Aubr.Cool 已提交
302
#ifdef RT_CAN_USING_HDR
303 304
                rt_list_init(&rx_fifo->buffer[i].hdrlist);
                rx_fifo->buffer[i].owner = RT_NULL;
A
Aubr.Cool 已提交
305 306 307
#endif
            }
            can->can_rx = rx_fifo;
308

A
Aubr.Cool 已提交
309 310 311 312
            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);
        }
313 314
    }

A
Aubr.Cool 已提交
315 316 317 318
    if (can->can_tx == RT_NULL)
    {
        if (oflag & RT_DEVICE_FLAG_INT_TX)
        {
319
            int i = 0;
A
Aubr.Cool 已提交
320 321
            struct rt_can_tx_fifo *tx_fifo;

322 323
            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 已提交
324
            RT_ASSERT(tx_fifo != RT_NULL);
325

326 327 328
            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 已提交
329
            rt_list_init(&tx_fifo->freelist);
330
            for (i = 0;  i < can->config.sndboxnumber; i++)
A
Aubr.Cool 已提交
331
            {
332 333
                rt_list_insert_before(&tx_fifo->freelist, &tx_fifo->buffer[i].list);
                rt_completion_init(&(tx_fifo->buffer[i].completion));
334
                tx_fifo->buffer[i].result = RT_CAN_SND_RESULT_OK;
A
Aubr.Cool 已提交
335
            }
336 337 338

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

A
Aubr.Cool 已提交
341 342 343 344
            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);
        }
345 346
    }

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

A
Aubr.Cool 已提交
349
#ifdef RT_CAN_USING_HDR
350 351
    if (can->hdr == RT_NULL)
    {
A
Aubr.Cool 已提交
352
        int i = 0;
353 354 355 356 357 358
        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 已提交
359
        {
360
            rt_list_init(&phdr[i].list);
A
Aubr.Cool 已提交
361
        }
362

A
Aubr.Cool 已提交
363 364 365
        can->hdr = phdr;
    }
#endif
366 367 368

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

A
Aubr.Cool 已提交
371
        rt_timer_start(&can->timer);
372
    }
373 374

    CAN_UNLOCK(can);
375

A
Aubr.Cool 已提交
376 377 378 379 380 381 382 383 384 385
    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;

386 387
    CAN_LOCK(can);

A
Aubr.Cool 已提交
388
    /* this device has more reference count */
389 390 391 392 393
    if (dev->ref_count > 1)
    {
        CAN_UNLOCK(can);
        return RT_EOK;
    }
394 395 396

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

A
Aubr.Cool 已提交
399 400
        rt_timer_stop(&can->timer);
    }
401

A
Aubr.Cool 已提交
402 403
    can->status_indicate.ind = RT_NULL;
    can->status_indicate.args = RT_NULL;
404

A
Aubr.Cool 已提交
405
#ifdef RT_CAN_USING_HDR
406 407
    if (can->hdr != RT_NULL)
    {
408
        rt_free(can->hdr);
A
Aubr.Cool 已提交
409 410 411
        can->hdr = RT_NULL;
    }
#endif
412

A
Aubr.Cool 已提交
413 414
    if (dev->open_flag & RT_DEVICE_FLAG_INT_RX)
    {
415
        struct rt_can_rx_fifo *rx_fifo;
A
Aubr.Cool 已提交
416

417
        rx_fifo = (struct rt_can_rx_fifo *)can->can_rx;
A
Aubr.Cool 已提交
418 419 420 421 422
        RT_ASSERT(rx_fifo != RT_NULL);

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

A
Aubr.Cool 已提交
426 427
    if (dev->open_flag & RT_DEVICE_FLAG_INT_TX)
    {
428
        struct rt_can_tx_fifo *tx_fifo;
A
Aubr.Cool 已提交
429

wuyangyong's avatar
wuyangyong 已提交
430
        tx_fifo = (struct rt_can_tx_fifo *)can->can_tx;
A
Aubr.Cool 已提交
431 432 433 434 435
        RT_ASSERT(tx_fifo != RT_NULL);

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

A
Aubr.Cool 已提交
439
    can->ops->control(can, RT_DEVICE_CTRL_CLR_INT, (void *)RT_DEVICE_CAN_INT_ERR);
440 441 442

    CAN_UNLOCK(can);

A
Aubr.Cool 已提交
443 444 445 446
    return RT_EOK;
}

static rt_size_t rt_can_read(struct rt_device *dev,
447 448 449
                             rt_off_t          pos,
                             void             *buffer,
                             rt_size_t         size)
A
Aubr.Cool 已提交
450 451 452 453 454 455 456 457
{
    struct rt_can_device *can;

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

    can = (struct rt_can_device *)dev;

458
    if ((dev->open_flag & RT_DEVICE_FLAG_INT_RX) && (dev->ref_count > 0))
A
Aubr.Cool 已提交
459
    {
460
        return _can_int_rx(can, buffer, size);
A
Aubr.Cool 已提交
461
    }
462

A
Aubr.Cool 已提交
463 464 465 466
    return 0;
}

static rt_size_t rt_can_write(struct rt_device *dev,
467 468 469
                              rt_off_t          pos,
                              const void       *buffer,
                              rt_size_t         size)
A
Aubr.Cool 已提交
470 471 472 473 474 475 476 477
{
    struct rt_can_device *can;

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

    can = (struct rt_can_device *)dev;

478
    if ((dev->open_flag & RT_DEVICE_FLAG_INT_TX) && (dev->ref_count > 0))
A
Aubr.Cool 已提交
479
    {
480 481 482 483 484 485 486 487
        if (can->config.privmode)
        {
            return _can_int_tx_priv(can, buffer, size);
        }
        else
        {
            return _can_int_tx(can, buffer, size);
        }
A
Aubr.Cool 已提交
488 489 490 491 492
    }
    return 0;
}

static rt_err_t rt_can_control(struct rt_device *dev,
493 494
                               rt_uint8_t        cmd,
                               void             *args)
A
Aubr.Cool 已提交
495 496 497 498 499 500 501 502 503
{
    struct rt_can_device *can;
    rt_err_t res;

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

    switch (cmd)
    {
504 505 506 507
    case RT_DEVICE_CTRL_SUSPEND:
        /* suspend device */
        dev->flag |= RT_DEVICE_FLAG_SUSPENDED;
        break;
A
Aubr.Cool 已提交
508

509 510 511 512
    case RT_DEVICE_CTRL_RESUME:
        /* resume device */
        dev->flag &= ~RT_DEVICE_FLAG_SUSPENDED;
        break;
A
Aubr.Cool 已提交
513

514 515 516 517 518 519 520 521 522 523 524 525
    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;

526 527
            res = can->ops->control(can, cmd, args);
            if (res != RT_EOK) return res;
528 529 530 531 532 533

            tx_fifo = (struct rt_can_tx_fifo *) can->can_tx;
            if (can->config.privmode)
            {
                for (i = 0;  i < can->config.sndboxnumber; i++)
                {
534 535 536 537 538 539 540 541 542
                    level = rt_hw_interrupt_disable();
                    if(rt_list_isempty(&tx_fifo->buffer[i].list))
                    {
                      rt_sem_release(&(tx_fifo->sem));
                    }
                    else
                    {
                      rt_list_remove(&tx_fifo->buffer[i].list);
                    }
543
                    rt_hw_interrupt_enable(level);
544
                }
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