mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 07:13:56 -04:00
On the Amlogic A1, the SPI FC controller can require a power-domain to operate, add it as optional. Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://msgid.link/r/20240605-topic-amlogic-upstream-bindings-fixes-power-domains-spifc-v1-1-380f29ba4a16@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
45 lines
760 B
YAML
45 lines
760 B
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/spi/amlogic,a1-spifc.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Amlogic A1 SPI Flash Controller
|
|
|
|
maintainers:
|
|
- Martin Kurbanov <mmkurbanov@sberdevices.ru>
|
|
|
|
allOf:
|
|
- $ref: spi-controller.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- amlogic,a1-spifc
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
spi@fd000400 {
|
|
compatible = "amlogic,a1-spifc";
|
|
reg = <0xfd000400 0x290>;
|
|
clocks = <&clkc_clkid_spifc>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|