All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/5] Removing enable_guc_loading module and Decoupling logs and ADS from submission
@ 2017-10-03 22:54 Sujaritha Sundaresan
  2017-10-04  7:06 ` Sagar Arun Kamble
  0 siblings, 1 reply; 3+ messages in thread
From: Sujaritha Sundaresan @ 2017-10-03 22:54 UTC (permalink / raw)
  To: intel-gfx; +Cc: Sujaritha Sundaresan

The first patch simpily unifies different seq_puts messages found in debugfs.
In earlier verions, Patch 1 and 2 were previuosly in one single patch. Patch 2 focuses
on replacing the enable_guc_loading module. Patch 3 and 4 deal with decoupling guc logs 
and ADS from submission. Patch 5 fixes a warning generated as a result of patch 4.

Cc: Anusha Srivatsa <anusha.srivatsa@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Oscar Mateo <oscar.mateo@intel.com>
Cc: Sagar Arun Kamble <sagar.a.kamble@intel.com>

Sujaritha Sundaresan (5):
  drm/i915/guc : Unifying seq_puts messages
  drm/i915/guc : Removing i915_modparams.enable_guc_loading module
  drm/i915/guc : Decouple logs and ADS from submission
  drm/i915/guc : group initialization of GuC objects
  drm/i915/guc : Fixing argument type warning

 drivers/gpu/drm/i915/i915_debugfs.c        |  21 +--
 drivers/gpu/drm/i915/i915_drv.h            |   9 +-
 drivers/gpu/drm/i915/i915_gem_context.c    |   2 +-
 drivers/gpu/drm/i915/i915_gem_gtt.c        |   2 +-
 drivers/gpu/drm/i915/i915_guc_submission.c | 118 +----------------
 drivers/gpu/drm/i915/i915_irq.c            |   2 +-
 drivers/gpu/drm/i915/i915_params.c         |   5 -
 drivers/gpu/drm/i915/i915_params.h         |   1 -
 drivers/gpu/drm/i915/intel_guc_loader.c    |   7 +-
 drivers/gpu/drm/i915/intel_guc_log.c       |   6 +-
 drivers/gpu/drm/i915/intel_huc.c           |   4 +-
 drivers/gpu/drm/i915/intel_uc.c            | 199 +++++++++++++++++++++++------
 drivers/gpu/drm/i915/intel_uc.h            |   7 +-
 drivers/gpu/drm/i915/intel_uncore.c        |   4 +-
 14 files changed, 202 insertions(+), 185 deletions(-)

-- 
1.9.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v5 0/5] Removing enable_guc_loading module and Decoupling logs and ADS from submission
  2017-10-03 22:54 [PATCH v5 0/5] Removing enable_guc_loading module and Decoupling logs and ADS from submission Sujaritha Sundaresan
@ 2017-10-04  7:06 ` Sagar Arun Kamble
  2017-10-04 17:24   ` Sujaritha
  0 siblings, 1 reply; 3+ messages in thread
From: Sagar Arun Kamble @ 2017-10-04  7:06 UTC (permalink / raw)
  To: Sujaritha Sundaresan, intel-gfx

Hi Sujaritha,

I am Unable to locate single series on patchwork for these changes.
Please send all patches together in single series with cover letter.
It will also enable CI BAT/IGT testing for the series.

Thanks
Sagar

On 10/4/2017 4:24 AM, Sujaritha Sundaresan wrote:
> The first patch simpily unifies different seq_puts messages found in debugfs.
> In earlier verions, Patch 1 and 2 were previuosly in one single patch. Patch 2 focuses
> on replacing the enable_guc_loading module. Patch 3 and 4 deal with decoupling guc logs
> and ADS from submission. Patch 5 fixes a warning generated as a result of patch 4.
>
> Cc: Anusha Srivatsa <anusha.srivatsa@intel.com>
> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Oscar Mateo <oscar.mateo@intel.com>
> Cc: Sagar Arun Kamble <sagar.a.kamble@intel.com>
>
> Sujaritha Sundaresan (5):
>    drm/i915/guc : Unifying seq_puts messages
>    drm/i915/guc : Removing i915_modparams.enable_guc_loading module
>    drm/i915/guc : Decouple logs and ADS from submission
>    drm/i915/guc : group initialization of GuC objects
>    drm/i915/guc : Fixing argument type warning
>
>   drivers/gpu/drm/i915/i915_debugfs.c        |  21 +--
>   drivers/gpu/drm/i915/i915_drv.h            |   9 +-
>   drivers/gpu/drm/i915/i915_gem_context.c    |   2 +-
>   drivers/gpu/drm/i915/i915_gem_gtt.c        |   2 +-
>   drivers/gpu/drm/i915/i915_guc_submission.c | 118 +----------------
>   drivers/gpu/drm/i915/i915_irq.c            |   2 +-
>   drivers/gpu/drm/i915/i915_params.c         |   5 -
>   drivers/gpu/drm/i915/i915_params.h         |   1 -
>   drivers/gpu/drm/i915/intel_guc_loader.c    |   7 +-
>   drivers/gpu/drm/i915/intel_guc_log.c       |   6 +-
>   drivers/gpu/drm/i915/intel_huc.c           |   4 +-
>   drivers/gpu/drm/i915/intel_uc.c            | 199 +++++++++++++++++++++++------
>   drivers/gpu/drm/i915/intel_uc.h            |   7 +-
>   drivers/gpu/drm/i915/intel_uncore.c        |   4 +-
>   14 files changed, 202 insertions(+), 185 deletions(-)
>

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v5 0/5] Removing enable_guc_loading module and Decoupling logs and ADS from submission
  2017-10-04  7:06 ` Sagar Arun Kamble
@ 2017-10-04 17:24   ` Sujaritha
  0 siblings, 0 replies; 3+ messages in thread
From: Sujaritha @ 2017-10-04 17:24 UTC (permalink / raw)
  To: Sagar Arun Kamble, intel-gfx



On 10/04/2017 12:06 AM, Sagar Arun Kamble wrote:
> Hi Sujaritha,
>
> I am Unable to locate single series on patchwork for these changes.
> Please send all patches together in single series with cover letter.
> It will also enable CI BAT/IGT testing for the series.
>
> Thanks
> Sagar

Sorry, I was not aware of this. I will make sure to send the revised patches
in a single series,

Thanks,
Sujaritha
>
> On 10/4/2017 4:24 AM, Sujaritha Sundaresan wrote:
>> The first patch simpily unifies different seq_puts messages found in 
>> debugfs.
>> In earlier verions, Patch 1 and 2 were previuosly in one single 
>> patch. Patch 2 focuses
>> on replacing the enable_guc_loading module. Patch 3 and 4 deal with 
>> decoupling guc logs
>> and ADS from submission. Patch 5 fixes a warning generated as a 
>> result of patch 4.
>>
>> Cc: Anusha Srivatsa <anusha.srivatsa@intel.com>
>> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Cc: Oscar Mateo <oscar.mateo@intel.com>
>> Cc: Sagar Arun Kamble <sagar.a.kamble@intel.com>
>>
>> Sujaritha Sundaresan (5):
>>    drm/i915/guc : Unifying seq_puts messages
>>    drm/i915/guc : Removing i915_modparams.enable_guc_loading module
>>    drm/i915/guc : Decouple logs and ADS from submission
>>    drm/i915/guc : group initialization of GuC objects
>>    drm/i915/guc : Fixing argument type warning
>>
>>   drivers/gpu/drm/i915/i915_debugfs.c        |  21 +--
>>   drivers/gpu/drm/i915/i915_drv.h            |   9 +-
>>   drivers/gpu/drm/i915/i915_gem_context.c    |   2 +-
>>   drivers/gpu/drm/i915/i915_gem_gtt.c        |   2 +-
>>   drivers/gpu/drm/i915/i915_guc_submission.c | 118 +----------------
>>   drivers/gpu/drm/i915/i915_irq.c            |   2 +-
>>   drivers/gpu/drm/i915/i915_params.c         |   5 -
>>   drivers/gpu/drm/i915/i915_params.h         |   1 -
>>   drivers/gpu/drm/i915/intel_guc_loader.c    |   7 +-
>>   drivers/gpu/drm/i915/intel_guc_log.c       |   6 +-
>>   drivers/gpu/drm/i915/intel_huc.c           |   4 +-
>>   drivers/gpu/drm/i915/intel_uc.c            | 199 
>> +++++++++++++++++++++++------
>>   drivers/gpu/drm/i915/intel_uc.h            |   7 +-
>>   drivers/gpu/drm/i915/intel_uncore.c        |   4 +-
>>   14 files changed, 202 insertions(+), 185 deletions(-)
>>
>

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-10-04 17:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-03 22:54 [PATCH v5 0/5] Removing enable_guc_loading module and Decoupling logs and ADS from submission Sujaritha Sundaresan
2017-10-04  7:06 ` Sagar Arun Kamble
2017-10-04 17:24   ` Sujaritha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.