123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790 |
- /*
- * Copyright (C) 2011-2013 Freescale Semiconductor, Inc. All Rights Reserved.
- * Copyright (C) 2014-2017 Mentor Graphics Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
- #include <linux/clk.h>
- #include <linux/clk-provider.h>
- #include <linux/clkdev.h>
- #include <linux/ctype.h>
- #include <linux/delay.h>
- #include <linux/device.h>
- #include <linux/gpio/consumer.h>
- #include <linux/i2c.h>
- #include <linux/init.h>
- #include <linux/module.h>
- #include <linux/of_device.h>
- #include <linux/regulator/consumer.h>
- #include <linux/slab.h>
- #include <linux/types.h>
- #include <media/v4l2-async.h>
- #include <media/v4l2-ctrls.h>
- #include <media/v4l2-device.h>
- #include <media/v4l2-fwnode.h>
- #include <media/v4l2-subdev.h>
- /* min/typical/max system clock (xclk) frequencies */
- #define OV5640_XCLK_MIN 6000000
- #define OV5640_XCLK_MAX 54000000
- #define OV5640_DEFAULT_SLAVE_ID 0x3c
- #define OV5640_REG_SYS_RESET02 0x3002
- #define OV5640_REG_SYS_CLOCK_ENABLE02 0x3006
- #define OV5640_REG_SYS_CTRL0 0x3008
- #define OV5640_REG_CHIP_ID 0x300a
- #define OV5640_REG_IO_MIPI_CTRL00 0x300e
- #define OV5640_REG_PAD_OUTPUT_ENABLE01 0x3017
- #define OV5640_REG_PAD_OUTPUT_ENABLE02 0x3018
- #define OV5640_REG_PAD_OUTPUT00 0x3019
- #define OV5640_REG_SYSTEM_CONTROL1 0x302e
- #define OV5640_REG_SC_PLL_CTRL0 0x3034
- #define OV5640_REG_SC_PLL_CTRL1 0x3035
- #define OV5640_REG_SC_PLL_CTRL2 0x3036
- #define OV5640_REG_SC_PLL_CTRL3 0x3037
- #define OV5640_REG_SLAVE_ID 0x3100
- #define OV5640_REG_SCCB_SYS_CTRL1 0x3103
- #define OV5640_REG_SYS_ROOT_DIVIDER 0x3108
- #define OV5640_REG_AWB_R_GAIN 0x3400
- #define OV5640_REG_AWB_G_GAIN 0x3402
- #define OV5640_REG_AWB_B_GAIN 0x3404
- #define OV5640_REG_AWB_MANUAL_CTRL 0x3406
- #define OV5640_REG_AEC_PK_EXPOSURE_HI 0x3500
- #define OV5640_REG_AEC_PK_EXPOSURE_MED 0x3501
- #define OV5640_REG_AEC_PK_EXPOSURE_LO 0x3502
- #define OV5640_REG_AEC_PK_MANUAL 0x3503
- #define OV5640_REG_AEC_PK_REAL_GAIN 0x350a
- #define OV5640_REG_AEC_PK_VTS 0x350c
- #define OV5640_REG_TIMING_DVPHO 0x3808
- #define OV5640_REG_TIMING_DVPVO 0x380a
- #define OV5640_REG_TIMING_HTS 0x380c
- #define OV5640_REG_TIMING_VTS 0x380e
- #define OV5640_REG_TIMING_TC_REG20 0x3820
- #define OV5640_REG_TIMING_TC_REG21 0x3821
- #define OV5640_REG_AEC_CTRL00 0x3a00
- #define OV5640_REG_AEC_B50_STEP 0x3a08
- #define OV5640_REG_AEC_B60_STEP 0x3a0a
- #define OV5640_REG_AEC_CTRL0D 0x3a0d
- #define OV5640_REG_AEC_CTRL0E 0x3a0e
- #define OV5640_REG_AEC_CTRL0F 0x3a0f
- #define OV5640_REG_AEC_CTRL10 0x3a10
- #define OV5640_REG_AEC_CTRL11 0x3a11
- #define OV5640_REG_AEC_CTRL1B 0x3a1b
- #define OV5640_REG_AEC_CTRL1E 0x3a1e
- #define OV5640_REG_AEC_CTRL1F 0x3a1f
- #define OV5640_REG_HZ5060_CTRL00 0x3c00
- #define OV5640_REG_HZ5060_CTRL01 0x3c01
- #define OV5640_REG_SIGMADELTA_CTRL0C 0x3c0c
- #define OV5640_REG_FRAME_CTRL01 0x4202
- #define OV5640_REG_FORMAT_CONTROL00 0x4300
- #define OV5640_REG_POLARITY_CTRL00 0x4740
- #define OV5640_REG_MIPI_CTRL00 0x4800
- #define OV5640_REG_DEBUG_MODE 0x4814
- #define OV5640_REG_ISP_FORMAT_MUX_CTRL 0x501f
- #define OV5640_REG_PRE_ISP_TEST_SET1 0x503d
- #define OV5640_REG_SDE_CTRL0 0x5580
- #define OV5640_REG_SDE_CTRL1 0x5581
- #define OV5640_REG_SDE_CTRL3 0x5583
- #define OV5640_REG_SDE_CTRL4 0x5584
- #define OV5640_REG_SDE_CTRL5 0x5585
- #define OV5640_REG_AVG_READOUT 0x56a1
- #define OV5640_SCLK2X_ROOT_DIVIDER_DEFAULT 1
- #define OV5640_SCLK_ROOT_DIVIDER_DEFAULT 2
- enum ov5640_mode_id {
- OV5640_MODE_QCIF_176_144 = 0,
- OV5640_MODE_QVGA_320_240,
- OV5640_MODE_VGA_640_480,
- OV5640_MODE_NTSC_720_480,
- OV5640_MODE_PAL_720_576,
- OV5640_MODE_XGA_1024_768,
- OV5640_MODE_720P_1280_720,
- OV5640_MODE_1080P_1920_1080,
- OV5640_MODE_QSXGA_2592_1944,
- OV5640_NUM_MODES,
- };
- enum ov5640_frame_rate {
- OV5640_15_FPS = 0,
- OV5640_30_FPS,
- OV5640_NUM_FRAMERATES,
- };
- struct ov5640_pixfmt {
- u32 code;
- u32 colorspace;
- };
- static const struct ov5640_pixfmt ov5640_formats[] = {
- { MEDIA_BUS_FMT_JPEG_1X8, V4L2_COLORSPACE_JPEG, },
- { MEDIA_BUS_FMT_UYVY8_2X8, V4L2_COLORSPACE_SRGB, },
- { MEDIA_BUS_FMT_YUYV8_2X8, V4L2_COLORSPACE_SRGB, },
- { MEDIA_BUS_FMT_RGB565_2X8_LE, V4L2_COLORSPACE_SRGB, },
- { MEDIA_BUS_FMT_RGB565_2X8_BE, V4L2_COLORSPACE_SRGB, },
- };
- /*
- * FIXME: remove this when a subdev API becomes available
- * to set the MIPI CSI-2 virtual channel.
- */
- static unsigned int virtual_channel;
- module_param(virtual_channel, uint, 0444);
- MODULE_PARM_DESC(virtual_channel,
- "MIPI CSI-2 virtual channel (0..3), default 0");
- static const int ov5640_framerates[] = {
- [OV5640_15_FPS] = 15,
- [OV5640_30_FPS] = 30,
- };
- /* regulator supplies */
- static const char * const ov5640_supply_name[] = {
- "DOVDD", /* Digital I/O (1.8V) supply */
- "DVDD", /* Digital Core (1.5V) supply */
- "AVDD", /* Analog (2.8V) supply */
- };
- #define OV5640_NUM_SUPPLIES ARRAY_SIZE(ov5640_supply_name)
- /*
- * Image size under 1280 * 960 are SUBSAMPLING
- * Image size upper 1280 * 960 are SCALING
- */
- enum ov5640_downsize_mode {
- SUBSAMPLING,
- SCALING,
- };
- struct reg_value {
- u16 reg_addr;
- u8 val;
- u8 mask;
- u32 delay_ms;
- };
- struct ov5640_mode_info {
- enum ov5640_mode_id id;
- enum ov5640_downsize_mode dn_mode;
- u32 hact;
- u32 htot;
- u32 vact;
- u32 vtot;
- const struct reg_value *reg_data;
- u32 reg_data_size;
- };
- struct ov5640_ctrls {
- struct v4l2_ctrl_handler handler;
- struct {
- struct v4l2_ctrl *auto_exp;
- struct v4l2_ctrl *exposure;
- };
- struct {
- struct v4l2_ctrl *auto_wb;
- struct v4l2_ctrl *blue_balance;
- struct v4l2_ctrl *red_balance;
- };
- struct {
- struct v4l2_ctrl *auto_gain;
- struct v4l2_ctrl *gain;
- };
- struct v4l2_ctrl *brightness;
- struct v4l2_ctrl *light_freq;
- struct v4l2_ctrl *saturation;
- struct v4l2_ctrl *contrast;
- struct v4l2_ctrl *hue;
- struct v4l2_ctrl *test_pattern;
- struct v4l2_ctrl *hflip;
- struct v4l2_ctrl *vflip;
- };
- struct ov5640_dev {
- struct i2c_client *i2c_client;
- struct v4l2_subdev sd;
- struct media_pad pad;
- struct v4l2_fwnode_endpoint ep; /* the parsed DT endpoint info */
- struct clk *xclk; /* system clock to OV5640 */
- u32 xclk_freq;
- struct regulator_bulk_data supplies[OV5640_NUM_SUPPLIES];
- struct gpio_desc *reset_gpio;
- struct gpio_desc *pwdn_gpio;
- bool upside_down;
- /* lock to protect all members below */
- struct mutex lock;
- int power_count;
- struct v4l2_mbus_framefmt fmt;
- const struct ov5640_mode_info *current_mode;
- enum ov5640_frame_rate current_fr;
- struct v4l2_fract frame_interval;
- struct ov5640_ctrls ctrls;
- u32 prev_sysclk, prev_hts;
- u32 ae_low, ae_high, ae_target;
- bool pending_mode_change;
- bool streaming;
- };
- static inline struct ov5640_dev *to_ov5640_dev(struct v4l2_subdev *sd)
- {
- return container_of(sd, struct ov5640_dev, sd);
- }
- static inline struct v4l2_subdev *ctrl_to_sd(struct v4l2_ctrl *ctrl)
- {
- return &container_of(ctrl->handler, struct ov5640_dev,
- ctrls.handler)->sd;
- }
- /*
- * FIXME: all of these register tables are likely filled with
- * entries that set the register to their power-on default values,
- * and which are otherwise not touched by this driver. Those entries
- * should be identified and removed to speed register load time
- * over i2c.
- */
- static const struct reg_value ov5640_init_setting_30fps_VGA[] = {
- {0x3103, 0x11, 0, 0}, {0x3008, 0x82, 0, 5}, {0x3008, 0x42, 0, 0},
- {0x3103, 0x03, 0, 0}, {0x3017, 0x00, 0, 0}, {0x3018, 0x00, 0, 0},
- {0x3034, 0x18, 0, 0}, {0x3035, 0x14, 0, 0}, {0x3036, 0x38, 0, 0},
- {0x3037, 0x13, 0, 0}, {0x3630, 0x36, 0, 0},
- {0x3631, 0x0e, 0, 0}, {0x3632, 0xe2, 0, 0}, {0x3633, 0x12, 0, 0},
- {0x3621, 0xe0, 0, 0}, {0x3704, 0xa0, 0, 0}, {0x3703, 0x5a, 0, 0},
- {0x3715, 0x78, 0, 0}, {0x3717, 0x01, 0, 0}, {0x370b, 0x60, 0, 0},
- {0x3705, 0x1a, 0, 0}, {0x3905, 0x02, 0, 0}, {0x3906, 0x10, 0, 0},
- {0x3901, 0x0a, 0, 0}, {0x3731, 0x12, 0, 0}, {0x3600, 0x08, 0, 0},
- {0x3601, 0x33, 0, 0}, {0x302d, 0x60, 0, 0}, {0x3620, 0x52, 0, 0},
- {0x371b, 0x20, 0, 0}, {0x471c, 0x50, 0, 0}, {0x3a13, 0x43, 0, 0},
- {0x3a18, 0x00, 0, 0}, {0x3a19, 0xf8, 0, 0}, {0x3635, 0x13, 0, 0},
- {0x3636, 0x03, 0, 0}, {0x3634, 0x40, 0, 0}, {0x3622, 0x01, 0, 0},
- {0x3c01, 0xa4, 0, 0}, {0x3c04, 0x28, 0, 0}, {0x3c05, 0x98, 0, 0},
- {0x3c06, 0x00, 0, 0}, {0x3c07, 0x08, 0, 0}, {0x3c08, 0x00, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3820, 0x41, 0, 0}, {0x3821, 0x07, 0, 0}, {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x3000, 0x00, 0, 0},
- {0x3002, 0x1c, 0, 0}, {0x3004, 0xff, 0, 0}, {0x3006, 0xc3, 0, 0},
- {0x300e, 0x45, 0, 0}, {0x302e, 0x08, 0, 0}, {0x4300, 0x3f, 0, 0},
- {0x501f, 0x00, 0, 0}, {0x4713, 0x03, 0, 0}, {0x4407, 0x04, 0, 0},
- {0x440e, 0x00, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x4837, 0x0a, 0, 0}, {0x4800, 0x04, 0, 0}, {0x3824, 0x02, 0, 0},
- {0x5000, 0xa7, 0, 0}, {0x5001, 0xa3, 0, 0}, {0x5180, 0xff, 0, 0},
- {0x5181, 0xf2, 0, 0}, {0x5182, 0x00, 0, 0}, {0x5183, 0x14, 0, 0},
- {0x5184, 0x25, 0, 0}, {0x5185, 0x24, 0, 0}, {0x5186, 0x09, 0, 0},
- {0x5187, 0x09, 0, 0}, {0x5188, 0x09, 0, 0}, {0x5189, 0x88, 0, 0},
- {0x518a, 0x54, 0, 0}, {0x518b, 0xee, 0, 0}, {0x518c, 0xb2, 0, 0},
- {0x518d, 0x50, 0, 0}, {0x518e, 0x34, 0, 0}, {0x518f, 0x6b, 0, 0},
- {0x5190, 0x46, 0, 0}, {0x5191, 0xf8, 0, 0}, {0x5192, 0x04, 0, 0},
- {0x5193, 0x70, 0, 0}, {0x5194, 0xf0, 0, 0}, {0x5195, 0xf0, 0, 0},
- {0x5196, 0x03, 0, 0}, {0x5197, 0x01, 0, 0}, {0x5198, 0x04, 0, 0},
- {0x5199, 0x6c, 0, 0}, {0x519a, 0x04, 0, 0}, {0x519b, 0x00, 0, 0},
- {0x519c, 0x09, 0, 0}, {0x519d, 0x2b, 0, 0}, {0x519e, 0x38, 0, 0},
- {0x5381, 0x1e, 0, 0}, {0x5382, 0x5b, 0, 0}, {0x5383, 0x08, 0, 0},
- {0x5384, 0x0a, 0, 0}, {0x5385, 0x7e, 0, 0}, {0x5386, 0x88, 0, 0},
- {0x5387, 0x7c, 0, 0}, {0x5388, 0x6c, 0, 0}, {0x5389, 0x10, 0, 0},
- {0x538a, 0x01, 0, 0}, {0x538b, 0x98, 0, 0}, {0x5300, 0x08, 0, 0},
- {0x5301, 0x30, 0, 0}, {0x5302, 0x10, 0, 0}, {0x5303, 0x00, 0, 0},
- {0x5304, 0x08, 0, 0}, {0x5305, 0x30, 0, 0}, {0x5306, 0x08, 0, 0},
- {0x5307, 0x16, 0, 0}, {0x5309, 0x08, 0, 0}, {0x530a, 0x30, 0, 0},
- {0x530b, 0x04, 0, 0}, {0x530c, 0x06, 0, 0}, {0x5480, 0x01, 0, 0},
- {0x5481, 0x08, 0, 0}, {0x5482, 0x14, 0, 0}, {0x5483, 0x28, 0, 0},
- {0x5484, 0x51, 0, 0}, {0x5485, 0x65, 0, 0}, {0x5486, 0x71, 0, 0},
- {0x5487, 0x7d, 0, 0}, {0x5488, 0x87, 0, 0}, {0x5489, 0x91, 0, 0},
- {0x548a, 0x9a, 0, 0}, {0x548b, 0xaa, 0, 0}, {0x548c, 0xb8, 0, 0},
- {0x548d, 0xcd, 0, 0}, {0x548e, 0xdd, 0, 0}, {0x548f, 0xea, 0, 0},
- {0x5490, 0x1d, 0, 0}, {0x5580, 0x02, 0, 0}, {0x5583, 0x40, 0, 0},
- {0x5584, 0x10, 0, 0}, {0x5589, 0x10, 0, 0}, {0x558a, 0x00, 0, 0},
- {0x558b, 0xf8, 0, 0}, {0x5800, 0x23, 0, 0}, {0x5801, 0x14, 0, 0},
- {0x5802, 0x0f, 0, 0}, {0x5803, 0x0f, 0, 0}, {0x5804, 0x12, 0, 0},
- {0x5805, 0x26, 0, 0}, {0x5806, 0x0c, 0, 0}, {0x5807, 0x08, 0, 0},
- {0x5808, 0x05, 0, 0}, {0x5809, 0x05, 0, 0}, {0x580a, 0x08, 0, 0},
- {0x580b, 0x0d, 0, 0}, {0x580c, 0x08, 0, 0}, {0x580d, 0x03, 0, 0},
- {0x580e, 0x00, 0, 0}, {0x580f, 0x00, 0, 0}, {0x5810, 0x03, 0, 0},
- {0x5811, 0x09, 0, 0}, {0x5812, 0x07, 0, 0}, {0x5813, 0x03, 0, 0},
- {0x5814, 0x00, 0, 0}, {0x5815, 0x01, 0, 0}, {0x5816, 0x03, 0, 0},
- {0x5817, 0x08, 0, 0}, {0x5818, 0x0d, 0, 0}, {0x5819, 0x08, 0, 0},
- {0x581a, 0x05, 0, 0}, {0x581b, 0x06, 0, 0}, {0x581c, 0x08, 0, 0},
- {0x581d, 0x0e, 0, 0}, {0x581e, 0x29, 0, 0}, {0x581f, 0x17, 0, 0},
- {0x5820, 0x11, 0, 0}, {0x5821, 0x11, 0, 0}, {0x5822, 0x15, 0, 0},
- {0x5823, 0x28, 0, 0}, {0x5824, 0x46, 0, 0}, {0x5825, 0x26, 0, 0},
- {0x5826, 0x08, 0, 0}, {0x5827, 0x26, 0, 0}, {0x5828, 0x64, 0, 0},
- {0x5829, 0x26, 0, 0}, {0x582a, 0x24, 0, 0}, {0x582b, 0x22, 0, 0},
- {0x582c, 0x24, 0, 0}, {0x582d, 0x24, 0, 0}, {0x582e, 0x06, 0, 0},
- {0x582f, 0x22, 0, 0}, {0x5830, 0x40, 0, 0}, {0x5831, 0x42, 0, 0},
- {0x5832, 0x24, 0, 0}, {0x5833, 0x26, 0, 0}, {0x5834, 0x24, 0, 0},
- {0x5835, 0x22, 0, 0}, {0x5836, 0x22, 0, 0}, {0x5837, 0x26, 0, 0},
- {0x5838, 0x44, 0, 0}, {0x5839, 0x24, 0, 0}, {0x583a, 0x26, 0, 0},
- {0x583b, 0x28, 0, 0}, {0x583c, 0x42, 0, 0}, {0x583d, 0xce, 0, 0},
- {0x5025, 0x00, 0, 0}, {0x3a0f, 0x30, 0, 0}, {0x3a10, 0x28, 0, 0},
- {0x3a1b, 0x30, 0, 0}, {0x3a1e, 0x26, 0, 0}, {0x3a11, 0x60, 0, 0},
- {0x3a1f, 0x14, 0, 0}, {0x3008, 0x02, 0, 0}, {0x3c00, 0x04, 0, 300},
- };
- static const struct reg_value ov5640_setting_30fps_VGA_640_480[] = {
- {0x3035, 0x14, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x0e, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0}, {0x3503, 0x00, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_VGA_640_480[] = {
- {0x3035, 0x22, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_XGA_1024_768[] = {
- {0x3035, 0x14, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x0e, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0}, {0x3503, 0x00, 0, 0},
- {0x3035, 0x12, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_XGA_1024_768[] = {
- {0x3035, 0x22, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_QVGA_320_240[] = {
- {0x3035, 0x14, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_QVGA_320_240[] = {
- {0x3035, 0x22, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_QCIF_176_144[] = {
- {0x3035, 0x14, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_QCIF_176_144[] = {
- {0x3035, 0x22, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_NTSC_720_480[] = {
- {0x3035, 0x12, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x3c, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_NTSC_720_480[] = {
- {0x3035, 0x22, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x3c, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_PAL_720_576[] = {
- {0x3035, 0x12, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x38, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_PAL_720_576[] = {
- {0x3035, 0x22, 0, 0}, {0x3036, 0x38, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x04, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9b, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x38, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x06, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0xa3, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_720P_1280_720[] = {
- {0x3008, 0x42, 0, 0},
- {0x3035, 0x21, 0, 0}, {0x3036, 0x54, 0, 0}, {0x3c07, 0x07, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0xfa, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x06, 0, 0}, {0x3807, 0xa9, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x04, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x02, 0, 0},
- {0x3a03, 0xe4, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0xbc, 0, 0},
- {0x3a0a, 0x01, 0, 0}, {0x3a0b, 0x72, 0, 0}, {0x3a0e, 0x01, 0, 0},
- {0x3a0d, 0x02, 0, 0}, {0x3a14, 0x02, 0, 0}, {0x3a15, 0xe4, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x02, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x37, 0, 0}, {0x460c, 0x20, 0, 0},
- {0x3824, 0x04, 0, 0}, {0x5001, 0x83, 0, 0}, {0x4005, 0x1a, 0, 0},
- {0x3008, 0x02, 0, 0}, {0x3503, 0, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_720P_1280_720[] = {
- {0x3035, 0x41, 0, 0}, {0x3036, 0x54, 0, 0}, {0x3c07, 0x07, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x31, 0, 0},
- {0x3815, 0x31, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0xfa, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x06, 0, 0}, {0x3807, 0xa9, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x04, 0, 0},
- {0x3618, 0x00, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3709, 0x52, 0, 0}, {0x370c, 0x03, 0, 0}, {0x3a02, 0x02, 0, 0},
- {0x3a03, 0xe4, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0xbc, 0, 0},
- {0x3a0a, 0x01, 0, 0}, {0x3a0b, 0x72, 0, 0}, {0x3a0e, 0x01, 0, 0},
- {0x3a0d, 0x02, 0, 0}, {0x3a14, 0x02, 0, 0}, {0x3a15, 0xe4, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x02, 0, 0}, {0x4713, 0x02, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x37, 0, 0}, {0x460c, 0x20, 0, 0},
- {0x3824, 0x04, 0, 0}, {0x5001, 0x83, 0, 0},
- };
- static const struct reg_value ov5640_setting_30fps_1080P_1920_1080[] = {
- {0x3008, 0x42, 0, 0},
- {0x3035, 0x21, 0, 0}, {0x3036, 0x54, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x11, 0, 0},
- {0x3815, 0x11, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x00, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9f, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x04, 0, 0},
- {0x3618, 0x04, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x21, 0, 0},
- {0x3709, 0x12, 0, 0}, {0x370c, 0x00, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x06, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0x83, 0, 0}, {0x3035, 0x11, 0, 0},
- {0x3036, 0x54, 0, 0}, {0x3c07, 0x07, 0, 0}, {0x3c08, 0x00, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3800, 0x01, 0, 0}, {0x3801, 0x50, 0, 0}, {0x3802, 0x01, 0, 0},
- {0x3803, 0xb2, 0, 0}, {0x3804, 0x08, 0, 0}, {0x3805, 0xef, 0, 0},
- {0x3806, 0x05, 0, 0}, {0x3807, 0xf1, 0, 0},
- {0x3612, 0x2b, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3a02, 0x04, 0, 0}, {0x3a03, 0x60, 0, 0}, {0x3a08, 0x01, 0, 0},
- {0x3a09, 0x50, 0, 0}, {0x3a0a, 0x01, 0, 0}, {0x3a0b, 0x18, 0, 0},
- {0x3a0e, 0x03, 0, 0}, {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x04, 0, 0},
- {0x3a15, 0x60, 0, 0}, {0x4713, 0x02, 0, 0}, {0x4407, 0x04, 0, 0},
- {0x460b, 0x37, 0, 0}, {0x460c, 0x20, 0, 0}, {0x3824, 0x04, 0, 0},
- {0x4005, 0x1a, 0, 0}, {0x3008, 0x02, 0, 0},
- {0x3503, 0, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_1080P_1920_1080[] = {
- {0x3008, 0x42, 0, 0},
- {0x3035, 0x21, 0, 0}, {0x3036, 0x54, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x11, 0, 0},
- {0x3815, 0x11, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x00, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9f, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x04, 0, 0},
- {0x3618, 0x04, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x21, 0, 0},
- {0x3709, 0x12, 0, 0}, {0x370c, 0x00, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x06, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0x83, 0, 0}, {0x3035, 0x21, 0, 0},
- {0x3036, 0x54, 0, 1}, {0x3c07, 0x07, 0, 0}, {0x3c08, 0x00, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3800, 0x01, 0, 0}, {0x3801, 0x50, 0, 0}, {0x3802, 0x01, 0, 0},
- {0x3803, 0xb2, 0, 0}, {0x3804, 0x08, 0, 0}, {0x3805, 0xef, 0, 0},
- {0x3806, 0x05, 0, 0}, {0x3807, 0xf1, 0, 0},
- {0x3612, 0x2b, 0, 0}, {0x3708, 0x64, 0, 0},
- {0x3a02, 0x04, 0, 0}, {0x3a03, 0x60, 0, 0}, {0x3a08, 0x01, 0, 0},
- {0x3a09, 0x50, 0, 0}, {0x3a0a, 0x01, 0, 0}, {0x3a0b, 0x18, 0, 0},
- {0x3a0e, 0x03, 0, 0}, {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x04, 0, 0},
- {0x3a15, 0x60, 0, 0}, {0x4713, 0x02, 0, 0}, {0x4407, 0x04, 0, 0},
- {0x460b, 0x37, 0, 0}, {0x460c, 0x20, 0, 0}, {0x3824, 0x04, 0, 0},
- {0x4005, 0x1a, 0, 0}, {0x3008, 0x02, 0, 0}, {0x3503, 0, 0, 0},
- };
- static const struct reg_value ov5640_setting_15fps_QSXGA_2592_1944[] = {
- {0x3035, 0x21, 0, 0}, {0x3036, 0x54, 0, 0}, {0x3c07, 0x08, 0, 0},
- {0x3c09, 0x1c, 0, 0}, {0x3c0a, 0x9c, 0, 0}, {0x3c0b, 0x40, 0, 0},
- {0x3814, 0x11, 0, 0},
- {0x3815, 0x11, 0, 0}, {0x3800, 0x00, 0, 0}, {0x3801, 0x00, 0, 0},
- {0x3802, 0x00, 0, 0}, {0x3803, 0x00, 0, 0}, {0x3804, 0x0a, 0, 0},
- {0x3805, 0x3f, 0, 0}, {0x3806, 0x07, 0, 0}, {0x3807, 0x9f, 0, 0},
- {0x3810, 0x00, 0, 0},
- {0x3811, 0x10, 0, 0}, {0x3812, 0x00, 0, 0}, {0x3813, 0x04, 0, 0},
- {0x3618, 0x04, 0, 0}, {0x3612, 0x29, 0, 0}, {0x3708, 0x21, 0, 0},
- {0x3709, 0x12, 0, 0}, {0x370c, 0x00, 0, 0}, {0x3a02, 0x03, 0, 0},
- {0x3a03, 0xd8, 0, 0}, {0x3a08, 0x01, 0, 0}, {0x3a09, 0x27, 0, 0},
- {0x3a0a, 0x00, 0, 0}, {0x3a0b, 0xf6, 0, 0}, {0x3a0e, 0x03, 0, 0},
- {0x3a0d, 0x04, 0, 0}, {0x3a14, 0x03, 0, 0}, {0x3a15, 0xd8, 0, 0},
- {0x4001, 0x02, 0, 0}, {0x4004, 0x06, 0, 0}, {0x4713, 0x03, 0, 0},
- {0x4407, 0x04, 0, 0}, {0x460b, 0x35, 0, 0}, {0x460c, 0x22, 0, 0},
- {0x3824, 0x02, 0, 0}, {0x5001, 0x83, 0, 70},
- };
- /* power-on sensor init reg table */
- static const struct ov5640_mode_info ov5640_mode_init_data = {
- 0, SUBSAMPLING, 640, 1896, 480, 984,
- ov5640_init_setting_30fps_VGA,
- ARRAY_SIZE(ov5640_init_setting_30fps_VGA),
- };
- static const struct ov5640_mode_info
- ov5640_mode_data[OV5640_NUM_FRAMERATES][OV5640_NUM_MODES] = {
- {
- {OV5640_MODE_QCIF_176_144, SUBSAMPLING,
- 176, 1896, 144, 984,
- ov5640_setting_15fps_QCIF_176_144,
- ARRAY_SIZE(ov5640_setting_15fps_QCIF_176_144)},
- {OV5640_MODE_QVGA_320_240, SUBSAMPLING,
- 320, 1896, 240, 984,
- ov5640_setting_15fps_QVGA_320_240,
- ARRAY_SIZE(ov5640_setting_15fps_QVGA_320_240)},
- {OV5640_MODE_VGA_640_480, SUBSAMPLING,
- 640, 1896, 480, 1080,
- ov5640_setting_15fps_VGA_640_480,
- ARRAY_SIZE(ov5640_setting_15fps_VGA_640_480)},
- {OV5640_MODE_NTSC_720_480, SUBSAMPLING,
- 720, 1896, 480, 984,
- ov5640_setting_15fps_NTSC_720_480,
- ARRAY_SIZE(ov5640_setting_15fps_NTSC_720_480)},
- {OV5640_MODE_PAL_720_576, SUBSAMPLING,
- 720, 1896, 576, 984,
- ov5640_setting_15fps_PAL_720_576,
- ARRAY_SIZE(ov5640_setting_15fps_PAL_720_576)},
- {OV5640_MODE_XGA_1024_768, SUBSAMPLING,
- 1024, 1896, 768, 1080,
- ov5640_setting_15fps_XGA_1024_768,
- ARRAY_SIZE(ov5640_setting_15fps_XGA_1024_768)},
- {OV5640_MODE_720P_1280_720, SUBSAMPLING,
- 1280, 1892, 720, 740,
- ov5640_setting_15fps_720P_1280_720,
- ARRAY_SIZE(ov5640_setting_15fps_720P_1280_720)},
- {OV5640_MODE_1080P_1920_1080, SCALING,
- 1920, 2500, 1080, 1120,
- ov5640_setting_15fps_1080P_1920_1080,
- ARRAY_SIZE(ov5640_setting_15fps_1080P_1920_1080)},
- {OV5640_MODE_QSXGA_2592_1944, SCALING,
- 2592, 2844, 1944, 1968,
- ov5640_setting_15fps_QSXGA_2592_1944,
- ARRAY_SIZE(ov5640_setting_15fps_QSXGA_2592_1944)},
- }, {
- {OV5640_MODE_QCIF_176_144, SUBSAMPLING,
- 176, 1896, 144, 984,
- ov5640_setting_30fps_QCIF_176_144,
- ARRAY_SIZE(ov5640_setting_30fps_QCIF_176_144)},
- {OV5640_MODE_QVGA_320_240, SUBSAMPLING,
- 320, 1896, 240, 984,
- ov5640_setting_30fps_QVGA_320_240,
- ARRAY_SIZE(ov5640_setting_30fps_QVGA_320_240)},
- {OV5640_MODE_VGA_640_480, SUBSAMPLING,
- 640, 1896, 480, 1080,
- ov5640_setting_30fps_VGA_640_480,
- ARRAY_SIZE(ov5640_setting_30fps_VGA_640_480)},
- {OV5640_MODE_NTSC_720_480, SUBSAMPLING,
- 720, 1896, 480, 984,
- ov5640_setting_30fps_NTSC_720_480,
- ARRAY_SIZE(ov5640_setting_30fps_NTSC_720_480)},
- {OV5640_MODE_PAL_720_576, SUBSAMPLING,
- 720, 1896, 576, 984,
- ov5640_setting_30fps_PAL_720_576,
- ARRAY_SIZE(ov5640_setting_30fps_PAL_720_576)},
- {OV5640_MODE_XGA_1024_768, SUBSAMPLING,
- 1024, 1896, 768, 1080,
- ov5640_setting_30fps_XGA_1024_768,
- ARRAY_SIZE(ov5640_setting_30fps_XGA_1024_768)},
- {OV5640_MODE_720P_1280_720, SUBSAMPLING,
- 1280, 1892, 720, 740,
- ov5640_setting_30fps_720P_1280_720,
- ARRAY_SIZE(ov5640_setting_30fps_720P_1280_720)},
- {OV5640_MODE_1080P_1920_1080, SCALING,
- 1920, 2500, 1080, 1120,
- ov5640_setting_30fps_1080P_1920_1080,
- ARRAY_SIZE(ov5640_setting_30fps_1080P_1920_1080)},
- {OV5640_MODE_QSXGA_2592_1944, -1, 0, 0, 0, 0, NULL, 0},
- },
- };
- static int ov5640_init_slave_id(struct ov5640_dev *sensor)
- {
- struct i2c_client *client = sensor->i2c_client;
- struct i2c_msg msg;
- u8 buf[3];
- int ret;
- if (client->addr == OV5640_DEFAULT_SLAVE_ID)
- return 0;
- buf[0] = OV5640_REG_SLAVE_ID >> 8;
- buf[1] = OV5640_REG_SLAVE_ID & 0xff;
- buf[2] = client->addr << 1;
- msg.addr = OV5640_DEFAULT_SLAVE_ID;
- msg.flags = 0;
- msg.buf = buf;
- msg.len = sizeof(buf);
- ret = i2c_transfer(client->adapter, &msg, 1);
- if (ret < 0) {
- dev_err(&client->dev, "%s: failed with %d\n", __func__, ret);
- return ret;
- }
- return 0;
- }
- static int ov5640_write_reg(struct ov5640_dev *sensor, u16 reg, u8 val)
- {
- struct i2c_client *client = sensor->i2c_client;
- struct i2c_msg msg;
- u8 buf[3];
- int ret;
- buf[0] = reg >> 8;
- buf[1] = reg & 0xff;
- buf[2] = val;
- msg.addr = client->addr;
- msg.flags = client->flags;
- msg.buf = buf;
- msg.len = sizeof(buf);
- ret = i2c_transfer(client->adapter, &msg, 1);
- if (ret < 0) {
- dev_err(&client->dev, "%s: error: reg=%x, val=%x\n",
- __func__, reg, val);
- return ret;
- }
- return 0;
- }
- static int ov5640_read_reg(struct ov5640_dev *sensor, u16 reg, u8 *val)
- {
- struct i2c_client *client = sensor->i2c_client;
- struct i2c_msg msg[2];
- u8 buf[2];
- int ret;
- buf[0] = reg >> 8;
- buf[1] = reg & 0xff;
- msg[0].addr = client->addr;
- msg[0].flags = client->flags;
- msg[0].buf = buf;
- msg[0].len = sizeof(buf);
- msg[1].addr = client->addr;
- msg[1].flags = client->flags | I2C_M_RD;
- msg[1].buf = buf;
- msg[1].len = 1;
- ret = i2c_transfer(client->adapter, msg, 2);
- if (ret < 0) {
- dev_err(&client->dev, "%s: error: reg=%x\n",
- __func__, reg);
- return ret;
- }
- *val = buf[0];
- return 0;
- }
- static int ov5640_read_reg16(struct ov5640_dev *sensor, u16 reg, u16 *val)
- {
- u8 hi, lo;
- int ret;
- ret = ov5640_read_reg(sensor, reg, &hi);
- if (ret)
- return ret;
- ret = ov5640_read_reg(sensor, reg + 1, &lo);
- if (ret)
- return ret;
- *val = ((u16)hi << 8) | (u16)lo;
- return 0;
- }
- static int ov5640_write_reg16(struct ov5640_dev *sensor, u16 reg, u16 val)
- {
- int ret;
- ret = ov5640_write_reg(sensor, reg, val >> 8);
- if (ret)
- return ret;
- return ov5640_write_reg(sensor, reg + 1, val & 0xff);
- }
- static int ov5640_mod_reg(struct ov5640_dev *sensor, u16 reg,
- u8 mask, u8 val)
- {
- u8 readval;
- int ret;
- ret = ov5640_read_reg(sensor, reg, &readval);
- if (ret)
- return ret;
- readval &= ~mask;
- val &= mask;
- val |= readval;
- return ov5640_write_reg(sensor, reg, val);
- }
- /* download ov5640 settings to sensor through i2c */
- static int ov5640_load_regs(struct ov5640_dev *sensor,
- const struct ov5640_mode_info *mode)
- {
- const struct reg_value *regs = mode->reg_data;
- unsigned int i;
- u32 delay_ms;
- u16 reg_addr;
- u8 mask, val;
- int ret = 0;
- for (i = 0; i < mode->reg_data_size; ++i, ++regs) {
- delay_ms = regs->delay_ms;
- reg_addr = regs->reg_addr;
- val = regs->val;
- mask = regs->mask;
- if (mask)
- ret = ov5640_mod_reg(sensor, reg_addr, mask, val);
- else
- ret = ov5640_write_reg(sensor, reg_addr, val);
- if (ret)
- break;
- if (delay_ms)
- usleep_range(1000 * delay_ms, 1000 * delay_ms + 100);
- }
- return ret;
- }
- /* read exposure, in number of line periods */
- static int ov5640_get_exposure(struct ov5640_dev *sensor)
- {
- int exp, ret;
- u8 temp;
- ret = ov5640_read_reg(sensor, OV5640_REG_AEC_PK_EXPOSURE_HI, &temp);
- if (ret)
- return ret;
- exp = ((int)temp & 0x0f) << 16;
- ret = ov5640_read_reg(sensor, OV5640_REG_AEC_PK_EXPOSURE_MED, &temp);
- if (ret)
- return ret;
- exp |= ((int)temp << 8);
- ret = ov5640_read_reg(sensor, OV5640_REG_AEC_PK_EXPOSURE_LO, &temp);
- if (ret)
- return ret;
- exp |= (int)temp;
- return exp >> 4;
- }
- /* write exposure, given number of line periods */
- static int ov5640_set_exposure(struct ov5640_dev *sensor, u32 exposure)
- {
- int ret;
- exposure <<= 4;
- ret = ov5640_write_reg(sensor,
- OV5640_REG_AEC_PK_EXPOSURE_LO,
- exposure & 0xff);
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor,
- OV5640_REG_AEC_PK_EXPOSURE_MED,
- (exposure >> 8) & 0xff);
- if (ret)
- return ret;
- return ov5640_write_reg(sensor,
- OV5640_REG_AEC_PK_EXPOSURE_HI,
- (exposure >> 16) & 0x0f);
- }
- static int ov5640_get_gain(struct ov5640_dev *sensor)
- {
- u16 gain;
- int ret;
- ret = ov5640_read_reg16(sensor, OV5640_REG_AEC_PK_REAL_GAIN, &gain);
- if (ret)
- return ret;
- return gain & 0x3ff;
- }
- static int ov5640_set_stream_dvp(struct ov5640_dev *sensor, bool on)
- {
- int ret;
- unsigned int flags = sensor->ep.bus.parallel.flags;
- u8 pclk_pol = 0;
- u8 hsync_pol = 0;
- u8 vsync_pol = 0;
- /*
- * Note about parallel port configuration.
- *
- * When configured in parallel mode, the OV5640 will
- * output 10 bits data on DVP data lines [9:0].
- * If only 8 bits data are wanted, the 8 bits data lines
- * of the camera interface must be physically connected
- * on the DVP data lines [9:2].
- *
- * Control lines polarity can be configured through
- * devicetree endpoint control lines properties.
- * If no endpoint control lines properties are set,
- * polarity will be as below:
- * - VSYNC: active high
- * - HREF: active low
- * - PCLK: active low
- */
- if (on) {
- /*
- * reset MIPI PCLK/SERCLK divider
- *
- * SC PLL CONTRL1 0
- * - [3..0]: MIPI PCLK/SERCLK divider
- */
- ret = ov5640_mod_reg(sensor, OV5640_REG_SC_PLL_CTRL1, 0x0f, 0);
- if (ret)
- return ret;
- /*
- * configure parallel port control lines polarity
- *
- * POLARITY CTRL0
- * - [5]: PCLK polarity (0: active low, 1: active high)
- * - [1]: HREF polarity (0: active low, 1: active high)
- * - [0]: VSYNC polarity (mismatch here between
- * datasheet and hardware, 0 is active high
- * and 1 is active low...)
- */
- if (flags & V4L2_MBUS_PCLK_SAMPLE_RISING)
- pclk_pol = 1;
- if (flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH)
- hsync_pol = 1;
- if (flags & V4L2_MBUS_VSYNC_ACTIVE_LOW)
- vsync_pol = 1;
- ret = ov5640_write_reg(sensor,
- OV5640_REG_POLARITY_CTRL00,
- (pclk_pol << 5) |
- (hsync_pol << 1) |
- vsync_pol);
- if (ret)
- return ret;
- }
- /*
- * powerdown MIPI TX/RX PHY & disable MIPI
- *
- * MIPI CONTROL 00
- * 4: PWDN PHY TX
- * 3: PWDN PHY RX
- * 2: MIPI enable
- */
- ret = ov5640_write_reg(sensor,
- OV5640_REG_IO_MIPI_CTRL00, on ? 0x18 : 0);
- if (ret)
- return ret;
- /*
- * enable VSYNC/HREF/PCLK DVP control lines
- * & D[9:6] DVP data lines
- *
- * PAD OUTPUT ENABLE 01
- * - 6: VSYNC output enable
- * - 5: HREF output enable
- * - 4: PCLK output enable
- * - [3:0]: D[9:6] output enable
- */
- ret = ov5640_write_reg(sensor,
- OV5640_REG_PAD_OUTPUT_ENABLE01,
- on ? 0x7f : 0);
- if (ret)
- return ret;
- /*
- * enable D[5:0] DVP data lines
- *
- * PAD OUTPUT ENABLE 02
- * - [7:2]: D[5:0] output enable
- */
- return ov5640_write_reg(sensor,
- OV5640_REG_PAD_OUTPUT_ENABLE02,
- on ? 0xfc : 0);
- }
- static int ov5640_set_stream_mipi(struct ov5640_dev *sensor, bool on)
- {
- int ret;
- ret = ov5640_mod_reg(sensor, OV5640_REG_MIPI_CTRL00, BIT(5),
- on ? 0 : BIT(5));
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_PAD_OUTPUT00,
- on ? 0x00 : 0x70);
- if (ret)
- return ret;
- return ov5640_write_reg(sensor, OV5640_REG_FRAME_CTRL01,
- on ? 0x00 : 0x0f);
- }
- static int ov5640_get_sysclk(struct ov5640_dev *sensor)
- {
- /* calculate sysclk */
- u32 xvclk = sensor->xclk_freq / 10000;
- u32 multiplier, prediv, VCO, sysdiv, pll_rdiv;
- u32 sclk_rdiv_map[] = {1, 2, 4, 8};
- u32 bit_div2x = 1, sclk_rdiv, sysclk;
- u8 temp1, temp2;
- int ret;
- ret = ov5640_read_reg(sensor, OV5640_REG_SC_PLL_CTRL0, &temp1);
- if (ret)
- return ret;
- temp2 = temp1 & 0x0f;
- if (temp2 == 8 || temp2 == 10)
- bit_div2x = temp2 / 2;
- ret = ov5640_read_reg(sensor, OV5640_REG_SC_PLL_CTRL1, &temp1);
- if (ret)
- return ret;
- sysdiv = temp1 >> 4;
- if (sysdiv == 0)
- sysdiv = 16;
- ret = ov5640_read_reg(sensor, OV5640_REG_SC_PLL_CTRL2, &temp1);
- if (ret)
- return ret;
- multiplier = temp1;
- ret = ov5640_read_reg(sensor, OV5640_REG_SC_PLL_CTRL3, &temp1);
- if (ret)
- return ret;
- prediv = temp1 & 0x0f;
- pll_rdiv = ((temp1 >> 4) & 0x01) + 1;
- ret = ov5640_read_reg(sensor, OV5640_REG_SYS_ROOT_DIVIDER, &temp1);
- if (ret)
- return ret;
- temp2 = temp1 & 0x03;
- sclk_rdiv = sclk_rdiv_map[temp2];
- if (!prediv || !sysdiv || !pll_rdiv || !bit_div2x)
- return -EINVAL;
- VCO = xvclk * multiplier / prediv;
- sysclk = VCO / sysdiv / pll_rdiv * 2 / bit_div2x / sclk_rdiv;
- return sysclk;
- }
- static int ov5640_set_night_mode(struct ov5640_dev *sensor)
- {
- /* read HTS from register settings */
- u8 mode;
- int ret;
- ret = ov5640_read_reg(sensor, OV5640_REG_AEC_CTRL00, &mode);
- if (ret)
- return ret;
- mode &= 0xfb;
- return ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL00, mode);
- }
- static int ov5640_get_hts(struct ov5640_dev *sensor)
- {
- /* read HTS from register settings */
- u16 hts;
- int ret;
- ret = ov5640_read_reg16(sensor, OV5640_REG_TIMING_HTS, &hts);
- if (ret)
- return ret;
- return hts;
- }
- static int ov5640_get_vts(struct ov5640_dev *sensor)
- {
- u16 vts;
- int ret;
- ret = ov5640_read_reg16(sensor, OV5640_REG_TIMING_VTS, &vts);
- if (ret)
- return ret;
- return vts;
- }
- static int ov5640_set_vts(struct ov5640_dev *sensor, int vts)
- {
- return ov5640_write_reg16(sensor, OV5640_REG_TIMING_VTS, vts);
- }
- static int ov5640_get_light_freq(struct ov5640_dev *sensor)
- {
- /* get banding filter value */
- int ret, light_freq = 0;
- u8 temp, temp1;
- ret = ov5640_read_reg(sensor, OV5640_REG_HZ5060_CTRL01, &temp);
- if (ret)
- return ret;
- if (temp & 0x80) {
- /* manual */
- ret = ov5640_read_reg(sensor, OV5640_REG_HZ5060_CTRL00,
- &temp1);
- if (ret)
- return ret;
- if (temp1 & 0x04) {
- /* 50Hz */
- light_freq = 50;
- } else {
- /* 60Hz */
- light_freq = 60;
- }
- } else {
- /* auto */
- ret = ov5640_read_reg(sensor, OV5640_REG_SIGMADELTA_CTRL0C,
- &temp1);
- if (ret)
- return ret;
- if (temp1 & 0x01) {
- /* 50Hz */
- light_freq = 50;
- } else {
- /* 60Hz */
- }
- }
- return light_freq;
- }
- static int ov5640_set_bandingfilter(struct ov5640_dev *sensor)
- {
- u32 band_step60, max_band60, band_step50, max_band50, prev_vts;
- int ret;
- /* read preview PCLK */
- ret = ov5640_get_sysclk(sensor);
- if (ret < 0)
- return ret;
- if (ret == 0)
- return -EINVAL;
- sensor->prev_sysclk = ret;
- /* read preview HTS */
- ret = ov5640_get_hts(sensor);
- if (ret < 0)
- return ret;
- if (ret == 0)
- return -EINVAL;
- sensor->prev_hts = ret;
- /* read preview VTS */
- ret = ov5640_get_vts(sensor);
- if (ret < 0)
- return ret;
- prev_vts = ret;
- /* calculate banding filter */
- /* 60Hz */
- band_step60 = sensor->prev_sysclk * 100 / sensor->prev_hts * 100 / 120;
- ret = ov5640_write_reg16(sensor, OV5640_REG_AEC_B60_STEP, band_step60);
- if (ret)
- return ret;
- if (!band_step60)
- return -EINVAL;
- max_band60 = (int)((prev_vts - 4) / band_step60);
- ret = ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL0D, max_band60);
- if (ret)
- return ret;
- /* 50Hz */
- band_step50 = sensor->prev_sysclk * 100 / sensor->prev_hts;
- ret = ov5640_write_reg16(sensor, OV5640_REG_AEC_B50_STEP, band_step50);
- if (ret)
- return ret;
- if (!band_step50)
- return -EINVAL;
- max_band50 = (int)((prev_vts - 4) / band_step50);
- return ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL0E, max_band50);
- }
- static int ov5640_set_ae_target(struct ov5640_dev *sensor, int target)
- {
- /* stable in high */
- u32 fast_high, fast_low;
- int ret;
- sensor->ae_low = target * 23 / 25; /* 0.92 */
- sensor->ae_high = target * 27 / 25; /* 1.08 */
- fast_high = sensor->ae_high << 1;
- if (fast_high > 255)
- fast_high = 255;
- fast_low = sensor->ae_low >> 1;
- ret = ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL0F, sensor->ae_high);
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL10, sensor->ae_low);
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL1B, sensor->ae_high);
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL1E, sensor->ae_low);
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL11, fast_high);
- if (ret)
- return ret;
- return ov5640_write_reg(sensor, OV5640_REG_AEC_CTRL1F, fast_low);
- }
- static int ov5640_binning_on(struct ov5640_dev *sensor)
- {
- u8 temp;
- int ret;
- ret = ov5640_read_reg(sensor, OV5640_REG_TIMING_TC_REG21, &temp);
- if (ret)
- return ret;
- temp &= 0xfe;
- return temp ? 1 : 0;
- }
- static int ov5640_set_binning(struct ov5640_dev *sensor, bool enable)
- {
- int ret;
- /*
- * TIMING TC REG21:
- * - [0]: Horizontal binning enable
- */
- ret = ov5640_mod_reg(sensor, OV5640_REG_TIMING_TC_REG21,
- BIT(0), enable ? BIT(0) : 0);
- if (ret)
- return ret;
- /*
- * TIMING TC REG20:
- * - [0]: Undocumented, but hardcoded init sequences
- * are always setting REG21/REG20 bit 0 to same value...
- */
- return ov5640_mod_reg(sensor, OV5640_REG_TIMING_TC_REG20,
- BIT(0), enable ? BIT(0) : 0);
- }
- static int ov5640_set_virtual_channel(struct ov5640_dev *sensor)
- {
- struct i2c_client *client = sensor->i2c_client;
- u8 temp, channel = virtual_channel;
- int ret;
- if (channel > 3) {
- dev_err(&client->dev,
- "%s: wrong virtual_channel parameter, expected (0..3), got %d\n",
- __func__, channel);
- return -EINVAL;
- }
- ret = ov5640_read_reg(sensor, OV5640_REG_DEBUG_MODE, &temp);
- if (ret)
- return ret;
- temp &= ~(3 << 6);
- temp |= (channel << 6);
- return ov5640_write_reg(sensor, OV5640_REG_DEBUG_MODE, temp);
- }
- static int ov5640_set_timings(struct ov5640_dev *sensor,
- const struct ov5640_mode_info *mode)
- {
- int ret;
- ret = ov5640_write_reg16(sensor, OV5640_REG_TIMING_DVPHO, mode->hact);
- if (ret < 0)
- return ret;
- ret = ov5640_write_reg16(sensor, OV5640_REG_TIMING_DVPVO, mode->vact);
- if (ret < 0)
- return ret;
- ret = ov5640_write_reg16(sensor, OV5640_REG_TIMING_HTS, mode->htot);
- if (ret < 0)
- return ret;
- ret = ov5640_write_reg16(sensor, OV5640_REG_TIMING_VTS, mode->vtot);
- if (ret < 0)
- return ret;
- return 0;
- }
- static const struct ov5640_mode_info *
- ov5640_find_mode(struct ov5640_dev *sensor, enum ov5640_frame_rate fr,
- int width, int height, bool nearest)
- {
- const struct ov5640_mode_info *mode;
- mode = v4l2_find_nearest_size(ov5640_mode_data[fr],
- ARRAY_SIZE(ov5640_mode_data[fr]),
- hact, vact,
- width, height);
- if (!mode ||
- (!nearest && (mode->hact != width || mode->vact != height)))
- return NULL;
- return mode;
- }
- /*
- * sensor changes between scaling and subsampling, go through
- * exposure calculation
- */
- static int ov5640_set_mode_exposure_calc(struct ov5640_dev *sensor,
- const struct ov5640_mode_info *mode)
- {
- u32 prev_shutter, prev_gain16;
- u32 cap_shutter, cap_gain16;
- u32 cap_sysclk, cap_hts, cap_vts;
- u32 light_freq, cap_bandfilt, cap_maxband;
- u32 cap_gain16_shutter;
- u8 average;
- int ret;
- if (!mode->reg_data)
- return -EINVAL;
- /* read preview shutter */
- ret = ov5640_get_exposure(sensor);
- if (ret < 0)
- return ret;
- prev_shutter = ret;
- ret = ov5640_binning_on(sensor);
- if (ret < 0)
- return ret;
- if (ret && mode->id != OV5640_MODE_720P_1280_720 &&
- mode->id != OV5640_MODE_1080P_1920_1080)
- prev_shutter *= 2;
- /* read preview gain */
- ret = ov5640_get_gain(sensor);
- if (ret < 0)
- return ret;
- prev_gain16 = ret;
- /* get average */
- ret = ov5640_read_reg(sensor, OV5640_REG_AVG_READOUT, &average);
- if (ret)
- return ret;
- /* turn off night mode for capture */
- ret = ov5640_set_night_mode(sensor);
- if (ret < 0)
- return ret;
- /* Write capture setting */
- ret = ov5640_load_regs(sensor, mode);
- if (ret < 0)
- return ret;
- /* read capture VTS */
- ret = ov5640_get_vts(sensor);
- if (ret < 0)
- return ret;
- cap_vts = ret;
- ret = ov5640_get_hts(sensor);
- if (ret < 0)
- return ret;
- if (ret == 0)
- return -EINVAL;
- cap_hts = ret;
- ret = ov5640_get_sysclk(sensor);
- if (ret < 0)
- return ret;
- if (ret == 0)
- return -EINVAL;
- cap_sysclk = ret;
- /* calculate capture banding filter */
- ret = ov5640_get_light_freq(sensor);
- if (ret < 0)
- return ret;
- light_freq = ret;
- if (light_freq == 60) {
- /* 60Hz */
- cap_bandfilt = cap_sysclk * 100 / cap_hts * 100 / 120;
- } else {
- /* 50Hz */
- cap_bandfilt = cap_sysclk * 100 / cap_hts;
- }
- if (!sensor->prev_sysclk) {
- ret = ov5640_get_sysclk(sensor);
- if (ret < 0)
- return ret;
- if (ret == 0)
- return -EINVAL;
- sensor->prev_sysclk = ret;
- }
- if (!cap_bandfilt)
- return -EINVAL;
- cap_maxband = (int)((cap_vts - 4) / cap_bandfilt);
- /* calculate capture shutter/gain16 */
- if (average > sensor->ae_low && average < sensor->ae_high) {
- /* in stable range */
- cap_gain16_shutter =
- prev_gain16 * prev_shutter *
- cap_sysclk / sensor->prev_sysclk *
- sensor->prev_hts / cap_hts *
- sensor->ae_target / average;
- } else {
- cap_gain16_shutter =
- prev_gain16 * prev_shutter *
- cap_sysclk / sensor->prev_sysclk *
- sensor->prev_hts / cap_hts;
- }
- /* gain to shutter */
- if (cap_gain16_shutter < (cap_bandfilt * 16)) {
- /* shutter < 1/100 */
- cap_shutter = cap_gain16_shutter / 16;
- if (cap_shutter < 1)
- cap_shutter = 1;
- cap_gain16 = cap_gain16_shutter / cap_shutter;
- if (cap_gain16 < 16)
- cap_gain16 = 16;
- } else {
- if (cap_gain16_shutter > (cap_bandfilt * cap_maxband * 16)) {
- /* exposure reach max */
- cap_shutter = cap_bandfilt * cap_maxband;
- if (!cap_shutter)
- return -EINVAL;
- cap_gain16 = cap_gain16_shutter / cap_shutter;
- } else {
- /* 1/100 < (cap_shutter = n/100) =< max */
- cap_shutter =
- ((int)(cap_gain16_shutter / 16 / cap_bandfilt))
- * cap_bandfilt;
- if (!cap_shutter)
- return -EINVAL;
- cap_gain16 = cap_gain16_shutter / cap_shutter;
- }
- }
- /* set capture gain */
- ret = __v4l2_ctrl_s_ctrl(sensor->ctrls.gain, cap_gain16);
- if (ret)
- return ret;
- /* write capture shutter */
- if (cap_shutter > (cap_vts - 4)) {
- cap_vts = cap_shutter + 4;
- ret = ov5640_set_vts(sensor, cap_vts);
- if (ret < 0)
- return ret;
- }
- /* set exposure */
- return __v4l2_ctrl_s_ctrl(sensor->ctrls.exposure, cap_shutter);
- }
- /*
- * if sensor changes inside scaling or subsampling
- * change mode directly
- */
- static int ov5640_set_mode_direct(struct ov5640_dev *sensor,
- const struct ov5640_mode_info *mode,
- s32 exposure)
- {
- int ret;
- if (!mode->reg_data)
- return -EINVAL;
- /* Write capture setting */
- ret = ov5640_load_regs(sensor, mode);
- if (ret < 0)
- return ret;
- /* turn auto gain/exposure back on for direct mode */
- ret = __v4l2_ctrl_s_ctrl(sensor->ctrls.auto_gain, 1);
- if (ret)
- return ret;
- return __v4l2_ctrl_s_ctrl(sensor->ctrls.auto_exp, exposure);
- }
- static int ov5640_set_mode(struct ov5640_dev *sensor,
- const struct ov5640_mode_info *orig_mode)
- {
- const struct ov5640_mode_info *mode = sensor->current_mode;
- enum ov5640_downsize_mode dn_mode, orig_dn_mode;
- s32 exposure;
- int ret;
- dn_mode = mode->dn_mode;
- orig_dn_mode = orig_mode->dn_mode;
- /* auto gain and exposure must be turned off when changing modes */
- ret = __v4l2_ctrl_s_ctrl(sensor->ctrls.auto_gain, 0);
- if (ret)
- return ret;
- exposure = sensor->ctrls.auto_exp->val;
- ret = ov5640_set_exposure(sensor, V4L2_EXPOSURE_MANUAL);
- if (ret)
- return ret;
- if ((dn_mode == SUBSAMPLING && orig_dn_mode == SCALING) ||
- (dn_mode == SCALING && orig_dn_mode == SUBSAMPLING)) {
- /*
- * change between subsampling and scaling
- * go through exposure calucation
- */
- ret = ov5640_set_mode_exposure_calc(sensor, mode);
- } else {
- /*
- * change inside subsampling or scaling
- * download firmware directly
- */
- ret = ov5640_set_mode_direct(sensor, mode, exposure);
- }
- if (ret < 0)
- return ret;
- ret = ov5640_set_timings(sensor, mode);
- if (ret < 0)
- return ret;
- ret = ov5640_set_binning(sensor, dn_mode != SCALING);
- if (ret < 0)
- return ret;
- ret = ov5640_set_ae_target(sensor, sensor->ae_target);
- if (ret < 0)
- return ret;
- ret = ov5640_get_light_freq(sensor);
- if (ret < 0)
- return ret;
- ret = ov5640_set_bandingfilter(sensor);
- if (ret < 0)
- return ret;
- ret = ov5640_set_virtual_channel(sensor);
- if (ret < 0)
- return ret;
- sensor->pending_mode_change = false;
- return 0;
- }
- static int ov5640_set_framefmt(struct ov5640_dev *sensor,
- struct v4l2_mbus_framefmt *format);
- /* restore the last set video mode after chip power-on */
- static int ov5640_restore_mode(struct ov5640_dev *sensor)
- {
- int ret;
- /* first load the initial register values */
- ret = ov5640_load_regs(sensor, &ov5640_mode_init_data);
- if (ret < 0)
- return ret;
- ret = ov5640_mod_reg(sensor, OV5640_REG_SYS_ROOT_DIVIDER, 0x3f,
- (ilog2(OV5640_SCLK2X_ROOT_DIVIDER_DEFAULT) << 2) |
- ilog2(OV5640_SCLK_ROOT_DIVIDER_DEFAULT));
- if (ret)
- return ret;
- /* now restore the last capture mode */
- ret = ov5640_set_mode(sensor, &ov5640_mode_init_data);
- if (ret < 0)
- return ret;
- return ov5640_set_framefmt(sensor, &sensor->fmt);
- }
- static void ov5640_power(struct ov5640_dev *sensor, bool enable)
- {
- gpiod_set_value_cansleep(sensor->pwdn_gpio, enable ? 0 : 1);
- }
- static void ov5640_reset(struct ov5640_dev *sensor)
- {
- if (!sensor->reset_gpio)
- return;
- gpiod_set_value_cansleep(sensor->reset_gpio, 0);
- /* camera power cycle */
- ov5640_power(sensor, false);
- usleep_range(5000, 10000);
- ov5640_power(sensor, true);
- usleep_range(5000, 10000);
- gpiod_set_value_cansleep(sensor->reset_gpio, 1);
- usleep_range(1000, 2000);
- gpiod_set_value_cansleep(sensor->reset_gpio, 0);
- usleep_range(5000, 10000);
- }
- static int ov5640_set_power_on(struct ov5640_dev *sensor)
- {
- struct i2c_client *client = sensor->i2c_client;
- int ret;
- ret = clk_prepare_enable(sensor->xclk);
- if (ret) {
- dev_err(&client->dev, "%s: failed to enable clock\n",
- __func__);
- return ret;
- }
- ret = regulator_bulk_enable(OV5640_NUM_SUPPLIES,
- sensor->supplies);
- if (ret) {
- dev_err(&client->dev, "%s: failed to enable regulators\n",
- __func__);
- goto xclk_off;
- }
- ov5640_reset(sensor);
- ov5640_power(sensor, true);
- ret = ov5640_init_slave_id(sensor);
- if (ret)
- goto power_off;
- return 0;
- power_off:
- ov5640_power(sensor, false);
- regulator_bulk_disable(OV5640_NUM_SUPPLIES, sensor->supplies);
- xclk_off:
- clk_disable_unprepare(sensor->xclk);
- return ret;
- }
- static void ov5640_set_power_off(struct ov5640_dev *sensor)
- {
- ov5640_power(sensor, false);
- regulator_bulk_disable(OV5640_NUM_SUPPLIES, sensor->supplies);
- clk_disable_unprepare(sensor->xclk);
- }
- static int ov5640_set_power(struct ov5640_dev *sensor, bool on)
- {
- int ret = 0;
- if (on) {
- ret = ov5640_set_power_on(sensor);
- if (ret)
- return ret;
- ret = ov5640_restore_mode(sensor);
- if (ret)
- goto power_off;
- if (sensor->ep.bus_type == V4L2_MBUS_CSI2) {
- /*
- * start streaming briefly followed by stream off in
- * order to coax the clock lane into LP-11 state.
- */
- ret = ov5640_set_stream_mipi(sensor, true);
- if (ret)
- goto power_off;
- usleep_range(1000, 2000);
- ret = ov5640_set_stream_mipi(sensor, false);
- if (ret)
- goto power_off;
- }
- return 0;
- }
- power_off:
- ov5640_set_power_off(sensor);
- return ret;
- }
- /* --------------- Subdev Operations --------------- */
- static int ov5640_s_power(struct v4l2_subdev *sd, int on)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- int ret = 0;
- mutex_lock(&sensor->lock);
- /*
- * If the power count is modified from 0 to != 0 or from != 0 to 0,
- * update the power state.
- */
- if (sensor->power_count == !on) {
- ret = ov5640_set_power(sensor, !!on);
- if (ret)
- goto out;
- }
- /* Update the power count. */
- sensor->power_count += on ? 1 : -1;
- WARN_ON(sensor->power_count < 0);
- out:
- mutex_unlock(&sensor->lock);
- if (on && !ret && sensor->power_count == 1) {
- /* restore controls */
- ret = v4l2_ctrl_handler_setup(&sensor->ctrls.handler);
- }
- return ret;
- }
- static int ov5640_try_frame_interval(struct ov5640_dev *sensor,
- struct v4l2_fract *fi,
- u32 width, u32 height)
- {
- const struct ov5640_mode_info *mode;
- u32 minfps, maxfps, fps;
- int ret;
- minfps = ov5640_framerates[OV5640_15_FPS];
- maxfps = ov5640_framerates[OV5640_30_FPS];
- if (fi->numerator == 0) {
- fi->denominator = maxfps;
- fi->numerator = 1;
- return OV5640_30_FPS;
- }
- fps = DIV_ROUND_CLOSEST(fi->denominator, fi->numerator);
- fi->numerator = 1;
- if (fps > maxfps)
- fi->denominator = maxfps;
- else if (fps < minfps)
- fi->denominator = minfps;
- else if (2 * fps >= 2 * minfps + (maxfps - minfps))
- fi->denominator = maxfps;
- else
- fi->denominator = minfps;
- ret = (fi->denominator == minfps) ? OV5640_15_FPS : OV5640_30_FPS;
- mode = ov5640_find_mode(sensor, ret, width, height, false);
- return mode ? ret : -EINVAL;
- }
- static int ov5640_get_fmt(struct v4l2_subdev *sd,
- struct v4l2_subdev_pad_config *cfg,
- struct v4l2_subdev_format *format)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- struct v4l2_mbus_framefmt *fmt;
- if (format->pad != 0)
- return -EINVAL;
- mutex_lock(&sensor->lock);
- if (format->which == V4L2_SUBDEV_FORMAT_TRY)
- fmt = v4l2_subdev_get_try_format(&sensor->sd, cfg,
- format->pad);
- else
- fmt = &sensor->fmt;
- format->format = *fmt;
- mutex_unlock(&sensor->lock);
- return 0;
- }
- static int ov5640_try_fmt_internal(struct v4l2_subdev *sd,
- struct v4l2_mbus_framefmt *fmt,
- enum ov5640_frame_rate fr,
- const struct ov5640_mode_info **new_mode)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- const struct ov5640_mode_info *mode;
- int i;
- mode = ov5640_find_mode(sensor, fr, fmt->width, fmt->height, true);
- if (!mode)
- return -EINVAL;
- fmt->width = mode->hact;
- fmt->height = mode->vact;
- if (new_mode)
- *new_mode = mode;
- for (i = 0; i < ARRAY_SIZE(ov5640_formats); i++)
- if (ov5640_formats[i].code == fmt->code)
- break;
- if (i >= ARRAY_SIZE(ov5640_formats))
- i = 0;
- fmt->code = ov5640_formats[i].code;
- fmt->colorspace = ov5640_formats[i].colorspace;
- fmt->ycbcr_enc = V4L2_MAP_YCBCR_ENC_DEFAULT(fmt->colorspace);
- fmt->quantization = V4L2_QUANTIZATION_FULL_RANGE;
- fmt->xfer_func = V4L2_MAP_XFER_FUNC_DEFAULT(fmt->colorspace);
- return 0;
- }
- static int ov5640_set_fmt(struct v4l2_subdev *sd,
- struct v4l2_subdev_pad_config *cfg,
- struct v4l2_subdev_format *format)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- const struct ov5640_mode_info *new_mode;
- struct v4l2_mbus_framefmt *mbus_fmt = &format->format;
- int ret;
- if (format->pad != 0)
- return -EINVAL;
- mutex_lock(&sensor->lock);
- if (sensor->streaming) {
- ret = -EBUSY;
- goto out;
- }
- ret = ov5640_try_fmt_internal(sd, mbus_fmt,
- sensor->current_fr, &new_mode);
- if (ret)
- goto out;
- if (format->which == V4L2_SUBDEV_FORMAT_TRY) {
- struct v4l2_mbus_framefmt *fmt =
- v4l2_subdev_get_try_format(sd, cfg, 0);
- *fmt = *mbus_fmt;
- goto out;
- }
- if (new_mode != sensor->current_mode) {
- sensor->current_mode = new_mode;
- sensor->fmt = *mbus_fmt;
- sensor->pending_mode_change = true;
- }
- out:
- mutex_unlock(&sensor->lock);
- return ret;
- }
- static int ov5640_set_framefmt(struct ov5640_dev *sensor,
- struct v4l2_mbus_framefmt *format)
- {
- int ret = 0;
- bool is_rgb = false;
- bool is_jpeg = false;
- u8 val;
- switch (format->code) {
- case MEDIA_BUS_FMT_UYVY8_2X8:
- /* YUV422, UYVY */
- val = 0x3f;
- break;
- case MEDIA_BUS_FMT_YUYV8_2X8:
- /* YUV422, YUYV */
- val = 0x30;
- break;
- case MEDIA_BUS_FMT_RGB565_2X8_LE:
- /* RGB565 {g[2:0],b[4:0]},{r[4:0],g[5:3]} */
- val = 0x6F;
- is_rgb = true;
- break;
- case MEDIA_BUS_FMT_RGB565_2X8_BE:
- /* RGB565 {r[4:0],g[5:3]},{g[2:0],b[4:0]} */
- val = 0x61;
- is_rgb = true;
- break;
- case MEDIA_BUS_FMT_JPEG_1X8:
- /* YUV422, YUYV */
- val = 0x30;
- is_jpeg = true;
- break;
- default:
- return -EINVAL;
- }
- /* FORMAT CONTROL00: YUV and RGB formatting */
- ret = ov5640_write_reg(sensor, OV5640_REG_FORMAT_CONTROL00, val);
- if (ret)
- return ret;
- /* FORMAT MUX CONTROL: ISP YUV or RGB */
- ret = ov5640_write_reg(sensor, OV5640_REG_ISP_FORMAT_MUX_CTRL,
- is_rgb ? 0x01 : 0x00);
- if (ret)
- return ret;
- /*
- * TIMING TC REG21:
- * - [5]: JPEG enable
- */
- ret = ov5640_mod_reg(sensor, OV5640_REG_TIMING_TC_REG21,
- BIT(5), is_jpeg ? BIT(5) : 0);
- if (ret)
- return ret;
- /*
- * SYSTEM RESET02:
- * - [4]: Reset JFIFO
- * - [3]: Reset SFIFO
- * - [2]: Reset JPEG
- */
- ret = ov5640_mod_reg(sensor, OV5640_REG_SYS_RESET02,
- BIT(4) | BIT(3) | BIT(2),
- is_jpeg ? 0 : (BIT(4) | BIT(3) | BIT(2)));
- if (ret)
- return ret;
- /*
- * CLOCK ENABLE02:
- * - [5]: Enable JPEG 2x clock
- * - [3]: Enable JPEG clock
- */
- return ov5640_mod_reg(sensor, OV5640_REG_SYS_CLOCK_ENABLE02,
- BIT(5) | BIT(3),
- is_jpeg ? (BIT(5) | BIT(3)) : 0);
- }
- /*
- * Sensor Controls.
- */
- static int ov5640_set_ctrl_hue(struct ov5640_dev *sensor, int value)
- {
- int ret;
- if (value) {
- ret = ov5640_mod_reg(sensor, OV5640_REG_SDE_CTRL0,
- BIT(0), BIT(0));
- if (ret)
- return ret;
- ret = ov5640_write_reg16(sensor, OV5640_REG_SDE_CTRL1, value);
- } else {
- ret = ov5640_mod_reg(sensor, OV5640_REG_SDE_CTRL0, BIT(0), 0);
- }
- return ret;
- }
- static int ov5640_set_ctrl_contrast(struct ov5640_dev *sensor, int value)
- {
- int ret;
- if (value) {
- ret = ov5640_mod_reg(sensor, OV5640_REG_SDE_CTRL0,
- BIT(2), BIT(2));
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_SDE_CTRL5,
- value & 0xff);
- } else {
- ret = ov5640_mod_reg(sensor, OV5640_REG_SDE_CTRL0, BIT(2), 0);
- }
- return ret;
- }
- static int ov5640_set_ctrl_saturation(struct ov5640_dev *sensor, int value)
- {
- int ret;
- if (value) {
- ret = ov5640_mod_reg(sensor, OV5640_REG_SDE_CTRL0,
- BIT(1), BIT(1));
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_SDE_CTRL3,
- value & 0xff);
- if (ret)
- return ret;
- ret = ov5640_write_reg(sensor, OV5640_REG_SDE_CTRL4,
- value & 0xff);
- } else {
- ret = ov5640_mod_reg(sensor, OV5640_REG_SDE_CTRL0, BIT(1), 0);
- }
- return ret;
- }
- static int ov5640_set_ctrl_white_balance(struct ov5640_dev *sensor, int awb)
- {
- int ret;
- ret = ov5640_mod_reg(sensor, OV5640_REG_AWB_MANUAL_CTRL,
- BIT(0), awb ? 0 : 1);
- if (ret)
- return ret;
- if (!awb) {
- u16 red = (u16)sensor->ctrls.red_balance->val;
- u16 blue = (u16)sensor->ctrls.blue_balance->val;
- ret = ov5640_write_reg16(sensor, OV5640_REG_AWB_R_GAIN, red);
- if (ret)
- return ret;
- ret = ov5640_write_reg16(sensor, OV5640_REG_AWB_B_GAIN, blue);
- }
- return ret;
- }
- static int ov5640_set_ctrl_exposure(struct ov5640_dev *sensor, int exp)
- {
- struct ov5640_ctrls *ctrls = &sensor->ctrls;
- bool auto_exposure = (exp == V4L2_EXPOSURE_AUTO);
- int ret = 0;
- if (ctrls->auto_exp->is_new) {
- ret = ov5640_mod_reg(sensor, OV5640_REG_AEC_PK_MANUAL,
- BIT(0), auto_exposure ? 0 : BIT(0));
- if (ret)
- return ret;
- }
- if (!auto_exposure && ctrls->exposure->is_new) {
- u16 max_exp;
- ret = ov5640_read_reg16(sensor, OV5640_REG_AEC_PK_VTS,
- &max_exp);
- if (ret)
- return ret;
- ret = ov5640_get_vts(sensor);
- if (ret < 0)
- return ret;
- max_exp += ret;
- ret = 0;
- if (ctrls->exposure->val < max_exp)
- ret = ov5640_set_exposure(sensor, ctrls->exposure->val);
- }
- return ret;
- }
- static int ov5640_set_ctrl_gain(struct ov5640_dev *sensor, int auto_gain)
- {
- struct ov5640_ctrls *ctrls = &sensor->ctrls;
- int ret = 0;
- if (ctrls->auto_gain->is_new) {
- ret = ov5640_mod_reg(sensor, OV5640_REG_AEC_PK_MANUAL,
- BIT(1),
- ctrls->auto_gain->val ? 0 : BIT(1));
- if (ret)
- return ret;
- }
- if (!auto_gain && ctrls->gain->is_new) {
- u16 gain = (u16)ctrls->gain->val;
- ret = ov5640_write_reg16(sensor, OV5640_REG_AEC_PK_REAL_GAIN,
- gain & 0x3ff);
- }
- return ret;
- }
- static int ov5640_set_ctrl_test_pattern(struct ov5640_dev *sensor, int value)
- {
- return ov5640_mod_reg(sensor, OV5640_REG_PRE_ISP_TEST_SET1,
- 0xa4, value ? 0xa4 : 0);
- }
- static int ov5640_set_ctrl_light_freq(struct ov5640_dev *sensor, int value)
- {
- int ret;
- ret = ov5640_mod_reg(sensor, OV5640_REG_HZ5060_CTRL01, BIT(7),
- (value == V4L2_CID_POWER_LINE_FREQUENCY_AUTO) ?
- 0 : BIT(7));
- if (ret)
- return ret;
- return ov5640_mod_reg(sensor, OV5640_REG_HZ5060_CTRL00, BIT(2),
- (value == V4L2_CID_POWER_LINE_FREQUENCY_50HZ) ?
- BIT(2) : 0);
- }
- static int ov5640_set_ctrl_hflip(struct ov5640_dev *sensor, int value)
- {
- /*
- * If sensor is mounted upside down, mirror logic is inversed.
- *
- * Sensor is a BSI (Back Side Illuminated) one,
- * so image captured is physically mirrored.
- * This is why mirror logic is inversed in
- * order to cancel this mirror effect.
- */
- /*
- * TIMING TC REG21:
- * - [2]: ISP mirror
- * - [1]: Sensor mirror
- */
- return ov5640_mod_reg(sensor, OV5640_REG_TIMING_TC_REG21,
- BIT(2) | BIT(1),
- (!(value ^ sensor->upside_down)) ?
- (BIT(2) | BIT(1)) : 0);
- }
- static int ov5640_set_ctrl_vflip(struct ov5640_dev *sensor, int value)
- {
- /* If sensor is mounted upside down, flip logic is inversed */
- /*
- * TIMING TC REG20:
- * - [2]: ISP vflip
- * - [1]: Sensor vflip
- */
- return ov5640_mod_reg(sensor, OV5640_REG_TIMING_TC_REG20,
- BIT(2) | BIT(1),
- (value ^ sensor->upside_down) ?
- (BIT(2) | BIT(1)) : 0);
- }
- static int ov5640_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
- {
- struct v4l2_subdev *sd = ctrl_to_sd(ctrl);
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- int val;
- /* v4l2_ctrl_lock() locks our own mutex */
- switch (ctrl->id) {
- case V4L2_CID_AUTOGAIN:
- if (!ctrl->val)
- return 0;
- val = ov5640_get_gain(sensor);
- if (val < 0)
- return val;
- sensor->ctrls.gain->val = val;
- break;
- case V4L2_CID_EXPOSURE_AUTO:
- if (ctrl->val == V4L2_EXPOSURE_MANUAL)
- return 0;
- val = ov5640_get_exposure(sensor);
- if (val < 0)
- return val;
- sensor->ctrls.exposure->val = val;
- break;
- }
- return 0;
- }
- static int ov5640_s_ctrl(struct v4l2_ctrl *ctrl)
- {
- struct v4l2_subdev *sd = ctrl_to_sd(ctrl);
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- int ret;
- /* v4l2_ctrl_lock() locks our own mutex */
- /*
- * If the device is not powered up by the host driver do
- * not apply any controls to H/W at this time. Instead
- * the controls will be restored right after power-up.
- */
- if (sensor->power_count == 0)
- return 0;
- switch (ctrl->id) {
- case V4L2_CID_AUTOGAIN:
- ret = ov5640_set_ctrl_gain(sensor, ctrl->val);
- break;
- case V4L2_CID_EXPOSURE_AUTO:
- ret = ov5640_set_ctrl_exposure(sensor, ctrl->val);
- break;
- case V4L2_CID_AUTO_WHITE_BALANCE:
- ret = ov5640_set_ctrl_white_balance(sensor, ctrl->val);
- break;
- case V4L2_CID_HUE:
- ret = ov5640_set_ctrl_hue(sensor, ctrl->val);
- break;
- case V4L2_CID_CONTRAST:
- ret = ov5640_set_ctrl_contrast(sensor, ctrl->val);
- break;
- case V4L2_CID_SATURATION:
- ret = ov5640_set_ctrl_saturation(sensor, ctrl->val);
- break;
- case V4L2_CID_TEST_PATTERN:
- ret = ov5640_set_ctrl_test_pattern(sensor, ctrl->val);
- break;
- case V4L2_CID_POWER_LINE_FREQUENCY:
- ret = ov5640_set_ctrl_light_freq(sensor, ctrl->val);
- break;
- case V4L2_CID_HFLIP:
- ret = ov5640_set_ctrl_hflip(sensor, ctrl->val);
- break;
- case V4L2_CID_VFLIP:
- ret = ov5640_set_ctrl_vflip(sensor, ctrl->val);
- break;
- default:
- ret = -EINVAL;
- break;
- }
- return ret;
- }
- static const struct v4l2_ctrl_ops ov5640_ctrl_ops = {
- .g_volatile_ctrl = ov5640_g_volatile_ctrl,
- .s_ctrl = ov5640_s_ctrl,
- };
- static const char * const test_pattern_menu[] = {
- "Disabled",
- "Color bars",
- };
- static int ov5640_init_controls(struct ov5640_dev *sensor)
- {
- const struct v4l2_ctrl_ops *ops = &ov5640_ctrl_ops;
- struct ov5640_ctrls *ctrls = &sensor->ctrls;
- struct v4l2_ctrl_handler *hdl = &ctrls->handler;
- int ret;
- v4l2_ctrl_handler_init(hdl, 32);
- /* we can use our own mutex for the ctrl lock */
- hdl->lock = &sensor->lock;
- /* Auto/manual white balance */
- ctrls->auto_wb = v4l2_ctrl_new_std(hdl, ops,
- V4L2_CID_AUTO_WHITE_BALANCE,
- 0, 1, 1, 1);
- ctrls->blue_balance = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_BLUE_BALANCE,
- 0, 4095, 1, 0);
- ctrls->red_balance = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_RED_BALANCE,
- 0, 4095, 1, 0);
- /* Auto/manual exposure */
- ctrls->auto_exp = v4l2_ctrl_new_std_menu(hdl, ops,
- V4L2_CID_EXPOSURE_AUTO,
- V4L2_EXPOSURE_MANUAL, 0,
- V4L2_EXPOSURE_AUTO);
- ctrls->exposure = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_EXPOSURE,
- 0, 65535, 1, 0);
- /* Auto/manual gain */
- ctrls->auto_gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_AUTOGAIN,
- 0, 1, 1, 1);
- ctrls->gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_GAIN,
- 0, 1023, 1, 0);
- ctrls->saturation = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_SATURATION,
- 0, 255, 1, 64);
- ctrls->hue = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_HUE,
- 0, 359, 1, 0);
- ctrls->contrast = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_CONTRAST,
- 0, 255, 1, 0);
- ctrls->test_pattern =
- v4l2_ctrl_new_std_menu_items(hdl, ops, V4L2_CID_TEST_PATTERN,
- ARRAY_SIZE(test_pattern_menu) - 1,
- 0, 0, test_pattern_menu);
- ctrls->hflip = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_HFLIP,
- 0, 1, 1, 0);
- ctrls->vflip = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_VFLIP,
- 0, 1, 1, 0);
- ctrls->light_freq =
- v4l2_ctrl_new_std_menu(hdl, ops,
- V4L2_CID_POWER_LINE_FREQUENCY,
- V4L2_CID_POWER_LINE_FREQUENCY_AUTO, 0,
- V4L2_CID_POWER_LINE_FREQUENCY_50HZ);
- if (hdl->error) {
- ret = hdl->error;
- goto free_ctrls;
- }
- ctrls->gain->flags |= V4L2_CTRL_FLAG_VOLATILE;
- ctrls->exposure->flags |= V4L2_CTRL_FLAG_VOLATILE;
- v4l2_ctrl_auto_cluster(3, &ctrls->auto_wb, 0, false);
- v4l2_ctrl_auto_cluster(2, &ctrls->auto_gain, 0, true);
- v4l2_ctrl_auto_cluster(2, &ctrls->auto_exp, 1, true);
- sensor->sd.ctrl_handler = hdl;
- return 0;
- free_ctrls:
- v4l2_ctrl_handler_free(hdl);
- return ret;
- }
- static int ov5640_enum_frame_size(struct v4l2_subdev *sd,
- struct v4l2_subdev_pad_config *cfg,
- struct v4l2_subdev_frame_size_enum *fse)
- {
- if (fse->pad != 0)
- return -EINVAL;
- if (fse->index >= OV5640_NUM_MODES)
- return -EINVAL;
- fse->min_width =
- ov5640_mode_data[0][fse->index].hact;
- fse->max_width = fse->min_width;
- fse->min_height =
- ov5640_mode_data[0][fse->index].vact;
- fse->max_height = fse->min_height;
- return 0;
- }
- static int ov5640_enum_frame_interval(
- struct v4l2_subdev *sd,
- struct v4l2_subdev_pad_config *cfg,
- struct v4l2_subdev_frame_interval_enum *fie)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- struct v4l2_fract tpf;
- int ret;
- if (fie->pad != 0)
- return -EINVAL;
- if (fie->index >= OV5640_NUM_FRAMERATES)
- return -EINVAL;
- tpf.numerator = 1;
- tpf.denominator = ov5640_framerates[fie->index];
- ret = ov5640_try_frame_interval(sensor, &tpf,
- fie->width, fie->height);
- if (ret < 0)
- return -EINVAL;
- fie->interval = tpf;
- return 0;
- }
- static int ov5640_g_frame_interval(struct v4l2_subdev *sd,
- struct v4l2_subdev_frame_interval *fi)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- mutex_lock(&sensor->lock);
- fi->interval = sensor->frame_interval;
- mutex_unlock(&sensor->lock);
- return 0;
- }
- static int ov5640_s_frame_interval(struct v4l2_subdev *sd,
- struct v4l2_subdev_frame_interval *fi)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- const struct ov5640_mode_info *mode;
- int frame_rate, ret = 0;
- if (fi->pad != 0)
- return -EINVAL;
- mutex_lock(&sensor->lock);
- if (sensor->streaming) {
- ret = -EBUSY;
- goto out;
- }
- mode = sensor->current_mode;
- frame_rate = ov5640_try_frame_interval(sensor, &fi->interval,
- mode->hact, mode->vact);
- if (frame_rate < 0)
- frame_rate = OV5640_15_FPS;
- sensor->current_fr = frame_rate;
- sensor->frame_interval = fi->interval;
- mode = ov5640_find_mode(sensor, frame_rate, mode->hact,
- mode->vact, true);
- if (!mode) {
- ret = -EINVAL;
- goto out;
- }
- if (mode != sensor->current_mode) {
- sensor->current_mode = mode;
- sensor->pending_mode_change = true;
- }
- out:
- mutex_unlock(&sensor->lock);
- return ret;
- }
- static int ov5640_enum_mbus_code(struct v4l2_subdev *sd,
- struct v4l2_subdev_pad_config *cfg,
- struct v4l2_subdev_mbus_code_enum *code)
- {
- if (code->pad != 0)
- return -EINVAL;
- if (code->index >= ARRAY_SIZE(ov5640_formats))
- return -EINVAL;
- code->code = ov5640_formats[code->index].code;
- return 0;
- }
- static int ov5640_s_stream(struct v4l2_subdev *sd, int enable)
- {
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- int ret = 0;
- mutex_lock(&sensor->lock);
- if (sensor->streaming == !enable) {
- if (enable && sensor->pending_mode_change) {
- ret = ov5640_set_mode(sensor, sensor->current_mode);
- if (ret)
- goto out;
- ret = ov5640_set_framefmt(sensor, &sensor->fmt);
- if (ret)
- goto out;
- }
- if (sensor->ep.bus_type == V4L2_MBUS_CSI2)
- ret = ov5640_set_stream_mipi(sensor, enable);
- else
- ret = ov5640_set_stream_dvp(sensor, enable);
- if (!ret)
- sensor->streaming = enable;
- }
- out:
- mutex_unlock(&sensor->lock);
- return ret;
- }
- static const struct v4l2_subdev_core_ops ov5640_core_ops = {
- .s_power = ov5640_s_power,
- };
- static const struct v4l2_subdev_video_ops ov5640_video_ops = {
- .g_frame_interval = ov5640_g_frame_interval,
- .s_frame_interval = ov5640_s_frame_interval,
- .s_stream = ov5640_s_stream,
- };
- static const struct v4l2_subdev_pad_ops ov5640_pad_ops = {
- .enum_mbus_code = ov5640_enum_mbus_code,
- .get_fmt = ov5640_get_fmt,
- .set_fmt = ov5640_set_fmt,
- .enum_frame_size = ov5640_enum_frame_size,
- .enum_frame_interval = ov5640_enum_frame_interval,
- };
- static const struct v4l2_subdev_ops ov5640_subdev_ops = {
- .core = &ov5640_core_ops,
- .video = &ov5640_video_ops,
- .pad = &ov5640_pad_ops,
- };
- static int ov5640_get_regulators(struct ov5640_dev *sensor)
- {
- int i;
- for (i = 0; i < OV5640_NUM_SUPPLIES; i++)
- sensor->supplies[i].supply = ov5640_supply_name[i];
- return devm_regulator_bulk_get(&sensor->i2c_client->dev,
- OV5640_NUM_SUPPLIES,
- sensor->supplies);
- }
- static int ov5640_check_chip_id(struct ov5640_dev *sensor)
- {
- struct i2c_client *client = sensor->i2c_client;
- int ret = 0;
- u16 chip_id;
- ret = ov5640_set_power_on(sensor);
- if (ret)
- return ret;
- ret = ov5640_read_reg16(sensor, OV5640_REG_CHIP_ID, &chip_id);
- if (ret) {
- dev_err(&client->dev, "%s: failed to read chip identifier\n",
- __func__);
- goto power_off;
- }
- if (chip_id != 0x5640) {
- dev_err(&client->dev, "%s: wrong chip identifier, expected 0x5640, got 0x%x\n",
- __func__, chip_id);
- ret = -ENXIO;
- }
- power_off:
- ov5640_set_power_off(sensor);
- return ret;
- }
- static int ov5640_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
- {
- struct device *dev = &client->dev;
- struct fwnode_handle *endpoint;
- struct ov5640_dev *sensor;
- struct v4l2_mbus_framefmt *fmt;
- u32 rotation;
- int ret;
- sensor = devm_kzalloc(dev, sizeof(*sensor), GFP_KERNEL);
- if (!sensor)
- return -ENOMEM;
- sensor->i2c_client = client;
- fmt = &sensor->fmt;
- fmt->code = ov5640_formats[0].code;
- fmt->colorspace = ov5640_formats[0].colorspace;
- fmt->ycbcr_enc = V4L2_MAP_YCBCR_ENC_DEFAULT(fmt->colorspace);
- fmt->quantization = V4L2_QUANTIZATION_FULL_RANGE;
- fmt->xfer_func = V4L2_MAP_XFER_FUNC_DEFAULT(fmt->colorspace);
- fmt->width = 640;
- fmt->height = 480;
- fmt->field = V4L2_FIELD_NONE;
- sensor->frame_interval.numerator = 1;
- sensor->frame_interval.denominator = ov5640_framerates[OV5640_30_FPS];
- sensor->current_fr = OV5640_30_FPS;
- sensor->current_mode =
- &ov5640_mode_data[OV5640_30_FPS][OV5640_MODE_VGA_640_480];
- sensor->pending_mode_change = true;
- sensor->ae_target = 52;
- /* optional indication of physical rotation of sensor */
- ret = fwnode_property_read_u32(dev_fwnode(&client->dev), "rotation",
- &rotation);
- if (!ret) {
- switch (rotation) {
- case 180:
- sensor->upside_down = true;
- /* fall through */
- case 0:
- break;
- default:
- dev_warn(dev, "%u degrees rotation is not supported, ignoring...\n",
- rotation);
- }
- }
- endpoint = fwnode_graph_get_next_endpoint(dev_fwnode(&client->dev),
- NULL);
- if (!endpoint) {
- dev_err(dev, "endpoint node not found\n");
- return -EINVAL;
- }
- ret = v4l2_fwnode_endpoint_parse(endpoint, &sensor->ep);
- fwnode_handle_put(endpoint);
- if (ret) {
- dev_err(dev, "Could not parse endpoint\n");
- return ret;
- }
- /* get system clock (xclk) */
- sensor->xclk = devm_clk_get(dev, "xclk");
- if (IS_ERR(sensor->xclk)) {
- dev_err(dev, "failed to get xclk\n");
- return PTR_ERR(sensor->xclk);
- }
- sensor->xclk_freq = clk_get_rate(sensor->xclk);
- if (sensor->xclk_freq < OV5640_XCLK_MIN ||
- sensor->xclk_freq > OV5640_XCLK_MAX) {
- dev_err(dev, "xclk frequency out of range: %d Hz\n",
- sensor->xclk_freq);
- return -EINVAL;
- }
- /* request optional power down pin */
- sensor->pwdn_gpio = devm_gpiod_get_optional(dev, "powerdown",
- GPIOD_OUT_HIGH);
- /* request optional reset pin */
- sensor->reset_gpio = devm_gpiod_get_optional(dev, "reset",
- GPIOD_OUT_HIGH);
- v4l2_i2c_subdev_init(&sensor->sd, client, &ov5640_subdev_ops);
- sensor->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
- sensor->pad.flags = MEDIA_PAD_FL_SOURCE;
- sensor->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR;
- ret = media_entity_pads_init(&sensor->sd.entity, 1, &sensor->pad);
- if (ret)
- return ret;
- ret = ov5640_get_regulators(sensor);
- if (ret)
- return ret;
- mutex_init(&sensor->lock);
- ret = ov5640_check_chip_id(sensor);
- if (ret)
- goto entity_cleanup;
- ret = ov5640_init_controls(sensor);
- if (ret)
- goto entity_cleanup;
- ret = v4l2_async_register_subdev(&sensor->sd);
- if (ret)
- goto free_ctrls;
- return 0;
- free_ctrls:
- v4l2_ctrl_handler_free(&sensor->ctrls.handler);
- entity_cleanup:
- mutex_destroy(&sensor->lock);
- media_entity_cleanup(&sensor->sd.entity);
- return ret;
- }
- static int ov5640_remove(struct i2c_client *client)
- {
- struct v4l2_subdev *sd = i2c_get_clientdata(client);
- struct ov5640_dev *sensor = to_ov5640_dev(sd);
- v4l2_async_unregister_subdev(&sensor->sd);
- mutex_destroy(&sensor->lock);
- media_entity_cleanup(&sensor->sd.entity);
- v4l2_ctrl_handler_free(&sensor->ctrls.handler);
- return 0;
- }
- static const struct i2c_device_id ov5640_id[] = {
- {"ov5640", 0},
- {},
- };
- MODULE_DEVICE_TABLE(i2c, ov5640_id);
- static const struct of_device_id ov5640_dt_ids[] = {
- { .compatible = "ovti,ov5640" },
- { /* sentinel */ }
- };
- MODULE_DEVICE_TABLE(of, ov5640_dt_ids);
- static struct i2c_driver ov5640_i2c_driver = {
- .driver = {
- .name = "ov5640",
- .of_match_table = ov5640_dt_ids,
- },
- .id_table = ov5640_id,
- .probe = ov5640_probe,
- .remove = ov5640_remove,
- };
- module_i2c_driver(ov5640_i2c_driver);
- MODULE_DESCRIPTION("OV5640 MIPI Camera Subdev Driver");
- MODULE_LICENSE("GPL");
|