power_domain: intel_adsp: initialize after DMA
Change the power_domain_intel_adsp initialization priority so that it initializes after the DMA driver that it depends on. Fixes a few: ERROR: /soc/dma@72c00 POST_KERNEL 40 69 < /soc/dfpmccu@71b00/hst_domain POST_KERNEL 75 65 ERROR: /soc/dma@72400 POST_KERNEL 40 66 < /soc/dfpmccu@71b00/hst_domain POST_KERNEL 75 65 ... Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
parent
be483d76d7
commit
3f0ee7f6db
1 changed files with 2 additions and 1 deletions
|
@ -80,6 +80,7 @@ static int pd_intel_adsp_init(const struct device *dev)
|
|||
}; \
|
||||
PM_DEVICE_DT_INST_DEFINE(id, pd_intel_adsp_pm_action); \
|
||||
DEVICE_DT_INST_DEFINE(id, pd_intel_adsp_init, PM_DEVICE_DT_INST_GET(id),\
|
||||
&pd_pg_reg##id, NULL, POST_KERNEL, 75, NULL);
|
||||
&pd_pg_reg##id, NULL, POST_KERNEL, \
|
||||
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, NULL);
|
||||
|
||||
DT_INST_FOREACH_STATUS_OKAY(POWER_DOMAIN_DEVICE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue