1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Sony IMX290 CMOS Image Sensor Driver 4 * 5 * Copyright (C) 2019 FRAMOS GmbH. 6 * 7 * Copyright (C) 2019 Linaro Ltd. 8 * Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> 9 */ 10 11 #include <linux/clk.h> 12 #include <linux/delay.h> 13 #include <linux/gpio/consumer.h> 14 #include <linux/i2c.h> 15 #include <linux/module.h> 16 #include <linux/of.h> 17 #include <linux/pm_runtime.h> 18 #include <linux/regmap.h> 19 #include <linux/regulator/consumer.h> 20 21 #include <asm/unaligned.h> 22 23 #include <media/media-entity.h> 24 #include <media/v4l2-cci.h> 25 #include <media/v4l2-ctrls.h> 26 #include <media/v4l2-device.h> 27 #include <media/v4l2-event.h> 28 #include <media/v4l2-fwnode.h> 29 #include <media/v4l2-subdev.h> 30 31 #define IMX290_STANDBY CCI_REG8(0x3000) 32 #define IMX290_REGHOLD CCI_REG8(0x3001) 33 #define IMX290_XMSTA CCI_REG8(0x3002) 34 #define IMX290_ADBIT CCI_REG8(0x3005) 35 #define IMX290_ADBIT_10BIT (0 << 0) 36 #define IMX290_ADBIT_12BIT (1 << 0) 37 #define IMX290_CTRL_07 CCI_REG8(0x3007) 38 #define IMX290_VREVERSE BIT(0) 39 #define IMX290_HREVERSE BIT(1) 40 #define IMX290_WINMODE_1080P (0 << 4) 41 #define IMX290_WINMODE_720P (1 << 4) 42 #define IMX290_WINMODE_CROP (4 << 4) 43 #define IMX290_FR_FDG_SEL CCI_REG8(0x3009) 44 #define IMX290_BLKLEVEL CCI_REG16_LE(0x300a) 45 #define IMX290_GAIN CCI_REG8(0x3014) 46 #define IMX290_VMAX CCI_REG24_LE(0x3018) 47 #define IMX290_VMAX_MAX 0x3ffff 48 #define IMX290_HMAX CCI_REG16_LE(0x301c) 49 #define IMX290_HMAX_MAX 0xffff 50 #define IMX290_SHS1 CCI_REG24_LE(0x3020) 51 #define IMX290_WINWV_OB CCI_REG8(0x303a) 52 #define IMX290_WINPV CCI_REG16_LE(0x303c) 53 #define IMX290_WINWV CCI_REG16_LE(0x303e) 54 #define IMX290_WINPH CCI_REG16_LE(0x3040) 55 #define IMX290_WINWH CCI_REG16_LE(0x3042) 56 #define IMX290_OUT_CTRL CCI_REG8(0x3046) 57 #define IMX290_ODBIT_10BIT (0 << 0) 58 #define IMX290_ODBIT_12BIT (1 << 0) 59 #define IMX290_OPORTSEL_PARALLEL (0x0 << 4) 60 #define IMX290_OPORTSEL_LVDS_2CH (0xd << 4) 61 #define IMX290_OPORTSEL_LVDS_4CH (0xe << 4) 62 #define IMX290_OPORTSEL_LVDS_8CH (0xf << 4) 63 #define IMX290_XSOUTSEL CCI_REG8(0x304b) 64 #define IMX290_XSOUTSEL_XVSOUTSEL_HIGH (0 << 0) 65 #define IMX290_XSOUTSEL_XVSOUTSEL_VSYNC (2 << 0) 66 #define IMX290_XSOUTSEL_XHSOUTSEL_HIGH (0 << 2) 67 #define IMX290_XSOUTSEL_XHSOUTSEL_HSYNC (2 << 2) 68 #define IMX290_INCKSEL1 CCI_REG8(0x305c) 69 #define IMX290_INCKSEL2 CCI_REG8(0x305d) 70 #define IMX290_INCKSEL3 CCI_REG8(0x305e) 71 #define IMX290_INCKSEL4 CCI_REG8(0x305f) 72 #define IMX290_PGCTRL CCI_REG8(0x308c) 73 #define IMX290_ADBIT1 CCI_REG8(0x3129) 74 #define IMX290_ADBIT1_10BIT 0x1d 75 #define IMX290_ADBIT1_12BIT 0x00 76 #define IMX290_INCKSEL5 CCI_REG8(0x315e) 77 #define IMX290_INCKSEL6 CCI_REG8(0x3164) 78 #define IMX290_ADBIT2 CCI_REG8(0x317c) 79 #define IMX290_ADBIT2_10BIT 0x12 80 #define IMX290_ADBIT2_12BIT 0x00 81 #define IMX290_ADBIT3 CCI_REG8(0x31ec) 82 #define IMX290_ADBIT3_10BIT 0x37 83 #define IMX290_ADBIT3_12BIT 0x0e 84 #define IMX290_REPETITION CCI_REG8(0x3405) 85 #define IMX290_PHY_LANE_NUM CCI_REG8(0x3407) 86 #define IMX290_OPB_SIZE_V CCI_REG8(0x3414) 87 #define IMX290_Y_OUT_SIZE CCI_REG16_LE(0x3418) 88 #define IMX290_CSI_DT_FMT CCI_REG16_LE(0x3441) 89 #define IMX290_CSI_DT_FMT_RAW10 0x0a0a 90 #define IMX290_CSI_DT_FMT_RAW12 0x0c0c 91 #define IMX290_CSI_LANE_MODE CCI_REG8(0x3443) 92 #define IMX290_EXTCK_FREQ CCI_REG16_LE(0x3444) 93 #define IMX290_TCLKPOST CCI_REG16_LE(0x3446) 94 #define IMX290_THSZERO CCI_REG16_LE(0x3448) 95 #define IMX290_THSPREPARE CCI_REG16_LE(0x344a) 96 #define IMX290_TCLKTRAIL CCI_REG16_LE(0x344c) 97 #define IMX290_THSTRAIL CCI_REG16_LE(0x344e) 98 #define IMX290_TCLKZERO CCI_REG16_LE(0x3450) 99 #define IMX290_TCLKPREPARE CCI_REG16_LE(0x3452) 100 #define IMX290_TLPX CCI_REG16_LE(0x3454) 101 #define IMX290_X_OUT_SIZE CCI_REG16_LE(0x3472) 102 #define IMX290_INCKSEL7 CCI_REG8(0x3480) 103 104 #define IMX290_PGCTRL_REGEN BIT(0) 105 #define IMX290_PGCTRL_THRU BIT(1) 106 #define IMX290_PGCTRL_MODE(n) ((n) << 4) 107 108 /* Number of lines by which exposure must be less than VMAX */ 109 #define IMX290_EXPOSURE_OFFSET 2 110 111 #define IMX290_PIXEL_RATE 148500000 112 113 /* 114 * The IMX290 pixel array is organized as follows: 115 * 116 * +------------------------------------+ 117 * | Optical Black | } Vertical effective optical black (10) 118 * +---+------------------------------------+---+ 119 * | | | | } Effective top margin (8) 120 * | | +----------------------------+ | | \ 121 * | | | | | | | 122 * | | | | | | | 123 * | | | | | | | 124 * | | | Recording Pixel Area | | | | Recommended height (1080) 125 * | | | | | | | 126 * | | | | | | | 127 * | | | | | | | 128 * | | +----------------------------+ | | / 129 * | | | | } Effective bottom margin (9) 130 * +---+------------------------------------+---+ 131 * <-> <-> <--------------------------> <-> <-> 132 * \---- Ignored right margin (4) 133 * \-------- Effective right margin (9) 134 * \------------------------- Recommended width (1920) 135 * \----------------------------------------- Effective left margin (8) 136 * \--------------------------------------------- Ignored left margin (4) 137 * 138 * The optical black lines are output over CSI-2 with a separate data type. 139 * 140 * The pixel array is meant to have 1920x1080 usable pixels after image 141 * processing in an ISP. It has 8 (9) extra active pixels usable for color 142 * processing in the ISP on the top and left (bottom and right) sides of the 143 * image. In addition, 4 additional pixels are present on the left and right 144 * sides of the image, documented as "ignored area". 145 * 146 * As far as is understood, all pixels of the pixel array (ignored area, color 147 * processing margins and recording area) can be output by the sensor. 148 */ 149 150 #define IMX290_PIXEL_ARRAY_WIDTH 1945 151 #define IMX290_PIXEL_ARRAY_HEIGHT 1097 152 #define IMX290_PIXEL_ARRAY_MARGIN_LEFT 12 153 #define IMX290_PIXEL_ARRAY_MARGIN_RIGHT 13 154 #define IMX290_PIXEL_ARRAY_MARGIN_TOP 8 155 #define IMX290_PIXEL_ARRAY_MARGIN_BOTTOM 9 156 #define IMX290_PIXEL_ARRAY_RECORDING_WIDTH 1920 157 #define IMX290_PIXEL_ARRAY_RECORDING_HEIGHT 1080 158 159 /* Equivalent value for 16bpp */ 160 #define IMX290_BLACK_LEVEL_DEFAULT 3840 161 162 #define IMX290_NUM_SUPPLIES 3 163 164 enum imx290_colour_variant { 165 IMX290_VARIANT_COLOUR, 166 IMX290_VARIANT_MONO, 167 IMX290_VARIANT_MAX 168 }; 169 170 enum imx290_model { 171 IMX290_MODEL_IMX290LQR, 172 IMX290_MODEL_IMX290LLR, 173 IMX290_MODEL_IMX327LQR, 174 }; 175 176 struct imx290_model_info { 177 enum imx290_colour_variant colour_variant; 178 const struct cci_reg_sequence *init_regs; 179 size_t init_regs_num; 180 const char *name; 181 }; 182 183 enum imx290_clk_freq { 184 IMX290_CLK_37_125, 185 IMX290_CLK_74_25, 186 IMX290_NUM_CLK 187 }; 188 189 /* 190 * Clock configuration for registers INCKSEL1 to INCKSEL6. 191 */ 192 struct imx290_clk_cfg { 193 u8 incksel1; 194 u8 incksel2; 195 u8 incksel3; 196 u8 incksel4; 197 u8 incksel5; 198 u8 incksel6; 199 }; 200 201 struct imx290_mode { 202 u32 width; 203 u32 height; 204 u32 hmax_min; 205 u32 vmax_min; 206 u8 link_freq_index; 207 u8 ctrl_07; 208 209 const struct cci_reg_sequence *data; 210 u32 data_size; 211 212 const struct imx290_clk_cfg *clk_cfg; 213 }; 214 215 struct imx290_csi_cfg { 216 u16 repetition; 217 u16 tclkpost; 218 u16 thszero; 219 u16 thsprepare; 220 u16 tclktrail; 221 u16 thstrail; 222 u16 tclkzero; 223 u16 tclkprepare; 224 u16 tlpx; 225 }; 226 227 struct imx290 { 228 struct device *dev; 229 struct clk *xclk; 230 struct regmap *regmap; 231 enum imx290_clk_freq xclk_idx; 232 u8 nlanes; 233 const struct imx290_model_info *model; 234 235 struct v4l2_subdev sd; 236 struct media_pad pad; 237 238 const struct imx290_mode *current_mode; 239 240 struct regulator_bulk_data supplies[IMX290_NUM_SUPPLIES]; 241 struct gpio_desc *rst_gpio; 242 243 struct v4l2_ctrl_handler ctrls; 244 struct v4l2_ctrl *link_freq; 245 struct v4l2_ctrl *hblank; 246 struct v4l2_ctrl *vblank; 247 struct v4l2_ctrl *exposure; 248 struct { 249 struct v4l2_ctrl *hflip; 250 struct v4l2_ctrl *vflip; 251 }; 252 }; 253 254 static inline struct imx290 *to_imx290(struct v4l2_subdev *_sd) 255 { 256 return container_of(_sd, struct imx290, sd); 257 } 258 259 /* ----------------------------------------------------------------------------- 260 * Modes and formats 261 */ 262 263 static const struct cci_reg_sequence imx290_global_init_settings[] = { 264 { IMX290_WINWV_OB, 12 }, 265 { IMX290_WINPH, 0 }, 266 { IMX290_WINPV, 0 }, 267 { IMX290_WINWH, 1948 }, 268 { IMX290_WINWV, 1097 }, 269 { IMX290_XSOUTSEL, IMX290_XSOUTSEL_XVSOUTSEL_VSYNC | 270 IMX290_XSOUTSEL_XHSOUTSEL_HSYNC }, 271 { CCI_REG8(0x3011), 0x02 }, 272 { CCI_REG8(0x3012), 0x64 }, 273 { CCI_REG8(0x3013), 0x00 }, 274 }; 275 276 static const struct cci_reg_sequence imx290_global_init_settings_290[] = { 277 { CCI_REG8(0x300f), 0x00 }, 278 { CCI_REG8(0x3010), 0x21 }, 279 { CCI_REG8(0x3016), 0x09 }, 280 { CCI_REG8(0x3070), 0x02 }, 281 { CCI_REG8(0x3071), 0x11 }, 282 { CCI_REG8(0x309b), 0x10 }, 283 { CCI_REG8(0x309c), 0x22 }, 284 { CCI_REG8(0x30a2), 0x02 }, 285 { CCI_REG8(0x30a6), 0x20 }, 286 { CCI_REG8(0x30a8), 0x20 }, 287 { CCI_REG8(0x30aa), 0x20 }, 288 { CCI_REG8(0x30ac), 0x20 }, 289 { CCI_REG8(0x30b0), 0x43 }, 290 { CCI_REG8(0x3119), 0x9e }, 291 { CCI_REG8(0x311c), 0x1e }, 292 { CCI_REG8(0x311e), 0x08 }, 293 { CCI_REG8(0x3128), 0x05 }, 294 { CCI_REG8(0x313d), 0x83 }, 295 { CCI_REG8(0x3150), 0x03 }, 296 { CCI_REG8(0x317e), 0x00 }, 297 { CCI_REG8(0x32b8), 0x50 }, 298 { CCI_REG8(0x32b9), 0x10 }, 299 { CCI_REG8(0x32ba), 0x00 }, 300 { CCI_REG8(0x32bb), 0x04 }, 301 { CCI_REG8(0x32c8), 0x50 }, 302 { CCI_REG8(0x32c9), 0x10 }, 303 { CCI_REG8(0x32ca), 0x00 }, 304 { CCI_REG8(0x32cb), 0x04 }, 305 { CCI_REG8(0x332c), 0xd3 }, 306 { CCI_REG8(0x332d), 0x10 }, 307 { CCI_REG8(0x332e), 0x0d }, 308 { CCI_REG8(0x3358), 0x06 }, 309 { CCI_REG8(0x3359), 0xe1 }, 310 { CCI_REG8(0x335a), 0x11 }, 311 { CCI_REG8(0x3360), 0x1e }, 312 { CCI_REG8(0x3361), 0x61 }, 313 { CCI_REG8(0x3362), 0x10 }, 314 { CCI_REG8(0x33b0), 0x50 }, 315 { CCI_REG8(0x33b2), 0x1a }, 316 { CCI_REG8(0x33b3), 0x04 }, 317 }; 318 319 #define IMX290_NUM_CLK_REGS 2 320 static const struct cci_reg_sequence xclk_regs[][IMX290_NUM_CLK_REGS] = { 321 [IMX290_CLK_37_125] = { 322 { IMX290_EXTCK_FREQ, (37125 * 256) / 1000 }, 323 { IMX290_INCKSEL7, 0x49 }, 324 }, 325 [IMX290_CLK_74_25] = { 326 { IMX290_EXTCK_FREQ, (74250 * 256) / 1000 }, 327 { IMX290_INCKSEL7, 0x92 }, 328 }, 329 }; 330 331 static const struct cci_reg_sequence imx290_global_init_settings_327[] = { 332 { CCI_REG8(0x309e), 0x4A }, 333 { CCI_REG8(0x309f), 0x4A }, 334 { CCI_REG8(0x313b), 0x61 }, 335 }; 336 337 static const struct cci_reg_sequence imx290_1080p_settings[] = { 338 /* mode settings */ 339 { IMX290_WINWV_OB, 12 }, 340 { IMX290_OPB_SIZE_V, 10 }, 341 { IMX290_X_OUT_SIZE, 1920 }, 342 { IMX290_Y_OUT_SIZE, 1080 }, 343 }; 344 345 static const struct cci_reg_sequence imx290_720p_settings[] = { 346 /* mode settings */ 347 { IMX290_WINWV_OB, 6 }, 348 { IMX290_OPB_SIZE_V, 4 }, 349 { IMX290_X_OUT_SIZE, 1280 }, 350 { IMX290_Y_OUT_SIZE, 720 }, 351 }; 352 353 static const struct cci_reg_sequence imx290_10bit_settings[] = { 354 { IMX290_ADBIT, IMX290_ADBIT_10BIT }, 355 { IMX290_OUT_CTRL, IMX290_ODBIT_10BIT }, 356 { IMX290_ADBIT1, IMX290_ADBIT1_10BIT }, 357 { IMX290_ADBIT2, IMX290_ADBIT2_10BIT }, 358 { IMX290_ADBIT3, IMX290_ADBIT3_10BIT }, 359 { IMX290_CSI_DT_FMT, IMX290_CSI_DT_FMT_RAW10 }, 360 }; 361 362 static const struct cci_reg_sequence imx290_12bit_settings[] = { 363 { IMX290_ADBIT, IMX290_ADBIT_12BIT }, 364 { IMX290_OUT_CTRL, IMX290_ODBIT_12BIT }, 365 { IMX290_ADBIT1, IMX290_ADBIT1_12BIT }, 366 { IMX290_ADBIT2, IMX290_ADBIT2_12BIT }, 367 { IMX290_ADBIT3, IMX290_ADBIT3_12BIT }, 368 { IMX290_CSI_DT_FMT, IMX290_CSI_DT_FMT_RAW12 }, 369 }; 370 371 static const struct imx290_csi_cfg imx290_csi_222_75mhz = { 372 /* 222.75MHz or 445.5Mbit/s per lane */ 373 .repetition = 0x10, 374 .tclkpost = 87, 375 .thszero = 55, 376 .thsprepare = 31, 377 .tclktrail = 31, 378 .thstrail = 31, 379 .tclkzero = 119, 380 .tclkprepare = 31, 381 .tlpx = 23, 382 }; 383 384 static const struct imx290_csi_cfg imx290_csi_445_5mhz = { 385 /* 445.5MHz or 891Mbit/s per lane */ 386 .repetition = 0x00, 387 .tclkpost = 119, 388 .thszero = 103, 389 .thsprepare = 71, 390 .tclktrail = 55, 391 .thstrail = 63, 392 .tclkzero = 255, 393 .tclkprepare = 63, 394 .tlpx = 55, 395 }; 396 397 static const struct imx290_csi_cfg imx290_csi_148_5mhz = { 398 /* 148.5MHz or 297Mbit/s per lane */ 399 .repetition = 0x10, 400 .tclkpost = 79, 401 .thszero = 47, 402 .thsprepare = 23, 403 .tclktrail = 23, 404 .thstrail = 23, 405 .tclkzero = 87, 406 .tclkprepare = 23, 407 .tlpx = 23, 408 }; 409 410 static const struct imx290_csi_cfg imx290_csi_297mhz = { 411 /* 297MHz or 594Mbit/s per lane */ 412 .repetition = 0x00, 413 .tclkpost = 103, 414 .thszero = 87, 415 .thsprepare = 47, 416 .tclktrail = 39, 417 .thstrail = 47, 418 .tclkzero = 191, 419 .tclkprepare = 47, 420 .tlpx = 39, 421 }; 422 423 /* supported link frequencies */ 424 #define FREQ_INDEX_1080P 0 425 #define FREQ_INDEX_720P 1 426 static const s64 imx290_link_freq_2lanes[] = { 427 [FREQ_INDEX_1080P] = 445500000, 428 [FREQ_INDEX_720P] = 297000000, 429 }; 430 431 static const s64 imx290_link_freq_4lanes[] = { 432 [FREQ_INDEX_1080P] = 222750000, 433 [FREQ_INDEX_720P] = 148500000, 434 }; 435 436 /* 437 * In this function and in the similar ones below We rely on imx290_probe() 438 * to ensure that nlanes is either 2 or 4. 439 */ 440 static inline const s64 *imx290_link_freqs_ptr(const struct imx290 *imx290) 441 { 442 if (imx290->nlanes == 2) 443 return imx290_link_freq_2lanes; 444 else 445 return imx290_link_freq_4lanes; 446 } 447 448 static inline int imx290_link_freqs_num(const struct imx290 *imx290) 449 { 450 if (imx290->nlanes == 2) 451 return ARRAY_SIZE(imx290_link_freq_2lanes); 452 else 453 return ARRAY_SIZE(imx290_link_freq_4lanes); 454 } 455 456 static const struct imx290_clk_cfg imx290_1080p_clock_config[] = { 457 [IMX290_CLK_37_125] = { 458 /* 37.125MHz clock config */ 459 .incksel1 = 0x18, 460 .incksel2 = 0x03, 461 .incksel3 = 0x20, 462 .incksel4 = 0x01, 463 .incksel5 = 0x1a, 464 .incksel6 = 0x1a, 465 }, 466 [IMX290_CLK_74_25] = { 467 /* 74.25MHz clock config */ 468 .incksel1 = 0x0c, 469 .incksel2 = 0x03, 470 .incksel3 = 0x10, 471 .incksel4 = 0x01, 472 .incksel5 = 0x1b, 473 .incksel6 = 0x1b, 474 }, 475 }; 476 477 static const struct imx290_clk_cfg imx290_720p_clock_config[] = { 478 [IMX290_CLK_37_125] = { 479 /* 37.125MHz clock config */ 480 .incksel1 = 0x20, 481 .incksel2 = 0x00, 482 .incksel3 = 0x20, 483 .incksel4 = 0x01, 484 .incksel5 = 0x1a, 485 .incksel6 = 0x1a, 486 }, 487 [IMX290_CLK_74_25] = { 488 /* 74.25MHz clock config */ 489 .incksel1 = 0x10, 490 .incksel2 = 0x00, 491 .incksel3 = 0x10, 492 .incksel4 = 0x01, 493 .incksel5 = 0x1b, 494 .incksel6 = 0x1b, 495 }, 496 }; 497 498 /* Mode configs */ 499 static const struct imx290_mode imx290_modes_2lanes[] = { 500 { 501 .width = 1920, 502 .height = 1080, 503 .hmax_min = 2200, 504 .vmax_min = 1125, 505 .link_freq_index = FREQ_INDEX_1080P, 506 .ctrl_07 = IMX290_WINMODE_1080P, 507 .data = imx290_1080p_settings, 508 .data_size = ARRAY_SIZE(imx290_1080p_settings), 509 .clk_cfg = imx290_1080p_clock_config, 510 }, 511 { 512 .width = 1280, 513 .height = 720, 514 .hmax_min = 3300, 515 .vmax_min = 750, 516 .link_freq_index = FREQ_INDEX_720P, 517 .ctrl_07 = IMX290_WINMODE_720P, 518 .data = imx290_720p_settings, 519 .data_size = ARRAY_SIZE(imx290_720p_settings), 520 .clk_cfg = imx290_720p_clock_config, 521 }, 522 }; 523 524 static const struct imx290_mode imx290_modes_4lanes[] = { 525 { 526 .width = 1920, 527 .height = 1080, 528 .hmax_min = 2200, 529 .vmax_min = 1125, 530 .link_freq_index = FREQ_INDEX_1080P, 531 .ctrl_07 = IMX290_WINMODE_1080P, 532 .data = imx290_1080p_settings, 533 .data_size = ARRAY_SIZE(imx290_1080p_settings), 534 .clk_cfg = imx290_1080p_clock_config, 535 }, 536 { 537 .width = 1280, 538 .height = 720, 539 .hmax_min = 3300, 540 .vmax_min = 750, 541 .link_freq_index = FREQ_INDEX_720P, 542 .ctrl_07 = IMX290_WINMODE_720P, 543 .data = imx290_720p_settings, 544 .data_size = ARRAY_SIZE(imx290_720p_settings), 545 .clk_cfg = imx290_720p_clock_config, 546 }, 547 }; 548 549 static inline const struct imx290_mode *imx290_modes_ptr(const struct imx290 *imx290) 550 { 551 if (imx290->nlanes == 2) 552 return imx290_modes_2lanes; 553 else 554 return imx290_modes_4lanes; 555 } 556 557 static inline int imx290_modes_num(const struct imx290 *imx290) 558 { 559 if (imx290->nlanes == 2) 560 return ARRAY_SIZE(imx290_modes_2lanes); 561 else 562 return ARRAY_SIZE(imx290_modes_4lanes); 563 } 564 565 struct imx290_format_info { 566 u32 code[IMX290_VARIANT_MAX]; 567 u8 bpp; 568 const struct cci_reg_sequence *regs; 569 unsigned int num_regs; 570 }; 571 572 static const struct imx290_format_info imx290_formats[] = { 573 { 574 .code = { 575 [IMX290_VARIANT_COLOUR] = MEDIA_BUS_FMT_SRGGB10_1X10, 576 [IMX290_VARIANT_MONO] = MEDIA_BUS_FMT_Y10_1X10 577 }, 578 .bpp = 10, 579 .regs = imx290_10bit_settings, 580 .num_regs = ARRAY_SIZE(imx290_10bit_settings), 581 }, { 582 .code = { 583 [IMX290_VARIANT_COLOUR] = MEDIA_BUS_FMT_SRGGB12_1X12, 584 [IMX290_VARIANT_MONO] = MEDIA_BUS_FMT_Y12_1X12 585 }, 586 .bpp = 12, 587 .regs = imx290_12bit_settings, 588 .num_regs = ARRAY_SIZE(imx290_12bit_settings), 589 } 590 }; 591 592 static const struct imx290_format_info * 593 imx290_format_info(const struct imx290 *imx290, u32 code) 594 { 595 unsigned int i; 596 597 for (i = 0; i < ARRAY_SIZE(imx290_formats); ++i) { 598 const struct imx290_format_info *info = &imx290_formats[i]; 599 600 if (info->code[imx290->model->colour_variant] == code) 601 return info; 602 } 603 604 return NULL; 605 } 606 607 static int imx290_set_register_array(struct imx290 *imx290, 608 const struct cci_reg_sequence *settings, 609 unsigned int num_settings) 610 { 611 int ret; 612 613 ret = cci_multi_reg_write(imx290->regmap, settings, num_settings, NULL); 614 if (ret < 0) 615 return ret; 616 617 /* Provide 10ms settle time */ 618 usleep_range(10000, 11000); 619 620 return 0; 621 } 622 623 static int imx290_set_clock(struct imx290 *imx290) 624 { 625 const struct imx290_mode *mode = imx290->current_mode; 626 enum imx290_clk_freq clk_idx = imx290->xclk_idx; 627 const struct imx290_clk_cfg *clk_cfg = &mode->clk_cfg[clk_idx]; 628 int ret; 629 630 ret = imx290_set_register_array(imx290, xclk_regs[clk_idx], 631 IMX290_NUM_CLK_REGS); 632 633 cci_write(imx290->regmap, IMX290_INCKSEL1, clk_cfg->incksel1, &ret); 634 cci_write(imx290->regmap, IMX290_INCKSEL2, clk_cfg->incksel2, &ret); 635 cci_write(imx290->regmap, IMX290_INCKSEL3, clk_cfg->incksel3, &ret); 636 cci_write(imx290->regmap, IMX290_INCKSEL4, clk_cfg->incksel4, &ret); 637 cci_write(imx290->regmap, IMX290_INCKSEL5, clk_cfg->incksel5, &ret); 638 cci_write(imx290->regmap, IMX290_INCKSEL6, clk_cfg->incksel6, &ret); 639 640 return ret; 641 } 642 643 static int imx290_set_data_lanes(struct imx290 *imx290) 644 { 645 int ret = 0; 646 647 cci_write(imx290->regmap, IMX290_PHY_LANE_NUM, imx290->nlanes - 1, 648 &ret); 649 cci_write(imx290->regmap, IMX290_CSI_LANE_MODE, imx290->nlanes - 1, 650 &ret); 651 cci_write(imx290->regmap, IMX290_FR_FDG_SEL, 0x01, &ret); 652 653 return ret; 654 } 655 656 static int imx290_set_black_level(struct imx290 *imx290, 657 const struct v4l2_mbus_framefmt *format, 658 unsigned int black_level, int *err) 659 { 660 unsigned int bpp = imx290_format_info(imx290, format->code)->bpp; 661 662 return cci_write(imx290->regmap, IMX290_BLKLEVEL, 663 black_level >> (16 - bpp), err); 664 } 665 666 static int imx290_set_csi_config(struct imx290 *imx290) 667 { 668 const s64 *link_freqs = imx290_link_freqs_ptr(imx290); 669 const struct imx290_csi_cfg *csi_cfg; 670 int ret = 0; 671 672 switch (link_freqs[imx290->current_mode->link_freq_index]) { 673 case 445500000: 674 csi_cfg = &imx290_csi_445_5mhz; 675 break; 676 case 297000000: 677 csi_cfg = &imx290_csi_297mhz; 678 break; 679 case 222750000: 680 csi_cfg = &imx290_csi_222_75mhz; 681 break; 682 case 148500000: 683 csi_cfg = &imx290_csi_148_5mhz; 684 break; 685 default: 686 return -EINVAL; 687 } 688 689 cci_write(imx290->regmap, IMX290_REPETITION, csi_cfg->repetition, &ret); 690 cci_write(imx290->regmap, IMX290_TCLKPOST, csi_cfg->tclkpost, &ret); 691 cci_write(imx290->regmap, IMX290_THSZERO, csi_cfg->thszero, &ret); 692 cci_write(imx290->regmap, IMX290_THSPREPARE, csi_cfg->thsprepare, &ret); 693 cci_write(imx290->regmap, IMX290_TCLKTRAIL, csi_cfg->tclktrail, &ret); 694 cci_write(imx290->regmap, IMX290_THSTRAIL, csi_cfg->thstrail, &ret); 695 cci_write(imx290->regmap, IMX290_TCLKZERO, csi_cfg->tclkzero, &ret); 696 cci_write(imx290->regmap, IMX290_TCLKPREPARE, csi_cfg->tclkprepare, 697 &ret); 698 cci_write(imx290->regmap, IMX290_TLPX, csi_cfg->tlpx, &ret); 699 700 return ret; 701 } 702 703 static int imx290_setup_format(struct imx290 *imx290, 704 const struct v4l2_mbus_framefmt *format) 705 { 706 const struct imx290_format_info *info; 707 int ret; 708 709 info = imx290_format_info(imx290, format->code); 710 711 ret = imx290_set_register_array(imx290, info->regs, info->num_regs); 712 if (ret < 0) { 713 dev_err(imx290->dev, "Could not set format registers\n"); 714 return ret; 715 } 716 717 return imx290_set_black_level(imx290, format, 718 IMX290_BLACK_LEVEL_DEFAULT, &ret); 719 } 720 721 /* ---------------------------------------------------------------------------- 722 * Controls 723 */ 724 static void imx290_exposure_update(struct imx290 *imx290, 725 const struct imx290_mode *mode) 726 { 727 unsigned int exposure_max; 728 729 exposure_max = imx290->vblank->val + mode->height - 730 IMX290_EXPOSURE_OFFSET; 731 __v4l2_ctrl_modify_range(imx290->exposure, 1, exposure_max, 1, 732 exposure_max); 733 } 734 735 static int imx290_set_ctrl(struct v4l2_ctrl *ctrl) 736 { 737 struct imx290 *imx290 = container_of(ctrl->handler, 738 struct imx290, ctrls); 739 const struct v4l2_mbus_framefmt *format; 740 struct v4l2_subdev_state *state; 741 int ret = 0, vmax; 742 743 /* 744 * Return immediately for controls that don't need to be applied to the 745 * device. 746 */ 747 if (ctrl->flags & V4L2_CTRL_FLAG_READ_ONLY) 748 return 0; 749 750 if (ctrl->id == V4L2_CID_VBLANK) { 751 /* Changing vblank changes the allowed range for exposure. */ 752 imx290_exposure_update(imx290, imx290->current_mode); 753 } 754 755 /* V4L2 controls values will be applied only when power is already up */ 756 if (!pm_runtime_get_if_in_use(imx290->dev)) 757 return 0; 758 759 state = v4l2_subdev_get_locked_active_state(&imx290->sd); 760 format = v4l2_subdev_state_get_format(state, 0); 761 762 switch (ctrl->id) { 763 case V4L2_CID_ANALOGUE_GAIN: 764 ret = cci_write(imx290->regmap, IMX290_GAIN, ctrl->val, NULL); 765 break; 766 767 case V4L2_CID_VBLANK: 768 ret = cci_write(imx290->regmap, IMX290_VMAX, 769 ctrl->val + imx290->current_mode->height, NULL); 770 /* 771 * Due to the way that exposure is programmed in this sensor in 772 * relation to VMAX, we have to reprogramme it whenever VMAX is 773 * changed. 774 * Update ctrl so that the V4L2_CID_EXPOSURE case can refer to 775 * it. 776 */ 777 ctrl = imx290->exposure; 778 fallthrough; 779 case V4L2_CID_EXPOSURE: 780 vmax = imx290->vblank->val + imx290->current_mode->height; 781 ret = cci_write(imx290->regmap, IMX290_SHS1, 782 vmax - ctrl->val - 1, NULL); 783 break; 784 785 case V4L2_CID_TEST_PATTERN: 786 if (ctrl->val) { 787 imx290_set_black_level(imx290, format, 0, &ret); 788 usleep_range(10000, 11000); 789 cci_write(imx290->regmap, IMX290_PGCTRL, 790 (u8)(IMX290_PGCTRL_REGEN | 791 IMX290_PGCTRL_THRU | 792 IMX290_PGCTRL_MODE(ctrl->val)), &ret); 793 } else { 794 cci_write(imx290->regmap, IMX290_PGCTRL, 0x00, &ret); 795 usleep_range(10000, 11000); 796 imx290_set_black_level(imx290, format, 797 IMX290_BLACK_LEVEL_DEFAULT, &ret); 798 } 799 break; 800 801 case V4L2_CID_HBLANK: 802 ret = cci_write(imx290->regmap, IMX290_HMAX, 803 ctrl->val + imx290->current_mode->width, NULL); 804 break; 805 806 case V4L2_CID_HFLIP: 807 case V4L2_CID_VFLIP: 808 { 809 u32 reg; 810 811 reg = imx290->current_mode->ctrl_07; 812 if (imx290->hflip->val) 813 reg |= IMX290_HREVERSE; 814 if (imx290->vflip->val) 815 reg |= IMX290_VREVERSE; 816 ret = cci_write(imx290->regmap, IMX290_CTRL_07, reg, NULL); 817 break; 818 } 819 820 default: 821 ret = -EINVAL; 822 break; 823 } 824 825 pm_runtime_mark_last_busy(imx290->dev); 826 pm_runtime_put_autosuspend(imx290->dev); 827 828 return ret; 829 } 830 831 static const struct v4l2_ctrl_ops imx290_ctrl_ops = { 832 .s_ctrl = imx290_set_ctrl, 833 }; 834 835 static const char * const imx290_test_pattern_menu[] = { 836 "Disabled", 837 "Sequence Pattern 1", 838 "Horizontal Color-bar Chart", 839 "Vertical Color-bar Chart", 840 "Sequence Pattern 2", 841 "Gradation Pattern 1", 842 "Gradation Pattern 2", 843 "000/555h Toggle Pattern", 844 }; 845 846 static void imx290_ctrl_update(struct imx290 *imx290, 847 const struct imx290_mode *mode) 848 { 849 unsigned int hblank_min = mode->hmax_min - mode->width; 850 unsigned int hblank_max = IMX290_HMAX_MAX - mode->width; 851 unsigned int vblank_min = mode->vmax_min - mode->height; 852 unsigned int vblank_max = IMX290_VMAX_MAX - mode->height; 853 854 __v4l2_ctrl_s_ctrl(imx290->link_freq, mode->link_freq_index); 855 856 __v4l2_ctrl_modify_range(imx290->hblank, hblank_min, hblank_max, 1, 857 hblank_min); 858 __v4l2_ctrl_modify_range(imx290->vblank, vblank_min, vblank_max, 1, 859 vblank_min); 860 } 861 862 static int imx290_ctrl_init(struct imx290 *imx290) 863 { 864 struct v4l2_fwnode_device_properties props; 865 int ret; 866 867 ret = v4l2_fwnode_device_parse(imx290->dev, &props); 868 if (ret < 0) 869 return ret; 870 871 v4l2_ctrl_handler_init(&imx290->ctrls, 11); 872 873 /* 874 * The sensor has an analog gain and a digital gain, both controlled 875 * through a single gain value, expressed in 0.3dB increments. Values 876 * from 0.0dB (0) to 30.0dB (100) apply analog gain only, higher values 877 * up to 72.0dB (240) add further digital gain. Limit the range to 878 * analog gain only, support for digital gain can be added separately 879 * if needed. 880 * 881 * The IMX327 and IMX462 are largely compatible with the IMX290, but 882 * have an analog gain range of 0.0dB to 29.4dB and 42dB of digital 883 * gain. When support for those sensors gets added to the driver, the 884 * gain control should be adjusted accordingly. 885 */ 886 v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, 887 V4L2_CID_ANALOGUE_GAIN, 0, 100, 1, 0); 888 889 /* 890 * Correct range will be determined through imx290_ctrl_update setting 891 * V4L2_CID_VBLANK. 892 */ 893 imx290->exposure = v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, 894 V4L2_CID_EXPOSURE, 1, 65535, 1, 895 65535); 896 897 /* 898 * Set the link frequency, pixel rate, horizontal blanking and vertical 899 * blanking to hardcoded values, they will be updated by 900 * imx290_ctrl_update(). 901 */ 902 imx290->link_freq = 903 v4l2_ctrl_new_int_menu(&imx290->ctrls, &imx290_ctrl_ops, 904 V4L2_CID_LINK_FREQ, 905 imx290_link_freqs_num(imx290) - 1, 0, 906 imx290_link_freqs_ptr(imx290)); 907 if (imx290->link_freq) 908 imx290->link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY; 909 910 v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, V4L2_CID_PIXEL_RATE, 911 IMX290_PIXEL_RATE, IMX290_PIXEL_RATE, 1, 912 IMX290_PIXEL_RATE); 913 914 v4l2_ctrl_new_std_menu_items(&imx290->ctrls, &imx290_ctrl_ops, 915 V4L2_CID_TEST_PATTERN, 916 ARRAY_SIZE(imx290_test_pattern_menu) - 1, 917 0, 0, imx290_test_pattern_menu); 918 919 /* 920 * Actual range will be set from imx290_ctrl_update later in the probe. 921 */ 922 imx290->hblank = v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, 923 V4L2_CID_HBLANK, 1, 1, 1, 1); 924 925 imx290->vblank = v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, 926 V4L2_CID_VBLANK, 1, 1, 1, 1); 927 928 imx290->hflip = v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, 929 V4L2_CID_HFLIP, 0, 1, 1, 0); 930 imx290->vflip = v4l2_ctrl_new_std(&imx290->ctrls, &imx290_ctrl_ops, 931 V4L2_CID_VFLIP, 0, 1, 1, 0); 932 v4l2_ctrl_cluster(2, &imx290->hflip); 933 934 v4l2_ctrl_new_fwnode_properties(&imx290->ctrls, &imx290_ctrl_ops, 935 &props); 936 937 imx290->sd.ctrl_handler = &imx290->ctrls; 938 939 if (imx290->ctrls.error) { 940 ret = imx290->ctrls.error; 941 v4l2_ctrl_handler_free(&imx290->ctrls); 942 return ret; 943 } 944 945 return 0; 946 } 947 948 /* ---------------------------------------------------------------------------- 949 * Subdev operations 950 */ 951 952 /* Start streaming */ 953 static int imx290_start_streaming(struct imx290 *imx290, 954 struct v4l2_subdev_state *state) 955 { 956 const struct v4l2_mbus_framefmt *format; 957 int ret; 958 959 /* Set init register settings */ 960 ret = imx290_set_register_array(imx290, imx290_global_init_settings, 961 ARRAY_SIZE(imx290_global_init_settings)); 962 if (ret < 0) { 963 dev_err(imx290->dev, "Could not set init registers\n"); 964 return ret; 965 } 966 967 /* Set mdel specific init register settings */ 968 ret = imx290_set_register_array(imx290, imx290->model->init_regs, 969 imx290->model->init_regs_num); 970 if (ret < 0) { 971 dev_err(imx290->dev, "Could not set model specific init registers\n"); 972 return ret; 973 } 974 975 /* Set clock parameters based on mode and xclk */ 976 ret = imx290_set_clock(imx290); 977 if (ret < 0) { 978 dev_err(imx290->dev, "Could not set clocks - %d\n", ret); 979 return ret; 980 } 981 982 /* Set data lane count */ 983 ret = imx290_set_data_lanes(imx290); 984 if (ret < 0) { 985 dev_err(imx290->dev, "Could not set data lanes - %d\n", ret); 986 return ret; 987 } 988 989 ret = imx290_set_csi_config(imx290); 990 if (ret < 0) { 991 dev_err(imx290->dev, "Could not set csi cfg - %d\n", ret); 992 return ret; 993 } 994 995 /* Apply the register values related to current frame format */ 996 format = v4l2_subdev_state_get_format(state, 0); 997 ret = imx290_setup_format(imx290, format); 998 if (ret < 0) { 999 dev_err(imx290->dev, "Could not set frame format - %d\n", ret); 1000 return ret; 1001 } 1002 1003 /* Apply default values of current mode */ 1004 ret = imx290_set_register_array(imx290, imx290->current_mode->data, 1005 imx290->current_mode->data_size); 1006 if (ret < 0) { 1007 dev_err(imx290->dev, "Could not set current mode - %d\n", ret); 1008 return ret; 1009 } 1010 1011 /* Apply customized values from user */ 1012 ret = __v4l2_ctrl_handler_setup(imx290->sd.ctrl_handler); 1013 if (ret) { 1014 dev_err(imx290->dev, "Could not sync v4l2 controls - %d\n", ret); 1015 return ret; 1016 } 1017 1018 cci_write(imx290->regmap, IMX290_STANDBY, 0x00, &ret); 1019 1020 msleep(30); 1021 1022 /* Start streaming */ 1023 return cci_write(imx290->regmap, IMX290_XMSTA, 0x00, &ret); 1024 } 1025 1026 /* Stop streaming */ 1027 static int imx290_stop_streaming(struct imx290 *imx290) 1028 { 1029 int ret = 0; 1030 1031 cci_write(imx290->regmap, IMX290_STANDBY, 0x01, &ret); 1032 1033 msleep(30); 1034 1035 return cci_write(imx290->regmap, IMX290_XMSTA, 0x01, &ret); 1036 } 1037 1038 static int imx290_set_stream(struct v4l2_subdev *sd, int enable) 1039 { 1040 struct imx290 *imx290 = to_imx290(sd); 1041 struct v4l2_subdev_state *state; 1042 int ret = 0; 1043 1044 state = v4l2_subdev_lock_and_get_active_state(sd); 1045 1046 if (enable) { 1047 ret = pm_runtime_resume_and_get(imx290->dev); 1048 if (ret < 0) 1049 goto unlock; 1050 1051 ret = imx290_start_streaming(imx290, state); 1052 if (ret) { 1053 dev_err(imx290->dev, "Start stream failed\n"); 1054 pm_runtime_put_sync(imx290->dev); 1055 goto unlock; 1056 } 1057 } else { 1058 imx290_stop_streaming(imx290); 1059 pm_runtime_mark_last_busy(imx290->dev); 1060 pm_runtime_put_autosuspend(imx290->dev); 1061 } 1062 1063 /* 1064 * vflip and hflip should not be changed during streaming as the sensor 1065 * will produce an invalid frame. 1066 */ 1067 __v4l2_ctrl_grab(imx290->vflip, enable); 1068 __v4l2_ctrl_grab(imx290->hflip, enable); 1069 1070 unlock: 1071 v4l2_subdev_unlock_state(state); 1072 return ret; 1073 } 1074 1075 static int imx290_enum_mbus_code(struct v4l2_subdev *sd, 1076 struct v4l2_subdev_state *sd_state, 1077 struct v4l2_subdev_mbus_code_enum *code) 1078 { 1079 const struct imx290 *imx290 = to_imx290(sd); 1080 1081 if (code->index >= ARRAY_SIZE(imx290_formats)) 1082 return -EINVAL; 1083 1084 code->code = imx290_formats[code->index].code[imx290->model->colour_variant]; 1085 1086 return 0; 1087 } 1088 1089 static int imx290_enum_frame_size(struct v4l2_subdev *sd, 1090 struct v4l2_subdev_state *sd_state, 1091 struct v4l2_subdev_frame_size_enum *fse) 1092 { 1093 const struct imx290 *imx290 = to_imx290(sd); 1094 const struct imx290_mode *imx290_modes = imx290_modes_ptr(imx290); 1095 1096 if (!imx290_format_info(imx290, fse->code)) 1097 return -EINVAL; 1098 1099 if (fse->index >= imx290_modes_num(imx290)) 1100 return -EINVAL; 1101 1102 fse->min_width = imx290_modes[fse->index].width; 1103 fse->max_width = imx290_modes[fse->index].width; 1104 fse->min_height = imx290_modes[fse->index].height; 1105 fse->max_height = imx290_modes[fse->index].height; 1106 1107 return 0; 1108 } 1109 1110 static int imx290_set_fmt(struct v4l2_subdev *sd, 1111 struct v4l2_subdev_state *sd_state, 1112 struct v4l2_subdev_format *fmt) 1113 { 1114 struct imx290 *imx290 = to_imx290(sd); 1115 const struct imx290_mode *mode; 1116 struct v4l2_mbus_framefmt *format; 1117 1118 mode = v4l2_find_nearest_size(imx290_modes_ptr(imx290), 1119 imx290_modes_num(imx290), width, height, 1120 fmt->format.width, fmt->format.height); 1121 1122 fmt->format.width = mode->width; 1123 fmt->format.height = mode->height; 1124 1125 if (!imx290_format_info(imx290, fmt->format.code)) 1126 fmt->format.code = imx290_formats[0].code[imx290->model->colour_variant]; 1127 1128 fmt->format.field = V4L2_FIELD_NONE; 1129 fmt->format.colorspace = V4L2_COLORSPACE_RAW; 1130 fmt->format.ycbcr_enc = V4L2_YCBCR_ENC_601; 1131 fmt->format.quantization = V4L2_QUANTIZATION_FULL_RANGE; 1132 fmt->format.xfer_func = V4L2_XFER_FUNC_NONE; 1133 1134 format = v4l2_subdev_state_get_format(sd_state, 0); 1135 1136 if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) { 1137 imx290->current_mode = mode; 1138 1139 imx290_ctrl_update(imx290, mode); 1140 imx290_exposure_update(imx290, mode); 1141 } 1142 1143 *format = fmt->format; 1144 1145 return 0; 1146 } 1147 1148 static int imx290_get_selection(struct v4l2_subdev *sd, 1149 struct v4l2_subdev_state *sd_state, 1150 struct v4l2_subdev_selection *sel) 1151 { 1152 struct imx290 *imx290 = to_imx290(sd); 1153 struct v4l2_mbus_framefmt *format; 1154 1155 switch (sel->target) { 1156 case V4L2_SEL_TGT_CROP: { 1157 format = v4l2_subdev_state_get_format(sd_state, 0); 1158 1159 /* 1160 * The sensor moves the readout by 1 pixel based on flips to 1161 * keep the Bayer order the same. 1162 */ 1163 sel->r.top = IMX290_PIXEL_ARRAY_MARGIN_TOP 1164 + (IMX290_PIXEL_ARRAY_RECORDING_HEIGHT - format->height) / 2 1165 + imx290->vflip->val; 1166 sel->r.left = IMX290_PIXEL_ARRAY_MARGIN_LEFT 1167 + (IMX290_PIXEL_ARRAY_RECORDING_WIDTH - format->width) / 2 1168 + imx290->hflip->val; 1169 sel->r.width = format->width; 1170 sel->r.height = format->height; 1171 1172 return 0; 1173 } 1174 1175 case V4L2_SEL_TGT_NATIVE_SIZE: 1176 case V4L2_SEL_TGT_CROP_BOUNDS: 1177 sel->r.top = 0; 1178 sel->r.left = 0; 1179 sel->r.width = IMX290_PIXEL_ARRAY_WIDTH; 1180 sel->r.height = IMX290_PIXEL_ARRAY_HEIGHT; 1181 1182 return 0; 1183 1184 case V4L2_SEL_TGT_CROP_DEFAULT: 1185 sel->r.top = IMX290_PIXEL_ARRAY_MARGIN_TOP; 1186 sel->r.left = IMX290_PIXEL_ARRAY_MARGIN_LEFT; 1187 sel->r.width = IMX290_PIXEL_ARRAY_RECORDING_WIDTH; 1188 sel->r.height = IMX290_PIXEL_ARRAY_RECORDING_HEIGHT; 1189 1190 return 0; 1191 1192 default: 1193 return -EINVAL; 1194 } 1195 } 1196 1197 static int imx290_entity_init_state(struct v4l2_subdev *subdev, 1198 struct v4l2_subdev_state *sd_state) 1199 { 1200 struct v4l2_subdev_format fmt = { 1201 .which = V4L2_SUBDEV_FORMAT_TRY, 1202 .format = { 1203 .width = 1920, 1204 .height = 1080, 1205 }, 1206 }; 1207 1208 imx290_set_fmt(subdev, sd_state, &fmt); 1209 1210 return 0; 1211 } 1212 1213 static const struct v4l2_subdev_core_ops imx290_core_ops = { 1214 .subscribe_event = v4l2_ctrl_subdev_subscribe_event, 1215 .unsubscribe_event = v4l2_event_subdev_unsubscribe, 1216 }; 1217 1218 static const struct v4l2_subdev_video_ops imx290_video_ops = { 1219 .s_stream = imx290_set_stream, 1220 }; 1221 1222 static const struct v4l2_subdev_pad_ops imx290_pad_ops = { 1223 .enum_mbus_code = imx290_enum_mbus_code, 1224 .enum_frame_size = imx290_enum_frame_size, 1225 .get_fmt = v4l2_subdev_get_fmt, 1226 .set_fmt = imx290_set_fmt, 1227 .get_selection = imx290_get_selection, 1228 }; 1229 1230 static const struct v4l2_subdev_ops imx290_subdev_ops = { 1231 .core = &imx290_core_ops, 1232 .video = &imx290_video_ops, 1233 .pad = &imx290_pad_ops, 1234 }; 1235 1236 static const struct v4l2_subdev_internal_ops imx290_internal_ops = { 1237 .init_state = imx290_entity_init_state, 1238 }; 1239 1240 static const struct media_entity_operations imx290_subdev_entity_ops = { 1241 .link_validate = v4l2_subdev_link_validate, 1242 }; 1243 1244 static int imx290_subdev_init(struct imx290 *imx290) 1245 { 1246 struct i2c_client *client = to_i2c_client(imx290->dev); 1247 struct v4l2_subdev_state *state; 1248 int ret; 1249 1250 imx290->current_mode = &imx290_modes_ptr(imx290)[0]; 1251 1252 /* 1253 * After linking the subdev with the imx290 instance, we are allowed to 1254 * use the pm_runtime functions. Decrease the PM usage count. The device 1255 * will get suspended after the autosuspend delay, turning the power 1256 * off. However, the communication happening in imx290_ctrl_update() 1257 * will already be prevented even before the delay. 1258 */ 1259 v4l2_i2c_subdev_init(&imx290->sd, client, &imx290_subdev_ops); 1260 imx290->sd.dev = imx290->dev; 1261 pm_runtime_mark_last_busy(imx290->dev); 1262 pm_runtime_put_autosuspend(imx290->dev); 1263 1264 imx290->sd.internal_ops = &imx290_internal_ops; 1265 imx290->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE | 1266 V4L2_SUBDEV_FL_HAS_EVENTS; 1267 imx290->sd.entity.ops = &imx290_subdev_entity_ops; 1268 imx290->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR; 1269 1270 imx290->pad.flags = MEDIA_PAD_FL_SOURCE; 1271 ret = media_entity_pads_init(&imx290->sd.entity, 1, &imx290->pad); 1272 if (ret < 0) { 1273 dev_err(imx290->dev, "Could not register media entity\n"); 1274 return ret; 1275 } 1276 1277 ret = imx290_ctrl_init(imx290); 1278 if (ret < 0) { 1279 dev_err(imx290->dev, "Control initialization error %d\n", ret); 1280 goto err_media; 1281 } 1282 1283 imx290->sd.state_lock = imx290->ctrls.lock; 1284 1285 ret = v4l2_subdev_init_finalize(&imx290->sd); 1286 if (ret < 0) { 1287 dev_err(imx290->dev, "subdev initialization error %d\n", ret); 1288 goto err_ctrls; 1289 } 1290 1291 state = v4l2_subdev_lock_and_get_active_state(&imx290->sd); 1292 imx290_ctrl_update(imx290, imx290->current_mode); 1293 v4l2_subdev_unlock_state(state); 1294 1295 return 0; 1296 1297 err_ctrls: 1298 v4l2_ctrl_handler_free(&imx290->ctrls); 1299 err_media: 1300 media_entity_cleanup(&imx290->sd.entity); 1301 return ret; 1302 } 1303 1304 static void imx290_subdev_cleanup(struct imx290 *imx290) 1305 { 1306 v4l2_subdev_cleanup(&imx290->sd); 1307 media_entity_cleanup(&imx290->sd.entity); 1308 v4l2_ctrl_handler_free(&imx290->ctrls); 1309 } 1310 1311 /* ---------------------------------------------------------------------------- 1312 * Power management 1313 */ 1314 1315 static int imx290_power_on(struct imx290 *imx290) 1316 { 1317 int ret; 1318 1319 ret = clk_prepare_enable(imx290->xclk); 1320 if (ret) { 1321 dev_err(imx290->dev, "Failed to enable clock\n"); 1322 return ret; 1323 } 1324 1325 ret = regulator_bulk_enable(ARRAY_SIZE(imx290->supplies), 1326 imx290->supplies); 1327 if (ret) { 1328 dev_err(imx290->dev, "Failed to enable regulators\n"); 1329 clk_disable_unprepare(imx290->xclk); 1330 return ret; 1331 } 1332 1333 usleep_range(1, 2); 1334 gpiod_set_value_cansleep(imx290->rst_gpio, 0); 1335 usleep_range(30000, 31000); 1336 1337 return 0; 1338 } 1339 1340 static void imx290_power_off(struct imx290 *imx290) 1341 { 1342 clk_disable_unprepare(imx290->xclk); 1343 gpiod_set_value_cansleep(imx290->rst_gpio, 1); 1344 regulator_bulk_disable(ARRAY_SIZE(imx290->supplies), imx290->supplies); 1345 } 1346 1347 static int imx290_runtime_resume(struct device *dev) 1348 { 1349 struct v4l2_subdev *sd = dev_get_drvdata(dev); 1350 struct imx290 *imx290 = to_imx290(sd); 1351 1352 return imx290_power_on(imx290); 1353 } 1354 1355 static int imx290_runtime_suspend(struct device *dev) 1356 { 1357 struct v4l2_subdev *sd = dev_get_drvdata(dev); 1358 struct imx290 *imx290 = to_imx290(sd); 1359 1360 imx290_power_off(imx290); 1361 1362 return 0; 1363 } 1364 1365 static const struct dev_pm_ops imx290_pm_ops = { 1366 RUNTIME_PM_OPS(imx290_runtime_suspend, imx290_runtime_resume, NULL) 1367 }; 1368 1369 /* ---------------------------------------------------------------------------- 1370 * Probe & remove 1371 */ 1372 1373 static const char * const imx290_supply_name[IMX290_NUM_SUPPLIES] = { 1374 "vdda", 1375 "vddd", 1376 "vdddo", 1377 }; 1378 1379 static int imx290_get_regulators(struct device *dev, struct imx290 *imx290) 1380 { 1381 unsigned int i; 1382 1383 for (i = 0; i < ARRAY_SIZE(imx290->supplies); i++) 1384 imx290->supplies[i].supply = imx290_supply_name[i]; 1385 1386 return devm_regulator_bulk_get(dev, ARRAY_SIZE(imx290->supplies), 1387 imx290->supplies); 1388 } 1389 1390 static int imx290_init_clk(struct imx290 *imx290) 1391 { 1392 u32 xclk_freq; 1393 int ret; 1394 1395 ret = device_property_read_u32(imx290->dev, "clock-frequency", 1396 &xclk_freq); 1397 if (ret) { 1398 dev_err(imx290->dev, "Could not get xclk frequency\n"); 1399 return ret; 1400 } 1401 1402 /* external clock must be 37.125 MHz or 74.25MHz */ 1403 switch (xclk_freq) { 1404 case 37125000: 1405 imx290->xclk_idx = IMX290_CLK_37_125; 1406 break; 1407 case 74250000: 1408 imx290->xclk_idx = IMX290_CLK_74_25; 1409 break; 1410 default: 1411 dev_err(imx290->dev, "External clock frequency %u is not supported\n", 1412 xclk_freq); 1413 return -EINVAL; 1414 } 1415 1416 ret = clk_set_rate(imx290->xclk, xclk_freq); 1417 if (ret) { 1418 dev_err(imx290->dev, "Could not set xclk frequency\n"); 1419 return ret; 1420 } 1421 1422 return 0; 1423 } 1424 1425 /* 1426 * Returns 0 if all link frequencies used by the driver for the given number 1427 * of MIPI data lanes are mentioned in the device tree, or the value of the 1428 * first missing frequency otherwise. 1429 */ 1430 static s64 imx290_check_link_freqs(const struct imx290 *imx290, 1431 const struct v4l2_fwnode_endpoint *ep) 1432 { 1433 int i, j; 1434 const s64 *freqs = imx290_link_freqs_ptr(imx290); 1435 int freqs_count = imx290_link_freqs_num(imx290); 1436 1437 for (i = 0; i < freqs_count; i++) { 1438 for (j = 0; j < ep->nr_of_link_frequencies; j++) 1439 if (freqs[i] == ep->link_frequencies[j]) 1440 break; 1441 if (j == ep->nr_of_link_frequencies) 1442 return freqs[i]; 1443 } 1444 return 0; 1445 } 1446 1447 static const struct imx290_model_info imx290_models[] = { 1448 [IMX290_MODEL_IMX290LQR] = { 1449 .colour_variant = IMX290_VARIANT_COLOUR, 1450 .init_regs = imx290_global_init_settings_290, 1451 .init_regs_num = ARRAY_SIZE(imx290_global_init_settings_290), 1452 .name = "imx290", 1453 }, 1454 [IMX290_MODEL_IMX290LLR] = { 1455 .colour_variant = IMX290_VARIANT_MONO, 1456 .init_regs = imx290_global_init_settings_290, 1457 .init_regs_num = ARRAY_SIZE(imx290_global_init_settings_290), 1458 .name = "imx290", 1459 }, 1460 [IMX290_MODEL_IMX327LQR] = { 1461 .colour_variant = IMX290_VARIANT_COLOUR, 1462 .init_regs = imx290_global_init_settings_327, 1463 .init_regs_num = ARRAY_SIZE(imx290_global_init_settings_327), 1464 .name = "imx327", 1465 }, 1466 }; 1467 1468 static int imx290_parse_dt(struct imx290 *imx290) 1469 { 1470 /* Only CSI2 is supported for now: */ 1471 struct v4l2_fwnode_endpoint ep = { 1472 .bus_type = V4L2_MBUS_CSI2_DPHY 1473 }; 1474 struct fwnode_handle *endpoint; 1475 int ret; 1476 s64 fq; 1477 1478 imx290->model = of_device_get_match_data(imx290->dev); 1479 1480 endpoint = fwnode_graph_get_next_endpoint(dev_fwnode(imx290->dev), NULL); 1481 if (!endpoint) { 1482 dev_err(imx290->dev, "Endpoint node not found\n"); 1483 return -EINVAL; 1484 } 1485 1486 ret = v4l2_fwnode_endpoint_alloc_parse(endpoint, &ep); 1487 fwnode_handle_put(endpoint); 1488 if (ret == -ENXIO) { 1489 dev_err(imx290->dev, "Unsupported bus type, should be CSI2\n"); 1490 goto done; 1491 } else if (ret) { 1492 dev_err(imx290->dev, "Parsing endpoint node failed\n"); 1493 goto done; 1494 } 1495 1496 /* Get number of data lanes */ 1497 imx290->nlanes = ep.bus.mipi_csi2.num_data_lanes; 1498 if (imx290->nlanes != 2 && imx290->nlanes != 4) { 1499 dev_err(imx290->dev, "Invalid data lanes: %d\n", imx290->nlanes); 1500 ret = -EINVAL; 1501 goto done; 1502 } 1503 1504 dev_dbg(imx290->dev, "Using %u data lanes\n", imx290->nlanes); 1505 1506 if (!ep.nr_of_link_frequencies) { 1507 dev_err(imx290->dev, "link-frequency property not found in DT\n"); 1508 ret = -EINVAL; 1509 goto done; 1510 } 1511 1512 /* Check that link frequences for all the modes are in device tree */ 1513 fq = imx290_check_link_freqs(imx290, &ep); 1514 if (fq) { 1515 dev_err(imx290->dev, "Link frequency of %lld is not supported\n", 1516 fq); 1517 ret = -EINVAL; 1518 goto done; 1519 } 1520 1521 ret = 0; 1522 1523 done: 1524 v4l2_fwnode_endpoint_free(&ep); 1525 return ret; 1526 } 1527 1528 static int imx290_probe(struct i2c_client *client) 1529 { 1530 struct device *dev = &client->dev; 1531 struct imx290 *imx290; 1532 int ret; 1533 1534 imx290 = devm_kzalloc(dev, sizeof(*imx290), GFP_KERNEL); 1535 if (!imx290) 1536 return -ENOMEM; 1537 1538 imx290->dev = dev; 1539 imx290->regmap = devm_cci_regmap_init_i2c(client, 16); 1540 if (IS_ERR(imx290->regmap)) { 1541 dev_err(dev, "Unable to initialize I2C\n"); 1542 return -ENODEV; 1543 } 1544 1545 ret = imx290_parse_dt(imx290); 1546 if (ret) 1547 return ret; 1548 1549 /* Acquire resources. */ 1550 imx290->xclk = devm_clk_get(dev, "xclk"); 1551 if (IS_ERR(imx290->xclk)) 1552 return dev_err_probe(dev, PTR_ERR(imx290->xclk), 1553 "Could not get xclk\n"); 1554 1555 ret = imx290_get_regulators(dev, imx290); 1556 if (ret < 0) 1557 return dev_err_probe(dev, ret, "Cannot get regulators\n"); 1558 1559 imx290->rst_gpio = devm_gpiod_get_optional(dev, "reset", 1560 GPIOD_OUT_HIGH); 1561 if (IS_ERR(imx290->rst_gpio)) 1562 return dev_err_probe(dev, PTR_ERR(imx290->rst_gpio), 1563 "Cannot get reset gpio\n"); 1564 1565 /* Initialize external clock frequency. */ 1566 ret = imx290_init_clk(imx290); 1567 if (ret) 1568 return ret; 1569 1570 /* 1571 * Enable power management. The driver supports runtime PM, but needs to 1572 * work when runtime PM is disabled in the kernel. To that end, power 1573 * the sensor on manually here. 1574 */ 1575 ret = imx290_power_on(imx290); 1576 if (ret < 0) { 1577 dev_err(dev, "Could not power on the device\n"); 1578 return ret; 1579 } 1580 1581 /* 1582 * Enable runtime PM with autosuspend. As the device has been powered 1583 * manually, mark it as active, and increase the usage count without 1584 * resuming the device. 1585 */ 1586 pm_runtime_set_active(dev); 1587 pm_runtime_get_noresume(dev); 1588 pm_runtime_enable(dev); 1589 pm_runtime_set_autosuspend_delay(dev, 1000); 1590 pm_runtime_use_autosuspend(dev); 1591 1592 /* 1593 * Make sure the sensor is available, in STANDBY and not streaming 1594 * before the V4L2 subdev is initialized. 1595 */ 1596 ret = imx290_stop_streaming(imx290); 1597 if (ret) { 1598 ret = dev_err_probe(dev, ret, "Could not initialize device\n"); 1599 goto err_pm; 1600 } 1601 1602 /* Initialize the V4L2 subdev. */ 1603 ret = imx290_subdev_init(imx290); 1604 if (ret) 1605 goto err_pm; 1606 1607 v4l2_i2c_subdev_set_name(&imx290->sd, client, 1608 imx290->model->name, NULL); 1609 1610 /* 1611 * Finally, register the V4L2 subdev. This must be done after 1612 * initializing everything as the subdev can be used immediately after 1613 * being registered. 1614 */ 1615 ret = v4l2_async_register_subdev(&imx290->sd); 1616 if (ret < 0) { 1617 dev_err(dev, "Could not register v4l2 device\n"); 1618 goto err_subdev; 1619 } 1620 1621 return 0; 1622 1623 err_subdev: 1624 imx290_subdev_cleanup(imx290); 1625 err_pm: 1626 pm_runtime_disable(dev); 1627 pm_runtime_put_noidle(dev); 1628 imx290_power_off(imx290); 1629 return ret; 1630 } 1631 1632 static void imx290_remove(struct i2c_client *client) 1633 { 1634 struct v4l2_subdev *sd = i2c_get_clientdata(client); 1635 struct imx290 *imx290 = to_imx290(sd); 1636 1637 v4l2_async_unregister_subdev(sd); 1638 imx290_subdev_cleanup(imx290); 1639 1640 /* 1641 * Disable runtime PM. In case runtime PM is disabled in the kernel, 1642 * make sure to turn power off manually. 1643 */ 1644 pm_runtime_disable(imx290->dev); 1645 if (!pm_runtime_status_suspended(imx290->dev)) 1646 imx290_power_off(imx290); 1647 pm_runtime_set_suspended(imx290->dev); 1648 } 1649 1650 static const struct of_device_id imx290_of_match[] = { 1651 { 1652 /* Deprecated - synonym for "sony,imx290lqr" */ 1653 .compatible = "sony,imx290", 1654 .data = &imx290_models[IMX290_MODEL_IMX290LQR], 1655 }, { 1656 .compatible = "sony,imx290lqr", 1657 .data = &imx290_models[IMX290_MODEL_IMX290LQR], 1658 }, { 1659 .compatible = "sony,imx290llr", 1660 .data = &imx290_models[IMX290_MODEL_IMX290LLR], 1661 }, { 1662 .compatible = "sony,imx327lqr", 1663 .data = &imx290_models[IMX290_MODEL_IMX327LQR], 1664 }, 1665 { /* sentinel */ }, 1666 }; 1667 MODULE_DEVICE_TABLE(of, imx290_of_match); 1668 1669 static struct i2c_driver imx290_i2c_driver = { 1670 .probe = imx290_probe, 1671 .remove = imx290_remove, 1672 .driver = { 1673 .name = "imx290", 1674 .pm = pm_ptr(&imx290_pm_ops), 1675 .of_match_table = imx290_of_match, 1676 }, 1677 }; 1678 1679 module_i2c_driver(imx290_i2c_driver); 1680 1681 MODULE_DESCRIPTION("Sony IMX290 CMOS Image Sensor Driver"); 1682 MODULE_AUTHOR("FRAMOS GmbH"); 1683 MODULE_AUTHOR("Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>"); 1684 MODULE_LICENSE("GPL v2"); 1685