mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
media: venus: core: Hook to V6 base registers when appropriate
This commit points the IO base registers 6xx offsets when probing for 6xx hardware. Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
e6dd8c3adf
commit
3f9acde81d
@@ -210,13 +210,23 @@ err:
|
||||
|
||||
static void venus_assign_register_offsets(struct venus_core *core)
|
||||
{
|
||||
core->vbif_base = core->base + VBIF_BASE;
|
||||
core->cpu_base = core->base + CPU_BASE;
|
||||
core->cpu_cs_base = core->base + CPU_CS_BASE;
|
||||
core->cpu_ic_base = core->base + CPU_IC_BASE;
|
||||
core->wrapper_base = core->base + WRAPPER_BASE;
|
||||
core->wrapper_tz_base = 0;
|
||||
core->aon_base = 0;
|
||||
if (IS_V6(core)) {
|
||||
core->vbif_base = core->base + VBIF_BASE;
|
||||
core->cpu_base = core->base + CPU_BASE_V6;
|
||||
core->cpu_cs_base = core->base + CPU_CS_BASE_V6;
|
||||
core->cpu_ic_base = core->base + CPU_IC_BASE_V6;
|
||||
core->wrapper_base = core->base + WRAPPER_BASE_V6;
|
||||
core->wrapper_tz_base = core->base + WRAPPER_TZ_BASE_V6;
|
||||
core->aon_base = core->base + AON_BASE_V6;
|
||||
} else {
|
||||
core->vbif_base = core->base + VBIF_BASE;
|
||||
core->cpu_base = core->base + CPU_BASE;
|
||||
core->cpu_cs_base = core->base + CPU_CS_BASE;
|
||||
core->cpu_ic_base = core->base + CPU_IC_BASE;
|
||||
core->wrapper_base = core->base + WRAPPER_BASE;
|
||||
core->wrapper_tz_base = 0;
|
||||
core->aon_base = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static int venus_probe(struct platform_device *pdev)
|
||||
|
||||
Reference in New Issue
Block a user