Skip to content

Commit

Permalink
Fix register offset Ultimo 4k (thanks Rockman)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dima73 committed Jul 11, 2017
1 parent a4b8cfd commit 8830a61
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/src/StbDetection/StbDetection.cpp
Expand Up @@ -297,12 +297,17 @@ bool CStb::DetectSTB()
case BRCM7376:
case BRCM7251:
case BRCM7252:
case BRCM7444:
registeroffset = 0xf0600000;
chr_luma_stride = 0x80;
chr_luma_register_offset = 0x3c;
mem2memdma_register = 0;
break;
case BRCM7444:
registeroffset = 0x10600000;
chr_luma_stride = 0x40;
chr_luma_register_offset = 0x34;
mem2memdma_register = 0;
break;
default:
break;
}
Expand Down

0 comments on commit 8830a61

Please sign in to comment.