[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20211028135159.7ac3f263@sal.lan>
Date: Thu, 28 Oct 2021 13:51:59 +0100
From: Mauro Carvalho Chehab <mchehab@...nel.org>
To: Tsuchiya Yuto <kitakar@...il.com>
Cc: Hans de Goede <hdegoede@...hat.com>,
Patrik Gfeller <patrik.gfeller@...il.com>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Yang Yingliang <yangyingliang@...wei.com>,
Hans Verkuil <hverkuil-cisco@...all.nl>,
Aline Santana Cordeiro <alinesantanacordeiro@...il.com>,
Dinghao Liu <dinghao.liu@....edu.cn>,
Alan <alan@...ux.intel.com>, linux-media@...r.kernel.org,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 00/17] various fixes for atomisp to make it work
Em Mon, 18 Oct 2021 01:19:40 +0900
Tsuchiya Yuto <kitakar@...il.com> escreveu:
> Hi all,
>
> This patch series contains fixes for atomisp to work (again). Tested on
> Microsoft Surface 3 (Windows) and Xiaomi Mi Pad 2 (Android model) with
> v5.15-rc5. Both are Cherry Trail (ISP2401) devices.
>
After testing this series, I'm opting to merge most patches at the media
stage tree:
https://git.linuxtv.org/media_stage.git/log/
That would allow more people to test the changes.
It is probably too late to merge it for 5.16, so I'll likely postpone
merging it at media_tree to happen after 5.16-rc1.
Regards,
Mauro
---
I tested it on an Asus T101HA with:
https://github.com/intel/nvt
compiled with -m64, and with the enclosed script:
#!/bin/bash
set -e
FRAMES=10
FORMAT=NV12
WIDTH=1600
HEIGHT=1200
#FORMAT=NV12
#WIDTH=1920
#HEIGHT=1080
./v4l2n -o testimage_@...w \
--device /dev/video2 \
--input 0 \
--exposure=30000,30000,30000,30000 \
--parm type=1,capturemode=CI_MODE_PREVIEW \
--fmt type=1,width=$WIDTH,height=$HEIGHT,pixelformat=$FORMAT \
--reqbufs count=2,memory=USERPTR \
--parameters=wb_config.r=32768,wb_config.gr=21043,wb_config.gb=21043,wb_config.b=30863 \
--capture=$FRAMES
for i in $(seq 0 $(($FRAMES - 1))); do
name="testimage_$(printf "%03i" $i)"
./raw2pnm -x$WIDTH -y$HEIGHT -f$FORMAT $name.raw $name.pnm
rm $name.raw
done
Powered by blists - more mailing lists