-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
driver: ssp: update Intel SSP DAI driver to support dynamic SSP link …
…management This commit refactors the Intel SSP DAI driver to support dynamic management of SSP links. The changes include the introduction of a new structure `intel_ssp_link` to encapsulate SSP link-specific data. Key changes: - Add new static functions to manage SSP link power. - Update the DAI SSP configuration functions to use the new link management approach. - Update device tree bindings and instances to reflect the new SSP link management mechanism. The new approach allows for more flexible and maintainable management of SSP links. Signed-off-by: Damian Nikodem <damian.nikodem@intel.com>
- Loading branch information
Showing
8 changed files
with
630 additions
and
337 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright (c) 2024 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
description: Intel SSP DAI controller | ||
|
||
compatible: "intel,ssp-link" | ||
|
||
include: base.yaml | ||
|
||
properties: | ||
reg: | ||
required: true | ||
|
||
link: | ||
type: int | ||
required: true | ||
|
||
interrupts: | ||
required: true | ||
|
||
interrupt-parent: | ||
required: true | ||
|
||
dmas: | ||
required: true | ||
|
||
dma-names: | ||
required: true | ||
|
||
i2svss: | ||
type: array |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.