mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
82c082784e
Fix build error in firmware/imx/ selecting SOC_BUS.
riscv32-linux-ld: drivers/firmware/imx/imx-scu-soc.o: in function `.L9':
imx-scu-soc.c:(.text+0x1b0): undefined reference to `soc_device_register'
Fixes: edbee095fa
("firmware: imx: add SCU firmware driver support")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Atish Patra <atish.patra@wdc.com>
Cc: Palmer Dabbelt <palmerdabbelt@google.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
Cc: Anson Huang <Anson.Huang@nxp.com>
Cc: Daniel Baluta <daniel.baluta@nxp.com>
Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
31 lines
968 B
Plaintext
31 lines
968 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config IMX_DSP
|
|
tristate "IMX DSP Protocol driver"
|
|
depends on IMX_MBOX
|
|
help
|
|
This enables DSP IPC protocol between host AP (Linux)
|
|
and the firmware running on DSP.
|
|
DSP exists on some i.MX8 processors (e.g i.MX8QM, i.MX8QXP).
|
|
|
|
It acts like a doorbell. Client might use shared memory to
|
|
exchange information with DSP side.
|
|
|
|
config IMX_SCU
|
|
bool "IMX SCU Protocol driver"
|
|
depends on IMX_MBOX
|
|
select SOC_BUS
|
|
help
|
|
The System Controller Firmware (SCFW) is a low-level system function
|
|
which runs on a dedicated Cortex-M core to provide power, clock, and
|
|
resource management. It exists on some i.MX8 processors. e.g. i.MX8QM
|
|
(QM, QP), and i.MX8QX (QXP, DX).
|
|
|
|
This driver manages the IPC interface between host CPU and the
|
|
SCU firmware running on M4.
|
|
|
|
config IMX_SCU_PD
|
|
bool "IMX SCU Power Domain driver"
|
|
depends on IMX_SCU
|
|
help
|
|
The System Controller Firmware (SCFW) based power domain driver.
|