This commit modifies the I2S driver to work for STM32H7 family of MCU's. Currently only TX is working. Tested on nucleo_stm32h743zi. Requires dma1 & dmamux1 to be enabled. Signed-off-by: Emil Lindqvist <emil@lindq.gr>
31 lines
547 B
YAML
31 lines
547 B
YAML
# Copyright (c) 2018, STMicroelectronics
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Common fields for STM32 I2S peripherals.
|
|
|
|
include: [i2s-controller.yaml, pinctrl-device.yaml]
|
|
|
|
properties:
|
|
reg:
|
|
required: true
|
|
|
|
interrupts:
|
|
required: true
|
|
|
|
dmas:
|
|
required: true
|
|
|
|
dma-names:
|
|
required: true
|
|
|
|
pinctrl-0:
|
|
required: true
|
|
|
|
pinctrl-names:
|
|
required: true
|
|
|
|
mck-enabled:
|
|
type: boolean
|
|
description: |
|
|
Master Clock Output function.
|
|
An mck pin must be listed within pinctrl-0 when enabling this property.
|