mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00
fix(tc): fix SMMU streamId for tc4 gpu
Currently used stream id 0x200 gives below fault, [ 9.547393][ C0] mali 2d000000.gpu: Unexpected Page fault in firmware address space at VA 0x0000000000000000 [ 9.547393][ C0] raw fault status: 0x400D02C0 [ 9.547393][ C0] exception type 0xC0: TRANSLATION_FAULT at level 0 [ 9.547393][ C0] access type 0x2: READ As per the GPU team, GPU stream id is 0 on TC4-FPGA so change it. Change-Id: I3aed62289c5b96fb850f0022ea7f5172c606eb95 Signed-off-by: Vishnu Satheesh <vishnu.satheesh@arm.com> Signed-off-by: Jagdish Gediya <jagdish.gediya@arm.com> Signed-off-by: Icen.Zeyada <Icen.Zeyada2@arm.com>
This commit is contained in:
parent
001f22cdd4
commit
bf223c7937
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@
|
|||
gpu: gpu@2d000000 {
|
||||
interrupts = <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
interrupt-names = "IRQAW";
|
||||
iommus = <&smmu_700 0x200>;
|
||||
iommus = <&smmu_700 0x0>;
|
||||
};
|
||||
|
||||
dsu-pmu {
|
||||
|
|
Loading…
Add table
Reference in a new issue