diff options
| author | Vignesh Raghavendra <[email protected]> | 2022-05-25 13:38:45 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-06-10 13:37:32 -0400 |
| commit | 7e9e38677326ea2bbe37ba98d596a3f89e5a86c3 (patch) | |
| tree | e5dc2cf53dfa0feab59219d25c4eab25955f73e9 /drivers | |
| parent | 720d37ff27583d10c30c6f5dcaadb0dfedde8964 (diff) | |
firmware: ti_sci_static_data: add static DMA chan data
Add range of DMA channels available for R5 SPL usage before DM firmware
is loaded.
Signed-off-by: Vignesh Raghavendra <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/firmware/ti_sci_static_data.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/firmware/ti_sci_static_data.h b/drivers/firmware/ti_sci_static_data.h index e6a3b66c03f..8529ef29007 100644 --- a/drivers/firmware/ti_sci_static_data.h +++ b/drivers/firmware/ti_sci_static_data.h @@ -118,6 +118,19 @@ static struct ti_sci_resource_static_data rm_static_data[] = { }; #endif /* CONFIG_TARGET_J721S2_R5_EVM */ +#if IS_ENABLED(CONFIG_SOC_K3_AM625) +static struct ti_sci_resource_static_data rm_static_data[] = { + /* BC channels */ + { + .dev_id = 26, + .subtype = 32, + .range_start = 18, + .range_num = 2, + }, + { }, +}; +#endif /* CONFIG_SOC_K3_AM625 */ + #else static struct ti_sci_resource_static_data rm_static_data[] = { { }, |
