All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Cc: intel-gfx@lists.freedesktop.org, Paulo Zanoni <paulo.r.zanoni@intel.com>
Subject: Re: [i-g-t PATCH] igt/tools: Update intel_watermark with SKL support
Date: Tue, 18 Oct 2016 12:08:05 +0300	[thread overview]
Message-ID: <20161018090805.GY4329@intel.com> (raw)
In-Reply-To: <1476767975-25406-1-git-send-email-dhinakaran.pandiyan@intel.com>

On Mon, Oct 17, 2016 at 10:19:35PM -0700, Dhinakaran Pandiyan wrote:
> Added support to print SKL watermark and DDB registers.
> 
> Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
> ---
>  tools/intel_watermark.c | 104 +++++++++++++++++++++++++++++++++++++++++++++++-
>  1 file changed, 103 insertions(+), 1 deletion(-)
> 
> diff --git a/tools/intel_watermark.c b/tools/intel_watermark.c
> index e9a2b05..903a0b2 100644
> --- a/tools/intel_watermark.c
> +++ b/tools/intel_watermark.c
> @@ -120,6 +120,11 @@ static const char *endis(bool enabled)
>  	return enabled ? "enabled" : "disabled";
>  }
>  
> +static const char endis_ast(bool enabled)
> +{
> +	return enabled ? '*' : ' ';
> +}
> +
>  static int is_gen7_plus(uint32_t d)
>  {
>  	return !(IS_GEN5(d) || IS_GEN6(d));
> @@ -130,6 +135,101 @@ static int is_hsw_plus(uint32_t d)
>  	return !(IS_GEN5(d) || IS_GEN6(d) || IS_IVYBRIDGE(d));
>  }
>  
> +
> +static void skl_wm_dump(void)
> +{
> +	int pipe, plane, level;
> +	int num_pipes = 3;
> +	int num_planes = 5;
> +	int num_levels = 8;
> +	uint32_t base_addr = 0x70000, addr, wm_offset;
> +
> +	uint32_t wm[num_levels][num_pipes][num_planes];
> +	uint32_t wm_trans[num_pipes][num_planes];
> +	uint32_t buf_cfg[num_pipes][num_planes];
> +
> +	intel_register_access_init(intel_get_pci_device(), 0);
> +
> +	for (pipe = 0; pipe < num_pipes; pipe++) {
> +		for (plane = 0; plane < num_planes; plane++) {
> +			addr =  base_addr +  pipe * 0x1000 + plane * 0x100;
> +
> +			wm_trans[pipe][plane] = read_reg(addr + 0x00168);
> +			buf_cfg[pipe][plane] = read_reg(addr + 0x0017C);
> +			for (level = 0; level < num_levels; level++) {
> +				wm_offset = addr + 0x00140 + level * 0x4;
> +				wm[level][pipe][plane] = read_reg(wm_offset);
> +			}
> +		}
> +	}
> +

Please dump out the all the raw register values first. Then proceed to
print out the decoded output. That's what I've been doing for all the
other platforms.

> +	for (pipe = 0; pipe < num_pipes; pipe++) {
> +		uint32_t start, end, size;
> +		uint32_t lines, blocks, enable;
> +
> +		printf("PIPE_%c\n", pipe_name(pipe));
> +		printf("LEVEL   CURSOR   PLANE_A   PLANE_B   PLANE_C   PLANE_D\n");

Planes are labelled 1,2,3,... not A,B,C,...

> +		for (level = 0; level < num_levels; level++) {
> +			printf("%5d  ", level);
> +			for (plane = 0; plane < num_planes; plane++) {
> +				blocks = REG_DECODE1(wm[level][pipe][plane], 0, 9);
> +				lines = REG_DECODE1(wm[level][pipe][plane], 14, 5);
> +				enable = REG_DECODE1(wm[level][pipe][plane], 31, 1);
> +
> +				printf("%3d", blocks);
> +				printf("%c", endis_ast(enable));

One printf() will do.

> +				if (!REG_DECODE1(wm[level][pipe][plane], 30, 1))
> +					printf("(%2d)  ", lines);
> +				else
> +					printf("(--)  ");
> +			}
> +			printf("\n");
> +		}
> +
> +		printf("TRANS: ");
> +		for (plane = 0; plane < num_planes; plane++) {
> +			blocks = REG_DECODE1(wm_trans[pipe][plane], 0, 9);
> +			lines = REG_DECODE1(wm_trans[pipe][plane], 14, 5);
> +			enable = REG_DECODE1(wm_trans[pipe][plane], 31, 1);
> +
> +			printf("%3d", blocks);
> +			printf("%c", endis_ast(enable));
> +			if (!REG_DECODE1(wm_trans[pipe][plane], 30, 1))
> +				printf("(%2d)  ", lines);
> +			else
> +				printf("(--)  ");
> +		}
> +
> +		printf("\nDDB allocation:");
> +
> +		printf("\nstart ");
> +		for (plane = 0; plane < num_planes; plane++) {
> +			start = REG_DECODE1(buf_cfg[pipe][plane], 0, 10);
> +			printf("%7d   ", start);
> +		}
> +
> +		printf("\nend   ");
> +		for (plane = 0; plane < num_planes; plane++) {
> +			end = REG_DECODE1(buf_cfg[pipe][plane], 16, 10);
> +			printf("%7d   ", end);
> +		}
> +
> +		printf("\nsize  ");
> +		for (plane = 0; plane < num_planes; plane++) {
> +			start = REG_DECODE1(buf_cfg[pipe][plane], 0, 10);
> +			end =  REG_DECODE1(buf_cfg[pipe][plane], 16, 10);
> +			size = end - start + 1;
> +			printf("%7d   ", (end == 0 && size == 1) ? 0 : size);
> +		}
> +
> +		printf("\n\n\n");
> +	}
> +
> +	printf("* plane watermark enabled\n");
> +	printf("(x) line watermark if enabled\n");
> +
> +}
> +
>  static void ilk_wm_dump(void)
>  {
>  	int i;
> @@ -900,7 +1000,9 @@ int main(int argc, char *argv[])
>  {
>  	devid = intel_get_pci_device()->device_id;
>  
> -	if (IS_VALLEYVIEW(devid) || IS_CHERRYVIEW(devid)) {
> +	if (IS_GEN9(devid)) {
> +		skl_wm_dump();
> +	} else if (IS_VALLEYVIEW(devid) || IS_CHERRYVIEW(devid)) {
>  		display_base = 0x180000;
>  		vlv_wm_dump();
>  	} else if (HAS_PCH_SPLIT(devid)) {
> -- 
> 2.7.4
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2016-10-18  9:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-18  5:19 [i-g-t PATCH] igt/tools: Update intel_watermark with SKL support Dhinakaran Pandiyan
2016-10-18  9:08 ` Ville Syrjälä [this message]
2016-10-19  0:05   ` [i-g-t PATCH v2] " Dhinakaran Pandiyan
2016-10-21  1:52     ` Pandiyan, Dhinakaran

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161018090805.GY4329@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=dhinakaran.pandiyan@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=paulo.r.zanoni@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.