tests: Add qtests for FlexCAN
The tests do not test all of the FlexCAN emulator functionality. Signed-off-by: Matyáš Bobek <matyas.bobek@gmail.com> Signed-off-by: Pavel Pisa <pisa@fel.cvut.cz> Tested-by: Pavel Pisa <pisa@fel.cvut.cz> Reviewed-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Pavel Pisa <pisa@fel.cvut.cz> Message-id: 3d47746ef30f29c58fec10267bdce7dac2c756a7.1782140438.git.matyas.bobek@gmail.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
committed by
Peter Maydell
parent
c60f877912
commit
b3d4fc22f6
@@ -2114,6 +2114,7 @@ S: Maintained
|
||||
F: hw/net/can/flexcan.c
|
||||
F: hw/net/can/flexcan_regs.h
|
||||
F: include/hw/net/flexcan.h
|
||||
F: tests/qtest/flexcan-test.c
|
||||
|
||||
EDU
|
||||
M: Jiri Slaby <jslaby@suse.cz>
|
||||
|
||||
421
tests/qtest/flexcan-test.c
Normal file
421
tests/qtest/flexcan-test.c
Normal file
@@ -0,0 +1,421 @@
|
||||
/*
|
||||
* QTests for FlexCAN CAN controller device model
|
||||
*
|
||||
* Copyright (c) 2025 Matyas Bobek <matyas.bobek@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "libqtest-single.h"
|
||||
|
||||
#include "hw/net/flexcan.h"
|
||||
#include "hw/net/can/flexcan_regs.h"
|
||||
|
||||
#define FSL_IMX6_CAN2_ADDR 0x02094000
|
||||
#define FSL_IMX6_CAN2_SIZE 0x4000
|
||||
#define FSL_IMX6_CAN1_ADDR 0x02090000
|
||||
#define FSL_IMX6_CAN1_SIZE 0x4000
|
||||
|
||||
#define FC_QEMU_ARGS "-nographic -M sabrelite " \
|
||||
"-object can-bus,id=qcan0 " \
|
||||
"-machine canbus0=qcan0 -machine canbus1=qcan0"
|
||||
|
||||
/* used for masking out unused/reserved bits */
|
||||
#define FC_MB_CNT_USED_MASK (~0xF080FFFFu)
|
||||
|
||||
#define FCREG(BASE_ADDR, REG) ((BASE_ADDR) + offsetof(FlexcanRegs, REG))
|
||||
#define FCMB(BASE_ADDR, MB_IDX, WORD_IDX) (FCREG(BASE_ADDR, mbs) + \
|
||||
0x10 * (MB_IDX) + 4 * (WORD_IDX))
|
||||
|
||||
typedef struct FcTestFrame {
|
||||
uint32_t id;
|
||||
uint32_t data[2];
|
||||
uint8_t len;
|
||||
bool ide;
|
||||
bool rtr;
|
||||
|
||||
/* rx only */
|
||||
bool expect_overrun;
|
||||
} FcTestFrame;
|
||||
|
||||
static const FcTestFrame fc_test_frame_1 = {
|
||||
.id = 0x5AF,
|
||||
.len = 8,
|
||||
.data = {
|
||||
0x01020304,
|
||||
0x0A0B0C0D
|
||||
},
|
||||
.ide = false
|
||||
};
|
||||
|
||||
static const FcTestFrame fc_test_frame_1_ide = {
|
||||
.id = 0x105AF5AF,
|
||||
.len = 8,
|
||||
.data = {
|
||||
0x01020304,
|
||||
0x0A0B0C0D
|
||||
},
|
||||
.ide = true
|
||||
};
|
||||
|
||||
static void fc_reset(hwaddr ba, uint32_t mcr_flags)
|
||||
{
|
||||
/* disable */
|
||||
writel(FCREG(ba, mcr), 0xD890000F);
|
||||
|
||||
/* enable in freeze mode */
|
||||
writel(FCREG(ba, mcr), 0x5980000F);
|
||||
|
||||
/* soft reset */
|
||||
writel(FCREG(ba, mcr), 0x5980000F | FLEXCAN_MCR_SOFTRST);
|
||||
|
||||
g_assert_cmpuint(readl(FCREG(ba, mcr)), ==, 0x5980000F);
|
||||
g_assert_cmpuint(readl(FCREG(ba, ctrl)), ==, 0);
|
||||
g_assert_cmpuint(readl(FCREG(ba, ctrl2)), ==, 0);
|
||||
|
||||
writel(FCREG(ba, mcr), (0x5980000F & ~FLEXCAN_MCR_HALT) | mcr_flags);
|
||||
writel(FCREG(ba, ctrl2), FLEXCAN_CTRL2_RRS);
|
||||
|
||||
/* initialize all mailboxes as rx inactive */
|
||||
for (int i = 0; i < FLEXCAN_MAILBOX_COUNT; i++) {
|
||||
writel(FCMB(ba, i, 0), FLEXCAN_MB_CODE_RX_INACTIVE);
|
||||
writel(FCMB(ba, i, 1), 0);
|
||||
writel(FCMB(ba, i, 2), 0);
|
||||
writel(FCMB(ba, i, 3), 0);
|
||||
}
|
||||
}
|
||||
|
||||
static uint64_t fc_get_irqs(hwaddr ba)
|
||||
{
|
||||
return (uint64_t)readl(FCREG(ba, iflag1)) |
|
||||
((uint64_t)readl(FCREG(ba, iflag2)) << 32);
|
||||
}
|
||||
|
||||
static void fc_clear_irq(hwaddr ba, int idx)
|
||||
{
|
||||
if (idx >= 32) {
|
||||
writel(FCREG(ba, iflag2), (uint32_t)1 << (idx - 32));
|
||||
} else {
|
||||
writel(FCREG(ba, iflag1), (uint32_t)1 << idx);
|
||||
}
|
||||
|
||||
g_assert_cmpuint(fc_get_irqs(ba) & ((uint64_t)1 << idx), ==, 0);
|
||||
}
|
||||
|
||||
static void fc_setup_rx_mb(hwaddr ba, int mbidx)
|
||||
{
|
||||
writel(FCMB(ba, mbidx, 0), FLEXCAN_MB_CODE_RX_EMPTY);
|
||||
writel(FCMB(ba, mbidx, 1), 0);
|
||||
/* the data value should be ignored for RX mb */
|
||||
writel(FCMB(ba, mbidx, 2), 0);
|
||||
writel(FCMB(ba, mbidx, 3), 0);
|
||||
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 0)), ==, FLEXCAN_MB_CODE_RX_EMPTY);
|
||||
}
|
||||
|
||||
static void fc_tx(hwaddr ba, int mbidx, const FcTestFrame *frame)
|
||||
{
|
||||
g_assert_cmpuint(frame->len, <=, 8);
|
||||
|
||||
writel(FCMB(ba, mbidx, 0), FLEXCAN_MB_CODE_TX_INACTIVE);
|
||||
uint32_t id = frame->ide ? frame->id : frame->id << 18;
|
||||
writel(FCMB(ba, mbidx, 1), id);
|
||||
writel(FCMB(ba, mbidx, 2), frame->data[0]);
|
||||
writel(FCMB(ba, mbidx, 3), frame->data[1]);
|
||||
|
||||
uint32_t ctrl = FLEXCAN_MB_CODE_TX_DATA | FLEXCAN_MB_CNT_LENGTH(frame->len);
|
||||
if (frame->ide) {
|
||||
ctrl |= FLEXCAN_MB_CNT_IDE | FLEXCAN_MB_CNT_SRR;
|
||||
}
|
||||
if (frame->rtr) {
|
||||
ctrl |= FLEXCAN_MB_CNT_RTR;
|
||||
}
|
||||
writel(FCMB(ba, mbidx, 0), ctrl);
|
||||
|
||||
/* check frame was transmitted */
|
||||
g_assert_cmpuint(fc_get_irqs(ba) & ((uint64_t)1 << mbidx),
|
||||
!=, 0);
|
||||
|
||||
uint32_t xpectd_ctrl = (ctrl & ~FLEXCAN_MB_CODE_MASK) |
|
||||
FLEXCAN_MB_CODE_TX_INACTIVE;
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 0)) & FC_MB_CNT_USED_MASK, ==,
|
||||
xpectd_ctrl);
|
||||
/* other fields should stay unchanged */
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 1)), ==, id);
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 2)), ==, frame->data[0]);
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 3)), ==, frame->data[1]);
|
||||
}
|
||||
|
||||
static void fc_rx_check(hwaddr ba, int mbidx, const FcTestFrame *frame)
|
||||
{
|
||||
uint32_t xpectd_ctrl = frame->expect_overrun ? FLEXCAN_MB_CODE_RX_OVERRUN
|
||||
: FLEXCAN_MB_CODE_RX_FULL;
|
||||
xpectd_ctrl |= FLEXCAN_MB_CNT_LENGTH(frame->len) | FLEXCAN_MB_CNT_SRR;
|
||||
if (frame->ide) {
|
||||
xpectd_ctrl |= FLEXCAN_MB_CNT_IDE;
|
||||
}
|
||||
if (frame->rtr) {
|
||||
xpectd_ctrl |= FLEXCAN_MB_CNT_RTR;
|
||||
}
|
||||
|
||||
uint32_t xpectd_id = frame->ide ? frame->id : frame->id << 18;
|
||||
|
||||
uint32_t ctrl = readl(FCMB(ba, mbidx, 0)) & FC_MB_CNT_USED_MASK;
|
||||
if ((ctrl & FLEXCAN_MB_CODE_MASK) == FLEXCAN_MB_CODE_RX_EMPTY) {
|
||||
fprintf(stderr, "expected frame (id=0x%X) not received\n", frame->id);
|
||||
}
|
||||
|
||||
g_assert_cmpuint(ctrl, ==, xpectd_ctrl);
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 1)), ==, xpectd_id);
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 2)), ==, frame->data[0]);
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 3)), ==, frame->data[1]);
|
||||
}
|
||||
|
||||
static void fc_check_empty_multi(hwaddr ba, int idx_count, int mbidxs[])
|
||||
{
|
||||
for (int i = 0; i < FLEXCAN_MAILBOX_COUNT; i++) {
|
||||
bool check_empty = true;
|
||||
int ctrl = readl(FCMB(ba, i, 0));
|
||||
|
||||
for (int j = 0; j < idx_count; j++) {
|
||||
if (i == mbidxs[j]) {
|
||||
check_empty = false;
|
||||
}
|
||||
}
|
||||
|
||||
if (check_empty) {
|
||||
if (!(ctrl == FLEXCAN_MB_CODE_RX_EMPTY ||
|
||||
ctrl == FLEXCAN_MB_CODE_RX_INACTIVE)) {
|
||||
g_assert_cmpuint(ctrl, ==, FLEXCAN_MB_CODE_RX_INACTIVE);
|
||||
}
|
||||
g_assert_cmpuint(readl(FCMB(ba, i, 1)), ==, 0);
|
||||
g_assert_cmpuint(readl(FCMB(ba, i, 2)), ==, 0);
|
||||
g_assert_cmpuint(readl(FCMB(ba, i, 3)), ==, 0);
|
||||
} else {
|
||||
g_assert_cmpuint(
|
||||
ctrl & FLEXCAN_MB_CODE_MASK, !=,
|
||||
FLEXCAN_MB_CODE_RX_INACTIVE
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void fc_check_empty(hwaddr ba, int mbidx)
|
||||
{
|
||||
fc_check_empty_multi(ba, 1, &mbidx);
|
||||
}
|
||||
|
||||
static void flexcan_test_linux_probe_impl(hwaddr fba)
|
||||
{
|
||||
/* -- test a Linux driver-like probe sequence -- */
|
||||
/* disable */
|
||||
writel(FCREG(fba, mcr), 0xD890000F);
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xD890000F);
|
||||
g_assert_cmpuint(readl(FCREG(fba, ctrl)), ==, 0);
|
||||
|
||||
/* set bit in reserved field we do not implement (CTRL_CLK_SRC) */
|
||||
writel(FCREG(fba, ctrl), 0x00002000);
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xD890000F);
|
||||
|
||||
/* enable in freeze mode */
|
||||
writel(FCREG(fba, mcr), 0x5980000F);
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0x5980000F);
|
||||
|
||||
/* enable Rx-FIFO */
|
||||
writel(FCREG(fba, mcr), 0x7980000F);
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0x7980000F);
|
||||
g_assert_cmpuint(readl(FCREG(fba, ecr)), ==, 0);
|
||||
|
||||
/* disable */
|
||||
writel(FCREG(fba, mcr), 0xF890000F);
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xF890000F);
|
||||
}
|
||||
|
||||
static void flexcan_test_freeze_disable_interaction_impl(hwaddr fba)
|
||||
{
|
||||
/* -- test normal <=> freeze <=> disable transitions -- */
|
||||
|
||||
/* leave freeze in disabled, FRZ_ACK should stay cleared */
|
||||
writel(FCREG(fba, mcr), 0xF890000F); /* disable */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xF890000F);
|
||||
writel(FCREG(fba, mcr), 0xB890000F); /* by clearing FRZ */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xB890000F);
|
||||
|
||||
writel(FCREG(fba, mcr), 0xF890000F); /* disable */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xF890000F);
|
||||
writel(FCREG(fba, mcr), 0xE890000F); /* by clearing HALT */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xE890000F);
|
||||
|
||||
writel(FCREG(fba, mcr), 0xF890000F); /* disable */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xF890000F);
|
||||
writel(FCREG(fba, mcr), 0xA890000F); /* by clearing both */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0xA890000F);
|
||||
|
||||
/* enter and leave freeze */
|
||||
writel(FCREG(fba, mcr), 0x7980000F); /* enable in freeze mode */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0x7980000F);
|
||||
writel(FCREG(fba, mcr), 0x3980000F); /* leave by clearing FRZ */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0x3080000F);
|
||||
|
||||
writel(FCREG(fba, mcr), 0x7980000F); /* enable in freeze mode */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0x7980000F);
|
||||
writel(FCREG(fba, mcr), 0x6980000F); /* leave by clearing HALT */
|
||||
g_assert_cmpuint(readl(FCREG(fba, mcr)), ==, 0x6080000F);
|
||||
}
|
||||
|
||||
static void flexcan_test_mailbox_io_impl(hwaddr ba_tx, hwaddr ba_rx)
|
||||
{
|
||||
/* -- test correct handling of mailbox IO -- */
|
||||
const int test_1_mbidx = 0;
|
||||
fc_reset(ba_tx,
|
||||
FLEXCAN_MCR_SRX_DIS | FLEXCAN_MCR_MAXMB(FLEXCAN_MAILBOX_COUNT));
|
||||
fc_reset(ba_rx,
|
||||
FLEXCAN_MCR_SRX_DIS | FLEXCAN_MCR_MAXMB(FLEXCAN_MAILBOX_COUNT));
|
||||
|
||||
fc_setup_rx_mb(ba_rx, test_1_mbidx);
|
||||
fc_tx(ba_tx, test_1_mbidx, &fc_test_frame_1_ide);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_rx), ==, 1 << test_1_mbidx);
|
||||
fc_rx_check(ba_rx, test_1_mbidx, &fc_test_frame_1_ide);
|
||||
readl(FCREG(ba_rx, timer)); /* reset lock */
|
||||
|
||||
writel(FCMB(ba_rx, test_1_mbidx, 0), 0);
|
||||
g_assert_cmpuint(readl(FCMB(ba_rx, test_1_mbidx, 0)), ==, 0);
|
||||
writel(FCMB(ba_rx, test_1_mbidx, 1), 0x99AABBCC);
|
||||
g_assert_cmpuint(readl(FCMB(ba_rx, test_1_mbidx, 1)), ==, 0x99AABBCC);
|
||||
}
|
||||
|
||||
static void flexcan_test_dual_transmit_receive_impl(hwaddr ba_tx, hwaddr ba_rx)
|
||||
{
|
||||
/* -- test TX and RX between the two FlexCAN instances -- */
|
||||
const int test_1_mbidx = 50;
|
||||
const int test_rounds = 50;
|
||||
|
||||
/* self-receive enabled on tx FC */
|
||||
fc_reset(ba_tx,
|
||||
FLEXCAN_MCR_MAXMB(FLEXCAN_MAILBOX_COUNT));
|
||||
fc_reset(ba_rx,
|
||||
FLEXCAN_MCR_SRX_DIS | FLEXCAN_MCR_MAXMB(FLEXCAN_MAILBOX_COUNT));
|
||||
|
||||
/* tests self-receive on tx and reception on rx */
|
||||
fc_setup_rx_mb(ba_rx, test_1_mbidx);
|
||||
fc_check_empty(ba_rx, test_1_mbidx);
|
||||
fc_setup_rx_mb(ba_tx, test_1_mbidx + 1);
|
||||
fc_check_empty(ba_tx, test_1_mbidx + 1);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_rx), ==, 0);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_tx), ==, 0);
|
||||
|
||||
fc_tx(ba_tx, test_1_mbidx, &fc_test_frame_1);
|
||||
fc_clear_irq(ba_tx, test_1_mbidx);
|
||||
|
||||
fc_rx_check(ba_rx, test_1_mbidx, &fc_test_frame_1);
|
||||
fc_check_empty(ba_rx, test_1_mbidx);
|
||||
fc_rx_check(ba_tx, test_1_mbidx + 1, &fc_test_frame_1);
|
||||
int tx_non_empty_mbidxs[] = {test_1_mbidx, test_1_mbidx + 1};
|
||||
|
||||
fc_check_empty_multi(ba_tx, 2, tx_non_empty_mbidxs);
|
||||
fc_clear_irq(ba_rx, test_1_mbidx);
|
||||
fc_clear_irq(ba_tx, test_1_mbidx + 1);
|
||||
readl(FCREG(ba_rx, timer)); /* reset lock */
|
||||
|
||||
for (int ridx = 0; ridx < test_rounds; ridx++) {
|
||||
/* test extended IDs sent to all mailboxes */
|
||||
for (int i = 0; i < FLEXCAN_MAILBOX_COUNT; i++) {
|
||||
fc_setup_rx_mb(ba_rx, i);
|
||||
}
|
||||
fc_check_empty_multi(ba_rx, 0, NULL);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_rx), ==, 0);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_tx), ==, 0);
|
||||
|
||||
for (int i = 0; i < FLEXCAN_MAILBOX_COUNT; i++) {
|
||||
fc_tx(ba_tx, i, &fc_test_frame_1_ide);
|
||||
}
|
||||
g_assert_cmpuint(fc_get_irqs(ba_rx), ==, UINT64_MAX);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_tx), ==, UINT64_MAX);
|
||||
for (int i = 0; i < FLEXCAN_MAILBOX_COUNT; i++) {
|
||||
fc_rx_check(ba_rx, i, &fc_test_frame_1_ide);
|
||||
}
|
||||
|
||||
/* reset interrupts */
|
||||
writel(FCREG(ba_rx, iflag1), UINT32_MAX);
|
||||
writel(FCREG(ba_rx, iflag2), UINT32_MAX);
|
||||
writel(FCREG(ba_tx, iflag1), UINT32_MAX);
|
||||
writel(FCREG(ba_tx, iflag2), UINT32_MAX);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_rx), ==, 0);
|
||||
g_assert_cmpuint(fc_get_irqs(ba_tx), ==, 0);
|
||||
}
|
||||
}
|
||||
|
||||
static void flexcan_test_tx_abort_impl(hwaddr ba)
|
||||
{
|
||||
/* -- test the TX abort feature -- */
|
||||
fc_reset(ba,
|
||||
FLEXCAN_MCR_SRX_DIS | FLEXCAN_MCR_MAXMB(FLEXCAN_MAILBOX_COUNT));
|
||||
|
||||
|
||||
for (int mbidx = 0; mbidx < FLEXCAN_MAILBOX_COUNT; mbidx++) {
|
||||
fc_tx(ba, mbidx, &fc_test_frame_1);
|
||||
|
||||
writel(FCMB(ba, mbidx, 0), FLEXCAN_MB_CODE_TX_ABORT);
|
||||
g_assert_cmpuint(readl(FCMB(ba, mbidx, 0)), ==,
|
||||
FLEXCAN_MB_CODE_TX_INACTIVE);
|
||||
}
|
||||
}
|
||||
|
||||
static void flexcan_test_freeze_disable_interaction(void)
|
||||
{
|
||||
qtest_start(FC_QEMU_ARGS);
|
||||
flexcan_test_freeze_disable_interaction_impl(FSL_IMX6_CAN1_ADDR);
|
||||
flexcan_test_freeze_disable_interaction_impl(FSL_IMX6_CAN2_ADDR);
|
||||
qtest_end();
|
||||
}
|
||||
|
||||
static void flexcan_test_linux_probe(void)
|
||||
{
|
||||
qtest_start(FC_QEMU_ARGS);
|
||||
flexcan_test_linux_probe_impl(FSL_IMX6_CAN1_ADDR);
|
||||
flexcan_test_linux_probe_impl(FSL_IMX6_CAN2_ADDR);
|
||||
qtest_end();
|
||||
}
|
||||
|
||||
static void flexcan_test_dual_transmit_receive(void)
|
||||
{
|
||||
qtest_start(FC_QEMU_ARGS);
|
||||
flexcan_test_dual_transmit_receive_impl(FSL_IMX6_CAN1_ADDR,
|
||||
FSL_IMX6_CAN2_ADDR);
|
||||
flexcan_test_dual_transmit_receive_impl(FSL_IMX6_CAN2_ADDR,
|
||||
FSL_IMX6_CAN1_ADDR);
|
||||
qtest_end();
|
||||
}
|
||||
|
||||
static void flexcan_test_tx_abort(void)
|
||||
{
|
||||
qtest_start(FC_QEMU_ARGS);
|
||||
flexcan_test_tx_abort_impl(FSL_IMX6_CAN1_ADDR);
|
||||
flexcan_test_tx_abort_impl(FSL_IMX6_CAN2_ADDR);
|
||||
qtest_end();
|
||||
}
|
||||
|
||||
static void flexcan_test_mailbox_io(void)
|
||||
{
|
||||
qtest_start(FC_QEMU_ARGS);
|
||||
flexcan_test_mailbox_io_impl(FSL_IMX6_CAN1_ADDR, FSL_IMX6_CAN2_ADDR);
|
||||
flexcan_test_mailbox_io_impl(FSL_IMX6_CAN2_ADDR, FSL_IMX6_CAN1_ADDR);
|
||||
qtest_end();
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
g_test_init(&argc, &argv, NULL);
|
||||
|
||||
qtest_add_func("/net/flexcan/linux_probe", flexcan_test_linux_probe);
|
||||
qtest_add_func("/net/flexcan/freeze_disable_interaction",
|
||||
flexcan_test_freeze_disable_interaction);
|
||||
qtest_add_func("/net/flexcan/dual_transmit_receive",
|
||||
flexcan_test_dual_transmit_receive);
|
||||
qtest_add_func("/net/flexcan/tx_abort",
|
||||
flexcan_test_tx_abort);
|
||||
qtest_add_func("/net/flexcan/mailbox_io", flexcan_test_mailbox_io);
|
||||
|
||||
return g_test_run();
|
||||
}
|
||||
@@ -251,6 +251,7 @@ qtests_arm = \
|
||||
(config_all_devices.has_key('CONFIG_MICROBIT') ? ['microbit-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_STM32L4X5_SOC') ? qtests_stm32l4x5 : []) + \
|
||||
(config_all_devices.has_key('CONFIG_FSI_APB2OPB_ASPEED') ? ['aspeed_fsi-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_CAN_FLEXCAN') ? ['flexcan-test'] : []) + \
|
||||
(config_all_devices.has_key('CONFIG_STM32L4X5_SOC') and
|
||||
config_all_devices.has_key('CONFIG_DM163')? ['dm163-test'] : []) + \
|
||||
['arm-cpu-features',
|
||||
|
||||
Reference in New Issue
Block a user