mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
16b5329d9d
Add new device driver to provide a standard interface for its clients (like RemoteFS and RFSA) to be able to memory map their respective allotted shared memory address in the client's address space. The shared memory (a transport buffer) address is unique for each individual client and is made available to the driver via device tree. This driver uses the existing UIO framework to facilitate the clients mmap requirements. Each individual client will be able to use a unique UIO device for this purpose. CRs-Fixed: 477427 Bug: 12784954 Change-Id: If07b88086b5f1b87845962818094644575629fcf Signed-off-by: Pratibhasagar V <pratibha@codeaurora.org> Signed-off-by: Venkat Gopalakrishnan <venkatg@codeaurora.org> Signed-off-by: Mekala Natarajan <mekalan@codeaurora.org>
10 lines
414 B
Makefile
10 lines
414 B
Makefile
obj-$(CONFIG_UIO) += uio.o
|
|
obj-$(CONFIG_UIO_CIF) += uio_cif.o
|
|
obj-$(CONFIG_UIO_PDRV) += uio_pdrv.o
|
|
obj-$(CONFIG_UIO_PDRV_GENIRQ) += uio_pdrv_genirq.o
|
|
obj-$(CONFIG_UIO_AEC) += uio_aec.o
|
|
obj-$(CONFIG_UIO_SERCOS3) += uio_sercos3.o
|
|
obj-$(CONFIG_UIO_PCI_GENERIC) += uio_pci_generic.o
|
|
obj-$(CONFIG_UIO_NETX) += uio_netx.o
|
|
obj-$(CONFIG_UIO_PRUSS) += uio_pruss.o
|
|
obj-$(CONFIG_UIO_MSM_SHAREDMEM) += msm_sharedmem.o
|