2 * Remote processor messaging - sample client driver
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Copyright (C) 2011 Google, Inc.
7 * Ohad Ben-Cohen <ohad@wizery.com>
8 * Brian Swetland <swetland@google.com>
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/rpmsg.h>
24 #define MSG "hello world!"
27 struct instance_data
{
31 static int rpmsg_sample_cb(struct rpmsg_device
*rpdev
, void *data
, int len
,
35 struct instance_data
*idata
= dev_get_drvdata(&rpdev
->dev
);
37 dev_info(&rpdev
->dev
, "incoming msg %d (src: 0x%x)\n",
38 ++idata
->rx_count
, src
);
40 print_hex_dump(KERN_DEBUG
, __func__
, DUMP_PREFIX_NONE
, 16, 1,
43 /* samples should not live forever */
44 if (idata
->rx_count
>= MSG_LIMIT
) {
45 dev_info(&rpdev
->dev
, "goodbye!\n");
49 /* send a new message now */
50 ret
= rpmsg_send(rpdev
->ept
, MSG
, strlen(MSG
));
52 dev_err(&rpdev
->dev
, "rpmsg_send failed: %d\n", ret
);
57 static int rpmsg_sample_probe(struct rpmsg_device
*rpdev
)
60 struct instance_data
*idata
;
62 dev_info(&rpdev
->dev
, "new channel: 0x%x -> 0x%x!\n",
63 rpdev
->src
, rpdev
->dst
);
65 idata
= devm_kzalloc(&rpdev
->dev
, sizeof(*idata
), GFP_KERNEL
);
69 dev_set_drvdata(&rpdev
->dev
, idata
);
71 /* send a message to our remote processor */
72 ret
= rpmsg_send(rpdev
->ept
, MSG
, strlen(MSG
));
74 dev_err(&rpdev
->dev
, "rpmsg_send failed: %d\n", ret
);
81 static void rpmsg_sample_remove(struct rpmsg_device
*rpdev
)
83 dev_info(&rpdev
->dev
, "rpmsg sample client driver is removed\n");
86 static struct rpmsg_device_id rpmsg_driver_sample_id_table
[] = {
87 { .name
= "rpmsg-client-sample" },
90 MODULE_DEVICE_TABLE(rpmsg
, rpmsg_driver_sample_id_table
);
92 static struct rpmsg_driver rpmsg_sample_client
= {
93 .drv
.name
= KBUILD_MODNAME
,
94 .id_table
= rpmsg_driver_sample_id_table
,
95 .probe
= rpmsg_sample_probe
,
96 .callback
= rpmsg_sample_cb
,
97 .remove
= rpmsg_sample_remove
,
99 module_rpmsg_driver(rpmsg_sample_client
);
101 MODULE_DESCRIPTION("Remote processor messaging sample client driver");
102 MODULE_LICENSE("GPL v2");