| /linux/sound/soc/fsl/ |
| H A D | fsl_rpmsg.c | 11 #include <linux/rpmsg.h> 45 struct fsl_rpmsg *rpmsg = snd_soc_dai_get_drvdata(dai); in fsl_rpmsg_hw_params() local 46 struct clk *p = rpmsg->mclk, *pll = NULL, *npll = NULL; in fsl_rpmsg_hw_params() 51 while (p && rpmsg->pll8k && rpmsg->pll11k) { in fsl_rpmsg_hw_params() 54 if (clk_is_match(pp, rpmsg->pll8k) || in fsl_rpmsg_hw_params() 55 clk_is_match(pp, rpmsg->pll11k)) { in fsl_rpmsg_hw_params() 64 npll = (do_div(rate, 8000) ? rpmsg->pll11k : rpmsg->pll8k); in fsl_rpmsg_hw_params() 73 if (!(rpmsg->mclk_streams & BIT(substream->stream))) { in fsl_rpmsg_hw_params() 74 ret = clk_prepare_enable(rpmsg->mclk); in fsl_rpmsg_hw_params() 80 rpmsg->mclk_streams |= BIT(substream->stream); in fsl_rpmsg_hw_params() [all …]
|
| H A D | imx-audio-rpmsg.c | 5 #include <linux/rpmsg.h> 6 #include "imx-pcm-rpmsg.h" 21 struct imx_audio_rpmsg *rpmsg = dev_get_drvdata(&rpdev->dev); in imx_audio_rpmsg_cb() local 26 if (!rpmsg->rpmsg_pdev) in imx_audio_rpmsg_cb() 29 info = platform_get_drvdata(rpmsg->rpmsg_pdev); in imx_audio_rpmsg_cb() 88 /* Register platform driver for rpmsg routine */ in imx_audio_rpmsg_probe() 94 dev_err(&rpdev->dev, "failed to register rpmsg platform.\n"); in imx_audio_rpmsg_probe() 99 "imx-audio-rpmsg", in imx_audio_rpmsg_probe() 104 dev_err(&rpdev->dev, "failed to register rpmsg card.\n"); in imx_audio_rpmsg_probe() 121 dev_info(&rpdev->dev, "audio rpmsg drive in imx_audio_rpmsg_remove() [all...] |
| H A D | imx-pcm-rpmsg.c | 8 #include <linux/rpmsg.h> 17 #include "imx-pcm-rpmsg.h" 44 dev_err(info->dev, "rpmsg channel not ready\n"); in imx_rpmsg_pcm_send_message() 64 /* wait response from rpmsg */ in imx_rpmsg_pcm_send_message() 225 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); in imx_rpmsg_timer_callback() 255 pcm_hardware.buffer_bytes_max = rpmsg->buffer_size[substream->stream]; in imx_rpmsg_pcm_open() 312 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); in imx_rpmsg_pcm_close() 320 rpmsg->enable_lpa) { in imx_rpmsg_pcm_prepare() 326 rpmsg->force_lpa = 1; in imx_rpmsg_pcm_prepare() 328 rpmsg in imx_rpmsg_pcm_prepare() 234 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); imx_rpmsg_pcm_open() local 321 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); imx_rpmsg_pcm_prepare() local 466 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); imx_rpmsg_pcm_trigger() local 520 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); imx_rpmsg_pcm_ack() local 599 struct fsl_rpmsg *rpmsg = dev_get_drvdata(cpu_dai->dev); imx_rpmsg_pcm_new() local [all...] |
| H A D | Kconfig | 127 tristate "NXP Audio Base On RPMSG support" 130 depends on RPMSG 134 Say Y if you want to add rpmsg audio support for the Freescale CPUs. 151 depends on RPMSG 356 tristate "SoC Audio support for i.MX boards with rpmsg" 357 depends on RPMSG 363 SoC Audio support for i.MX boards with rpmsg. 364 There should be rpmsg devices defined in other core (M core) 366 a rpmsg devices.
|
| H A D | imx-pcm-rpmsg.h | 6 * Communication stack of audio with rpmsg 282 /* RPMSG Command (TYPE A)*/ 311 /* RPMSG Command (TYPE C)*/ 350 /* rpmsg version */ 358 * struct rpmsg_head: rpmsg header structure 377 * struct param_s: sent rpmsg parameter 400 * struct param_s: send rpmsg parameter 434 /* Struct of rpmsg */ 440 /* Struct of rpmsg for workqueue */ 458 * struct rpmsg_info: rpmsg audio information [all …]
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-rpmsg | 1 What: /sys/bus/rpmsg/devices/.../name 6 Every rpmsg device is a communication channel with a remote 9 rpmsg.h). 13 What: /sys/bus/rpmsg/devices/.../src 18 Every rpmsg device is a communication channel with a remote 19 processor. Channels have a local ("source") rpmsg address, 20 and remote ("destination") rpmsg address. When an entity 22 a unique rpmsg address (a 32 bits integer). This way when 23 inbound messages arrive to this address, the rpmsg core 26 This sysfs entry contains the src (local) rpmsg address [all …]
|
| /linux/drivers/rpmsg/ |
| H A D | Kconfig | 3 menu "Rpmsg drivers" 5 # RPMSG always gets selected by whoever wants it 6 config RPMSG config 10 tristate "RPMSG device interface" 11 depends on RPMSG 14 Say Y here to export rpmsg endpoints as device files, usually found 16 receive rpmsg packets. 19 tristate "RPMSG control interface" 20 depends on RPMSG && ( RPMSG_CHAR || RPMSG_CHAR=n ) 27 tristate "RPMSG name service announcement" [all …]
|
| H A D | rpmsg_ns.c | 8 #include <linux/rpmsg.h> 9 #include <linux/rpmsg/ns.h> 19 * basis for the rpmsg name service device. 84 * Create the NS announcement service endpoint associated to the RPMsg in rpmsg_ns_probe() 85 * device. The endpoint will be automatically destroyed when the RPMsg in rpmsg_ns_probe() 109 pr_err("%s: Failed to register rpmsg driver\n", __func__); in rpmsg_ns_init() 121 MODULE_DESCRIPTION("Name service announcement rpmsg driver"); 123 MODULE_ALIAS("rpmsg:" KBUILD_MODNAME);
|
| H A D | rpmsg_ctrl.c | 10 * Based on rpmsg performance statistics driver by Michal Simek, which in turn 11 * was based on TI & Google OMX rpmsg driver. 22 #include <linux/rpmsg.h> 26 #include <uapi/linux/rpmsg.h> 43 * @rpdev: underlaying rpmsg device 228 pr_err("failed to register rpmsg driver\n"); in rpmsg_ctrldev_init() 243 MODULE_DESCRIPTION("rpmsg control interface"); 244 MODULE_ALIAS("rpmsg:" KBUILD_MODNAME);
|
| H A D | rpmsg_char.h | 16 * This function create a new rpmsg char endpoint device to instantiate a new 26 * This function destroys a rpmsg char endpoint device created by the RPMSG_DESTROY_EPT_IOCTL
|
| /linux/include/linux/ |
| H A D | rpmsg.h | 16 #include <linux/device-id/rpmsg.h> 20 #include <linux/rpmsg/byteorder.h> 21 #include <uapi/linux/rpmsg.h> 41 * rpmsg_device - device that belong to the rpmsg bus 43 * @id: device id (used to match between rpmsg drivers and devices) 46 * @ept: the rpmsg endpoint of this channel 47 * @announce: if set, rpmsg will announce the creation/removal of this channel 66 * struct rpmsg_endpoint - binds a local rpmsg address to its user 67 * @rpdev: rpmsg channel device 72 * @addr: local rpmsg address [all …]
|
| /linux/drivers/tty/ |
| H A D | rpmsg_tty.c | 5 * The rpmsg tty driver implements serial communication on the RPMsg bus to makes 6 * possible for user-space programs to send and receive rpmsg messages as a standard 9 * The remote processor can instantiate a new tty by requesting a "rpmsg-tty" RPMsg service. 10 * The "rpmsg-tty" service is directly used for data exchange. No flow control is implemented yet. 16 #include <linux/rpmsg.h> 31 int id; /* TTY rpmsg index */ 32 struct rpmsg_device *rpdev; /* rpmsg device */ 94 * hung until a rpmsg buffer is available. In such case rpmsg_trysend returns -ENOMEM. in rpmsg_tty_write() 207 dev_dbg(&rpdev->dev, "Removing rpmsg tty device %d\n", cport->id); in rpmsg_tty_remove() 218 { .name = "rpmsg-tty" }, [all …]
|
| /linux/include/uapi/linux/ |
| H A D | rpmsg.h | 32 * Destroy a rpmsg char device endpoint created by the RPMSG_CREATE_EPT_IOCTL. 37 * Instantiate a new local rpmsg service device. 42 * Release a local rpmsg device. 47 * Get the flow control state of the remote rpmsg char device. 52 * Set the flow control state of the local rpmsg char device.
|
| /linux/include/linux/rpmsg/ |
| H A D | ns.h | 7 #include <linux/rpmsg.h> 8 #include <linux/rpmsg/byteorder.h> 19 * rpmsg channel (i.e device) is created/destroyed. In turn, the ->probe() 20 * or ->remove() handler of the appropriate rpmsg driver will be invoked
|
| /linux/samples/rpmsg/ |
| H A D | rpmsg_client_sample.c | 14 #include <linux/rpmsg.h> 77 dev_info(&rpdev->dev, "rpmsg sample client driver is removed\n"); in rpmsg_sample_remove() 81 { .name = "rpmsg-client-sample" }, 84 MODULE_DEVICE_TABLE(rpmsg, rpmsg_driver_sample_id_table);
|
| /linux/drivers/net/wwan/ |
| H A D | rpmsg_wwan_ctrl.c | 6 #include <linux/rpmsg.h> 10 /* Lower level is a rpmsg dev, upper level is a wwan port */ 148 /* RPMSG channels for Qualcomm SoCs with integrated modem */ 154 MODULE_DEVICE_TABLE(rpmsg, rpmsg_wwan_ctrl_id_table); 165 MODULE_DESCRIPTION("RPMSG WWAN CTRL Driver");
|
| /linux/drivers/cdx/controller/ |
| H A D | cdx_rpmsg.c | 8 #include <linux/rpmsg.h> 24 MODULE_DEVICE_TABLE(rpmsg, cdx_rpmsg_id_table); 183 /* Register RPMsg driver */ in cdx_setup_rpmsg() 190 "Failed to register cdx RPMsg driver: %d\n", ret); in cdx_setup_rpmsg()
|
| /linux/drivers/media/platform/st/sti/delta/ |
| H A D | delta-ipc.c | 7 #include <linux/rpmsg.h> 123 "%s ipc: failed to open, rpmsg is not initialized\n", in delta_ipc_open() 172 /* build rpmsg message */ in delta_ipc_open() 246 "%s ipc: failed to set stream, rpmsg is not initialized\n", in delta_ipc_set_stream() 277 /* build rpmsg message */ in delta_ipc_set_stream() 337 "%s ipc: failed to decode, rpmsg is not initialized\n", in delta_ipc_decode() 388 /* build rpmsg message */ in delta_ipc_decode() 455 "%s ipc: failed to close, rpmsg is not initialized\n", in delta_ipc_close() 460 /* build rpmsg message */ in delta_ipc_close() 569 {.name = "rpmsg-delta"},
|
| /linux/include/linux/device-id/ |
| H A D | rpmsg.h | 9 /* rpmsg */ 12 #define RPMSG_DEVICE_MODALIAS_FMT "rpmsg:%s"
|
| /linux/drivers/net/wireless/ath/wcn36xx/ |
| H A D | Kconfig | 6 depends on RPMSG || RPMSG=n
|
| /linux/net/qrtr/ |
| H A D | Kconfig | 19 depends on RPMSG || (COMPILE_TEST && RPMSG=n)
|
| H A D | smd.c | 9 #include <linux/rpmsg.h> 109 MODULE_ALIAS("rpmsg:IPCRTR");
|
| /linux/samples/ |
| H A D | Kconfig | 124 tristate "Build rpmsg client sample -- loadable modules only" 125 depends on RPMSG && m 127 Build an rpmsg client sample driver, which demonstrates how 129 the rpmsg bus.
|
| /linux/include/linux/cdx/ |
| H A D | mcdi.h | 12 #include <linux/rpmsg.h> 56 * @rpdev: RPMsg device 57 * @ept: RPMsg endpoint
|
| /linux/Documentation/staging/ |
| H A D | index.rst | 13 rpmsg
|