Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 367
topology2: ssp: Add blob version#7363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| # Simple hardware config class definition for HDA/SDW/DMIC type DAIs. All attributes defined herein | ||
| # are namespaced by alsatplg to "Object.Base.hw_config.1.attribute_name" | ||
| # | ||
| # Object.Base.hw_config.1 { | ||
| # id 0 | ||
| # name "HDA0" | ||
| # } | ||
| # | ||
| # where 1 is the unique instance ID for the hw_config object within the same alsaconf | ||
| # node. | ||
| Class.Base."hw_config" { | ||
| # | ||
| # Argument used to construct hw config (hw config ID) | ||
| # | ||
| DefineAttribute."id" {} | ||
| DefineAttribute."instance" {} | ||
| DefineAttribute."name" { | ||
| type "string" | ||
| } | ||
| attributes { | ||
| !constructor [ | ||
| "id" | ||
| ] | ||
| !mandatory [ | ||
| "name" | ||
| ] | ||
| # | ||
| # hw_config objects instantiated within the same alsaconf node must have unique | ||
| # 'instance' attribute | ||
| unique "instance" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -22,6 +22,9 @@ Object.Dai.SSP [ | ||
| tdm_slots 1 | ||
| tx_slots 1 | ||
| rx_slots 1 | ||
| Object.Base.link_config.1 { | ||
| clock_source 0 | ||
| } | ||
| } | ||
| Object.Base.hw_config.2 { | ||
| id 1 | ||
| @@ -37,6 +40,9 @@ Object.Dai.SSP [ | ||
| tdm_slots 1 | ||
| tx_slots 1 | ||
| rx_slots 1 | ||
| Object.Base.link_config.1 { | ||
| clock_source 0 | ||
| } | ||
| } | ||
| Object.Base.hw_config.3 { | ||
| id 2 | ||
| @@ -51,6 +57,9 @@ Object.Dai.SSP [ | ||
| tdm_slots 2 | ||
| tx_slots 3 | ||
| rx_slots 3 | ||
| Object.Base.link_config.1 { | ||
| clock_source 0 | ||
kv2019i marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| } | ||
| } | ||
| } | ||
| ] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -21,6 +21,9 @@ Object.Dai.SSP [ | ||
| tdm_slots 1 | ||
| tx_slots 1 | ||
| rx_slots 1 | ||
| Object.Base.link_config.1 { | ||
| clock_source 0 | ||
| } | ||
| } | ||
| Object.Base.hw_config.2 { | ||
| id 1 | ||
| @@ -36,6 +39,9 @@ Object.Dai.SSP [ | ||
| tdm_slots 1 | ||
| tx_slots 1 | ||
| rx_slots 1 | ||
| Object.Base.link_config.1 { | ||
| clock_source 0 | ||
| } | ||
| } | ||
| Object.Base.hw_config.3 { | ||
| id 2 | ||
| @@ -50,6 +56,9 @@ Object.Dai.SSP [ | ||
| tdm_slots 2 | ||
| tx_slots 3 | ||
| rx_slots 0 | ||
| Object.Base.link_config.1 { | ||
| clock_source 0 | ||
| ||
| } | ||
| } | ||
| } | ||
| ] | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.