Skip to content

Commit 5fd73c5

Browse files
mattropejnikula
authored andcommitted
drm/i915: Update bw_buddy pagemask table
A recent bspec update removed the LPDDR4 single channel entry from the buddy register table, but added a new four-channel entry. Workaround 1409767108 hasn't been updated with any guidance for four channel configurations, so we leave that alternate table unchanged for now. Bspec 49218 Fixes: 3fa01d6 ("drm/i915/tgl: Program BW_BUDDY registers during display init") Signed-off-by: Matt Roper <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Reviewed-by: Lucas De Marchi <[email protected]> Signed-off-by: Rodrigo Vivi <[email protected]> (cherry picked from commit ecb40d0) Signed-off-by: Jani Nikula <[email protected]>
1 parent b7c6646 commit 5fd73c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/display/intel_display_power.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5240,10 +5240,10 @@ struct buddy_page_mask {
52405240
};
52415241

52425242
static const struct buddy_page_mask tgl_buddy_page_masks[] = {
5243-
{ .num_channels = 1, .type = INTEL_DRAM_LPDDR4, .page_mask = 0xE },
52445243
{ .num_channels = 1, .type = INTEL_DRAM_DDR4, .page_mask = 0xF },
52455244
{ .num_channels = 2, .type = INTEL_DRAM_LPDDR4, .page_mask = 0x1C },
52465245
{ .num_channels = 2, .type = INTEL_DRAM_DDR4, .page_mask = 0x1F },
5246+
{ .num_channels = 4, .type = INTEL_DRAM_LPDDR4, .page_mask = 0x38 },
52475247
{}
52485248
};
52495249

0 commit comments

Comments
 (0)