1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * V4L2 Support for the IMX283 4 * 5 * Diagonal 15.86 mm (Type 1) CMOS Image Sensor with Square Pixel for Color 6 * Cameras. 7 * 8 * Copyright (C) 2024 Ideas on Board Oy. 9 * 10 * Based on Sony IMX283 driver prepared by Will Whang 11 * 12 * Based on Sony imx477 camera driver 13 * Copyright (C) 2019-2020 Raspberry Pi (Trading) Ltd 14 */ 15 16 #include <linux/array_size.h> 17 #include <linux/bitops.h> 18 #include <linux/container_of.h> 19 #include <linux/clk.h> 20 #include <linux/delay.h> 21 #include <linux/err.h> 22 #include <linux/gpio/consumer.h> 23 #include <linux/i2c.h> 24 #include <linux/minmax.h> 25 #include <linux/module.h> 26 #include <linux/mutex.h> 27 #include <linux/pm_runtime.h> 28 #include <linux/property.h> 29 #include <linux/regulator/consumer.h> 30 #include <linux/types.h> 31 #include <linux/units.h> 32 #include <media/v4l2-cci.h> 33 #include <media/v4l2-ctrls.h> 34 #include <media/v4l2-device.h> 35 #include <media/v4l2-event.h> 36 #include <media/v4l2-fwnode.h> 37 #include <media/v4l2-mediabus.h> 38 39 /* Chip ID */ 40 #define IMX283_REG_CHIP_ID CCI_REG8(0x3000) 41 #define IMX283_CHIP_ID 0x0b // Default power on state 42 43 #define IMX283_REG_STANDBY CCI_REG8(0x3000) 44 #define IMX283_ACTIVE 0 45 #define IMX283_STANDBY BIT(0) 46 #define IMX283_STBLOGIC BIT(1) 47 #define IMX283_STBMIPI BIT(2) 48 #define IMX283_STBDV BIT(3) 49 #define IMX283_SLEEP BIT(4) 50 51 #define IMX283_REG_CLAMP CCI_REG8(0x3001) 52 #define IMX283_CLPSQRST BIT(4) 53 54 #define IMX283_REG_PLSTMG08 CCI_REG8(0x3003) 55 #define IMX283_PLSTMG08_VAL 0x77 56 57 #define IMX283_REG_MDSEL1 CCI_REG8(0x3004) 58 #define IMX283_REG_MDSEL2 CCI_REG8(0x3005) 59 #define IMX283_REG_MDSEL3 CCI_REG8(0x3006) 60 #define IMX283_MDSEL3_VCROP_EN BIT(5) 61 #define IMX283_REG_MDSEL4 CCI_REG8(0x3007) 62 #define IMX283_MDSEL4_VCROP_EN (BIT(4) | BIT(6)) 63 64 #define IMX283_REG_SVR CCI_REG16_LE(0x3009) 65 66 #define IMX283_REG_HTRIMMING CCI_REG8(0x300b) 67 #define IMX283_MDVREV BIT(0) /* VFLIP */ 68 #define IMX283_HTRIMMING_EN BIT(4) 69 70 #define IMX283_REG_VWINPOS CCI_REG16_LE(0x300f) 71 #define IMX283_REG_VWIDCUT CCI_REG16_LE(0x3011) 72 73 #define IMX283_REG_MDSEL7 CCI_REG16_LE(0x3013) 74 75 /* CSI Clock Configuration */ 76 #define IMX283_REG_TCLKPOST CCI_REG8(0x3018) 77 #define IMX283_REG_THSPREPARE CCI_REG8(0x301a) 78 #define IMX283_REG_THSZERO CCI_REG8(0x301c) 79 #define IMX283_REG_THSTRAIL CCI_REG8(0x301e) 80 #define IMX283_REG_TCLKTRAIL CCI_REG8(0x3020) 81 #define IMX283_REG_TCLKPREPARE CCI_REG8(0x3022) 82 #define IMX283_REG_TCLKZERO CCI_REG16_LE(0x3024) 83 #define IMX283_REG_TLPX CCI_REG8(0x3026) 84 #define IMX283_REG_THSEXIT CCI_REG8(0x3028) 85 #define IMX283_REG_TCLKPRE CCI_REG8(0x302a) 86 #define IMX283_REG_SYSMODE CCI_REG8(0x3104) 87 88 #define IMX283_REG_Y_OUT_SIZE CCI_REG16_LE(0x302f) 89 #define IMX283_REG_WRITE_VSIZE CCI_REG16_LE(0x3031) 90 #define IMX283_REG_OB_SIZE_V CCI_REG8(0x3033) 91 92 /* HMAX internal HBLANK */ 93 #define IMX283_REG_HMAX CCI_REG16_LE(0x3036) 94 #define IMX283_HMAX_MAX (BIT(16) - 1) 95 96 /* VMAX internal VBLANK */ 97 #define IMX283_REG_VMAX CCI_REG24_LE(0x3038) 98 #define IMX283_VMAX_MAX (BIT(16) - 1) 99 100 /* SHR internal */ 101 #define IMX283_REG_SHR CCI_REG16_LE(0x303b) 102 #define IMX283_SHR_MIN 11 103 104 /* 105 * Analog gain control 106 * Gain [dB] = -20log{(2048 - value [10:0]) /2048} 107 * Range: 0dB to approximately +27dB 108 */ 109 #define IMX283_REG_ANALOG_GAIN CCI_REG16_LE(0x3042) 110 #define IMX283_ANA_GAIN_MIN 0 111 #define IMX283_ANA_GAIN_MAX 1957 112 #define IMX283_ANA_GAIN_STEP 1 113 #define IMX283_ANA_GAIN_DEFAULT 0x0 114 115 /* 116 * Digital gain control 117 * Gain [dB] = value * 6 118 * Range: 0dB to +18db 119 */ 120 #define IMX283_REG_DIGITAL_GAIN CCI_REG8(0x3044) 121 #define IMX283_DGTL_GAIN_MIN 0 122 #define IMX283_DGTL_GAIN_MAX 3 123 #define IMX283_DGTL_GAIN_DEFAULT 0 124 #define IMX283_DGTL_GAIN_STEP 1 125 126 #define IMX283_REG_HTRIMMING_START CCI_REG16_LE(0x3058) 127 #define IMX283_REG_HTRIMMING_END CCI_REG16_LE(0x305a) 128 129 #define IMX283_REG_MDSEL18 CCI_REG16_LE(0x30f6) 130 131 /* Master Mode Operation Control */ 132 #define IMX283_REG_XMSTA CCI_REG8(0x3105) 133 #define IMX283_XMSTA BIT(0) 134 135 #define IMX283_REG_SYNCDRV CCI_REG8(0x3107) 136 #define IMX283_SYNCDRV_XHS_XVS (0xa0 | 0x02) 137 #define IMX283_SYNCDRV_HIZ (0xa0 | 0x03) 138 139 /* PLL Standby */ 140 #define IMX283_REG_STBPL CCI_REG8(0x320b) 141 #define IMX283_STBPL_NORMAL 0x00 142 #define IMX283_STBPL_STANDBY 0x03 143 144 /* Input Frequency Setting */ 145 #define IMX283_REG_PLRD1 CCI_REG8(0x36c1) 146 #define IMX283_REG_PLRD2 CCI_REG16_LE(0x36c2) 147 #define IMX283_REG_PLRD3 CCI_REG8(0x36f7) 148 #define IMX283_REG_PLRD4 CCI_REG8(0x36f8) 149 150 #define IMX283_REG_PLSTMG02 CCI_REG8(0x36aa) 151 #define IMX283_PLSTMG02_VAL 0x00 152 153 #define IMX283_REG_EBD_X_OUT_SIZE CCI_REG16_LE(0x3a54) 154 155 /* Test pattern generator */ 156 #define IMX283_REG_TPG_CTRL CCI_REG8(0x3156) 157 #define IMX283_TPG_CTRL_CLKEN BIT(0) 158 #define IMX283_TPG_CTRL_PATEN BIT(4) 159 160 #define IMX283_REG_TPG_PAT CCI_REG8(0x3157) 161 #define IMX283_TPG_PAT_ALL_000 0x00 162 #define IMX283_TPG_PAT_ALL_FFF 0x01 163 #define IMX283_TPG_PAT_ALL_555 0x02 164 #define IMX283_TPG_PAT_ALL_AAA 0x03 165 #define IMX283_TPG_PAT_H_COLOR_BARS 0x0a 166 #define IMX283_TPG_PAT_V_COLOR_BARS 0x0b 167 168 /* Exposure control */ 169 #define IMX283_EXPOSURE_MIN 52 170 #define IMX283_EXPOSURE_STEP 1 171 #define IMX283_EXPOSURE_DEFAULT 1000 172 #define IMX283_EXPOSURE_MAX 49865 173 174 #define IMAGE_PAD 0 175 176 #define IMX283_XCLR_MIN_DELAY_US (1 * USEC_PER_MSEC) 177 #define IMX283_XCLR_DELAY_RANGE_US (1 * USEC_PER_MSEC) 178 179 /* IMX283 native and active pixel array size. */ 180 static const struct v4l2_rect imx283_native_area = { 181 .top = 0, 182 .left = 0, 183 .width = 5592, 184 .height = 3710, 185 }; 186 187 static const struct v4l2_rect imx283_active_area = { 188 .top = 40, 189 .left = 108, 190 .width = 5472, 191 .height = 3648, 192 }; 193 194 struct imx283_reg_list { 195 unsigned int num_of_regs; 196 const struct cci_reg_sequence *regs; 197 }; 198 199 /* Mode : resolution and related config values */ 200 struct imx283_mode { 201 unsigned int mode; 202 203 /* Bits per pixel */ 204 unsigned int bpp; 205 206 /* Frame width */ 207 unsigned int width; 208 209 /* Frame height */ 210 unsigned int height; 211 212 /* 213 * Minimum horizontal timing in pixel-units 214 * 215 * Note that HMAX is written in 72MHz units, and the datasheet assumes a 216 * 720MHz link frequency. Convert datasheet values with the following: 217 * 218 * For 12 bpp modes (480Mbps) convert with: 219 * hmax = [hmax in 72MHz units] * 480 / 72 220 * 221 * For 10 bpp modes (576Mbps) convert with: 222 * hmax = [hmax in 72MHz units] * 576 / 72 223 */ 224 u32 min_hmax; 225 226 /* minimum V-timing in lines */ 227 u32 min_vmax; 228 229 /* default H-timing */ 230 u32 default_hmax; 231 232 /* default V-timing */ 233 u32 default_vmax; 234 235 /* minimum SHR */ 236 u32 min_shr; 237 238 /* 239 * Per-mode vertical crop constants used to calculate values 240 * of IMX283REG_WIDCUT and IMX283_REG_VWINPOS. 241 */ 242 u32 veff; 243 u32 vst; 244 u32 vct; 245 246 /* Horizontal and vertical binning ratio */ 247 u8 hbin_ratio; 248 u8 vbin_ratio; 249 250 /* Optical Blanking */ 251 u32 horizontal_ob; 252 u32 vertical_ob; 253 254 /* Analog crop rectangle. */ 255 struct v4l2_rect crop; 256 }; 257 258 struct imx283_input_frequency { 259 unsigned int mhz; 260 unsigned int reg_count; 261 struct cci_reg_sequence regs[4]; 262 }; 263 264 static const struct imx283_input_frequency imx283_frequencies[] = { 265 { 266 .mhz = 6 * HZ_PER_MHZ, 267 .reg_count = 4, 268 .regs = { 269 { IMX283_REG_PLRD1, 0x00 }, 270 { IMX283_REG_PLRD2, 0x00f0 }, 271 { IMX283_REG_PLRD3, 0x00 }, 272 { IMX283_REG_PLRD4, 0xc0 }, 273 }, 274 }, 275 { 276 .mhz = 12 * HZ_PER_MHZ, 277 .reg_count = 4, 278 .regs = { 279 { IMX283_REG_PLRD1, 0x01 }, 280 { IMX283_REG_PLRD2, 0x00f0 }, 281 { IMX283_REG_PLRD3, 0x01 }, 282 { IMX283_REG_PLRD4, 0xc0 }, 283 }, 284 }, 285 { 286 .mhz = 18 * HZ_PER_MHZ, 287 .reg_count = 4, 288 .regs = { 289 { IMX283_REG_PLRD1, 0x01 }, 290 { IMX283_REG_PLRD2, 0x00a0 }, 291 { IMX283_REG_PLRD3, 0x01 }, 292 { IMX283_REG_PLRD4, 0x80 }, 293 }, 294 }, 295 { 296 .mhz = 24 * HZ_PER_MHZ, 297 .reg_count = 4, 298 .regs = { 299 { IMX283_REG_PLRD1, 0x02 }, 300 { IMX283_REG_PLRD2, 0x00f0 }, 301 { IMX283_REG_PLRD3, 0x02 }, 302 { IMX283_REG_PLRD4, 0xc0 }, 303 }, 304 }, 305 }; 306 307 enum imx283_modes { 308 IMX283_MODE_0, 309 IMX283_MODE_1, 310 IMX283_MODE_1A, 311 IMX283_MODE_1S, 312 IMX283_MODE_2, 313 IMX283_MODE_2A, 314 IMX283_MODE_3, 315 IMX283_MODE_4, 316 IMX283_MODE_5, 317 IMX283_MODE_6, 318 }; 319 320 struct imx283_readout_mode { 321 u8 mdsel1; 322 u8 mdsel2; 323 u8 mdsel3; 324 u8 mdsel4; 325 }; 326 327 static const struct imx283_readout_mode imx283_readout_modes[] = { 328 /* All pixel scan modes */ 329 [IMX283_MODE_0] = { 0x04, 0x03, 0x10, 0x00 }, /* 12 bit */ 330 [IMX283_MODE_1] = { 0x04, 0x01, 0x00, 0x00 }, /* 10 bit */ 331 [IMX283_MODE_1A] = { 0x04, 0x01, 0x20, 0x50 }, /* 10 bit */ 332 [IMX283_MODE_1S] = { 0x04, 0x41, 0x20, 0x50 }, /* 10 bit */ 333 334 /* Horizontal / Vertical 2/2-line binning */ 335 [IMX283_MODE_2] = { 0x0d, 0x11, 0x50, 0x00 }, /* 12 bit */ 336 [IMX283_MODE_2A] = { 0x0d, 0x11, 0x70, 0x50 }, /* 12 bit */ 337 338 /* Horizontal / Vertical 3/3-line binning */ 339 [IMX283_MODE_3] = { 0x1e, 0x18, 0x10, 0x00 }, /* 12 bit */ 340 341 /* Vertical 2/9 subsampling, horizontal 3 binning cropping */ 342 [IMX283_MODE_4] = { 0x29, 0x18, 0x30, 0x50 }, /* 12 bit */ 343 344 /* Vertical 2/19 subsampling binning, horizontal 3 binning */ 345 [IMX283_MODE_5] = { 0x2d, 0x18, 0x10, 0x00 }, /* 12 bit */ 346 347 /* Vertical 2 binning horizontal 2/4, subsampling 16:9 cropping */ 348 [IMX283_MODE_6] = { 0x18, 0x21, 0x00, 0x09 }, /* 10 bit */ 349 350 /* 351 * New modes should make sure the offset period is complied. 352 * See imx283_exposure() for reference. 353 */ 354 }; 355 356 static const struct cci_reg_sequence mipi_data_rate_1440Mbps[] = { 357 /* The default register settings provide the 1440Mbps rate */ 358 { CCI_REG8(0x36c5), 0x00 }, /* Undocumented */ 359 { CCI_REG8(0x3ac4), 0x00 }, /* Undocumented */ 360 361 { IMX283_REG_STBPL, 0x00 }, 362 { IMX283_REG_TCLKPOST, 0xa7 }, 363 { IMX283_REG_THSPREPARE, 0x6f }, 364 { IMX283_REG_THSZERO, 0x9f }, 365 { IMX283_REG_THSTRAIL, 0x5f }, 366 { IMX283_REG_TCLKTRAIL, 0x5f }, 367 { IMX283_REG_TCLKPREPARE, 0x6f }, 368 { IMX283_REG_TCLKZERO, 0x017f }, 369 { IMX283_REG_TLPX, 0x4f }, 370 { IMX283_REG_THSEXIT, 0x47 }, 371 { IMX283_REG_TCLKPRE, 0x07 }, 372 { IMX283_REG_SYSMODE, 0x02 }, 373 }; 374 375 static const struct cci_reg_sequence mipi_data_rate_720Mbps[] = { 376 /* Undocumented Additions "For 720MBps" Setting */ 377 { CCI_REG8(0x36c5), 0x01 }, /* Undocumented */ 378 { CCI_REG8(0x3ac4), 0x01 }, /* Undocumented */ 379 380 { IMX283_REG_STBPL, 0x00 }, 381 { IMX283_REG_TCLKPOST, 0x77 }, 382 { IMX283_REG_THSPREPARE, 0x37 }, 383 { IMX283_REG_THSZERO, 0x67 }, 384 { IMX283_REG_THSTRAIL, 0x37 }, 385 { IMX283_REG_TCLKTRAIL, 0x37 }, 386 { IMX283_REG_TCLKPREPARE, 0x37 }, 387 { IMX283_REG_TCLKZERO, 0xdf }, 388 { IMX283_REG_TLPX, 0x2f }, 389 { IMX283_REG_THSEXIT, 0x47 }, 390 { IMX283_REG_TCLKPRE, 0x0f }, 391 { IMX283_REG_SYSMODE, 0x02 }, 392 }; 393 394 static const s64 link_frequencies[] = { 395 720 * HZ_PER_MHZ, /* 1440 Mbps lane data rate */ 396 360 * HZ_PER_MHZ, /* 720 Mbps data lane rate */ 397 }; 398 399 static const struct imx283_reg_list link_freq_reglist[] = { 400 { /* 720 MHz */ 401 .num_of_regs = ARRAY_SIZE(mipi_data_rate_1440Mbps), 402 .regs = mipi_data_rate_1440Mbps, 403 }, 404 { /* 360 MHz */ 405 .num_of_regs = ARRAY_SIZE(mipi_data_rate_720Mbps), 406 .regs = mipi_data_rate_720Mbps, 407 }, 408 }; 409 410 #define CENTERED_RECTANGLE(rect, _width, _height) \ 411 { \ 412 .left = rect.left + ((rect.width - (_width)) / 2), \ 413 .top = rect.top + ((rect.height - (_height)) / 2), \ 414 .width = (_width), \ 415 .height = (_height), \ 416 } 417 418 /* Mode configs */ 419 static const struct imx283_mode supported_modes_12bit[] = { 420 { 421 /* 20MPix 21.40 fps readout mode 0 */ 422 .mode = IMX283_MODE_0, 423 .bpp = 12, 424 .width = 5472, 425 .height = 3648, 426 .min_hmax = 5914, /* 887 @ 480MHz/72MHz */ 427 .min_vmax = 3793, /* Lines */ 428 429 .veff = 3694, 430 .vst = 0, 431 .vct = 0, 432 433 .hbin_ratio = 1, 434 .vbin_ratio = 1, 435 436 /* 20.00 FPS */ 437 .default_hmax = 6000, /* 900 @ 480MHz/72MHz */ 438 .default_vmax = 4000, 439 440 .min_shr = 11, 441 .horizontal_ob = 96, 442 .vertical_ob = 16, 443 .crop = CENTERED_RECTANGLE(imx283_active_area, 5472, 3648), 444 }, 445 { 446 /* 447 * Readout mode 2 : 2/2 binned mode (2736x1824) 448 */ 449 .mode = IMX283_MODE_2, 450 .bpp = 12, 451 .width = 2736, 452 .height = 1824, 453 .min_hmax = 2414, /* Pixels (362 * 480MHz/72MHz + padding) */ 454 .min_vmax = 3840, /* Lines */ 455 456 /* 50.00 FPS */ 457 .default_hmax = 2500, /* 375 @ 480MHz/72Mhz */ 458 .default_vmax = 3840, 459 460 .veff = 1824, 461 .vst = 0, 462 .vct = 0, 463 464 .hbin_ratio = 2, 465 .vbin_ratio = 2, 466 467 .min_shr = 12, 468 .horizontal_ob = 48, 469 .vertical_ob = 4, 470 471 .crop = CENTERED_RECTANGLE(imx283_active_area, 5472, 3648), 472 }, 473 }; 474 475 static const struct imx283_mode supported_modes_10bit[] = { 476 { 477 /* 20MPix 25.48 fps readout mode 1 */ 478 .mode = IMX283_MODE_1, 479 .bpp = 10, 480 .width = 5472, 481 .height = 3648, 482 .min_hmax = 5960, /* 745 @ 576MHz / 72MHz */ 483 .min_vmax = 3793, 484 485 /* 25.00 FPS */ 486 .default_hmax = 6000, /* 750 @ 576MHz / 72MHz */ 487 .default_vmax = 3840, 488 489 .min_shr = 10, 490 .horizontal_ob = 96, 491 .vertical_ob = 16, 492 .crop = CENTERED_RECTANGLE(imx283_active_area, 5472, 3648), 493 }, 494 }; 495 496 static const u32 imx283_mbus_codes[] = { 497 MEDIA_BUS_FMT_SRGGB12_1X12, 498 MEDIA_BUS_FMT_SRGGB10_1X10, 499 }; 500 501 /* regulator supplies */ 502 static const char *const imx283_supply_name[] = { 503 "vadd", /* Analog (2.9V) supply */ 504 "vdd1", /* Supply Voltage 2 (1.8V) supply */ 505 "vdd2", /* Supply Voltage 3 (1.2V) supply */ 506 }; 507 508 struct imx283 { 509 struct device *dev; 510 struct regmap *cci; 511 512 const struct imx283_input_frequency *freq; 513 514 struct v4l2_subdev sd; 515 struct media_pad pad; 516 517 struct clk *xclk; 518 519 struct gpio_desc *reset_gpio; 520 struct regulator_bulk_data supplies[ARRAY_SIZE(imx283_supply_name)]; 521 522 /* V4L2 Controls */ 523 struct v4l2_ctrl_handler ctrl_handler; 524 struct v4l2_ctrl *exposure; 525 struct v4l2_ctrl *vblank; 526 struct v4l2_ctrl *hblank; 527 struct v4l2_ctrl *vflip; 528 529 unsigned long link_freq_bitmap; 530 531 u16 hmax; 532 u32 vmax; 533 }; 534 535 static inline struct imx283 *to_imx283(struct v4l2_subdev *sd) 536 { 537 return container_of_const(sd, struct imx283, sd); 538 } 539 540 static inline void get_mode_table(unsigned int code, 541 const struct imx283_mode **mode_list, 542 unsigned int *num_modes) 543 { 544 switch (code) { 545 case MEDIA_BUS_FMT_SRGGB12_1X12: 546 case MEDIA_BUS_FMT_SGRBG12_1X12: 547 case MEDIA_BUS_FMT_SGBRG12_1X12: 548 case MEDIA_BUS_FMT_SBGGR12_1X12: 549 *mode_list = supported_modes_12bit; 550 *num_modes = ARRAY_SIZE(supported_modes_12bit); 551 break; 552 553 case MEDIA_BUS_FMT_SRGGB10_1X10: 554 case MEDIA_BUS_FMT_SGRBG10_1X10: 555 case MEDIA_BUS_FMT_SGBRG10_1X10: 556 case MEDIA_BUS_FMT_SBGGR10_1X10: 557 *mode_list = supported_modes_10bit; 558 *num_modes = ARRAY_SIZE(supported_modes_10bit); 559 break; 560 default: 561 *mode_list = NULL; 562 *num_modes = 0; 563 break; 564 } 565 } 566 567 /* Calculate the Pixel Rate based on the current mode */ 568 static u64 imx283_pixel_rate(struct imx283 *imx283, 569 const struct imx283_mode *mode) 570 { 571 u64 link_frequency = link_frequencies[__ffs(imx283->link_freq_bitmap)]; 572 unsigned int bpp = mode->bpp; 573 const unsigned int ddr = 2; /* Double Data Rate */ 574 const unsigned int lanes = 4; /* Only 4 lane support */ 575 u64 numerator = link_frequency * ddr * lanes; 576 577 do_div(numerator, bpp); 578 579 return numerator; 580 } 581 582 /* Convert from a variable pixel_rate to 72 MHz clock cycles */ 583 static u64 imx283_internal_clock(unsigned int pixel_rate, unsigned int pixels) 584 { 585 /* 586 * Determine the following operation without overflow: 587 * pixels = 72 Mhz / pixel_rate 588 * 589 * The internal clock at 72MHz and Pixel Rate (between 240 and 576MHz) 590 * can easily overflow this calculation, so pre-divide to simplify. 591 */ 592 const u32 iclk_pre = 72; 593 const u32 pclk_pre = pixel_rate / HZ_PER_MHZ; 594 u64 numerator = pixels * iclk_pre; 595 596 do_div(numerator, pclk_pre); 597 598 return numerator; 599 } 600 601 /* Internal clock (72MHz) to Pixel Rate clock (Variable) */ 602 static u64 imx283_iclk_to_pix(unsigned int pixel_rate, unsigned int cycles) 603 { 604 /* 605 * Determine the following operation without overflow: 606 * cycles * pixel_rate / 72 MHz 607 * 608 * The internal clock at 72MHz and Pixel Rate (between 240 and 576MHz) 609 * can easily overflow this calculation, so pre-divide to simplify. 610 */ 611 const u32 iclk_pre = 72; 612 const u32 pclk_pre = pixel_rate / HZ_PER_MHZ; 613 u64 numerator = cycles * pclk_pre; 614 615 do_div(numerator, iclk_pre); 616 617 return numerator; 618 } 619 620 /* Determine the exposure based on current hmax, vmax and a given SHR */ 621 static u32 imx283_exposure(struct imx283 *imx283, 622 const struct imx283_mode *mode, u64 shr) 623 { 624 u32 svr = 0; /* SVR feature is not currently supported */ 625 u32 offset; 626 u64 numerator; 627 628 /* Number of clocks per internal offset period */ 629 offset = mode->mode == IMX283_MODE_0 ? 209 : 157; 630 numerator = (imx283->vmax * (svr + 1) - shr) * imx283->hmax + offset; 631 632 do_div(numerator, imx283->hmax); 633 634 return clamp(numerator, 0, U32_MAX); 635 } 636 637 static void imx283_exposure_limits(struct imx283 *imx283, 638 const struct imx283_mode *mode, 639 s64 *min_exposure, s64 *max_exposure) 640 { 641 u32 svr = 0; /* SVR feature is not currently supported */ 642 u64 min_shr = mode->min_shr; 643 /* Global Shutter is not supported */ 644 u64 max_shr = (svr + 1) * imx283->vmax - 4; 645 646 max_shr = min(max_shr, BIT(16) - 1); 647 648 *min_exposure = imx283_exposure(imx283, mode, max_shr); 649 *max_exposure = imx283_exposure(imx283, mode, min_shr); 650 } 651 652 /* 653 * Integration Time [s] = [ {VMAX x (SVR + 1) – (SHR)} x HMAX + offset ] 654 * / [ 72 x 10^6 ] 655 */ 656 static u32 imx283_shr(struct imx283 *imx283, const struct imx283_mode *mode, 657 u32 exposure) 658 { 659 u32 svr = 0; /* SVR feature is not currently supported */ 660 u32 offset; 661 u64 temp; 662 663 /* Number of clocks per internal offset period */ 664 offset = mode->mode == IMX283_MODE_0 ? 209 : 157; 665 temp = ((u64)exposure * imx283->hmax - offset); 666 do_div(temp, imx283->hmax); 667 668 return (imx283->vmax * (svr + 1) - temp); 669 } 670 671 static const char * const imx283_tpg_menu[] = { 672 "Disabled", 673 "All 000h", 674 "All FFFh", 675 "All 555h", 676 "All AAAh", 677 "Horizontal color bars", 678 "Vertical color bars", 679 }; 680 681 static const int imx283_tpg_val[] = { 682 IMX283_TPG_PAT_ALL_000, 683 IMX283_TPG_PAT_ALL_000, 684 IMX283_TPG_PAT_ALL_FFF, 685 IMX283_TPG_PAT_ALL_555, 686 IMX283_TPG_PAT_ALL_AAA, 687 IMX283_TPG_PAT_H_COLOR_BARS, 688 IMX283_TPG_PAT_V_COLOR_BARS, 689 }; 690 691 static int imx283_update_test_pattern(struct imx283 *imx283, u32 pattern_index) 692 { 693 int ret; 694 695 if (pattern_index >= ARRAY_SIZE(imx283_tpg_val)) 696 return -EINVAL; 697 698 if (!pattern_index) 699 return cci_write(imx283->cci, IMX283_REG_TPG_CTRL, 0x00, NULL); 700 701 ret = cci_write(imx283->cci, IMX283_REG_TPG_PAT, 702 imx283_tpg_val[pattern_index], NULL); 703 if (ret) 704 return ret; 705 706 return cci_write(imx283->cci, IMX283_REG_TPG_CTRL, 707 IMX283_TPG_CTRL_CLKEN | IMX283_TPG_CTRL_PATEN, NULL); 708 } 709 710 static int imx283_set_ctrl(struct v4l2_ctrl *ctrl) 711 { 712 struct imx283 *imx283 = container_of(ctrl->handler, struct imx283, 713 ctrl_handler); 714 const struct imx283_mode *mode; 715 struct v4l2_mbus_framefmt *fmt; 716 const struct imx283_mode *mode_list; 717 struct v4l2_subdev_state *state; 718 unsigned int num_modes; 719 u64 shr, pixel_rate; 720 int ret = 0; 721 722 state = v4l2_subdev_get_locked_active_state(&imx283->sd); 723 fmt = v4l2_subdev_state_get_format(state, 0); 724 725 get_mode_table(fmt->code, &mode_list, &num_modes); 726 mode = v4l2_find_nearest_size(mode_list, num_modes, width, height, 727 fmt->width, fmt->height); 728 729 /* 730 * The VBLANK control may change the limits of usable exposure, so check 731 * and adjust if necessary. 732 */ 733 if (ctrl->id == V4L2_CID_VBLANK) { 734 /* Honour the VBLANK limits when setting exposure. */ 735 s64 current_exposure, max_exposure, min_exposure; 736 737 imx283->vmax = mode->height + ctrl->val; 738 739 imx283_exposure_limits(imx283, mode, 740 &min_exposure, &max_exposure); 741 742 current_exposure = imx283->exposure->val; 743 current_exposure = clamp(current_exposure, min_exposure, 744 max_exposure); 745 746 __v4l2_ctrl_modify_range(imx283->exposure, min_exposure, 747 max_exposure, 1, current_exposure); 748 } 749 750 /* 751 * Applying V4L2 control value only happens 752 * when power is up for streaming 753 */ 754 if (!pm_runtime_get_if_active(imx283->dev)) 755 return 0; 756 757 switch (ctrl->id) { 758 case V4L2_CID_EXPOSURE: 759 shr = imx283_shr(imx283, mode, ctrl->val); 760 dev_dbg(imx283->dev, "V4L2_CID_EXPOSURE : %d - SHR: %lld\n", 761 ctrl->val, shr); 762 ret = cci_write(imx283->cci, IMX283_REG_SHR, shr, NULL); 763 break; 764 765 case V4L2_CID_HBLANK: 766 pixel_rate = imx283_pixel_rate(imx283, mode); 767 imx283->hmax = imx283_internal_clock(pixel_rate, mode->width + ctrl->val); 768 dev_dbg(imx283->dev, "V4L2_CID_HBLANK : %d HMAX : %u\n", 769 ctrl->val, imx283->hmax); 770 ret = cci_write(imx283->cci, IMX283_REG_HMAX, imx283->hmax, NULL); 771 break; 772 773 case V4L2_CID_VBLANK: 774 imx283->vmax = mode->height + ctrl->val; 775 dev_dbg(imx283->dev, "V4L2_CID_VBLANK : %d VMAX : %u\n", 776 ctrl->val, imx283->vmax); 777 ret = cci_write(imx283->cci, IMX283_REG_VMAX, imx283->vmax, NULL); 778 break; 779 780 case V4L2_CID_ANALOGUE_GAIN: 781 ret = cci_write(imx283->cci, IMX283_REG_ANALOG_GAIN, ctrl->val, NULL); 782 break; 783 784 case V4L2_CID_DIGITAL_GAIN: 785 ret = cci_write(imx283->cci, IMX283_REG_DIGITAL_GAIN, ctrl->val, NULL); 786 break; 787 788 case V4L2_CID_VFLIP: 789 /* 790 * VFLIP is managed by BIT(0) of IMX283_REG_HTRIMMING address, hence 791 * both need to be set simultaneously. 792 */ 793 if (ctrl->val) { 794 cci_write(imx283->cci, IMX283_REG_HTRIMMING, 795 IMX283_HTRIMMING_EN | IMX283_MDVREV, &ret); 796 } else { 797 cci_write(imx283->cci, IMX283_REG_HTRIMMING, 798 IMX283_HTRIMMING_EN, &ret); 799 } 800 break; 801 802 case V4L2_CID_TEST_PATTERN: 803 ret = imx283_update_test_pattern(imx283, ctrl->val); 804 break; 805 806 default: 807 dev_err(imx283->dev, "ctrl(id:0x%x, val:0x%x) is not handled\n", 808 ctrl->id, ctrl->val); 809 break; 810 } 811 812 pm_runtime_put(imx283->dev); 813 814 return ret; 815 } 816 817 static const struct v4l2_ctrl_ops imx283_ctrl_ops = { 818 .s_ctrl = imx283_set_ctrl, 819 }; 820 821 static int imx283_enum_mbus_code(struct v4l2_subdev *sd, 822 struct v4l2_subdev_state *sd_state, 823 struct v4l2_subdev_mbus_code_enum *code) 824 { 825 if (code->index >= ARRAY_SIZE(imx283_mbus_codes)) 826 return -EINVAL; 827 828 code->code = imx283_mbus_codes[code->index]; 829 830 return 0; 831 } 832 833 static int imx283_enum_frame_size(struct v4l2_subdev *sd, 834 struct v4l2_subdev_state *sd_state, 835 struct v4l2_subdev_frame_size_enum *fse) 836 { 837 const struct imx283_mode *mode_list; 838 unsigned int num_modes; 839 840 get_mode_table(fse->code, &mode_list, &num_modes); 841 842 if (fse->index >= num_modes) 843 return -EINVAL; 844 845 fse->min_width = mode_list[fse->index].width; 846 fse->max_width = fse->min_width; 847 fse->min_height = mode_list[fse->index].height; 848 fse->max_height = fse->min_height; 849 850 return 0; 851 } 852 853 static void imx283_update_image_pad_format(struct imx283 *imx283, 854 const struct imx283_mode *mode, 855 struct v4l2_mbus_framefmt *format) 856 { 857 format->width = mode->width; 858 format->height = mode->height; 859 format->field = V4L2_FIELD_NONE; 860 format->colorspace = V4L2_COLORSPACE_RAW; 861 format->ycbcr_enc = V4L2_YCBCR_ENC_601; 862 format->quantization = V4L2_QUANTIZATION_FULL_RANGE; 863 format->xfer_func = V4L2_XFER_FUNC_NONE; 864 } 865 866 static int imx283_init_state(struct v4l2_subdev *sd, 867 struct v4l2_subdev_state *state) 868 { 869 struct imx283 *imx283 = to_imx283(sd); 870 struct v4l2_mbus_framefmt *format; 871 const struct imx283_mode *mode; 872 struct v4l2_rect *crop; 873 874 /* Initialize try_fmt */ 875 format = v4l2_subdev_state_get_format(state, IMAGE_PAD); 876 877 mode = &supported_modes_12bit[0]; 878 format->code = MEDIA_BUS_FMT_SRGGB12_1X12; 879 imx283_update_image_pad_format(imx283, mode, format); 880 881 /* Initialize crop rectangle to mode default */ 882 crop = v4l2_subdev_state_get_crop(state, IMAGE_PAD); 883 *crop = mode->crop; 884 885 return 0; 886 } 887 888 static void imx283_set_framing_limits(struct imx283 *imx283, 889 const struct imx283_mode *mode) 890 { 891 u64 pixel_rate = imx283_pixel_rate(imx283, mode); 892 u64 min_hblank, max_hblank, def_hblank; 893 894 /* Initialise hmax and vmax for exposure calculations */ 895 imx283->hmax = imx283_internal_clock(pixel_rate, mode->default_hmax); 896 imx283->vmax = mode->default_vmax; 897 898 /* 899 * Horizontal Blanking 900 * Convert the HMAX_MAX (72MHz) to Pixel rate values for HBLANK_MAX 901 */ 902 min_hblank = mode->min_hmax - mode->width; 903 max_hblank = imx283_iclk_to_pix(pixel_rate, IMX283_HMAX_MAX) - mode->width; 904 def_hblank = mode->default_hmax - mode->width; 905 __v4l2_ctrl_modify_range(imx283->hblank, min_hblank, max_hblank, 1, 906 def_hblank); 907 __v4l2_ctrl_s_ctrl(imx283->hblank, def_hblank); 908 909 /* Vertical Blanking */ 910 __v4l2_ctrl_modify_range(imx283->vblank, mode->min_vmax - mode->height, 911 IMX283_VMAX_MAX - mode->height, 1, 912 mode->default_vmax - mode->height); 913 __v4l2_ctrl_s_ctrl(imx283->vblank, mode->default_vmax - mode->height); 914 } 915 916 static int imx283_set_pad_format(struct v4l2_subdev *sd, 917 struct v4l2_subdev_state *sd_state, 918 struct v4l2_subdev_format *fmt) 919 { 920 struct v4l2_mbus_framefmt *format; 921 const struct imx283_mode *mode; 922 struct imx283 *imx283 = to_imx283(sd); 923 const struct imx283_mode *mode_list; 924 unsigned int num_modes; 925 926 get_mode_table(fmt->format.code, &mode_list, &num_modes); 927 928 mode = v4l2_find_nearest_size(mode_list, num_modes, width, height, 929 fmt->format.width, fmt->format.height); 930 931 fmt->format.width = mode->width; 932 fmt->format.height = mode->height; 933 fmt->format.field = V4L2_FIELD_NONE; 934 fmt->format.colorspace = V4L2_COLORSPACE_RAW; 935 fmt->format.ycbcr_enc = V4L2_YCBCR_ENC_601; 936 fmt->format.quantization = V4L2_QUANTIZATION_FULL_RANGE; 937 fmt->format.xfer_func = V4L2_XFER_FUNC_NONE; 938 939 format = v4l2_subdev_state_get_format(sd_state, 0); 940 941 if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) 942 imx283_set_framing_limits(imx283, mode); 943 944 *format = fmt->format; 945 946 return 0; 947 } 948 949 static int imx283_standby_cancel(struct imx283 *imx283) 950 { 951 unsigned int link_freq_idx; 952 int ret = 0; 953 954 cci_write(imx283->cci, IMX283_REG_STANDBY, 955 IMX283_STBLOGIC | IMX283_STBDV, &ret); 956 957 /* Configure PLL clocks based on the xclk */ 958 cci_multi_reg_write(imx283->cci, imx283->freq->regs, 959 imx283->freq->reg_count, &ret); 960 961 dev_dbg(imx283->dev, "Using clk freq %ld MHz", 962 imx283->freq->mhz / HZ_PER_MHZ); 963 964 /* Initialise communication */ 965 cci_write(imx283->cci, IMX283_REG_PLSTMG08, IMX283_PLSTMG08_VAL, &ret); 966 cci_write(imx283->cci, IMX283_REG_PLSTMG02, IMX283_PLSTMG02_VAL, &ret); 967 968 /* Enable PLL */ 969 cci_write(imx283->cci, IMX283_REG_STBPL, IMX283_STBPL_NORMAL, &ret); 970 971 /* Configure the MIPI link speed */ 972 link_freq_idx = __ffs(imx283->link_freq_bitmap); 973 cci_multi_reg_write(imx283->cci, link_freq_reglist[link_freq_idx].regs, 974 link_freq_reglist[link_freq_idx].num_of_regs, 975 &ret); 976 977 /* 1st Stabilisation period of 1 ms or more */ 978 usleep_range(1000, 2000); 979 980 /* Activate */ 981 cci_write(imx283->cci, IMX283_REG_STANDBY, IMX283_ACTIVE, &ret); 982 983 /* 2nd Stabilisation period of 19ms or more */ 984 usleep_range(19000, 20000); 985 986 cci_write(imx283->cci, IMX283_REG_CLAMP, IMX283_CLPSQRST, &ret); 987 cci_write(imx283->cci, IMX283_REG_XMSTA, 0, &ret); 988 cci_write(imx283->cci, IMX283_REG_SYNCDRV, IMX283_SYNCDRV_XHS_XVS, &ret); 989 990 return ret; 991 } 992 993 /* Start streaming */ 994 static int imx283_start_streaming(struct imx283 *imx283, 995 struct v4l2_subdev_state *state) 996 { 997 const struct imx283_readout_mode *readout; 998 const struct imx283_mode *mode; 999 const struct v4l2_mbus_framefmt *fmt; 1000 const struct imx283_mode *mode_list; 1001 unsigned int num_modes; 1002 u32 v_widcut; 1003 s32 v_pos; 1004 u32 write_v_size; 1005 u32 y_out_size; 1006 int ret = 0; 1007 1008 fmt = v4l2_subdev_state_get_format(state, 0); 1009 get_mode_table(fmt->code, &mode_list, &num_modes); 1010 mode = v4l2_find_nearest_size(mode_list, num_modes, width, height, 1011 fmt->width, fmt->height); 1012 1013 ret = imx283_standby_cancel(imx283); 1014 if (ret) { 1015 dev_err(imx283->dev, "failed to cancel standby\n"); 1016 return ret; 1017 } 1018 1019 /* 1020 * Set the readout mode registers. 1021 * MDSEL3 and MDSEL4 are updated to enable Arbitrary Vertical Cropping. 1022 */ 1023 readout = &imx283_readout_modes[mode->mode]; 1024 cci_write(imx283->cci, IMX283_REG_MDSEL1, readout->mdsel1, &ret); 1025 cci_write(imx283->cci, IMX283_REG_MDSEL2, readout->mdsel2, &ret); 1026 cci_write(imx283->cci, IMX283_REG_MDSEL3, 1027 readout->mdsel3 | IMX283_MDSEL3_VCROP_EN, &ret); 1028 cci_write(imx283->cci, IMX283_REG_MDSEL4, 1029 readout->mdsel4 | IMX283_MDSEL4_VCROP_EN, &ret); 1030 1031 /* Mode 1S specific entries from the Readout Drive Mode Tables */ 1032 if (mode->mode == IMX283_MODE_1S) { 1033 cci_write(imx283->cci, IMX283_REG_MDSEL7, 0x01, &ret); 1034 cci_write(imx283->cci, IMX283_REG_MDSEL18, 0x1098, &ret); 1035 } 1036 1037 if (ret) { 1038 dev_err(imx283->dev, "failed to set readout\n"); 1039 return ret; 1040 } 1041 1042 /* Initialise SVR. Unsupported for now - Always 0 */ 1043 cci_write(imx283->cci, IMX283_REG_SVR, 0x00, &ret); 1044 1045 dev_dbg(imx283->dev, "Mode: Size %d x %d\n", mode->width, mode->height); 1046 dev_dbg(imx283->dev, "Analogue Crop (in the mode) %d,%d %dx%d\n", 1047 mode->crop.left, 1048 mode->crop.top, 1049 mode->crop.width, 1050 mode->crop.height); 1051 1052 y_out_size = mode->crop.height / mode->vbin_ratio; 1053 write_v_size = y_out_size + mode->vertical_ob; 1054 /* 1055 * cropping start position = (VWINPOS – Vst) × 2 1056 * cropping width = Veff – (VWIDCUT – Vct) × 2 1057 */ 1058 v_pos = imx283->vflip->val ? 1059 ((-mode->crop.top / mode->vbin_ratio) / 2) + mode->vst : 1060 ((mode->crop.top / mode->vbin_ratio) / 2) + mode->vst; 1061 v_widcut = ((mode->veff - y_out_size) / 2) + mode->vct; 1062 1063 cci_write(imx283->cci, IMX283_REG_Y_OUT_SIZE, y_out_size, &ret); 1064 cci_write(imx283->cci, IMX283_REG_WRITE_VSIZE, write_v_size, &ret); 1065 cci_write(imx283->cci, IMX283_REG_VWIDCUT, v_widcut, &ret); 1066 cci_write(imx283->cci, IMX283_REG_VWINPOS, v_pos, &ret); 1067 1068 cci_write(imx283->cci, IMX283_REG_OB_SIZE_V, mode->vertical_ob, &ret); 1069 1070 /* TODO: Validate mode->crop is fully contained within imx283_native_area */ 1071 cci_write(imx283->cci, IMX283_REG_HTRIMMING_START, mode->crop.left, &ret); 1072 cci_write(imx283->cci, IMX283_REG_HTRIMMING_END, 1073 mode->crop.left + mode->crop.width, &ret); 1074 1075 /* Disable embedded data */ 1076 cci_write(imx283->cci, IMX283_REG_EBD_X_OUT_SIZE, 0, &ret); 1077 1078 /* Apply customized values from controls (HMAX/VMAX/SHR) */ 1079 ret = __v4l2_ctrl_handler_setup(imx283->sd.ctrl_handler); 1080 1081 return ret; 1082 } 1083 1084 static int imx283_enable_streams(struct v4l2_subdev *sd, 1085 struct v4l2_subdev_state *state, u32 pad, 1086 u64 streams_mask) 1087 { 1088 struct imx283 *imx283 = to_imx283(sd); 1089 int ret; 1090 1091 if (pad != IMAGE_PAD) 1092 return -EINVAL; 1093 1094 ret = pm_runtime_get_sync(imx283->dev); 1095 if (ret < 0) { 1096 pm_runtime_put_noidle(imx283->dev); 1097 return ret; 1098 } 1099 1100 ret = imx283_start_streaming(imx283, state); 1101 if (ret) 1102 goto err_rpm_put; 1103 1104 return 0; 1105 1106 err_rpm_put: 1107 pm_runtime_mark_last_busy(imx283->dev); 1108 pm_runtime_put_autosuspend(imx283->dev); 1109 1110 return ret; 1111 } 1112 1113 static int imx283_disable_streams(struct v4l2_subdev *sd, 1114 struct v4l2_subdev_state *state, u32 pad, 1115 u64 streams_mask) 1116 { 1117 struct imx283 *imx283 = to_imx283(sd); 1118 int ret; 1119 1120 if (pad != IMAGE_PAD) 1121 return -EINVAL; 1122 1123 ret = cci_write(imx283->cci, IMX283_REG_STANDBY, IMX283_STBLOGIC, NULL); 1124 if (ret) 1125 dev_err(imx283->dev, "Failed to stop stream\n"); 1126 1127 pm_runtime_mark_last_busy(imx283->dev); 1128 pm_runtime_put_autosuspend(imx283->dev); 1129 1130 return ret; 1131 } 1132 1133 /* Power/clock management functions */ 1134 static int imx283_power_on(struct imx283 *imx283) 1135 { 1136 int ret; 1137 1138 ret = regulator_bulk_enable(ARRAY_SIZE(imx283_supply_name), 1139 imx283->supplies); 1140 if (ret) { 1141 dev_err(imx283->dev, "failed to enable regulators\n"); 1142 return ret; 1143 } 1144 1145 ret = clk_prepare_enable(imx283->xclk); 1146 if (ret) { 1147 dev_err(imx283->dev, "failed to enable clock\n"); 1148 goto reg_off; 1149 } 1150 1151 gpiod_set_value_cansleep(imx283->reset_gpio, 0); 1152 1153 usleep_range(IMX283_XCLR_MIN_DELAY_US, 1154 IMX283_XCLR_MIN_DELAY_US + IMX283_XCLR_DELAY_RANGE_US); 1155 1156 return 0; 1157 1158 reg_off: 1159 regulator_bulk_disable(ARRAY_SIZE(imx283_supply_name), imx283->supplies); 1160 return ret; 1161 } 1162 1163 static int imx283_power_off(struct imx283 *imx283) 1164 { 1165 gpiod_set_value_cansleep(imx283->reset_gpio, 1); 1166 regulator_bulk_disable(ARRAY_SIZE(imx283_supply_name), imx283->supplies); 1167 clk_disable_unprepare(imx283->xclk); 1168 1169 return 0; 1170 } 1171 1172 static int imx283_runtime_resume(struct device *dev) 1173 { 1174 struct v4l2_subdev *sd = dev_get_drvdata(dev); 1175 struct imx283 *imx283 = to_imx283(sd); 1176 1177 return imx283_power_on(imx283); 1178 } 1179 1180 static int imx283_runtime_suspend(struct device *dev) 1181 { 1182 struct v4l2_subdev *sd = dev_get_drvdata(dev); 1183 struct imx283 *imx283 = to_imx283(sd); 1184 1185 imx283_power_off(imx283); 1186 1187 return 0; 1188 } 1189 1190 static int imx283_get_regulators(struct imx283 *imx283) 1191 { 1192 unsigned int i; 1193 1194 for (i = 0; i < ARRAY_SIZE(imx283_supply_name); i++) 1195 imx283->supplies[i].supply = imx283_supply_name[i]; 1196 1197 return devm_regulator_bulk_get(imx283->dev, 1198 ARRAY_SIZE(imx283_supply_name), 1199 imx283->supplies); 1200 } 1201 1202 /* Verify chip ID */ 1203 static int imx283_identify_module(struct imx283 *imx283) 1204 { 1205 int ret; 1206 u64 val; 1207 1208 ret = cci_read(imx283->cci, IMX283_REG_CHIP_ID, &val, NULL); 1209 if (ret) { 1210 dev_err(imx283->dev, "failed to read chip id %x, with error %d\n", 1211 IMX283_CHIP_ID, ret); 1212 return ret; 1213 } 1214 1215 if (val != IMX283_CHIP_ID) { 1216 dev_err(imx283->dev, "chip id mismatch: %x!=%llx\n", 1217 IMX283_CHIP_ID, val); 1218 return -EIO; 1219 } 1220 1221 return 0; 1222 } 1223 1224 static int imx283_get_selection(struct v4l2_subdev *sd, 1225 struct v4l2_subdev_state *sd_state, 1226 struct v4l2_subdev_selection *sel) 1227 { 1228 switch (sel->target) { 1229 case V4L2_SEL_TGT_CROP: { 1230 sel->r = *v4l2_subdev_state_get_crop(sd_state, 0); 1231 return 0; 1232 } 1233 1234 case V4L2_SEL_TGT_NATIVE_SIZE: 1235 sel->r = imx283_native_area; 1236 return 0; 1237 1238 case V4L2_SEL_TGT_CROP_DEFAULT: 1239 case V4L2_SEL_TGT_CROP_BOUNDS: 1240 sel->r = imx283_active_area; 1241 return 0; 1242 default: 1243 return -EINVAL; 1244 } 1245 } 1246 1247 static const struct v4l2_subdev_core_ops imx283_core_ops = { 1248 .subscribe_event = v4l2_ctrl_subdev_subscribe_event, 1249 .unsubscribe_event = v4l2_event_subdev_unsubscribe, 1250 }; 1251 1252 static const struct v4l2_subdev_video_ops imx283_video_ops = { 1253 .s_stream = v4l2_subdev_s_stream_helper, 1254 }; 1255 1256 static const struct v4l2_subdev_pad_ops imx283_pad_ops = { 1257 .enum_mbus_code = imx283_enum_mbus_code, 1258 .get_fmt = v4l2_subdev_get_fmt, 1259 .set_fmt = imx283_set_pad_format, 1260 .get_selection = imx283_get_selection, 1261 .enum_frame_size = imx283_enum_frame_size, 1262 .enable_streams = imx283_enable_streams, 1263 .disable_streams = imx283_disable_streams, 1264 }; 1265 1266 static const struct v4l2_subdev_internal_ops imx283_internal_ops = { 1267 .init_state = imx283_init_state, 1268 }; 1269 1270 static const struct v4l2_subdev_ops imx283_subdev_ops = { 1271 .core = &imx283_core_ops, 1272 .video = &imx283_video_ops, 1273 .pad = &imx283_pad_ops, 1274 }; 1275 1276 /* Initialize control handlers */ 1277 static int imx283_init_controls(struct imx283 *imx283) 1278 { 1279 struct v4l2_ctrl_handler *ctrl_hdlr; 1280 struct v4l2_fwnode_device_properties props; 1281 struct v4l2_ctrl *link_freq; 1282 const struct imx283_mode *mode = &supported_modes_12bit[0]; 1283 u64 min_hblank, max_hblank, def_hblank; 1284 u64 pixel_rate; 1285 int ret; 1286 1287 ctrl_hdlr = &imx283->ctrl_handler; 1288 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 16); 1289 if (ret) 1290 return ret; 1291 1292 /* 1293 * Create the controls here, but mode specific limits are setup 1294 * in the imx283_set_framing_limits() call below. 1295 */ 1296 1297 /* By default, PIXEL_RATE is read only */ 1298 pixel_rate = imx283_pixel_rate(imx283, mode); 1299 v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, 1300 V4L2_CID_PIXEL_RATE, pixel_rate, 1301 pixel_rate, 1, pixel_rate); 1302 1303 link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &imx283_ctrl_ops, 1304 V4L2_CID_LINK_FREQ, 1305 __fls(imx283->link_freq_bitmap), 1306 __ffs(imx283->link_freq_bitmap), 1307 link_frequencies); 1308 if (link_freq) 1309 link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1310 1311 /* Initialise vblank/hblank/exposure based on the current mode. */ 1312 imx283->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, 1313 V4L2_CID_VBLANK, 1314 mode->min_vmax - mode->height, 1315 IMX283_VMAX_MAX, 1, 1316 mode->default_vmax - mode->height); 1317 1318 min_hblank = mode->min_hmax - mode->width; 1319 max_hblank = imx283_iclk_to_pix(pixel_rate, IMX283_HMAX_MAX) - mode->width; 1320 def_hblank = mode->default_hmax - mode->width; 1321 imx283->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, 1322 V4L2_CID_HBLANK, min_hblank, max_hblank, 1323 1, def_hblank); 1324 1325 imx283->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, 1326 V4L2_CID_EXPOSURE, 1327 IMX283_EXPOSURE_MIN, 1328 IMX283_EXPOSURE_MAX, 1329 IMX283_EXPOSURE_STEP, 1330 IMX283_EXPOSURE_DEFAULT); 1331 1332 v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, V4L2_CID_ANALOGUE_GAIN, 1333 IMX283_ANA_GAIN_MIN, IMX283_ANA_GAIN_MAX, 1334 IMX283_ANA_GAIN_STEP, IMX283_ANA_GAIN_DEFAULT); 1335 1336 v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, V4L2_CID_DIGITAL_GAIN, 1337 IMX283_DGTL_GAIN_MIN, IMX283_DGTL_GAIN_MAX, 1338 IMX283_DGTL_GAIN_STEP, IMX283_DGTL_GAIN_DEFAULT); 1339 1340 imx283->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx283_ctrl_ops, V4L2_CID_VFLIP, 1341 0, 1, 1, 0); 1342 if (imx283->vflip) 1343 imx283->vflip->flags |= V4L2_CTRL_FLAG_MODIFY_LAYOUT; 1344 1345 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx283_ctrl_ops, 1346 V4L2_CID_TEST_PATTERN, 1347 ARRAY_SIZE(imx283_tpg_menu) - 1, 1348 0, 0, imx283_tpg_menu); 1349 1350 if (ctrl_hdlr->error) { 1351 ret = ctrl_hdlr->error; 1352 dev_err(imx283->dev, "control init failed (%d)\n", ret); 1353 goto error; 1354 } 1355 1356 ret = v4l2_fwnode_device_parse(imx283->dev, &props); 1357 if (ret) 1358 goto error; 1359 1360 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &imx283_ctrl_ops, 1361 &props); 1362 if (ret) 1363 goto error; 1364 1365 imx283->sd.ctrl_handler = ctrl_hdlr; 1366 1367 mutex_lock(imx283->ctrl_handler.lock); 1368 1369 /* Setup exposure and frame/line length limits. */ 1370 imx283_set_framing_limits(imx283, mode); 1371 1372 mutex_unlock(imx283->ctrl_handler.lock); 1373 1374 return 0; 1375 1376 error: 1377 v4l2_ctrl_handler_free(ctrl_hdlr); 1378 1379 return ret; 1380 } 1381 1382 static int imx283_parse_endpoint(struct imx283 *imx283) 1383 { 1384 struct fwnode_handle *fwnode; 1385 struct v4l2_fwnode_endpoint bus_cfg = { 1386 .bus_type = V4L2_MBUS_CSI2_DPHY 1387 }; 1388 struct fwnode_handle *ep; 1389 int ret; 1390 1391 fwnode = dev_fwnode(imx283->dev); 1392 ep = fwnode_graph_get_next_endpoint(fwnode, NULL); 1393 if (!ep) { 1394 dev_err(imx283->dev, "Failed to get next endpoint\n"); 1395 return -ENXIO; 1396 } 1397 1398 ret = v4l2_fwnode_endpoint_alloc_parse(ep, &bus_cfg); 1399 fwnode_handle_put(ep); 1400 if (ret) 1401 return ret; 1402 1403 if (bus_cfg.bus.mipi_csi2.num_data_lanes != 4) { 1404 dev_err(imx283->dev, 1405 "number of CSI2 data lanes %d is not supported\n", 1406 bus_cfg.bus.mipi_csi2.num_data_lanes); 1407 ret = -EINVAL; 1408 goto done_endpoint_free; 1409 } 1410 1411 ret = v4l2_link_freq_to_bitmap(imx283->dev, bus_cfg.link_frequencies, 1412 bus_cfg.nr_of_link_frequencies, 1413 link_frequencies, ARRAY_SIZE(link_frequencies), 1414 &imx283->link_freq_bitmap); 1415 1416 done_endpoint_free: 1417 v4l2_fwnode_endpoint_free(&bus_cfg); 1418 1419 return ret; 1420 }; 1421 1422 static int imx283_probe(struct i2c_client *client) 1423 { 1424 struct imx283 *imx283; 1425 unsigned int i; 1426 unsigned int xclk_freq; 1427 int ret; 1428 1429 imx283 = devm_kzalloc(&client->dev, sizeof(*imx283), GFP_KERNEL); 1430 if (!imx283) 1431 return -ENOMEM; 1432 1433 imx283->dev = &client->dev; 1434 1435 v4l2_i2c_subdev_init(&imx283->sd, client, &imx283_subdev_ops); 1436 1437 imx283->cci = devm_cci_regmap_init_i2c(client, 16); 1438 if (IS_ERR(imx283->cci)) { 1439 ret = PTR_ERR(imx283->cci); 1440 dev_err(imx283->dev, "failed to initialize CCI: %d\n", ret); 1441 return ret; 1442 } 1443 1444 /* Get system clock (xclk) */ 1445 imx283->xclk = devm_clk_get(imx283->dev, NULL); 1446 if (IS_ERR(imx283->xclk)) { 1447 return dev_err_probe(imx283->dev, PTR_ERR(imx283->xclk), 1448 "failed to get xclk\n"); 1449 } 1450 1451 xclk_freq = clk_get_rate(imx283->xclk); 1452 for (i = 0; i < ARRAY_SIZE(imx283_frequencies); i++) { 1453 if (xclk_freq == imx283_frequencies[i].mhz) { 1454 imx283->freq = &imx283_frequencies[i]; 1455 break; 1456 } 1457 } 1458 if (!imx283->freq) { 1459 dev_err(imx283->dev, "xclk frequency unsupported: %d Hz\n", xclk_freq); 1460 return -EINVAL; 1461 } 1462 1463 ret = imx283_get_regulators(imx283); 1464 if (ret) { 1465 return dev_err_probe(imx283->dev, ret, 1466 "failed to get regulators\n"); 1467 } 1468 1469 ret = imx283_parse_endpoint(imx283); 1470 if (ret) { 1471 dev_err(imx283->dev, "failed to parse endpoint configuration\n"); 1472 return ret; 1473 } 1474 1475 /* Request optional enable pin */ 1476 imx283->reset_gpio = devm_gpiod_get_optional(imx283->dev, "reset", 1477 GPIOD_OUT_LOW); 1478 if (IS_ERR(imx283->reset_gpio)) 1479 return dev_err_probe(imx283->dev, PTR_ERR(imx283->reset_gpio), 1480 "failed to get reset GPIO\n"); 1481 1482 /* 1483 * The sensor must be powered for imx283_identify_module() 1484 * to be able to read the CHIP_ID register 1485 */ 1486 ret = imx283_power_on(imx283); 1487 if (ret) 1488 return ret; 1489 1490 ret = imx283_identify_module(imx283); 1491 if (ret) 1492 goto error_power_off; 1493 1494 /* 1495 * Enable runtime PM with autosuspend. As the device has been powered 1496 * manually, mark it as active, and increase the usage count without 1497 * resuming the device. 1498 */ 1499 pm_runtime_set_active(imx283->dev); 1500 pm_runtime_get_noresume(imx283->dev); 1501 pm_runtime_enable(imx283->dev); 1502 pm_runtime_set_autosuspend_delay(imx283->dev, 1000); 1503 pm_runtime_use_autosuspend(imx283->dev); 1504 1505 /* This needs the pm runtime to be registered. */ 1506 ret = imx283_init_controls(imx283); 1507 if (ret) 1508 goto error_pm; 1509 1510 /* Initialize subdev */ 1511 imx283->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE | 1512 V4L2_SUBDEV_FL_HAS_EVENTS; 1513 imx283->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR; 1514 imx283->sd.internal_ops = &imx283_internal_ops; 1515 1516 /* Initialize source pads */ 1517 imx283->pad.flags = MEDIA_PAD_FL_SOURCE; 1518 1519 ret = media_entity_pads_init(&imx283->sd.entity, 1, &imx283->pad); 1520 if (ret) { 1521 dev_err(imx283->dev, "failed to init entity pads: %d\n", ret); 1522 goto error_handler_free; 1523 } 1524 1525 imx283->sd.state_lock = imx283->ctrl_handler.lock; 1526 ret = v4l2_subdev_init_finalize(&imx283->sd); 1527 if (ret < 0) { 1528 dev_err(imx283->dev, "subdev init error: %d\n", ret); 1529 goto error_media_entity; 1530 } 1531 1532 ret = v4l2_async_register_subdev_sensor(&imx283->sd); 1533 if (ret < 0) { 1534 dev_err(imx283->dev, "failed to register sensor sub-device: %d\n", ret); 1535 goto error_subdev_cleanup; 1536 } 1537 1538 /* 1539 * Decrease the PM usage count. The device will get suspended after the 1540 * autosuspend delay, turning the power off. 1541 */ 1542 pm_runtime_mark_last_busy(imx283->dev); 1543 pm_runtime_put_autosuspend(imx283->dev); 1544 1545 return 0; 1546 1547 error_subdev_cleanup: 1548 v4l2_subdev_cleanup(&imx283->sd); 1549 1550 error_media_entity: 1551 media_entity_cleanup(&imx283->sd.entity); 1552 1553 error_handler_free: 1554 v4l2_ctrl_handler_free(imx283->sd.ctrl_handler); 1555 1556 error_pm: 1557 pm_runtime_disable(imx283->dev); 1558 pm_runtime_set_suspended(imx283->dev); 1559 error_power_off: 1560 imx283_power_off(imx283); 1561 1562 return ret; 1563 } 1564 1565 static void imx283_remove(struct i2c_client *client) 1566 { 1567 struct v4l2_subdev *sd = i2c_get_clientdata(client); 1568 struct imx283 *imx283 = to_imx283(sd); 1569 1570 v4l2_async_unregister_subdev(sd); 1571 v4l2_subdev_cleanup(&imx283->sd); 1572 media_entity_cleanup(&sd->entity); 1573 v4l2_ctrl_handler_free(imx283->sd.ctrl_handler); 1574 1575 pm_runtime_disable(imx283->dev); 1576 if (!pm_runtime_status_suspended(imx283->dev)) 1577 imx283_power_off(imx283); 1578 pm_runtime_set_suspended(imx283->dev); 1579 } 1580 1581 static DEFINE_RUNTIME_DEV_PM_OPS(imx283_pm_ops, imx283_runtime_suspend, 1582 imx283_runtime_resume, NULL); 1583 1584 static const struct of_device_id imx283_dt_ids[] = { 1585 { .compatible = "sony,imx283" }, 1586 { /* sentinel */ } 1587 }; 1588 MODULE_DEVICE_TABLE(of, imx283_dt_ids); 1589 1590 static struct i2c_driver imx283_i2c_driver = { 1591 .driver = { 1592 .name = "imx283", 1593 .pm = pm_ptr(&imx283_pm_ops), 1594 .of_match_table = imx283_dt_ids, 1595 }, 1596 .probe = imx283_probe, 1597 .remove = imx283_remove, 1598 }; 1599 module_i2c_driver(imx283_i2c_driver); 1600 1601 MODULE_AUTHOR("Will Whang <will@willwhang.com>"); 1602 MODULE_AUTHOR("Kieran Bingham <kieran.bingham@ideasonboard.com>"); 1603 MODULE_AUTHOR("Umang Jain <umang.jain@ideasonboard.com>"); 1604 MODULE_DESCRIPTION("Sony IMX283 Sensor Driver"); 1605 MODULE_LICENSE("GPL"); 1606