mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
Add a platform driver for the Cix Sky1 AUDSS CRU. The driver maps the CRU registers and registers mux, divider and gate clocks for DSP, SRAM, HDA, DMAC, I2S, mailbox, watchdog and timer blocks. Four SoC-level audio reference clocks are enabled as inputs to the internal clock tree. The driver releases the AUDSS NOC reset, enables runtime PM and instantiates the auxiliary reset device. Signed-off-by: Joakim Zhang <joakim.zhang@cixtech.com> Reviewed-by: Brian Masney <bmasney@redhat.com> Signed-off-by: Brian Masney <bmasney@redhat.com>
17 lines
580 B
Plaintext
17 lines
580 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
# Audio subsystem clock support for Cixtech SoC family
|
|
menu "Cixtech Audio Subsystem Clock Driver"
|
|
|
|
config CLK_SKY1_AUDSS
|
|
tristate "Cixtech Sky1 Audio Subsystem Clock Driver"
|
|
depends on ARCH_CIX || COMPILE_TEST
|
|
select AUXILIARY_BUS
|
|
select REGMAP_MMIO
|
|
select RESET_CONTROLLER
|
|
help
|
|
Support for the Audio Subsystem clock controller present on
|
|
Cixtech Sky1 SoC. This driver provides mux, divider and gate
|
|
clocks for DSP, I2S, HDA and related blocks in the audio
|
|
subsystem. Say M or Y here if you want to build this driver.
|
|
endmenu
|