#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019, Google Inc.
#
# Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
#
# rkisp-capture.sh - Capture processed frames from cameras based on the
# Rockchip ISP1
#
# The scripts makes use of the following tools, which are expected to be
# executable from the system-wide path or from the local directory:
#
# - media-ctl (from v4l-utils git://linuxtv.org/v4l-utils.git)
# - raw2rgbpnm (from git://git.retiisi.org.uk/~sailus/raw2rgbpnm.git)
# - yavta (from git://git.ideasonboard.org/yavta.git)

# Locate the sensor entity
find_sensor() {
	local bus
	local sensor_name=$1

	bus=$(grep "$sensor_name " /sys/class/video4linux/v4l-subdev*/name | cut -d ' ' -f 2)
	if [[ -z $bus ]]; then
		echo "Sensor '$sensor_name' not found." >&2
		exit 1
	fi

	echo "$sensor_name $bus"
}

# Locate the media device
find_media_device() {
	local mdev
	local name=$1

	for mdev in /dev/media* ; do
		media-ctl -d $mdev -p | grep -q "^driver[ \t]*$name$" && break
		mdev=
	done

	if [[ -z $mdev ]] ; then
		echo "$name media device not found." >&2
		exit 1
	fi

	echo $mdev
}

# Get the sensor format
get_sensor_format() {
	local format
	local sensor=$1

	format=$($mediactl --get-v4l2 "'$sensor':0" | sed 's/\[\([^ ]*\).*/\1/')
	sensor_mbus_code=$(echo $format | sed 's/fmt:\([A-Z0-9_]*\).*/\1/')
	sensor_size=$(echo $format | sed 's/[^\/]*\/\([0-9x]*\).*/\1/')

	echo "Capturing ${sensor_size} from sensor $sensor in ${sensor_mbus_code}"
}

# Configure the pipeline
configure_pipeline() {
	local format="fmt:$sensor_mbus_code/$sensor_size"
	local capture_mbus_code=$1
	local capture_size=$2

	echo "Configuring pipeline for $sensor in $format"

	$mediactl -r

	$mediactl -l "'$sensor':0 -> 'rkisp1_isp':0 [1]"
	$mediactl -l "'rkisp1_isp':2 -> 'rkisp1_resizer_mainpath':0 [1]"

	$mediactl -V "\"$sensor\":0 [$format]"
	$mediactl -V "'rkisp1_isp':0 [$format crop:(0,0)/$sensor_size]"
	$mediactl -V "'rkisp1_isp':2 [fmt:$capture_mbus_code/$sensor_size crop:(0,0)/$sensor_size]"
	$mediactl -V "'rkisp1_resizer_mainpath':0 [fmt:$capture_mbus_code/$sensor_size crop:(0,0)/$sensor_size]"
	$mediactl -V "'rkisp1_resizer_mainpath':1 [fmt:$capture_mbus_code/$capture_size]"
}

# Capture frames
capture_frames() {
	local file_op
	local capture_format=$1
	local capture_size=$2
	local frame_count=$3
	local save_file=$4

	if [[ $save_file -eq 1 ]]; then
		file_op="--file=/tmp/frame-#.bin"
	fi

	yavta -c$frame_count -n5 -I -f $capture_format -s $capture_size \
		$file_op $($mediactl -e "rkisp1_mainpath")
}

# Convert captured files to ppm
convert_files() {
	local format=$1
	local size=$2
	local frame_count=$3

	echo "Converting ${frame_count} frames (${size})"

	for i in `seq 0 $(($frame_count - 1))`; do
		i=$(printf %06u $i)
		raw2rgbpnm -f $format -s $size /tmp/frame-$i.bin /tmp/frame-$i.ppm
	done
}

# Print usage message
usage() {
	echo "Usage: $1 [options] sensor-name"
	echo "Supported options:"
	echo "-c,--count n      Number of frame to capture"
	echo "--no-save         Do not save captured frames to disk"
	echo "-r, --raw         Capture RAW frames"
	echo "-s, --size wxh    Frame size"
}

# Parse command line arguments
capture_size=1024x768
frame_count=10
raw=false
save_file=1

while [[ $# -ne 0 ]] ; do
	case $1 in
	-c|--count)
		frame_count=$2
		shift 2
		;;
	--no-save)
		save_file=0
		shift
		;;

	-r|--raw)
		raw=true
		shift
		;;
	-s|--size)
		capture_size=$2
		shift 2
		;;
	-*)
		echo "Unsupported option $1" >&2
		usage $0
		exit 1
		;;
	*)
		break
		;;
	esac
done

if [[ $# -ne 1 ]] ; then
	usage $0
	exit 1
fi

sensor_name=$1

modprobe phy_rockchip_dphy_rx0
modprobe rockchip_isp1

sensor=$(find_sensor $sensor_name) || exit
mdev=$(find_media_device rkisp1) || exit
mediactl="media-ctl -d $mdev"

get_sensor_format "$sensor"
if [[ $raw == true ]] ; then
	capture_format=$(echo $sensor_mbus_code | sed 's/_[0-9X]$//')
	capture_mbus_code=$sensor_mbus_code
else
	capture_format=YUYV
	capture_mbus_code=YUYV8_2X8
fi

configure_pipeline $capture_mbus_code $capture_size
capture_frames $capture_format $capture_size $frame_count $save_file
[[ $save_file -eq 1 ]] && convert_files $capture_format $capture_size $frame_count
id='n34' href='#n34'>34</a>
<a id='n35' href='#n35'>35</a>
<a id='n36' href='#n36'>36</a>
<a id='n37' href='#n37'>37</a>
<a id='n38' href='#n38'>38</a>
<a id='n39' href='#n39'>39</a>
<a id='n40' href='#n40'>40</a>
<a id='n41' href='#n41'>41</a>
<a id='n42' href='#n42'>42</a>
<a id='n43' href='#n43'>43</a>
<a id='n44' href='#n44'>44</a>
<a id='n45' href='#n45'>45</a>
<a id='n46' href='#n46'>46</a>
<a id='n47' href='#n47'>47</a>
<a id='n48' href='#n48'>48</a>
<a id='n49' href='#n49'>49</a>
<a id='n50' href='#n50'>50</a>
<a id='n51' href='#n51'>51</a>
<a id='n52' href='#n52'>52</a>
<a id='n53' href='#n53'>53</a>
<a id='n54' href='#n54'>54</a>
<a id='n55' href='#n55'>55</a>
<a id='n56' href='#n56'>56</a>
<a id='n57' href='#n57'>57</a>
<a id='n58' href='#n58'>58</a>
<a id='n59' href='#n59'>59</a>
<a id='n60' href='#n60'>60</a>
<a id='n61' href='#n61'>61</a>
<a id='n62' href='#n62'>62</a>
<a id='n63' href='#n63'>63</a>
<a id='n64' href='#n64'>64</a>
<a id='n65' href='#n65'>65</a>
<a id='n66' href='#n66'>66</a>
<a id='n67' href='#n67'>67</a>
<a id='n68' href='#n68'>68</a>
<a id='n69' href='#n69'>69</a>
<a id='n70' href='#n70'>70</a>
<a id='n71' href='#n71'>71</a>
<a id='n72' href='#n72'>72</a>
<a id='n73' href='#n73'>73</a>
<a id='n74' href='#n74'>74</a>
<a id='n75' href='#n75'>75</a>
<a id='n76' href='#n76'>76</a>
<a id='n77' href='#n77'>77</a>
<a id='n78' href='#n78'>78</a>
<a id='n79' href='#n79'>79</a>
<a id='n80' href='#n80'>80</a>
<a id='n81' href='#n81'>81</a>
<a id='n82' href='#n82'>82</a>
<a id='n83' href='#n83'>83</a>
<a id='n84' href='#n84'>84</a>
<a id='n85' href='#n85'>85</a>
<a id='n86' href='#n86'>86</a>
<a id='n87' href='#n87'>87</a>
<a id='n88' href='#n88'>88</a>
<a id='n89' href='#n89'>89</a>
<a id='n90' href='#n90'>90</a>
<a id='n91' href='#n91'>91</a>
<a id='n92' href='#n92'>92</a>
<a id='n93' href='#n93'>93</a>
<a id='n94' href='#n94'>94</a>
<a id='n95' href='#n95'>95</a>
<a id='n96' href='#n96'>96</a>
<a id='n97' href='#n97'>97</a>
<a id='n98' href='#n98'>98</a>
<a id='n99' href='#n99'>99</a>
<a id='n100' href='#n100'>100</a>
<a id='n101' href='#n101'>101</a>
<a id='n102' href='#n102'>102</a>
<a id='n103' href='#n103'>103</a>
<a id='n104' href='#n104'>104</a>
<a id='n105' href='#n105'>105</a>
<a id='n106' href='#n106'>106</a>
<a id='n107' href='#n107'>107</a>
<a id='n108' href='#n108'>108</a>
<a id='n109' href='#n109'>109</a>
<a id='n110' href='#n110'>110</a>
<a id='n111' href='#n111'>111</a>
<a id='n112' href='#n112'>112</a>
<a id='n113' href='#n113'>113</a>
<a id='n114' href='#n114'>114</a>
<a id='n115' href='#n115'>115</a>
<a id='n116' href='#n116'>116</a>
<a id='n117' href='#n117'>117</a>
<a id='n118' href='#n118'>118</a>
<a id='n119' href='#n119'>119</a>
<a id='n120' href='#n120'>120</a>
<a id='n121' href='#n121'>121</a>
<a id='n122' href='#n122'>122</a>
<a id='n123' href='#n123'>123</a>
<a id='n124' href='#n124'>124</a>
<a id='n125' href='#n125'>125</a>
<a id='n126' href='#n126'>126</a>
<a id='n127' href='#n127'>127</a>
<a id='n128' href='#n128'>128</a>
<a id='n129' href='#n129'>129</a>
<a id='n130' href='#n130'>130</a>
<a id='n131' href='#n131'>131</a>
<a id='n132' href='#n132'>132</a>
<a id='n133' href='#n133'>133</a>
<a id='n134' href='#n134'>134</a>
<a id='n135' href='#n135'>135</a>
<a id='n136' href='#n136'>136</a>
<a id='n137' href='#n137'>137</a>
<a id='n138' href='#n138'>138</a>
<a id='n139' href='#n139'>139</a>
<a id='n140' href='#n140'>140</a>
<a id='n141' href='#n141'>141</a>
<a id='n142' href='#n142'>142</a>
<a id='n143' href='#n143'>143</a>
<a id='n144' href='#n144'>144</a>
<a id='n145' href='#n145'>145</a>
<a id='n146' href='#n146'>146</a>
<a id='n147' href='#n147'>147</a>
<a id='n148' href='#n148'>148</a>
<a id='n149' href='#n149'>149</a>
<a id='n150' href='#n150'>150</a>
<a id='n151' href='#n151'>151</a>
<a id='n152' href='#n152'>152</a>
<a id='n153' href='#n153'>153</a>
<a id='n154' href='#n154'>154</a>
<a id='n155' href='#n155'>155</a>
<a id='n156' href='#n156'>156</a>
<a id='n157' href='#n157'>157</a>
<a id='n158' href='#n158'>158</a>
<a id='n159' href='#n159'>159</a>
<a id='n160' href='#n160'>160</a>
<a id='n161' href='#n161'>161</a>
<a id='n162' href='#n162'>162</a>
<a id='n163' href='#n163'>163</a>
<a id='n164' href='#n164'>164</a>
<a id='n165' href='#n165'>165</a>
<a id='n166' href='#n166'>166</a>
<a id='n167' href='#n167'>167</a>
<a id='n168' href='#n168'>168</a>
<a id='n169' href='#n169'>169</a>
<a id='n170' href='#n170'>170</a>
<a id='n171' href='#n171'>171</a>
<a id='n172' href='#n172'>172</a>
<a id='n173' href='#n173'>173</a>
<a id='n174' href='#n174'>174</a>
<a id='n175' href='#n175'>175</a>
<a id='n176' href='#n176'>176</a>
<a id='n177' href='#n177'>177</a>
<a id='n178' href='#n178'>178</a>
<a id='n179' href='#n179'>179</a>
<a id='n180' href='#n180'>180</a>
<a id='n181' href='#n181'>181</a>
<a id='n182' href='#n182'>182</a>
<a id='n183' href='#n183'>183</a>
<a id='n184' href='#n184'>184</a>
<a id='n185' href='#n185'>185</a>
<a id='n186' href='#n186'>186</a>
<a id='n187' href='#n187'>187</a>
<a id='n188' href='#n188'>188</a>
<a id='n189' href='#n189'>189</a>
<a id='n190' href='#n190'>190</a>
<a id='n191' href='#n191'>191</a>
<a id='n192' href='#n192'>192</a>
<a id='n193' href='#n193'>193</a>
<a id='n194' href='#n194'>194</a>
<a id='n195' href='#n195'>195</a>
<a id='n196' href='#n196'>196</a>
<a id='n197' href='#n197'>197</a>
<a id='n198' href='#n198'>198</a>
<a id='n199' href='#n199'>199</a>
<a id='n200' href='#n200'>200</a>
<a id='n201' href='#n201'>201</a>
<a id='n202' href='#n202'>202</a>
<a id='n203' href='#n203'>203</a>
<a id='n204' href='#n204'>204</a>
<a id='n205' href='#n205'>205</a>
<a id='n206' href='#n206'>206</a>
<a id='n207' href='#n207'>207</a>
<a id='n208' href='#n208'>208</a>
<a id='n209' href='#n209'>209</a>
<a id='n210' href='#n210'>210</a>
<a id='n211' href='#n211'>211</a>
<a id='n212' href='#n212'>212</a>
<a id='n213' href='#n213'>213</a>
<a id='n214' href='#n214'>214</a>
<a id='n215' href='#n215'>215</a>
<a id='n216' href='#n216'>216</a>
<a id='n217' href='#n217'>217</a>
<a id='n218' href='#n218'>218</a>
<a id='n219' href='#n219'>219</a>
<a id='n220' href='#n220'>220</a>
<a id='n221' href='#n221'>221</a>
<a id='n222' href='#n222'>222</a>
<a id='n223' href='#n223'>223</a>
<a id='n224' href='#n224'>224</a>
<a id='n225' href='#n225'>225</a>
<a id='n226' href='#n226'>226</a>
<a id='n227' href='#n227'>227</a>
<a id='n228' href='#n228'>228</a>
<a id='n229' href='#n229'>229</a>
<a id='n230' href='#n230'>230</a>
<a id='n231' href='#n231'>231</a>
<a id='n232' href='#n232'>232</a>
<a id='n233' href='#n233'>233</a>
<a id='n234' href='#n234'>234</a>
<a id='n235' href='#n235'>235</a>
<a id='n236' href='#n236'>236</a>
<a id='n237' href='#n237'>237</a>
<a id='n238' href='#n238'>238</a>
<a id='n239' href='#n239'>239</a>
<a id='n240' href='#n240'>240</a>
<a id='n241' href='#n241'>241</a>
<a id='n242' href='#n242'>242</a>
<a id='n243' href='#n243'>243</a>
<a id='n244' href='#n244'>244</a>
<a id='n245' href='#n245'>245</a>
<a id='n246' href='#n246'>246</a>
<a id='n247' href='#n247'>247</a>
<a id='n248' href='#n248'>248</a>
<a id='n249' href='#n249'>249</a>
<a id='n250' href='#n250'>250</a>
<a id='n251' href='#n251'>251</a>
<a id='n252' href='#n252'>252</a>
<a id='n253' href='#n253'>253</a>
<a id='n254' href='#n254'>254</a>
<a id='n255' href='#n255'>255</a>
<a id='n256' href='#n256'>256</a>
<a id='n257' href='#n257'>257</a>
<a id='n258' href='#n258'>258</a>
<a id='n259' href='#n259'>259</a>
<a id='n260' href='#n260'>260</a>
<a id='n261' href='#n261'>261</a>
<a id='n262' href='#n262'>262</a>
<a id='n263' href='#n263'>263</a>
<a id='n264' href='#n264'>264</a>
<a id='n265' href='#n265'>265</a>
<a id='n266' href='#n266'>266</a>
<a id='n267' href='#n267'>267</a>
<a id='n268' href='#n268'>268</a>
<a id='n269' href='#n269'>269</a>
<a id='n270' href='#n270'>270</a>
<a id='n271' href='#n271'>271</a>
<a id='n272' href='#n272'>272</a>
<a id='n273' href='#n273'>273</a>
<a id='n274' href='#n274'>274</a>
<a id='n275' href='#n275'>275</a>
<a id='n276' href='#n276'>276</a>
<a id='n277' href='#n277'>277</a>
<a id='n278' href='#n278'>278</a>
<a id='n279' href='#n279'>279</a>
<a id='n280' href='#n280'>280</a>
<a id='n281' href='#n281'>281</a>
<a id='n282' href='#n282'>282</a>
<a id='n283' href='#n283'>283</a>
<a id='n284' href='#n284'>284</a>
<a id='n285' href='#n285'>285</a>
<a id='n286' href='#n286'>286</a>
<a id='n287' href='#n287'>287</a>
<a id='n288' href='#n288'>288</a>
<a id='n289' href='#n289'>289</a>
<a id='n290' href='#n290'>290</a>
<a id='n291' href='#n291'>291</a>
<a id='n292' href='#n292'>292</a>
<a id='n293' href='#n293'>293</a>
<a id='n294' href='#n294'>294</a>
<a id='n295' href='#n295'>295</a>
<a id='n296' href='#n296'>296</a>
<a id='n297' href='#n297'>297</a>
<a id='n298' href='#n298'>298</a>
<a id='n299' href='#n299'>299</a>
<a id='n300' href='#n300'>300</a>
<a id='n301' href='#n301'>301</a>
<a id='n302' href='#n302'>302</a>
<a id='n303' href='#n303'>303</a>
<a id='n304' href='#n304'>304</a>
<a id='n305' href='#n305'>305</a>
<a id='n306' href='#n306'>306</a>
<a id='n307' href='#n307'>307</a>
<a id='n308' href='#n308'>308</a>
</pre></td>
<td class='lines'><pre><code><span class="hl com">/* SPDX-License-Identifier: LGPL-2.1-or-later */</span>
<span class="hl com">/*</span>
<span class="hl com"> * Copyright (C) 2019, Google Inc.</span>
<span class="hl com"> *</span>
<span class="hl com"> * v4l2_controls.cpp - V4L2 Controls Support</span>
<span class="hl com"> */</span>

<span class="hl ppc">#include</span> <span class="hl pps">&quot;v4l2_controls.h&quot;</span><span class="hl ppc"></span>

<span class="hl com">/**</span>
<span class="hl com"> * \file v4l2_controls.h</span>
<span class="hl com"> * \brief Support for V4L2 Controls using the V4L2 Extended Controls APIs</span>
<span class="hl com"> *</span>
<span class="hl com"> * The V4L2 Control API allows application to inspect and modify sets of</span>
<span class="hl com"> * configurable parameters on a video device or subdevice. The nature of the</span>
<span class="hl com"> * parameters an application can modify using the control framework depends on</span>
<span class="hl com"> * what the driver implements support for, and on the characteristics of the</span>
<span class="hl com"> * underlying hardware platform. Generally controls are used to modify user</span>
<span class="hl com"> * visible settings, such as the image brightness and exposure time, or</span>
<span class="hl com"> * non-standard parameters which cannot be controlled through the V4L2 format</span>
<span class="hl com"> * negotiation API.</span>
<span class="hl com"> *</span>
<span class="hl com"> * Controls are identified by a numerical ID, defined by the V4L2 kernel headers</span>
<span class="hl com"> * and have an associated type. Each control has a value, which is the data that</span>
<span class="hl com"> * can be modified with V4L2Device::setControls() or retrieved with</span>
<span class="hl com"> * V4L2Device::getControls().</span>
<span class="hl com"> *</span>
<span class="hl com"> * The control&apos;s type along with the control&apos;s flags define the type of the</span>
<span class="hl com"> * control&apos;s value content. Controls can transport a single data value stored in</span>
<span class="hl com"> * variable inside the control, or they might as well deal with more complex</span>
<span class="hl com"> * data types, such as arrays of matrices, stored in a contiguous memory</span>
<span class="hl com"> * locations associated with the control and called &apos;the payload&apos;. Such controls</span>
<span class="hl com"> * are called &apos;compound controls&apos; and are currently not supported by the</span>
<span class="hl com"> * libcamera V4L2 control framework.</span>
<span class="hl com"> *</span>
<span class="hl com"> * libcamera implements support for controls using the V4L2 Extended Control</span>
<span class="hl com"> * API, which allows future handling of controls with payloads of arbitrary</span>
<span class="hl com"> * sizes.</span>
<span class="hl com"> *</span>
<span class="hl com"> * The libcamera V4L2 Controls framework operates on lists of controls, wrapped</span>
<span class="hl com"> * by the V4L2ControlList class, to match the V4L2 extended controls API. The</span>
<span class="hl com"> * interface to set and get control is implemented by the V4L2Device class, and</span>
<span class="hl com"> * this file only provides the data type definitions.</span>
<span class="hl com"> *</span>
<span class="hl com"> * \todo Add support for compound controls</span>
<span class="hl com"> */</span>

<span class="hl kwa">namespace</span> libcamera <span class="hl opt">{</span>

<span class="hl com">/**</span>
<span class="hl com"> * \class V4L2ControlInfo</span>
<span class="hl com"> * \brief Information on a V4L2 control</span>
<span class="hl com"> *</span>
<span class="hl com"> * The V4L2ControlInfo class represents all the information related to a V4L2</span>
<span class="hl com"> * control, such as its ID, its type, its user-readable name and the expected</span>
<span class="hl com"> * size of its value data.</span>
<span class="hl com"> *</span>
<span class="hl com"> * V4L2ControlInfo instances are created by inspecting the fieldS of a struct</span>
<span class="hl com"> * v4l2_query_ext_ctrl structure, after it has been filled by the device driver</span>
<span class="hl com"> * as a consequence of a VIDIOC_QUERY_EXT_CTRL ioctl call.</span>
<span class="hl com"> *</span>
<span class="hl com"> * This class does not contain the control value, but only static information on</span>
<span class="hl com"> * the control, which shall be cached by the caller at initialisation time or</span>
<span class="hl com"> * the first time the control information is accessed.</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \brief Construct a V4L2ControlInfo from a struct v4l2_query_ext_ctrl</span>
<span class="hl com"> * \param ctrl The struct v4l2_query_ext_ctrl as returned by the kernel</span>
<span class="hl com"> */</span>
<span class="hl kwc">V4L2ControlInfo</span><span class="hl opt">::</span><span class="hl kwd">V4L2ControlInfo</span><span class="hl opt">(</span><span class="hl kwb">const struct</span> v4l2_query_ext_ctrl <span class="hl opt">&amp;</span>ctrl<span class="hl opt">)</span>
<span class="hl opt">{</span>
	id_ <span class="hl opt">=</span> ctrl<span class="hl opt">.</span>id<span class="hl opt">;</span>
	type_ <span class="hl opt">=</span> ctrl<span class="hl opt">.</span>type<span class="hl opt">;</span>
	name_ <span class="hl opt">=</span> <span class="hl kwa">static_cast</span><span class="hl opt">&lt;</span><span class="hl kwb">const char</span> <span class="hl opt">*&gt;(</span>ctrl<span class="hl opt">.</span>name<span class="hl opt">);</span>
	size_ <span class="hl opt">=</span> ctrl<span class="hl opt">.</span>elem_size <span class="hl opt">*</span> ctrl<span class="hl opt">.</span>elems<span class="hl opt">;</span>
	min_ <span class="hl opt">=</span> ctrl<span class="hl opt">.</span>minimum<span class="hl opt">;</span>
	max_ <span class="hl opt">=</span> ctrl<span class="hl opt">.</span>maximum<span class="hl opt">;</span>
<span class="hl opt">}</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlInfo::id()</span>
<span class="hl com"> * \brief Retrieve the control ID</span>
<span class="hl com"> * \return The V4L2 control ID</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlInfo::type()</span>
<span class="hl com"> * \brief Retrieve the control type as defined by V4L2_CTRL_TYPE_*</span>
<span class="hl com"> * \return The V4L2 control type</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlInfo::size()</span>
<span class="hl com"> * \brief Retrieve the control value data size (in bytes)</span>
<span class="hl com"> * \return The V4L2 control value data size</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlInfo::name()</span>
<span class="hl com"> * \brief Retrieve the control user readable name</span>
<span class="hl com"> * \return The V4L2 control user readable name</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlInfo::min()</span>
<span class="hl com"> * \brief Retrieve the control minimum value</span>
<span class="hl com"> * \return The V4L2 control minimum value</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlInfo::max()</span>
<span class="hl com"> * \brief Retrieve the control maximum value</span>
<span class="hl com"> * \return The V4L2 control maximum value</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \typedef V4L2ControlInfoMap</span>
<span class="hl com"> * \brief A map of control ID to V4L2ControlInfo</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \class V4L2Control</span>
<span class="hl com"> * \brief A V4L2 control value</span>
<span class="hl com"> *</span>
<span class="hl com"> * The V4L2Control class represent the value of a V4L2 control. The class</span>
<span class="hl com"> * stores values that have been read from or will be applied to a V4L2 device.</span>
<span class="hl com"> *</span>
<span class="hl com"> * The value stored in the class instances does not reflect what is actually</span>
<span class="hl com"> * applied to the hardware but is a pure software cache optionally initialized</span>
<span class="hl com"> * at control creation time and modified by a control read or write operation.</span>
<span class="hl com"> *</span>
<span class="hl com"> * The write and read controls the V4L2Control class instances are not meant</span>
<span class="hl com"> * to be directly used but are instead intended to be grouped in</span>
<span class="hl com"> * V4L2ControlList instances, which are then passed as parameters to</span>
<span class="hl com"> * V4L2Device::setControls() and V4L2Device::getControls() operations.</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2Control::V4L2Control</span>
<span class="hl com"> * \brief Construct a V4L2 control with \a id and \a value</span>
<span class="hl com"> * \param id The V4L2 control ID</span>
<span class="hl com"> * \param value The control value</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2Control::value()</span>
<span class="hl com"> * \brief Retrieve the value of the control</span>
<span class="hl com"> *</span>
<span class="hl com"> * This method returns the cached control value, initially set by</span>
<span class="hl com"> * V4L2ControlList::add() and then updated when the controls are read or</span>
<span class="hl com"> * written with V4L2Device::getControls() and V4L2Device::setControls().</span>
<span class="hl com"> *</span>
<span class="hl com"> * \return The V4L2 control value</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2Control::setValue()</span>
<span class="hl com"> * \brief Set the value of the control</span>
<span class="hl com"> * \param value The new V4L2 control value</span>
<span class="hl com"> *</span>
<span class="hl com"> * This method stores the control value, which will be applied to the</span>
<span class="hl com"> * device when calling V4L2Device::setControls().</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2Control::id()</span>
<span class="hl com"> * \brief Retrieve the control ID this instance refers to</span>
<span class="hl com"> * \return The V4L2Control ID</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \class V4L2ControlList</span>
<span class="hl com"> * \brief Container of V4L2Control instances</span>
<span class="hl com"> *</span>
<span class="hl com"> * The V4L2ControlList class works as a container for a list of V4L2Control</span>
<span class="hl com"> * instances. The class provides operations to add a new control to the list,</span>
<span class="hl com"> * get back a control value, and reset the list of controls it contains.</span>
<span class="hl com"> *</span>
<span class="hl com"> * In order to set and get controls, user of the libcamera V4L2 control</span>
<span class="hl com"> * framework should operate on instances of the V4L2ControlList class, and use</span>
<span class="hl com"> * them as argument for the V4L2Device::setControls() and</span>
<span class="hl com"> * V4L2Device::getControls() operations, which write and read a list of</span>
<span class="hl com"> * controls to or from a V4L2 device (a video device or a subdevice).</span>
<span class="hl com"> *</span>
<span class="hl com"> * Controls are added to a V4L2ControlList instance with the add() method, with</span>
<span class="hl com"> * or without a value.</span>
<span class="hl com"> *</span>
<span class="hl com"> * To write controls to a device, the controls of interest shall be added with</span>
<span class="hl com"> * an initial value by calling V4L2ControlList::add(unsigned int id, int64_t</span>
<span class="hl com"> * value) to prepare for a write operation. Once the values of all controls of</span>
<span class="hl com"> * interest have been added, the V4L2ControlList instance is passed to the</span>
<span class="hl com"> * V4L2Device::setControls(), which sets the controls on the device.</span>
<span class="hl com"> *</span>
<span class="hl com"> * To read controls from a device, the desired controls are added with</span>
<span class="hl com"> * V4L2ControlList::add(unsigned int id) to prepare for a read operation. The</span>
<span class="hl com"> * V4L2ControlList instance is then passed to V4L2Device::getControls(), which</span>
<span class="hl com"> * reads the controls from the device and updates the values stored in</span>
<span class="hl com"> * V4L2ControlList.</span>
<span class="hl com"> *</span>
<span class="hl com"> * V4L2ControlList instances can be reset to remove all controls they contain</span>
<span class="hl com"> * and prepare to be re-used for a new control write/read sequence.</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \typedef V4L2ControlList::iterator</span>
<span class="hl com"> * \brief Iterator on the V4L2 controls contained in the instance</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \typedef V4L2ControlList::const_iterator</span>
<span class="hl com"> * \brief Const iterator on the V4L2 controls contained in the instance</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn iterator V4L2ControlList::begin()</span>
<span class="hl com"> * \brief Retrieve an iterator to the first V4L2Control in the instance</span>
<span class="hl com"> * \return An iterator to the first V4L2 control</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn const_iterator V4L2ControlList::begin() const</span>
<span class="hl com"> * \brief Retrieve a constant iterator to the first V4L2Control in the instance</span>
<span class="hl com"> * \return A constant iterator to the first V4L2 control</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn iterator V4L2ControlList::end()</span>
<span class="hl com"> * \brief Retrieve an iterator pointing to the past-the-end V4L2Control in the</span>
<span class="hl com"> * instance</span>
<span class="hl com"> * \return An iterator to the element following the last V4L2 control in the</span>
<span class="hl com"> * instance</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn const_iterator V4L2ControlList::end() const</span>
<span class="hl com"> * \brief Retrieve a constant iterator pointing to the past-the-end V4L2Control</span>
<span class="hl com"> * in the instance</span>
<span class="hl com"> * \return A constant iterator to the element following the last V4L2 control</span>
<span class="hl com"> * in the instance</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlList::empty()</span>
<span class="hl com"> * \brief Verify if the instance does not contain any control</span>
<span class="hl com"> * \return True if the instance does not contain any control, false otherwise</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlList::size()</span>
<span class="hl com"> * \brief Retrieve the number on controls in the instance</span>
<span class="hl com"> * \return The number of V4L2Control stored in the instance</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \fn V4L2ControlList::clear()</span>
<span class="hl com"> * \brief Remove all controls in the instance</span>
<span class="hl com"> */</span>

<span class="hl com">/**</span>
<span class="hl com"> * \brief Add control with \a id and optional \a value to the instance</span>
<span class="hl com"> * \param id The V4L2 control ID (V4L2_CID_*)</span>
<span class="hl com"> * \param value The V4L2 control value</span>
<span class="hl com"> *</span>
<span class="hl com"> * This method adds a new V4L2 control to the V4L2ControlList. The newly</span>
<span class="hl com"> * inserted control shall not already be present in the control lists, otherwise</span>
<span class="hl com"> * this method, and further use of the control list lead to undefined behaviour.</span>
<span class="hl com"> */</span>
<span class="hl kwb">void</span> <span class="hl kwc">V4L2ControlList</span><span class="hl opt">::</span><span class="hl kwd">add</span><span class="hl opt">(</span><span class="hl kwb">unsigned int</span> id<span class="hl opt">,</span> <span class="hl kwb">int64_t</span> value<span class="hl opt">)</span>
<span class="hl opt">{</span>
	controls_<span class="hl opt">.</span><span class="hl kwd">emplace_back</span><span class="hl opt">(</span>id<span class="hl opt">,</span> value<span class="hl opt">);</span>
<span class="hl opt">}</span>

<span class="hl com">/**</span>
<span class="hl com"> * \brief Retrieve the control at \a index</span>
<span class="hl com"> * \param[in] index The control index</span>
<span class="hl com"> *</span>
<span class="hl com"> * Controls are stored in a V4L2ControlList in order of insertion and this</span>
<span class="hl com"> * method retrieves the control at \a index.</span>
<span class="hl com"> *</span>
<span class="hl com"> * \return A pointer to the V4L2Control at \a index or nullptr if the</span>
<span class="hl com"> * index is larger than the number of controls</span>
<span class="hl com"> */</span>
V4L2Control <span class="hl opt">*</span><span class="hl kwc">V4L2ControlList</span><span class="hl opt">::</span><span class="hl kwd">getByIndex</span><span class="hl opt">(</span><span class="hl kwb">unsigned int</span> index<span class="hl opt">)</span>
<span class="hl opt">{</span>
	<span class="hl kwa">if</span> <span class="hl opt">(</span>index <span class="hl opt">&gt;=</span> controls_<span class="hl opt">.</span><span class="hl kwd">size</span><span class="hl opt">())</span>
		<span class="hl kwa">return</span> <span class="hl kwc">nullptr</span><span class="hl opt">;</span>

	<span class="hl kwa">return</span> <span class="hl opt">&amp;</span>controls_<span class="hl opt">[</span>index<span class="hl opt">];</span>
<span class="hl opt">}</span>

<span class="hl com">/**</span>
<span class="hl com"> * \brief Retrieve the control with \a id</span>
<span class="hl com"> * \param[in] id The V4L2 control ID (V4L2_CID_xx)</span>
<span class="hl com"> * \return A pointer to the V4L2Control with \a id or nullptr if the</span>
<span class="hl com"> * control ID is not part of this instance.</span>
<span class="hl com"> */</span>
V4L2Control <span class="hl opt">*</span><span class="hl kwc">V4L2ControlList</span><span class="hl opt">::</span><span class="hl kwc">operator</span><span class="hl opt">[](</span><span class="hl kwb">unsigned int</span> id<span class="hl opt">)</span>
<span class="hl opt">{</span>
	<span class="hl kwa">for</span> <span class="hl opt">(</span>V4L2Control <span class="hl opt">&amp;</span>ctrl <span class="hl opt">:</span> controls_<span class="hl opt">) {</span>
		<span class="hl kwa">if</span> <span class="hl opt">(</span>ctrl<span class="hl opt">.</span><span class="hl kwd">id</span><span class="hl opt">() ==</span> id<span class="hl opt">)</span>
			<span class="hl kwa">return</span> <span class="hl opt">&amp;</span>ctrl<span class="hl opt">;</span>
	<span class="hl opt">}</span>

	<span class="hl kwa">return</span> <span class="hl kwc">nullptr</span><span class="hl opt">;</span>
<span class="hl opt">}</span>

<span class="hl opt">}</span> <span class="hl com">/* namespace libcamera */</span>