diff options
author | Pandiyan, Dhinakaran <dhinakaran.pandiyan@intel.com> | 2017-03-16 03:10:24 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-03-22 16:46:21 -0400 |
commit | a538d6137dffc5dc8082b9ebe9819c4106fa3f83 (patch) | |
tree | e49730b9fd158ffe3e1eec81caa3b29464ad3923 /drivers/gpu/drm/drm_dp_mst_topology.c | |
parent | eadf71cd8c6d837828b4e95e9130f666ab7b4c61 (diff) |
drm/dp: Kill total_pbn and total_slots in struct drm_dp_mst_topology_mgr
The total vcpi time slots is always 63 and does not depend on the link BW,
remove total_slots from MST topology manager struct. The next change is to
remove total_pbn which is hardcoded to 2560. The total PBN that the
topology manager allocates from depends on the link rate and is not a
constant. So, fix this by removing the total_pbn member itself.
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Archit Taneja <architt@codeaurora.org>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Harry Wentland <Harry.wentland@amd.com>
Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1489648231-30700-2-git-send-email-dhinakaran.pandiyan@intel.com
Diffstat (limited to 'drivers/gpu/drm/drm_dp_mst_topology.c')
-rw-r--r-- | drivers/gpu/drm/drm_dp_mst_topology.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c index f2cc375907d0..66a611afa82a 100644 --- a/drivers/gpu/drm/drm_dp_mst_topology.c +++ b/drivers/gpu/drm/drm_dp_mst_topology.c | |||
@@ -2042,9 +2042,8 @@ int drm_dp_mst_topology_mgr_set_mst(struct drm_dp_mst_topology_mgr *mgr, bool ms | |||
2042 | goto out_unlock; | 2042 | goto out_unlock; |
2043 | } | 2043 | } |
2044 | 2044 | ||
2045 | mgr->total_pbn = 2560; | 2045 | /* max. time slots - one slot for MTP header */ |
2046 | mgr->total_slots = DIV_ROUND_UP(mgr->total_pbn, mgr->pbn_div); | 2046 | mgr->avail_slots = 63; |
2047 | mgr->avail_slots = mgr->total_slots; | ||
2048 | 2047 | ||
2049 | /* add initial branch device at LCT 1 */ | 2048 | /* add initial branch device at LCT 1 */ |
2050 | mstb = drm_dp_add_mst_branch_device(1, NULL); | 2049 | mstb = drm_dp_add_mst_branch_device(1, NULL); |