mirror of
https://github.com/torvalds/linux.git
synced 2026-05-01 13:02:35 -04:00
NXP LPC32xx SPI controllers supports DMA operations over rx-tx channel, which is muxed with SSP SPI controller DMA. For additional reference see Table 69 in NXP LPC32xx User Manual. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com> Link: https://patch.msgid.link/20260109075032.3287109-1-vz@mleia.com Signed-off-by: Mark Brown <broonie@kernel.org>
53 lines
881 B
YAML
53 lines
881 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/spi/nxp,lpc3220-spi.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: NXP LPC3220 SPI controller
|
|
|
|
maintainers:
|
|
- Frank Li <Frank.Li@nxp.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- nxp,lpc3220-spi
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
dmas:
|
|
maxItems: 1
|
|
|
|
dma-names:
|
|
const: rx-tx
|
|
|
|
allOf:
|
|
- $ref: spi-controller.yaml#
|
|
|
|
unevaluatedProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/lpc32xx-clock.h>
|
|
|
|
spi@20088000 {
|
|
compatible = "nxp,lpc3220-spi";
|
|
reg = <0x20088000 0x1000>;
|
|
clocks = <&clk LPC32XX_CLK_SPI1>;
|
|
dmas = <&dmamux 11 1 0>;
|
|
dma-names = "rx-tx";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
|