mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
0cfbb589d6
When CONFIG_HAS_IOMEM is not set/enabled, certain iomap() family
functions [including ioremap(), devm_ioremap(), etc.] are not
available.
Drivers that use these functions should depend on HAS_IOMEM so that
they do not cause build errors.
Rectifies these build errors:
s390-linux-ld: drivers/dma/qcom/hidma_mgmt.o: in function `hidma_mgmt_probe':
hidma_mgmt.c:(.text+0x780): undefined reference to `devm_ioremap_resource'
s390-linux-ld: drivers/dma/qcom/hidma_mgmt.o: in function `hidma_mgmt_init':
hidma_mgmt.c:(.init.text+0x126): undefined reference to `of_address_to_resource'
s390-linux-ld: hidma_mgmt.c:(.init.text+0x16e): undefined reference to `of_address_to_resource'
Fixes: 67a2003e06
("dmaengine: add Qualcomm Technologies HIDMA channel driver")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Sinan Kaya <okaya@codeaurora.org>
Cc: Vinod Koul <vkoul@kernel.org>
Cc: dmaengine@vger.kernel.org
Link: https://lore.kernel.org/r/20210522021313.16405-3-rdunlap@infradead.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config QCOM_ADM
|
|
tristate "Qualcomm ADM support"
|
|
depends on (ARCH_QCOM || COMPILE_TEST) && !PHYS_ADDR_T_64BIT
|
|
select DMA_ENGINE
|
|
select DMA_VIRTUAL_CHANNELS
|
|
help
|
|
Enable support for the Qualcomm Application Data Mover (ADM) DMA
|
|
controller, as present on MSM8x60, APQ8064, and IPQ8064 devices.
|
|
This controller provides DMA capabilities for both general purpose
|
|
and on-chip peripheral devices.
|
|
|
|
config QCOM_BAM_DMA
|
|
tristate "QCOM BAM DMA support"
|
|
depends on ARCH_QCOM || (COMPILE_TEST && OF && ARM)
|
|
select DMA_ENGINE
|
|
select DMA_VIRTUAL_CHANNELS
|
|
help
|
|
Enable support for the QCOM BAM DMA controller. This controller
|
|
provides DMA capabilities for a variety of on-chip devices.
|
|
|
|
config QCOM_GPI_DMA
|
|
tristate "Qualcomm Technologies GPI DMA support"
|
|
depends on ARCH_QCOM
|
|
select DMA_ENGINE
|
|
select DMA_VIRTUAL_CHANNELS
|
|
help
|
|
Enable support for the QCOM GPI DMA controller. This controller
|
|
provides DMA capabilities for a variety of peripheral buses such
|
|
as I2C, UART, and SPI. By using GPI dmaengine driver, bus drivers
|
|
can use a standardize interface that is protocol independent to
|
|
transfer data between DDR and peripheral.
|
|
|
|
config QCOM_HIDMA_MGMT
|
|
tristate "Qualcomm Technologies HIDMA Management support"
|
|
depends on HAS_IOMEM
|
|
select DMA_ENGINE
|
|
help
|
|
Enable support for the Qualcomm Technologies HIDMA Management.
|
|
Each DMA device requires one management interface driver
|
|
for basic initialization before QCOM_HIDMA channel driver can
|
|
start managing the channels. In a virtualized environment,
|
|
the guest OS would run QCOM_HIDMA channel driver and the
|
|
host would run the QCOM_HIDMA_MGMT management driver.
|
|
|
|
config QCOM_HIDMA
|
|
tristate "Qualcomm Technologies HIDMA Channel support"
|
|
select DMA_ENGINE
|
|
help
|
|
Enable support for the Qualcomm Technologies HIDMA controller.
|
|
The HIDMA controller supports optimized buffer copies
|
|
(user to kernel, kernel to kernel, etc.). It only supports
|
|
memcpy interface. The core is not intended for general
|
|
purpose slave DMA.
|