mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 00:04:01 -04:00
Pull MFD updates from Lee Jones:
"New Device Support
- Add support for {Power,Home} Keys to MediaTek MT6359
- Add support for SC2730 to Spreadtrum SPRD SC27XX SPI
- Add support for additional Alder Lake-P I2C Controllers to Intel
LPSS PCI
Fix-ups:
- Convert GPIO to GPIOD (hi655x-pmic)
- Only register devices that exist (cros_ec_dev)
- Remove unused code (syscon, reg-mux)
- Rework .remove() API to return void (twl-core, rt4831)
- Trivial - whitespace, spelling, coding style (tps65218,
sprd-sc27xx-spi, google,cros-ec)
- DT binding changes (samsung,exynos5433-lpass, rockchip,rk805,
rockchip,rk808, rockchip,rk809, rockchip,rk817, rockchip,rk818,
wlf,arizona)
Bug Fixes:
- Fix error handling bugs (ipaq-micro, davinci_voicecodec)"
* tag 'mfd-next-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd:
dt-bindings: cros-ec: Fix a typo in description
dt-bindings: mfd: wlf,arizona: Add spi-max-frequency
mfd: rt4831: Improve error reporting for problems during .remove()
mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe()
mfd: intel-lpss: Add support for ADL-P i2c6 and i2c7
dt-bindings: mfd: rk808: Convert bindings to yaml
mfd: twl4030: Make twl4030_exit_irq() return void
mfd: twl6030: Make twl6030_exit_irq() return void
dt-bindings: mfd: samsung,exynos5433-lpass: Fix 'dma-channels/requests' properties
mfd: sprd: Jugle {of,spi}_device_id tables into numerical order
mfd: sprd: Add SC2730 PMIC to SPI device ID table
dt-bindings: Drop undocumented i.MX iomuxc-gpr bindings in examples
mfd: cros_ec_dev: Only register PCHG device if present
mfd: mt6397-core: Add resources for PMIC keys for MT6359
mfd: mt6359: Add missing defines necessary for mtk-pmic-keys support
mfd: ipaq-micro: Fix error check return value of platform_get_irq()
mfd: hi655x-pmic: Replace legacy gpio interface for gpiod interface
mfd: tps65218: Fix trivial typo in comment
118 lines
3.0 KiB
YAML
118 lines
3.0 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/mfd/samsung,exynos5433-lpass.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Samsung Exynos SoC Low Power Audio Subsystem (LPASS)
|
|
|
|
maintainers:
|
|
- Krzysztof Kozlowski <krzk@kernel.org>
|
|
- Sylwester Nawrocki <s.nawrocki@samsung.com>
|
|
|
|
properties:
|
|
compatible:
|
|
const: samsung,exynos5433-lpass
|
|
|
|
'#address-cells':
|
|
const: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: sfr0_ctrl
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
ranges: true
|
|
|
|
reg:
|
|
minItems: 2
|
|
maxItems: 2
|
|
|
|
'#size-cells':
|
|
const: 1
|
|
|
|
patternProperties:
|
|
"^dma-controller@[0-9a-f]+$":
|
|
$ref: /schemas/dma/arm,pl330.yaml
|
|
|
|
"^i2s@[0-9a-f]+$":
|
|
$ref: /schemas/sound/samsung-i2s.yaml
|
|
|
|
"^serial@[0-9a-f]+$":
|
|
$ref: /schemas/serial/samsung_uart.yaml
|
|
|
|
required:
|
|
- compatible
|
|
- '#address-cells'
|
|
- clocks
|
|
- clock-names
|
|
- ranges
|
|
- reg
|
|
- '#size-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/exynos5433.h>
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
audio-subsystem@11400000 {
|
|
compatible = "samsung,exynos5433-lpass";
|
|
reg = <0x11400000 0x100>, <0x11500000 0x08>;
|
|
clocks = <&cmu_aud CLK_PCLK_SFR0_CTRL>;
|
|
clock-names = "sfr0_ctrl";
|
|
power-domains = <&pd_aud>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges;
|
|
|
|
dma-controller@11420000 {
|
|
compatible = "arm,pl330", "arm,primecell";
|
|
reg = <0x11420000 0x1000>;
|
|
interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&cmu_aud CLK_ACLK_DMAC>;
|
|
clock-names = "apb_pclk";
|
|
#dma-cells = <1>;
|
|
dma-channels = <8>;
|
|
dma-requests = <32>;
|
|
power-domains = <&pd_aud>;
|
|
};
|
|
|
|
i2s@11440000 {
|
|
compatible = "samsung,exynos7-i2s";
|
|
reg = <0x11440000 0x100>;
|
|
dmas = <&adma 0>, <&adma 2>;
|
|
dma-names = "tx", "rx";
|
|
interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
clocks = <&cmu_aud CLK_PCLK_AUD_I2S>,
|
|
<&cmu_aud CLK_SCLK_AUD_I2S>,
|
|
<&cmu_aud CLK_SCLK_I2S_BCLK>;
|
|
clock-names = "iis", "i2s_opclk0", "i2s_opclk1";
|
|
#clock-cells = <1>;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&i2s0_bus>;
|
|
power-domains = <&pd_aud>;
|
|
#sound-dai-cells = <1>;
|
|
};
|
|
|
|
serial@11460000 {
|
|
compatible = "samsung,exynos5433-uart";
|
|
reg = <0x11460000 0x100>;
|
|
interrupts = <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&cmu_aud CLK_PCLK_AUD_UART>,
|
|
<&cmu_aud CLK_SCLK_AUD_UART>;
|
|
clock-names = "uart", "clk_uart_baud0";
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&uart_aud_bus>;
|
|
power-domains = <&pd_aud>;
|
|
};
|
|
};
|