1 // SPDX-License-Identifier: GPL-2.0 2 // Copyright (C) 2018 Intel Corporation 3 4 #include <linux/acpi.h> 5 #include <linux/clk.h> 6 #include <linux/delay.h> 7 #include <linux/i2c.h> 8 #include <linux/module.h> 9 #include <linux/pm_runtime.h> 10 #include <media/v4l2-ctrls.h> 11 #include <media/v4l2-device.h> 12 #include <media/v4l2-fwnode.h> 13 #include <asm/unaligned.h> 14 15 #define IMX258_REG_VALUE_08BIT 1 16 #define IMX258_REG_VALUE_16BIT 2 17 18 #define IMX258_REG_MODE_SELECT 0x0100 19 #define IMX258_MODE_STANDBY 0x00 20 #define IMX258_MODE_STREAMING 0x01 21 22 /* Chip ID */ 23 #define IMX258_REG_CHIP_ID 0x0016 24 #define IMX258_CHIP_ID 0x0258 25 26 /* V_TIMING internal */ 27 #define IMX258_VTS_30FPS 0x0c50 28 #define IMX258_VTS_30FPS_2K 0x0638 29 #define IMX258_VTS_30FPS_VGA 0x034c 30 #define IMX258_VTS_MAX 0xffff 31 32 /*Frame Length Line*/ 33 #define IMX258_FLL_MIN 0x08a6 34 #define IMX258_FLL_MAX 0xffff 35 #define IMX258_FLL_STEP 1 36 #define IMX258_FLL_DEFAULT 0x0c98 37 38 /* HBLANK control - read only */ 39 #define IMX258_PPL_DEFAULT 5352 40 41 /* Exposure control */ 42 #define IMX258_REG_EXPOSURE 0x0202 43 #define IMX258_EXPOSURE_MIN 4 44 #define IMX258_EXPOSURE_STEP 1 45 #define IMX258_EXPOSURE_DEFAULT 0x640 46 #define IMX258_EXPOSURE_MAX 65535 47 48 /* Analog gain control */ 49 #define IMX258_REG_ANALOG_GAIN 0x0204 50 #define IMX258_ANA_GAIN_MIN 0 51 #define IMX258_ANA_GAIN_MAX 480 52 #define IMX258_ANA_GAIN_STEP 1 53 #define IMX258_ANA_GAIN_DEFAULT 0x0 54 55 /* Digital gain control */ 56 #define IMX258_REG_GR_DIGITAL_GAIN 0x020e 57 #define IMX258_REG_R_DIGITAL_GAIN 0x0210 58 #define IMX258_REG_B_DIGITAL_GAIN 0x0212 59 #define IMX258_REG_GB_DIGITAL_GAIN 0x0214 60 #define IMX258_DGTL_GAIN_MIN 0 61 #define IMX258_DGTL_GAIN_MAX 4096 /* Max = 0xFFF */ 62 #define IMX258_DGTL_GAIN_DEFAULT 1024 63 #define IMX258_DGTL_GAIN_STEP 1 64 65 /* HDR control */ 66 #define IMX258_REG_HDR 0x0220 67 #define IMX258_HDR_ON BIT(0) 68 #define IMX258_REG_HDR_RATIO 0x0222 69 #define IMX258_HDR_RATIO_MIN 0 70 #define IMX258_HDR_RATIO_MAX 5 71 #define IMX258_HDR_RATIO_STEP 1 72 #define IMX258_HDR_RATIO_DEFAULT 0x0 73 74 /* Test Pattern Control */ 75 #define IMX258_REG_TEST_PATTERN 0x0600 76 77 /* Orientation */ 78 #define REG_MIRROR_FLIP_CONTROL 0x0101 79 #define REG_CONFIG_MIRROR_FLIP 0x03 80 #define REG_CONFIG_FLIP_TEST_PATTERN 0x02 81 82 /* Input clock frequency in Hz */ 83 #define IMX258_INPUT_CLOCK_FREQ 19200000 84 85 struct imx258_reg { 86 u16 address; 87 u8 val; 88 }; 89 90 struct imx258_reg_list { 91 u32 num_of_regs; 92 const struct imx258_reg *regs; 93 }; 94 95 /* Link frequency config */ 96 struct imx258_link_freq_config { 97 u32 pixels_per_line; 98 99 /* PLL registers for this link frequency */ 100 struct imx258_reg_list reg_list; 101 }; 102 103 /* Mode : resolution and related config&values */ 104 struct imx258_mode { 105 /* Frame width */ 106 u32 width; 107 /* Frame height */ 108 u32 height; 109 110 /* V-timing */ 111 u32 vts_def; 112 u32 vts_min; 113 114 /* Index of Link frequency config to be used */ 115 u32 link_freq_index; 116 /* Default register values */ 117 struct imx258_reg_list reg_list; 118 }; 119 120 /* 4208x3118 needs 1267Mbps/lane, 4 lanes */ 121 static const struct imx258_reg mipi_data_rate_1267mbps[] = { 122 { 0x0301, 0x05 }, 123 { 0x0303, 0x02 }, 124 { 0x0305, 0x03 }, 125 { 0x0306, 0x00 }, 126 { 0x0307, 0xC6 }, 127 { 0x0309, 0x0A }, 128 { 0x030B, 0x01 }, 129 { 0x030D, 0x02 }, 130 { 0x030E, 0x00 }, 131 { 0x030F, 0xD8 }, 132 { 0x0310, 0x00 }, 133 { 0x0820, 0x13 }, 134 { 0x0821, 0x4C }, 135 { 0x0822, 0xCC }, 136 { 0x0823, 0xCC }, 137 }; 138 139 static const struct imx258_reg mipi_data_rate_640mbps[] = { 140 { 0x0301, 0x05 }, 141 { 0x0303, 0x02 }, 142 { 0x0305, 0x03 }, 143 { 0x0306, 0x00 }, 144 { 0x0307, 0x64 }, 145 { 0x0309, 0x0A }, 146 { 0x030B, 0x01 }, 147 { 0x030D, 0x02 }, 148 { 0x030E, 0x00 }, 149 { 0x030F, 0xD8 }, 150 { 0x0310, 0x00 }, 151 { 0x0820, 0x0A }, 152 { 0x0821, 0x00 }, 153 { 0x0822, 0x00 }, 154 { 0x0823, 0x00 }, 155 }; 156 157 static const struct imx258_reg mode_4208x3118_regs[] = { 158 { 0x0136, 0x13 }, 159 { 0x0137, 0x33 }, 160 { 0x3051, 0x00 }, 161 { 0x3052, 0x00 }, 162 { 0x4E21, 0x14 }, 163 { 0x6B11, 0xCF }, 164 { 0x7FF0, 0x08 }, 165 { 0x7FF1, 0x0F }, 166 { 0x7FF2, 0x08 }, 167 { 0x7FF3, 0x1B }, 168 { 0x7FF4, 0x23 }, 169 { 0x7FF5, 0x60 }, 170 { 0x7FF6, 0x00 }, 171 { 0x7FF7, 0x01 }, 172 { 0x7FF8, 0x00 }, 173 { 0x7FF9, 0x78 }, 174 { 0x7FFA, 0x00 }, 175 { 0x7FFB, 0x00 }, 176 { 0x7FFC, 0x00 }, 177 { 0x7FFD, 0x00 }, 178 { 0x7FFE, 0x00 }, 179 { 0x7FFF, 0x03 }, 180 { 0x7F76, 0x03 }, 181 { 0x7F77, 0xFE }, 182 { 0x7FA8, 0x03 }, 183 { 0x7FA9, 0xFE }, 184 { 0x7B24, 0x81 }, 185 { 0x7B25, 0x00 }, 186 { 0x6564, 0x07 }, 187 { 0x6B0D, 0x41 }, 188 { 0x653D, 0x04 }, 189 { 0x6B05, 0x8C }, 190 { 0x6B06, 0xF9 }, 191 { 0x6B08, 0x65 }, 192 { 0x6B09, 0xFC }, 193 { 0x6B0A, 0xCF }, 194 { 0x6B0B, 0xD2 }, 195 { 0x6700, 0x0E }, 196 { 0x6707, 0x0E }, 197 { 0x9104, 0x00 }, 198 { 0x4648, 0x7F }, 199 { 0x7420, 0x00 }, 200 { 0x7421, 0x1C }, 201 { 0x7422, 0x00 }, 202 { 0x7423, 0xD7 }, 203 { 0x5F04, 0x00 }, 204 { 0x5F05, 0xED }, 205 { 0x0112, 0x0A }, 206 { 0x0113, 0x0A }, 207 { 0x0114, 0x03 }, 208 { 0x0342, 0x14 }, 209 { 0x0343, 0xE8 }, 210 { 0x0340, 0x0C }, 211 { 0x0341, 0x50 }, 212 { 0x0344, 0x00 }, 213 { 0x0345, 0x00 }, 214 { 0x0346, 0x00 }, 215 { 0x0347, 0x00 }, 216 { 0x0348, 0x10 }, 217 { 0x0349, 0x6F }, 218 { 0x034A, 0x0C }, 219 { 0x034B, 0x2E }, 220 { 0x0381, 0x01 }, 221 { 0x0383, 0x01 }, 222 { 0x0385, 0x01 }, 223 { 0x0387, 0x01 }, 224 { 0x0900, 0x00 }, 225 { 0x0901, 0x11 }, 226 { 0x0401, 0x00 }, 227 { 0x0404, 0x00 }, 228 { 0x0405, 0x10 }, 229 { 0x0408, 0x00 }, 230 { 0x0409, 0x00 }, 231 { 0x040A, 0x00 }, 232 { 0x040B, 0x00 }, 233 { 0x040C, 0x10 }, 234 { 0x040D, 0x70 }, 235 { 0x040E, 0x0C }, 236 { 0x040F, 0x30 }, 237 { 0x3038, 0x00 }, 238 { 0x303A, 0x00 }, 239 { 0x303B, 0x10 }, 240 { 0x300D, 0x00 }, 241 { 0x034C, 0x10 }, 242 { 0x034D, 0x70 }, 243 { 0x034E, 0x0C }, 244 { 0x034F, 0x30 }, 245 { 0x0350, 0x01 }, 246 { 0x0202, 0x0C }, 247 { 0x0203, 0x46 }, 248 { 0x0204, 0x00 }, 249 { 0x0205, 0x00 }, 250 { 0x020E, 0x01 }, 251 { 0x020F, 0x00 }, 252 { 0x0210, 0x01 }, 253 { 0x0211, 0x00 }, 254 { 0x0212, 0x01 }, 255 { 0x0213, 0x00 }, 256 { 0x0214, 0x01 }, 257 { 0x0215, 0x00 }, 258 { 0x7BCD, 0x00 }, 259 { 0x94DC, 0x20 }, 260 { 0x94DD, 0x20 }, 261 { 0x94DE, 0x20 }, 262 { 0x95DC, 0x20 }, 263 { 0x95DD, 0x20 }, 264 { 0x95DE, 0x20 }, 265 { 0x7FB0, 0x00 }, 266 { 0x9010, 0x3E }, 267 { 0x9419, 0x50 }, 268 { 0x941B, 0x50 }, 269 { 0x9519, 0x50 }, 270 { 0x951B, 0x50 }, 271 { 0x3030, 0x00 }, 272 { 0x3032, 0x00 }, 273 { 0x0220, 0x00 }, 274 }; 275 276 static const struct imx258_reg mode_2104_1560_regs[] = { 277 { 0x0136, 0x13 }, 278 { 0x0137, 0x33 }, 279 { 0x3051, 0x00 }, 280 { 0x3052, 0x00 }, 281 { 0x4E21, 0x14 }, 282 { 0x6B11, 0xCF }, 283 { 0x7FF0, 0x08 }, 284 { 0x7FF1, 0x0F }, 285 { 0x7FF2, 0x08 }, 286 { 0x7FF3, 0x1B }, 287 { 0x7FF4, 0x23 }, 288 { 0x7FF5, 0x60 }, 289 { 0x7FF6, 0x00 }, 290 { 0x7FF7, 0x01 }, 291 { 0x7FF8, 0x00 }, 292 { 0x7FF9, 0x78 }, 293 { 0x7FFA, 0x00 }, 294 { 0x7FFB, 0x00 }, 295 { 0x7FFC, 0x00 }, 296 { 0x7FFD, 0x00 }, 297 { 0x7FFE, 0x00 }, 298 { 0x7FFF, 0x03 }, 299 { 0x7F76, 0x03 }, 300 { 0x7F77, 0xFE }, 301 { 0x7FA8, 0x03 }, 302 { 0x7FA9, 0xFE }, 303 { 0x7B24, 0x81 }, 304 { 0x7B25, 0x00 }, 305 { 0x6564, 0x07 }, 306 { 0x6B0D, 0x41 }, 307 { 0x653D, 0x04 }, 308 { 0x6B05, 0x8C }, 309 { 0x6B06, 0xF9 }, 310 { 0x6B08, 0x65 }, 311 { 0x6B09, 0xFC }, 312 { 0x6B0A, 0xCF }, 313 { 0x6B0B, 0xD2 }, 314 { 0x6700, 0x0E }, 315 { 0x6707, 0x0E }, 316 { 0x9104, 0x00 }, 317 { 0x4648, 0x7F }, 318 { 0x7420, 0x00 }, 319 { 0x7421, 0x1C }, 320 { 0x7422, 0x00 }, 321 { 0x7423, 0xD7 }, 322 { 0x5F04, 0x00 }, 323 { 0x5F05, 0xED }, 324 { 0x0112, 0x0A }, 325 { 0x0113, 0x0A }, 326 { 0x0114, 0x03 }, 327 { 0x0342, 0x14 }, 328 { 0x0343, 0xE8 }, 329 { 0x0340, 0x06 }, 330 { 0x0341, 0x38 }, 331 { 0x0344, 0x00 }, 332 { 0x0345, 0x00 }, 333 { 0x0346, 0x00 }, 334 { 0x0347, 0x00 }, 335 { 0x0348, 0x10 }, 336 { 0x0349, 0x6F }, 337 { 0x034A, 0x0C }, 338 { 0x034B, 0x2E }, 339 { 0x0381, 0x01 }, 340 { 0x0383, 0x01 }, 341 { 0x0385, 0x01 }, 342 { 0x0387, 0x01 }, 343 { 0x0900, 0x01 }, 344 { 0x0901, 0x12 }, 345 { 0x0401, 0x01 }, 346 { 0x0404, 0x00 }, 347 { 0x0405, 0x20 }, 348 { 0x0408, 0x00 }, 349 { 0x0409, 0x02 }, 350 { 0x040A, 0x00 }, 351 { 0x040B, 0x00 }, 352 { 0x040C, 0x10 }, 353 { 0x040D, 0x6A }, 354 { 0x040E, 0x06 }, 355 { 0x040F, 0x18 }, 356 { 0x3038, 0x00 }, 357 { 0x303A, 0x00 }, 358 { 0x303B, 0x10 }, 359 { 0x300D, 0x00 }, 360 { 0x034C, 0x08 }, 361 { 0x034D, 0x38 }, 362 { 0x034E, 0x06 }, 363 { 0x034F, 0x18 }, 364 { 0x0350, 0x01 }, 365 { 0x0202, 0x06 }, 366 { 0x0203, 0x2E }, 367 { 0x0204, 0x00 }, 368 { 0x0205, 0x00 }, 369 { 0x020E, 0x01 }, 370 { 0x020F, 0x00 }, 371 { 0x0210, 0x01 }, 372 { 0x0211, 0x00 }, 373 { 0x0212, 0x01 }, 374 { 0x0213, 0x00 }, 375 { 0x0214, 0x01 }, 376 { 0x0215, 0x00 }, 377 { 0x7BCD, 0x01 }, 378 { 0x94DC, 0x20 }, 379 { 0x94DD, 0x20 }, 380 { 0x94DE, 0x20 }, 381 { 0x95DC, 0x20 }, 382 { 0x95DD, 0x20 }, 383 { 0x95DE, 0x20 }, 384 { 0x7FB0, 0x00 }, 385 { 0x9010, 0x3E }, 386 { 0x9419, 0x50 }, 387 { 0x941B, 0x50 }, 388 { 0x9519, 0x50 }, 389 { 0x951B, 0x50 }, 390 { 0x3030, 0x00 }, 391 { 0x3032, 0x00 }, 392 { 0x0220, 0x00 }, 393 }; 394 395 static const struct imx258_reg mode_1048_780_regs[] = { 396 { 0x0136, 0x13 }, 397 { 0x0137, 0x33 }, 398 { 0x3051, 0x00 }, 399 { 0x3052, 0x00 }, 400 { 0x4E21, 0x14 }, 401 { 0x6B11, 0xCF }, 402 { 0x7FF0, 0x08 }, 403 { 0x7FF1, 0x0F }, 404 { 0x7FF2, 0x08 }, 405 { 0x7FF3, 0x1B }, 406 { 0x7FF4, 0x23 }, 407 { 0x7FF5, 0x60 }, 408 { 0x7FF6, 0x00 }, 409 { 0x7FF7, 0x01 }, 410 { 0x7FF8, 0x00 }, 411 { 0x7FF9, 0x78 }, 412 { 0x7FFA, 0x00 }, 413 { 0x7FFB, 0x00 }, 414 { 0x7FFC, 0x00 }, 415 { 0x7FFD, 0x00 }, 416 { 0x7FFE, 0x00 }, 417 { 0x7FFF, 0x03 }, 418 { 0x7F76, 0x03 }, 419 { 0x7F77, 0xFE }, 420 { 0x7FA8, 0x03 }, 421 { 0x7FA9, 0xFE }, 422 { 0x7B24, 0x81 }, 423 { 0x7B25, 0x00 }, 424 { 0x6564, 0x07 }, 425 { 0x6B0D, 0x41 }, 426 { 0x653D, 0x04 }, 427 { 0x6B05, 0x8C }, 428 { 0x6B06, 0xF9 }, 429 { 0x6B08, 0x65 }, 430 { 0x6B09, 0xFC }, 431 { 0x6B0A, 0xCF }, 432 { 0x6B0B, 0xD2 }, 433 { 0x6700, 0x0E }, 434 { 0x6707, 0x0E }, 435 { 0x9104, 0x00 }, 436 { 0x4648, 0x7F }, 437 { 0x7420, 0x00 }, 438 { 0x7421, 0x1C }, 439 { 0x7422, 0x00 }, 440 { 0x7423, 0xD7 }, 441 { 0x5F04, 0x00 }, 442 { 0x5F05, 0xED }, 443 { 0x0112, 0x0A }, 444 { 0x0113, 0x0A }, 445 { 0x0114, 0x03 }, 446 { 0x0342, 0x14 }, 447 { 0x0343, 0xE8 }, 448 { 0x0340, 0x03 }, 449 { 0x0341, 0x4C }, 450 { 0x0344, 0x00 }, 451 { 0x0345, 0x00 }, 452 { 0x0346, 0x00 }, 453 { 0x0347, 0x00 }, 454 { 0x0348, 0x10 }, 455 { 0x0349, 0x6F }, 456 { 0x034A, 0x0C }, 457 { 0x034B, 0x2E }, 458 { 0x0381, 0x01 }, 459 { 0x0383, 0x01 }, 460 { 0x0385, 0x01 }, 461 { 0x0387, 0x01 }, 462 { 0x0900, 0x01 }, 463 { 0x0901, 0x14 }, 464 { 0x0401, 0x01 }, 465 { 0x0404, 0x00 }, 466 { 0x0405, 0x40 }, 467 { 0x0408, 0x00 }, 468 { 0x0409, 0x06 }, 469 { 0x040A, 0x00 }, 470 { 0x040B, 0x00 }, 471 { 0x040C, 0x10 }, 472 { 0x040D, 0x64 }, 473 { 0x040E, 0x03 }, 474 { 0x040F, 0x0C }, 475 { 0x3038, 0x00 }, 476 { 0x303A, 0x00 }, 477 { 0x303B, 0x10 }, 478 { 0x300D, 0x00 }, 479 { 0x034C, 0x04 }, 480 { 0x034D, 0x18 }, 481 { 0x034E, 0x03 }, 482 { 0x034F, 0x0C }, 483 { 0x0350, 0x01 }, 484 { 0x0202, 0x03 }, 485 { 0x0203, 0x42 }, 486 { 0x0204, 0x00 }, 487 { 0x0205, 0x00 }, 488 { 0x020E, 0x01 }, 489 { 0x020F, 0x00 }, 490 { 0x0210, 0x01 }, 491 { 0x0211, 0x00 }, 492 { 0x0212, 0x01 }, 493 { 0x0213, 0x00 }, 494 { 0x0214, 0x01 }, 495 { 0x0215, 0x00 }, 496 { 0x7BCD, 0x00 }, 497 { 0x94DC, 0x20 }, 498 { 0x94DD, 0x20 }, 499 { 0x94DE, 0x20 }, 500 { 0x95DC, 0x20 }, 501 { 0x95DD, 0x20 }, 502 { 0x95DE, 0x20 }, 503 { 0x7FB0, 0x00 }, 504 { 0x9010, 0x3E }, 505 { 0x9419, 0x50 }, 506 { 0x941B, 0x50 }, 507 { 0x9519, 0x50 }, 508 { 0x951B, 0x50 }, 509 { 0x3030, 0x00 }, 510 { 0x3032, 0x00 }, 511 { 0x0220, 0x00 }, 512 }; 513 514 static const char * const imx258_test_pattern_menu[] = { 515 "Disabled", 516 "Solid Colour", 517 "Eight Vertical Colour Bars", 518 "Colour Bars With Fade to Grey", 519 "Pseudorandom Sequence (PN9)", 520 }; 521 522 /* Configurations for supported link frequencies */ 523 #define IMX258_LINK_FREQ_634MHZ 633600000ULL 524 #define IMX258_LINK_FREQ_320MHZ 320000000ULL 525 526 enum { 527 IMX258_LINK_FREQ_1267MBPS, 528 IMX258_LINK_FREQ_640MBPS, 529 }; 530 531 /* 532 * pixel_rate = link_freq * data-rate * nr_of_lanes / bits_per_sample 533 * data rate => double data rate; number of lanes => 4; bits per pixel => 10 534 */ 535 static u64 link_freq_to_pixel_rate(u64 f) 536 { 537 f *= 2 * 4; 538 do_div(f, 10); 539 540 return f; 541 } 542 543 /* Menu items for LINK_FREQ V4L2 control */ 544 static const s64 link_freq_menu_items[] = { 545 IMX258_LINK_FREQ_634MHZ, 546 IMX258_LINK_FREQ_320MHZ, 547 }; 548 549 /* Link frequency configs */ 550 static const struct imx258_link_freq_config link_freq_configs[] = { 551 [IMX258_LINK_FREQ_1267MBPS] = { 552 .pixels_per_line = IMX258_PPL_DEFAULT, 553 .reg_list = { 554 .num_of_regs = ARRAY_SIZE(mipi_data_rate_1267mbps), 555 .regs = mipi_data_rate_1267mbps, 556 } 557 }, 558 [IMX258_LINK_FREQ_640MBPS] = { 559 .pixels_per_line = IMX258_PPL_DEFAULT, 560 .reg_list = { 561 .num_of_regs = ARRAY_SIZE(mipi_data_rate_640mbps), 562 .regs = mipi_data_rate_640mbps, 563 } 564 }, 565 }; 566 567 /* Mode configs */ 568 static const struct imx258_mode supported_modes[] = { 569 { 570 .width = 4208, 571 .height = 3118, 572 .vts_def = IMX258_VTS_30FPS, 573 .vts_min = IMX258_VTS_30FPS, 574 .reg_list = { 575 .num_of_regs = ARRAY_SIZE(mode_4208x3118_regs), 576 .regs = mode_4208x3118_regs, 577 }, 578 .link_freq_index = IMX258_LINK_FREQ_1267MBPS, 579 }, 580 { 581 .width = 2104, 582 .height = 1560, 583 .vts_def = IMX258_VTS_30FPS_2K, 584 .vts_min = IMX258_VTS_30FPS_2K, 585 .reg_list = { 586 .num_of_regs = ARRAY_SIZE(mode_2104_1560_regs), 587 .regs = mode_2104_1560_regs, 588 }, 589 .link_freq_index = IMX258_LINK_FREQ_640MBPS, 590 }, 591 { 592 .width = 1048, 593 .height = 780, 594 .vts_def = IMX258_VTS_30FPS_VGA, 595 .vts_min = IMX258_VTS_30FPS_VGA, 596 .reg_list = { 597 .num_of_regs = ARRAY_SIZE(mode_1048_780_regs), 598 .regs = mode_1048_780_regs, 599 }, 600 .link_freq_index = IMX258_LINK_FREQ_640MBPS, 601 }, 602 }; 603 604 struct imx258 { 605 struct v4l2_subdev sd; 606 struct media_pad pad; 607 608 struct v4l2_ctrl_handler ctrl_handler; 609 /* V4L2 Controls */ 610 struct v4l2_ctrl *link_freq; 611 struct v4l2_ctrl *pixel_rate; 612 struct v4l2_ctrl *vblank; 613 struct v4l2_ctrl *hblank; 614 struct v4l2_ctrl *exposure; 615 616 /* Current mode */ 617 const struct imx258_mode *cur_mode; 618 619 /* 620 * Mutex for serialized access: 621 * Protect sensor module set pad format and start/stop streaming safely. 622 */ 623 struct mutex mutex; 624 625 struct clk *clk; 626 }; 627 628 static inline struct imx258 *to_imx258(struct v4l2_subdev *_sd) 629 { 630 return container_of(_sd, struct imx258, sd); 631 } 632 633 /* Read registers up to 2 at a time */ 634 static int imx258_read_reg(struct imx258 *imx258, u16 reg, u32 len, u32 *val) 635 { 636 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 637 struct i2c_msg msgs[2]; 638 u8 addr_buf[2] = { reg >> 8, reg & 0xff }; 639 u8 data_buf[4] = { 0, }; 640 int ret; 641 642 if (len > 4) 643 return -EINVAL; 644 645 /* Write register address */ 646 msgs[0].addr = client->addr; 647 msgs[0].flags = 0; 648 msgs[0].len = ARRAY_SIZE(addr_buf); 649 msgs[0].buf = addr_buf; 650 651 /* Read data from register */ 652 msgs[1].addr = client->addr; 653 msgs[1].flags = I2C_M_RD; 654 msgs[1].len = len; 655 msgs[1].buf = &data_buf[4 - len]; 656 657 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs)); 658 if (ret != ARRAY_SIZE(msgs)) 659 return -EIO; 660 661 *val = get_unaligned_be32(data_buf); 662 663 return 0; 664 } 665 666 /* Write registers up to 2 at a time */ 667 static int imx258_write_reg(struct imx258 *imx258, u16 reg, u32 len, u32 val) 668 { 669 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 670 u8 buf[6]; 671 672 if (len > 4) 673 return -EINVAL; 674 675 put_unaligned_be16(reg, buf); 676 put_unaligned_be32(val << (8 * (4 - len)), buf + 2); 677 if (i2c_master_send(client, buf, len + 2) != len + 2) 678 return -EIO; 679 680 return 0; 681 } 682 683 /* Write a list of registers */ 684 static int imx258_write_regs(struct imx258 *imx258, 685 const struct imx258_reg *regs, u32 len) 686 { 687 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 688 unsigned int i; 689 int ret; 690 691 for (i = 0; i < len; i++) { 692 ret = imx258_write_reg(imx258, regs[i].address, 1, 693 regs[i].val); 694 if (ret) { 695 dev_err_ratelimited( 696 &client->dev, 697 "Failed to write reg 0x%4.4x. error = %d\n", 698 regs[i].address, ret); 699 700 return ret; 701 } 702 } 703 704 return 0; 705 } 706 707 /* Open sub-device */ 708 static int imx258_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) 709 { 710 struct v4l2_mbus_framefmt *try_fmt = 711 v4l2_subdev_get_try_format(sd, fh->state, 0); 712 713 /* Initialize try_fmt */ 714 try_fmt->width = supported_modes[0].width; 715 try_fmt->height = supported_modes[0].height; 716 try_fmt->code = MEDIA_BUS_FMT_SGRBG10_1X10; 717 try_fmt->field = V4L2_FIELD_NONE; 718 719 return 0; 720 } 721 722 static int imx258_update_digital_gain(struct imx258 *imx258, u32 len, u32 val) 723 { 724 int ret; 725 726 ret = imx258_write_reg(imx258, IMX258_REG_GR_DIGITAL_GAIN, 727 IMX258_REG_VALUE_16BIT, 728 val); 729 if (ret) 730 return ret; 731 ret = imx258_write_reg(imx258, IMX258_REG_GB_DIGITAL_GAIN, 732 IMX258_REG_VALUE_16BIT, 733 val); 734 if (ret) 735 return ret; 736 ret = imx258_write_reg(imx258, IMX258_REG_R_DIGITAL_GAIN, 737 IMX258_REG_VALUE_16BIT, 738 val); 739 if (ret) 740 return ret; 741 ret = imx258_write_reg(imx258, IMX258_REG_B_DIGITAL_GAIN, 742 IMX258_REG_VALUE_16BIT, 743 val); 744 if (ret) 745 return ret; 746 return 0; 747 } 748 749 static int imx258_set_ctrl(struct v4l2_ctrl *ctrl) 750 { 751 struct imx258 *imx258 = 752 container_of(ctrl->handler, struct imx258, ctrl_handler); 753 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 754 int ret = 0; 755 756 /* 757 * Applying V4L2 control value only happens 758 * when power is up for streaming 759 */ 760 if (pm_runtime_get_if_in_use(&client->dev) == 0) 761 return 0; 762 763 switch (ctrl->id) { 764 case V4L2_CID_ANALOGUE_GAIN: 765 ret = imx258_write_reg(imx258, IMX258_REG_ANALOG_GAIN, 766 IMX258_REG_VALUE_16BIT, 767 ctrl->val); 768 break; 769 case V4L2_CID_EXPOSURE: 770 ret = imx258_write_reg(imx258, IMX258_REG_EXPOSURE, 771 IMX258_REG_VALUE_16BIT, 772 ctrl->val); 773 break; 774 case V4L2_CID_DIGITAL_GAIN: 775 ret = imx258_update_digital_gain(imx258, IMX258_REG_VALUE_16BIT, 776 ctrl->val); 777 break; 778 case V4L2_CID_TEST_PATTERN: 779 ret = imx258_write_reg(imx258, IMX258_REG_TEST_PATTERN, 780 IMX258_REG_VALUE_16BIT, 781 ctrl->val); 782 ret = imx258_write_reg(imx258, REG_MIRROR_FLIP_CONTROL, 783 IMX258_REG_VALUE_08BIT, 784 !ctrl->val ? REG_CONFIG_MIRROR_FLIP : 785 REG_CONFIG_FLIP_TEST_PATTERN); 786 break; 787 case V4L2_CID_WIDE_DYNAMIC_RANGE: 788 if (!ctrl->val) { 789 ret = imx258_write_reg(imx258, IMX258_REG_HDR, 790 IMX258_REG_VALUE_08BIT, 791 IMX258_HDR_RATIO_MIN); 792 } else { 793 ret = imx258_write_reg(imx258, IMX258_REG_HDR, 794 IMX258_REG_VALUE_08BIT, 795 IMX258_HDR_ON); 796 if (ret) 797 break; 798 ret = imx258_write_reg(imx258, IMX258_REG_HDR_RATIO, 799 IMX258_REG_VALUE_08BIT, 800 BIT(IMX258_HDR_RATIO_MAX)); 801 } 802 break; 803 default: 804 dev_info(&client->dev, 805 "ctrl(id:0x%x,val:0x%x) is not handled\n", 806 ctrl->id, ctrl->val); 807 ret = -EINVAL; 808 break; 809 } 810 811 pm_runtime_put(&client->dev); 812 813 return ret; 814 } 815 816 static const struct v4l2_ctrl_ops imx258_ctrl_ops = { 817 .s_ctrl = imx258_set_ctrl, 818 }; 819 820 static int imx258_enum_mbus_code(struct v4l2_subdev *sd, 821 struct v4l2_subdev_state *sd_state, 822 struct v4l2_subdev_mbus_code_enum *code) 823 { 824 /* Only one bayer order(GRBG) is supported */ 825 if (code->index > 0) 826 return -EINVAL; 827 828 code->code = MEDIA_BUS_FMT_SGRBG10_1X10; 829 830 return 0; 831 } 832 833 static int imx258_enum_frame_size(struct v4l2_subdev *sd, 834 struct v4l2_subdev_state *sd_state, 835 struct v4l2_subdev_frame_size_enum *fse) 836 { 837 if (fse->index >= ARRAY_SIZE(supported_modes)) 838 return -EINVAL; 839 840 if (fse->code != MEDIA_BUS_FMT_SGRBG10_1X10) 841 return -EINVAL; 842 843 fse->min_width = supported_modes[fse->index].width; 844 fse->max_width = fse->min_width; 845 fse->min_height = supported_modes[fse->index].height; 846 fse->max_height = fse->min_height; 847 848 return 0; 849 } 850 851 static void imx258_update_pad_format(const struct imx258_mode *mode, 852 struct v4l2_subdev_format *fmt) 853 { 854 fmt->format.width = mode->width; 855 fmt->format.height = mode->height; 856 fmt->format.code = MEDIA_BUS_FMT_SGRBG10_1X10; 857 fmt->format.field = V4L2_FIELD_NONE; 858 } 859 860 static int __imx258_get_pad_format(struct imx258 *imx258, 861 struct v4l2_subdev_state *sd_state, 862 struct v4l2_subdev_format *fmt) 863 { 864 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) 865 fmt->format = *v4l2_subdev_get_try_format(&imx258->sd, 866 sd_state, 867 fmt->pad); 868 else 869 imx258_update_pad_format(imx258->cur_mode, fmt); 870 871 return 0; 872 } 873 874 static int imx258_get_pad_format(struct v4l2_subdev *sd, 875 struct v4l2_subdev_state *sd_state, 876 struct v4l2_subdev_format *fmt) 877 { 878 struct imx258 *imx258 = to_imx258(sd); 879 int ret; 880 881 mutex_lock(&imx258->mutex); 882 ret = __imx258_get_pad_format(imx258, sd_state, fmt); 883 mutex_unlock(&imx258->mutex); 884 885 return ret; 886 } 887 888 static int imx258_set_pad_format(struct v4l2_subdev *sd, 889 struct v4l2_subdev_state *sd_state, 890 struct v4l2_subdev_format *fmt) 891 { 892 struct imx258 *imx258 = to_imx258(sd); 893 const struct imx258_mode *mode; 894 struct v4l2_mbus_framefmt *framefmt; 895 s32 vblank_def; 896 s32 vblank_min; 897 s64 h_blank; 898 s64 pixel_rate; 899 s64 link_freq; 900 901 mutex_lock(&imx258->mutex); 902 903 /* Only one raw bayer(GBRG) order is supported */ 904 fmt->format.code = MEDIA_BUS_FMT_SGRBG10_1X10; 905 906 mode = v4l2_find_nearest_size(supported_modes, 907 ARRAY_SIZE(supported_modes), width, height, 908 fmt->format.width, fmt->format.height); 909 imx258_update_pad_format(mode, fmt); 910 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY) { 911 framefmt = v4l2_subdev_get_try_format(sd, sd_state, fmt->pad); 912 *framefmt = fmt->format; 913 } else { 914 imx258->cur_mode = mode; 915 __v4l2_ctrl_s_ctrl(imx258->link_freq, mode->link_freq_index); 916 917 link_freq = link_freq_menu_items[mode->link_freq_index]; 918 pixel_rate = link_freq_to_pixel_rate(link_freq); 919 __v4l2_ctrl_s_ctrl_int64(imx258->pixel_rate, pixel_rate); 920 /* Update limits and set FPS to default */ 921 vblank_def = imx258->cur_mode->vts_def - 922 imx258->cur_mode->height; 923 vblank_min = imx258->cur_mode->vts_min - 924 imx258->cur_mode->height; 925 __v4l2_ctrl_modify_range( 926 imx258->vblank, vblank_min, 927 IMX258_VTS_MAX - imx258->cur_mode->height, 1, 928 vblank_def); 929 __v4l2_ctrl_s_ctrl(imx258->vblank, vblank_def); 930 h_blank = 931 link_freq_configs[mode->link_freq_index].pixels_per_line 932 - imx258->cur_mode->width; 933 __v4l2_ctrl_modify_range(imx258->hblank, h_blank, 934 h_blank, 1, h_blank); 935 } 936 937 mutex_unlock(&imx258->mutex); 938 939 return 0; 940 } 941 942 /* Start streaming */ 943 static int imx258_start_streaming(struct imx258 *imx258) 944 { 945 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 946 const struct imx258_reg_list *reg_list; 947 int ret, link_freq_index; 948 949 /* Setup PLL */ 950 link_freq_index = imx258->cur_mode->link_freq_index; 951 reg_list = &link_freq_configs[link_freq_index].reg_list; 952 ret = imx258_write_regs(imx258, reg_list->regs, reg_list->num_of_regs); 953 if (ret) { 954 dev_err(&client->dev, "%s failed to set plls\n", __func__); 955 return ret; 956 } 957 958 /* Apply default values of current mode */ 959 reg_list = &imx258->cur_mode->reg_list; 960 ret = imx258_write_regs(imx258, reg_list->regs, reg_list->num_of_regs); 961 if (ret) { 962 dev_err(&client->dev, "%s failed to set mode\n", __func__); 963 return ret; 964 } 965 966 /* Set Orientation be 180 degree */ 967 ret = imx258_write_reg(imx258, REG_MIRROR_FLIP_CONTROL, 968 IMX258_REG_VALUE_08BIT, REG_CONFIG_MIRROR_FLIP); 969 if (ret) { 970 dev_err(&client->dev, "%s failed to set orientation\n", 971 __func__); 972 return ret; 973 } 974 975 /* Apply customized values from user */ 976 ret = __v4l2_ctrl_handler_setup(imx258->sd.ctrl_handler); 977 if (ret) 978 return ret; 979 980 /* set stream on register */ 981 return imx258_write_reg(imx258, IMX258_REG_MODE_SELECT, 982 IMX258_REG_VALUE_08BIT, 983 IMX258_MODE_STREAMING); 984 } 985 986 /* Stop streaming */ 987 static int imx258_stop_streaming(struct imx258 *imx258) 988 { 989 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 990 int ret; 991 992 /* set stream off register */ 993 ret = imx258_write_reg(imx258, IMX258_REG_MODE_SELECT, 994 IMX258_REG_VALUE_08BIT, IMX258_MODE_STANDBY); 995 if (ret) 996 dev_err(&client->dev, "%s failed to set stream\n", __func__); 997 998 /* 999 * Return success even if it was an error, as there is nothing the 1000 * caller can do about it. 1001 */ 1002 return 0; 1003 } 1004 1005 static int imx258_power_on(struct device *dev) 1006 { 1007 struct v4l2_subdev *sd = dev_get_drvdata(dev); 1008 struct imx258 *imx258 = to_imx258(sd); 1009 int ret; 1010 1011 ret = clk_prepare_enable(imx258->clk); 1012 if (ret) 1013 dev_err(dev, "failed to enable clock\n"); 1014 1015 return ret; 1016 } 1017 1018 static int imx258_power_off(struct device *dev) 1019 { 1020 struct v4l2_subdev *sd = dev_get_drvdata(dev); 1021 struct imx258 *imx258 = to_imx258(sd); 1022 1023 clk_disable_unprepare(imx258->clk); 1024 1025 return 0; 1026 } 1027 1028 static int imx258_set_stream(struct v4l2_subdev *sd, int enable) 1029 { 1030 struct imx258 *imx258 = to_imx258(sd); 1031 struct i2c_client *client = v4l2_get_subdevdata(sd); 1032 int ret = 0; 1033 1034 mutex_lock(&imx258->mutex); 1035 1036 if (enable) { 1037 ret = pm_runtime_resume_and_get(&client->dev); 1038 if (ret < 0) 1039 goto err_unlock; 1040 1041 /* 1042 * Apply default & customized values 1043 * and then start streaming. 1044 */ 1045 ret = imx258_start_streaming(imx258); 1046 if (ret) 1047 goto err_rpm_put; 1048 } else { 1049 imx258_stop_streaming(imx258); 1050 pm_runtime_put(&client->dev); 1051 } 1052 1053 mutex_unlock(&imx258->mutex); 1054 1055 return ret; 1056 1057 err_rpm_put: 1058 pm_runtime_put(&client->dev); 1059 err_unlock: 1060 mutex_unlock(&imx258->mutex); 1061 1062 return ret; 1063 } 1064 1065 /* Verify chip ID */ 1066 static int imx258_identify_module(struct imx258 *imx258) 1067 { 1068 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 1069 int ret; 1070 u32 val; 1071 1072 ret = imx258_read_reg(imx258, IMX258_REG_CHIP_ID, 1073 IMX258_REG_VALUE_16BIT, &val); 1074 if (ret) { 1075 dev_err(&client->dev, "failed to read chip id %x\n", 1076 IMX258_CHIP_ID); 1077 return ret; 1078 } 1079 1080 if (val != IMX258_CHIP_ID) { 1081 dev_err(&client->dev, "chip id mismatch: %x!=%x\n", 1082 IMX258_CHIP_ID, val); 1083 return -EIO; 1084 } 1085 1086 return 0; 1087 } 1088 1089 static const struct v4l2_subdev_video_ops imx258_video_ops = { 1090 .s_stream = imx258_set_stream, 1091 }; 1092 1093 static const struct v4l2_subdev_pad_ops imx258_pad_ops = { 1094 .enum_mbus_code = imx258_enum_mbus_code, 1095 .get_fmt = imx258_get_pad_format, 1096 .set_fmt = imx258_set_pad_format, 1097 .enum_frame_size = imx258_enum_frame_size, 1098 }; 1099 1100 static const struct v4l2_subdev_ops imx258_subdev_ops = { 1101 .video = &imx258_video_ops, 1102 .pad = &imx258_pad_ops, 1103 }; 1104 1105 static const struct v4l2_subdev_internal_ops imx258_internal_ops = { 1106 .open = imx258_open, 1107 }; 1108 1109 /* Initialize control handlers */ 1110 static int imx258_init_controls(struct imx258 *imx258) 1111 { 1112 struct i2c_client *client = v4l2_get_subdevdata(&imx258->sd); 1113 struct v4l2_fwnode_device_properties props; 1114 struct v4l2_ctrl_handler *ctrl_hdlr; 1115 struct v4l2_ctrl *vflip, *hflip; 1116 s64 vblank_def; 1117 s64 vblank_min; 1118 s64 pixel_rate_min; 1119 s64 pixel_rate_max; 1120 int ret; 1121 1122 ctrl_hdlr = &imx258->ctrl_handler; 1123 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 13); 1124 if (ret) 1125 return ret; 1126 1127 mutex_init(&imx258->mutex); 1128 ctrl_hdlr->lock = &imx258->mutex; 1129 imx258->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, 1130 &imx258_ctrl_ops, 1131 V4L2_CID_LINK_FREQ, 1132 ARRAY_SIZE(link_freq_menu_items) - 1, 1133 0, 1134 link_freq_menu_items); 1135 1136 if (imx258->link_freq) 1137 imx258->link_freq->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1138 1139 /* The driver only supports one bayer order and flips by default. */ 1140 hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, 1141 V4L2_CID_HFLIP, 1, 1, 1, 1); 1142 if (hflip) 1143 hflip->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1144 1145 vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, 1146 V4L2_CID_VFLIP, 1, 1, 1, 1); 1147 if (vflip) 1148 vflip->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1149 1150 pixel_rate_max = link_freq_to_pixel_rate(link_freq_menu_items[0]); 1151 pixel_rate_min = link_freq_to_pixel_rate(link_freq_menu_items[1]); 1152 /* By default, PIXEL_RATE is read only */ 1153 imx258->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, 1154 V4L2_CID_PIXEL_RATE, 1155 pixel_rate_min, pixel_rate_max, 1156 1, pixel_rate_max); 1157 1158 1159 vblank_def = imx258->cur_mode->vts_def - imx258->cur_mode->height; 1160 vblank_min = imx258->cur_mode->vts_min - imx258->cur_mode->height; 1161 imx258->vblank = v4l2_ctrl_new_std( 1162 ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_VBLANK, 1163 vblank_min, 1164 IMX258_VTS_MAX - imx258->cur_mode->height, 1, 1165 vblank_def); 1166 1167 if (imx258->vblank) 1168 imx258->vblank->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1169 1170 imx258->hblank = v4l2_ctrl_new_std( 1171 ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_HBLANK, 1172 IMX258_PPL_DEFAULT - imx258->cur_mode->width, 1173 IMX258_PPL_DEFAULT - imx258->cur_mode->width, 1174 1, 1175 IMX258_PPL_DEFAULT - imx258->cur_mode->width); 1176 1177 if (imx258->hblank) 1178 imx258->hblank->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1179 1180 imx258->exposure = v4l2_ctrl_new_std( 1181 ctrl_hdlr, &imx258_ctrl_ops, 1182 V4L2_CID_EXPOSURE, IMX258_EXPOSURE_MIN, 1183 IMX258_EXPOSURE_MAX, IMX258_EXPOSURE_STEP, 1184 IMX258_EXPOSURE_DEFAULT); 1185 1186 v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_ANALOGUE_GAIN, 1187 IMX258_ANA_GAIN_MIN, IMX258_ANA_GAIN_MAX, 1188 IMX258_ANA_GAIN_STEP, IMX258_ANA_GAIN_DEFAULT); 1189 1190 v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_DIGITAL_GAIN, 1191 IMX258_DGTL_GAIN_MIN, IMX258_DGTL_GAIN_MAX, 1192 IMX258_DGTL_GAIN_STEP, 1193 IMX258_DGTL_GAIN_DEFAULT); 1194 1195 v4l2_ctrl_new_std(ctrl_hdlr, &imx258_ctrl_ops, V4L2_CID_WIDE_DYNAMIC_RANGE, 1196 0, 1, 1, IMX258_HDR_RATIO_DEFAULT); 1197 1198 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx258_ctrl_ops, 1199 V4L2_CID_TEST_PATTERN, 1200 ARRAY_SIZE(imx258_test_pattern_menu) - 1, 1201 0, 0, imx258_test_pattern_menu); 1202 1203 if (ctrl_hdlr->error) { 1204 ret = ctrl_hdlr->error; 1205 dev_err(&client->dev, "%s control init failed (%d)\n", 1206 __func__, ret); 1207 goto error; 1208 } 1209 1210 ret = v4l2_fwnode_device_parse(&client->dev, &props); 1211 if (ret) 1212 goto error; 1213 1214 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &imx258_ctrl_ops, 1215 &props); 1216 if (ret) 1217 goto error; 1218 1219 imx258->sd.ctrl_handler = ctrl_hdlr; 1220 1221 return 0; 1222 1223 error: 1224 v4l2_ctrl_handler_free(ctrl_hdlr); 1225 mutex_destroy(&imx258->mutex); 1226 1227 return ret; 1228 } 1229 1230 static void imx258_free_controls(struct imx258 *imx258) 1231 { 1232 v4l2_ctrl_handler_free(imx258->sd.ctrl_handler); 1233 mutex_destroy(&imx258->mutex); 1234 } 1235 1236 static int imx258_probe(struct i2c_client *client) 1237 { 1238 struct imx258 *imx258; 1239 int ret; 1240 u32 val = 0; 1241 1242 imx258 = devm_kzalloc(&client->dev, sizeof(*imx258), GFP_KERNEL); 1243 if (!imx258) 1244 return -ENOMEM; 1245 1246 imx258->clk = devm_clk_get_optional(&client->dev, NULL); 1247 if (IS_ERR(imx258->clk)) 1248 return dev_err_probe(&client->dev, PTR_ERR(imx258->clk), 1249 "error getting clock\n"); 1250 if (!imx258->clk) { 1251 dev_dbg(&client->dev, 1252 "no clock provided, using clock-frequency property\n"); 1253 1254 device_property_read_u32(&client->dev, "clock-frequency", &val); 1255 } else { 1256 val = clk_get_rate(imx258->clk); 1257 } 1258 if (val != IMX258_INPUT_CLOCK_FREQ) { 1259 dev_err(&client->dev, "input clock frequency not supported\n"); 1260 return -EINVAL; 1261 } 1262 1263 /* Initialize subdev */ 1264 v4l2_i2c_subdev_init(&imx258->sd, client, &imx258_subdev_ops); 1265 1266 /* Will be powered off via pm_runtime_idle */ 1267 ret = imx258_power_on(&client->dev); 1268 if (ret) 1269 return ret; 1270 1271 /* Check module identity */ 1272 ret = imx258_identify_module(imx258); 1273 if (ret) 1274 goto error_identify; 1275 1276 /* Set default mode to max resolution */ 1277 imx258->cur_mode = &supported_modes[0]; 1278 1279 ret = imx258_init_controls(imx258); 1280 if (ret) 1281 goto error_identify; 1282 1283 /* Initialize subdev */ 1284 imx258->sd.internal_ops = &imx258_internal_ops; 1285 imx258->sd.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE; 1286 imx258->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR; 1287 1288 /* Initialize source pad */ 1289 imx258->pad.flags = MEDIA_PAD_FL_SOURCE; 1290 1291 ret = media_entity_pads_init(&imx258->sd.entity, 1, &imx258->pad); 1292 if (ret) 1293 goto error_handler_free; 1294 1295 ret = v4l2_async_register_subdev_sensor(&imx258->sd); 1296 if (ret < 0) 1297 goto error_media_entity; 1298 1299 pm_runtime_set_active(&client->dev); 1300 pm_runtime_enable(&client->dev); 1301 pm_runtime_idle(&client->dev); 1302 1303 return 0; 1304 1305 error_media_entity: 1306 media_entity_cleanup(&imx258->sd.entity); 1307 1308 error_handler_free: 1309 imx258_free_controls(imx258); 1310 1311 error_identify: 1312 imx258_power_off(&client->dev); 1313 1314 return ret; 1315 } 1316 1317 static void imx258_remove(struct i2c_client *client) 1318 { 1319 struct v4l2_subdev *sd = i2c_get_clientdata(client); 1320 struct imx258 *imx258 = to_imx258(sd); 1321 1322 v4l2_async_unregister_subdev(sd); 1323 media_entity_cleanup(&sd->entity); 1324 imx258_free_controls(imx258); 1325 1326 pm_runtime_disable(&client->dev); 1327 if (!pm_runtime_status_suspended(&client->dev)) 1328 imx258_power_off(&client->dev); 1329 pm_runtime_set_suspended(&client->dev); 1330 } 1331 1332 static const struct dev_pm_ops imx258_pm_ops = { 1333 SET_RUNTIME_PM_OPS(imx258_power_off, imx258_power_on, NULL) 1334 }; 1335 1336 #ifdef CONFIG_ACPI 1337 static const struct acpi_device_id imx258_acpi_ids[] = { 1338 { "SONY258A" }, 1339 { /* sentinel */ } 1340 }; 1341 1342 MODULE_DEVICE_TABLE(acpi, imx258_acpi_ids); 1343 #endif 1344 1345 static const struct of_device_id imx258_dt_ids[] = { 1346 { .compatible = "sony,imx258" }, 1347 { /* sentinel */ } 1348 }; 1349 MODULE_DEVICE_TABLE(of, imx258_dt_ids); 1350 1351 static struct i2c_driver imx258_i2c_driver = { 1352 .driver = { 1353 .name = "imx258", 1354 .pm = &imx258_pm_ops, 1355 .acpi_match_table = ACPI_PTR(imx258_acpi_ids), 1356 .of_match_table = imx258_dt_ids, 1357 }, 1358 .probe = imx258_probe, 1359 .remove = imx258_remove, 1360 }; 1361 1362 module_i2c_driver(imx258_i2c_driver); 1363 1364 MODULE_AUTHOR("Yeh, Andy <andy.yeh@intel.com>"); 1365 MODULE_AUTHOR("Chiang, Alan"); 1366 MODULE_AUTHOR("Chen, Jason"); 1367 MODULE_DESCRIPTION("Sony IMX258 sensor driver"); 1368 MODULE_LICENSE("GPL v2"); 1369