+ Jason and Ken Quoting Francisco Jerez (2020-06-05 00:34:57) > Ayaz A Siddiqui <ayaz.siddiqui@xxxxxxxxx> writes: > > > In order to avoid functional breakage of mis-programmed applications that > > have grown to depend on unused MOCS entries, we are programming > > those entries to be equal to fully cached ("L3 + LLC") entry as per the > > recommendation from architecture team. > > > > These reserved and unspecified entries should not be used as they may be > > changed to less performant variants with better coherency in the future > > if more entries are needed. This patch message needs reworking. It should just standalone describe the technical reasoning behind the patch completely, without referring to elsewhere or to some other decision. The patch should also Cc: relevant developers who have previously been working on the MOCS code and the userspace driver folks (Mesa, compute and media). > This change seems highly questionable to me... If a future kernel > release introduces a new MOCS entry with more strict coherency > semantics, and an application starts relying on it, that application > won't work when run on an older kernel version with this patch is > applied. IOW setting uninitialized entries to the most strict caching > setting available (UC) ensures forwards compatibility with future > userspace, which seems like a more important design principle than > giving full caching to broken userspace that accidentally makes use of > an undefined MOCS entry not part of the kernel ABI. Both choices were considered, and ultimately Ken and Jason were more in favor of 'worst coherency' if using reserved MOCS entry. Your concern about newer software on older kernel is valid. But the starting point of the decision is the no-regression policy of Linux. If we have some application developed on an older kernel where the MOCS entry is unused and would be UC (best coherency), we would have no choice but to keep that entry unused indefinitely not to break the mis-programmed application. Now we have the worst coherency by default if an application is using reserved entry, making it more likely to be noticed at develop time. And even if it would not be noticed, modifying the entry for better coherency should not functionally break the application. Regards, Joonas > > Signed-off-by: Ayaz A Siddiqui <ayaz.siddiqui@xxxxxxxxx> > > Cc: Joonas Lahtinen <joonas.lahtinen@xxxxxxxxxxxxxxx> > > --- > > drivers/gpu/drm/i915/gt/intel_mocs.c | 93 ++++++++++++++++++++++++++-- > > 1 file changed, 89 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c > > index 632e08a4592b..1089bd5fdba2 100644 > > --- a/drivers/gpu/drm/i915/gt/intel_mocs.c > > +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c > > @@ -234,10 +234,6 @@ static const struct drm_i915_mocs_entry broxton_mocs_table[] = { > > L3_1_UC) > > > > static const struct drm_i915_mocs_entry tgl_mocs_table[] = { > > - /* Base - Error (Reserved for Non-Use) */ > > - MOCS_ENTRY(0, 0x0, 0x0), > > - /* Base - Reserved */ > > - MOCS_ENTRY(1, 0x0, 0x0), > > > > GEN11_MOCS_ENTRIES, > > > > @@ -265,6 +261,95 @@ static const struct drm_i915_mocs_entry tgl_mocs_table[] = { > > MOCS_ENTRY(61, > > LE_1_UC | LE_TC_1_LLC, > > L3_3_WB), > > + > > + /* NOTE: > > + * Reserved and unspecified MOCS indices have been set to (L3 + LCC). > > + * These reserved entry should never be used, they may be chanaged > > + * to low performant variants with better coherency in the future if > > + * more entries are needed. > > + */ > > + > > + /* Reserved index 0 and 1 */ > > + MOCS_ENTRY(0, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(1, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + > > + /* Reserved index 16 and 17 */ > > + MOCS_ENTRY(16, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(17, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + > > + /* Reserved index 24 and 25 */ > > + MOCS_ENTRY(24, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(25, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + > > + /* Unspecified indices 26 to 47 */ > > + MOCS_ENTRY(26, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(27, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(28, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(29, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(30, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(31, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(32, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(33, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(34, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(35, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(36, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(37, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(38, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(39, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(40, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(41, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(42, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(43, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(44, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(45, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(46, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(47, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + > > + /* Unspecified indices 52 to 59 */ > > + MOCS_ENTRY(52, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(53, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(54, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(55, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(56, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(57, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(58, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB), > > + MOCS_ENTRY(59, LE_3_WB | LE_TC_1_LLC | LE_LRUM(3), > > + L3_3_WB) > > }; > > > > static const struct drm_i915_mocs_entry icl_mocs_table[] = { > > -- > > 2.26.2 > > > > _______________________________________________ > > Intel-gfx mailing list > > Intel-gfx@xxxxxxxxxxxxxxxxxxxxx > > https://lists.freedesktop.org/mailman/listinfo/intel-gfx _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx