linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Steve Longerbeam <slongerbeam@gmail.com>
Cc: kbuild-all@01.org, linux-media@vger.kernel.org,
	Steve Longerbeam <slongerbeam@gmail.com>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	"open list:DRM DRIVERS FOR FREESCALE IMX" 
	<dri-devel@lists.freedesktop.org>,
	open list <linux-kernel@vger.kernel.org>,
	"open list:STAGING SUBSYSTEM" <devel@driverdev.osuosl.org>,
	"open list:FRAMEBUFFER LAYER" <linux-fbdev@vger.kernel.org>
Subject: Re: [PATCH v6] gpu: ipu-csi: Swap fields according to input/output field types
Date: Sun, 16 Dec 2018 15:08:20 +0800	[thread overview]
Message-ID: <201812161516.ENtEtOJe%fengguang.wu@intel.com> (raw)
In-Reply-To: <20181214234646.21359-1-slongerbeam@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3268 bytes --]

Hi Steve,

I love your patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v4.20-rc6 next-20181214]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Steve-Longerbeam/gpu-ipu-csi-Swap-fields-according-to-input-output-field-types/20181215-135741
config: nds32-allmodconfig (attached as .config)
compiler: nds32le-linux-gcc (GCC) 6.4.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=6.4.0 make.cross ARCH=nds32 

All errors (new ones prefixed by >>):

   drivers/gpu/ipu-v3/ipu-csi.c: In function 'ipu_csi_set_bt_interlaced_codes':
>> drivers/gpu/ipu-v3/ipu-csi.c:407:17: error: implicit declaration of function 'V4L2_FIELD_IS_SEQUENTIAL' [-Werror=implicit-function-declaration]
     swap_fields = (V4L2_FIELD_IS_SEQUENTIAL(infield) &&
                    ^~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +/V4L2_FIELD_IS_SEQUENTIAL +407 drivers/gpu/ipu-v3/ipu-csi.c

   385	
   386	static int
   387	ipu_csi_set_bt_interlaced_codes(struct ipu_csi *csi,
   388					const struct v4l2_mbus_framefmt *infmt,
   389					const struct v4l2_mbus_framefmt *outfmt,
   390					v4l2_std_id std)
   391	{
   392		enum v4l2_field infield, outfield;
   393		bool swap_fields;
   394	
   395		/* get translated field type of input and output */
   396		infield = ipu_csi_translate_field(infmt->field, std);
   397		outfield = ipu_csi_translate_field(outfmt->field, std);
   398	
   399		/*
   400		 * Write the H-V-F codes the CSI will match against the
   401		 * incoming data for start/end of active and blanking
   402		 * field intervals. If input and output field types are
   403		 * sequential but not the same (one is SEQ_BT and the other
   404		 * is SEQ_TB), swap the F-bit so that the CSI will capture
   405		 * field 1 lines before field 0 lines.
   406		 */
 > 407		swap_fields = (V4L2_FIELD_IS_SEQUENTIAL(infield) &&
   408			       V4L2_FIELD_IS_SEQUENTIAL(outfield) &&
   409			       infield != outfield);
   410	
   411		if (!swap_fields) {
   412			/*
   413			 * Field0BlankEnd  = 110, Field0BlankStart  = 010
   414			 * Field0ActiveEnd = 100, Field0ActiveStart = 000
   415			 * Field1BlankEnd  = 111, Field1BlankStart  = 011
   416			 * Field1ActiveEnd = 101, Field1ActiveStart = 001
   417			 */
   418			ipu_csi_write(csi, 0x40596 | CSI_CCIR_ERR_DET_EN,
   419				      CSI_CCIR_CODE_1);
   420			ipu_csi_write(csi, 0xD07DF, CSI_CCIR_CODE_2);
   421		} else {
   422			dev_dbg(csi->ipu->dev, "capture field swap\n");
   423	
   424			/* same as above but with F-bit inverted */
   425			ipu_csi_write(csi, 0xD07DF | CSI_CCIR_ERR_DET_EN,
   426				      CSI_CCIR_CODE_1);
   427			ipu_csi_write(csi, 0x40596, CSI_CCIR_CODE_2);
   428		}
   429	
   430		ipu_csi_write(csi, 0xFF0000, CSI_CCIR_CODE_3);
   431	
   432		return 0;
   433	}
   434	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 48510 bytes --]

  reply	other threads:[~2018-12-16  7:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-14 23:46 [PATCH v6] gpu: ipu-csi: Swap fields according to input/output field types Steve Longerbeam
2018-12-16  7:08 ` kbuild test robot [this message]
2019-01-09  0:01 ` Steve Longerbeam

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=201812161516.ENtEtOJe%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=kbuild-all@01.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=slongerbeam@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).