RK3568开发板安卓系统之驱动调试(四)

RK3568开发板安卓系统之驱动调试(四) 万万没想到 2022-10-08 14:09:42 18703

4 驱动调试

4.1 电源配置

RK GPIO编号说明

A组: A0-A7对应0-7B组: B0-B7对应8-15C组: C0-C7对应16-23D组: D0-D7对应24-31

GPIO编号计算方法:
例如:GPIO4_C4 = 4*32+16+4 = 148

4.1.1 查看原理图

4.1.2 获取需要的配置信息,并在dts里配置

通过查看原理图,获取到相应的信息,然后在dts里配置
1、RK809和TCS4525是挂在I2C0下。输出电压VDD_CPU为0.9V, dts配置如下

    vdd_cpu: tcs4525@1c {
        compatible = "tcs,tcs452x";
        reg = <0x1c>;
        vin-supply = <&vcc5v0_sys>;
        regulator-compatible = "fan53555-reg";
        regulator-name = "vdd_cpu";
        ...
        regulator-init-microvolt = <900000>;
        ...
    };
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2、RK809各输入电压的输入源

输入电压 输入源
VCC1 VCC5V0_SYS
VCC2 VCC5V0_SYS
VCC3 VCC5V0_SYS
VCC4 VCC5V0_SYS
VCC5 VCC3V3_SYS
VCC6 VCC3V3_SYS
VCC7 VCC3V3_SYS
VCC8 VCC3V3_SYS
VCC9 VCC3V3_SYS

dts配置如下:

    vcc1-supply = <&vcc5v0_SYS>;
    vcc2-supply = <&vcc5v0_SYS>;
    vcc3-supply = <&vcc5v0_SYS>;
    vcc4-supply = <&vcc5v0_SYS>;
    vcc5-supply = <&vcc3v3_sys>;
    vcc6-supply = <&vcc3v3_sys>;
    vcc7-supply = <&vcc3v3_sys>;
    vcc8-supply = <&vcc3v3_sys>;
    vcc9-supply = <&vcc3v3_sys>;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

通过查看原理图,VCC5V0_SYS是底板给的,VCC3V3_SYS是由VCC5V0_SYS转的
3、RK809输出电压名及其电压值

电源名称 电压值
BUCK1 VDD_LOGIC 0.9V
BUCK2 VDD_GPU 0.9V
BUCK3 VCC_DDR 硬件调节
BUCK4 VDD_NPU 0.9V
LDO1 VDDA0V9_IMAGE 0.9V
LDO2 VDDA_0V9 0.9V
LDO3 VDDA0V9_PMU 0.9V
LDO4 VCCIO_ACODEC 3.3V
LDO5 VCCIO_SD 1.8-3.3V
LDO6 VCC3V3_PMU 3.3V
LDO7 VCCA_1V8 1.8V
LDO8 VCCA1V8_PMU 1.8V
LDO9 VCCA1V8_IMAGE 1.8V
SWCUT1 VCC_3V3 3.3V
SWCUT2 VCC3V3_SD 3.3V
BUCK5 VCC_1V8 1.8V

dts里配置

regulators {
    vdd_logic: DCDC_REG1 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <500000>;
        regulator-max-microvolt = <1350000>;
        regulator-init-microvolt = <900000>;
        regulator-ramp-delay = <6001>;
        regulator-initial-mode = <0x2>;
        regulator-name = "vdd_logic";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdd_gpu: DCDC_REG2 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <500000>;
        regulator-max-microvolt = <1350000>;
        regulator-init-microvolt = <900000>;
        regulator-ramp-delay = <6001>;
        regulator-initial-mode = <0x2>;
        regulator-name = "vdd_gpu";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc_ddr: DCDC_REG3 {
        regulator-always-on;
        regulator-boot-on;
        regulator-initial-mode = <0x2>;
        regulator-name = "vcc_ddr";
        regulator-state-mem {
            regulator-on-in-suspend;
        };
    };

    vdd_npu: DCDC_REG4 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <500000>;
        regulator-max-microvolt = <1350000>;
        regulator-init-microvolt = <900000>;
        regulator-ramp-delay = <6001>;
        regulator-initial-mode = <0x2>;
        regulator-name = "vdd_npu";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdda0v9_image: LDO_REG1 {
        regulator-boot-on;
        regulator-always-on;
        regulator-min-microvolt = <900000>;
        regulator-max-microvolt = <900000>;
        regulator-name = "vdda0v9_image";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdda_0v9: LDO_REG2 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <900000>;
        regulator-max-microvolt = <900000>;
        regulator-name = "vdda_0v9";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdda0v9_pmu: LDO_REG3 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <900000>;
        regulator-max-microvolt = <900000>;
        regulator-name = "vdda0v9_pmu";
        regulator-state-mem {
            regulator-on-in-suspend;
            regulator-suspend-microvolt = <900000>;
        };
    };

    vccio_acodec: LDO_REG4 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <3300000>;
        regulator-max-microvolt = <3300000>;
        regulator-name = "vccio_acodec";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vccio_sd: LDO_REG5 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <3300000>;
        regulator-name = "vccio_sd";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc3v3_pmu: LDO_REG6 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <3300000>;
        regulator-max-microvolt = <3300000>;
        regulator-name = "vcc3v3_pmu";
        regulator-state-mem {
            regulator-on-in-suspend;
            regulator-suspend-microvolt = <3300000>;
        };
    };

    vcca_1v8: LDO_REG7 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcca_1v8";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcca1v8_pmu: LDO_REG8 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcca1v8_pmu";
        regulator-state-mem {
            regulator-on-in-suspend;
            regulator-suspend-microvolt = <1800000>;
        };
    };

    vcca1v8_image: LDO_REG9 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcca1v8_image";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc_1v8: DCDC_REG5 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcc_1v8";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc_3v3: SWITCH_REG1 {
        regulator-always-on;
        regulator-boot-on;
        regulator-name = "vcc_3v3";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc3v3_sd: SWITCH_REG2 {
        regulator-always-on;
        regulator-boot-on;
        regulator-name = "vcc3v3_sd";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };
};
在原有配置的基础上增加、删除、修改4 驱动调试
在原有配置的基础上增加、删除、修改4.1 电源配置
RK GPIO编号说明

A组: A0-A7对应0-7
B组: B0-B7对应8-15
C组: C0-C7对应16-23
D组: D0-D7对应24-31

GPIO编号计算方法:
例如:GPIO4_C4 = 4*32+16+4 = 148

4.1.1 查看原理图

4.1.2 获取需要的配置信息,并在dts里配置
通过查看原理图,获取到相应的信息,然后在dts里配置
1、RK809和TCS4525是挂在I2C0下。输出电压VDD_CPU为0.9V, dts配置如下

    vdd_cpu: tcs4525@1c {
        compatible = "tcs,tcs452x";
        reg = <0x1c>;
        vin-supply = <&amp;vcc5v0_sys>;
        regulator-compatible = "fan53555-reg";
        regulator-name = "vdd_cpu";
        ...
        regulator-init-microvolt = <900000>;
        ...
    };

2、RK809各输入电压的输入源
|  输入电压  | 输入源      |
| ————- | —————- |
| VCC1      | VCC5V0_SYS  |
| VCC2      | VCC5V0_SYS  |
| VCC3      | VCC5V0_SYS  |
| VCC4      | VCC5V0_SYS  |
| VCC5      | VCC3V3_SYS  |
| VCC6      | VCC3V3_SYS  |
| VCC7      | VCC3V3_SYS  |
| VCC8      | VCC3V3_SYS  |
| VCC9      | VCC3V3_SYS  |
dts配置如下:

    vcc1-supply = <&amp;vcc5v0_SYS>;
    vcc2-supply = <&amp;vcc5v0_SYS>;
    vcc3-supply = <&amp;vcc5v0_SYS>;
    vcc4-supply = <&amp;vcc5v0_SYS>;
    vcc5-supply = <&amp;vcc3v3_sys>;
    vcc6-supply = <&amp;vcc3v3_sys>;
    vcc7-supply = <&amp;vcc3v3_sys>;
    vcc8-supply = <&amp;vcc3v3_sys>;
    vcc9-supply = <&amp;vcc3v3_sys>;

通过查看原理图,VCC5V0_SYS是底板给的,VCC3V3_SYS是由VCC5V0_SYS转的
3、RK809输出电压名及其电压值
|        | 电压名称      | 电压值    |
| ———-| —————— | —————|
| BUCK1  | VDD_LOGIC    | 0.9V      |
| BUCK2  | VDD_GPU      | 0.9V      |
| BUCK3  | VCC_DDR      | 硬件调节   |
| BUCK4  | VDD_NPU      | 0.9V      |
| LDO1   | VDDA0V9_IMAGE| 0.9V      |
| LDO2   | VDDA_0V9     | 0.9V      |
| LDO3   | VDDA0V9_PMU  | 0.9V      |
| LDO4   | VCCIO_ACODEC | 3.3V      |
| LDO5   | VCCIO_SD     | 1.8-3.3V  |
| LDO6   | VCC3V3_PMU   | 3.3V      |
| LDO7   | VCCA_1V8     | 1.8V      |
| LDO8   | VCCA1V8_PMU  | 1.8V      |
| LDO9   | VCCA1V8_IMAGE| 1.8V      |
| SWCUT1 | VCC_3V3      | 3.3V      |
| SWCUT2 | VCC3V3_SD    | 3.3V      |
| BUCK5  | VCC_1V8      | 1.8V      |
dts里配置

regulators {
    vdd_logic: DCDC_REG1 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <500000>;
        regulator-max-microvolt = <1350000>;
        regulator-init-microvolt = <900000>;
        regulator-ramp-delay = <6001>;
        regulator-initial-mode = <0x2>;
        regulator-name = "vdd_logic";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdd_gpu: DCDC_REG2 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <500000>;
        regulator-max-microvolt = <1350000>;
        regulator-init-microvolt = <900000>;
        regulator-ramp-delay = <6001>;
        regulator-initial-mode = <0x2>;
        regulator-name = "vdd_gpu";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc_ddr: DCDC_REG3 {
        regulator-always-on;
        regulator-boot-on;
        regulator-initial-mode = <0x2>;
        regulator-name = "vcc_ddr";
        regulator-state-mem {
            regulator-on-in-suspend;
        };
    };

    vdd_npu: DCDC_REG4 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <500000>;
        regulator-max-microvolt = <1350000>;
        regulator-init-microvolt = <900000>;
        regulator-ramp-delay = <6001>;
        regulator-initial-mode = <0x2>;
        regulator-name = "vdd_npu";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdda0v9_image: LDO_REG1 {
        regulator-boot-on;
        regulator-always-on;
        regulator-min-microvolt = <900000>;
        regulator-max-microvolt = <900000>;
        regulator-name = "vdda0v9_image";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdda_0v9: LDO_REG2 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <900000>;
        regulator-max-microvolt = <900000>;
        regulator-name = "vdda_0v9";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vdda0v9_pmu: LDO_REG3 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <900000>;
        regulator-max-microvolt = <900000>;
        regulator-name = "vdda0v9_pmu";
        regulator-state-mem {
            regulator-on-in-suspend;
            regulator-suspend-microvolt = <900000>;
        };
    };

    vccio_acodec: LDO_REG4 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <3300000>;
        regulator-max-microvolt = <3300000>;
        regulator-name = "vccio_acodec";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vccio_sd: LDO_REG5 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <3300000>;
        regulator-name = "vccio_sd";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc3v3_pmu: LDO_REG6 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <3300000>;
        regulator-max-microvolt = <3300000>;
        regulator-name = "vcc3v3_pmu";
        regulator-state-mem {
            regulator-on-in-suspend;
            regulator-suspend-microvolt = <3300000>;
        };
    };

    vcca_1v8: LDO_REG7 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcca_1v8";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcca1v8_pmu: LDO_REG8 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcca1v8_pmu";
        regulator-state-mem {
            regulator-on-in-suspend;
            regulator-suspend-microvolt = <1800000>;
        };
    };

    vcca1v8_image: LDO_REG9 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcca1v8_image";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc_1v8: DCDC_REG5 {
        regulator-always-on;
        regulator-boot-on;
        regulator-min-microvolt = <1800000>;
        regulator-max-microvolt = <1800000>;
        regulator-name = "vcc_1v8";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc_3v3: SWITCH_REG1 {
        regulator-always-on;
        regulator-boot-on;
        regulator-name = "vcc_3v3";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };

    vcc3v3_sd: SWITCH_REG2 {
        regulator-always-on;
        regulator-boot-on;
        regulator-name = "vcc3v3_sd";
        regulator-state-mem {
            regulator-off-in-suspend;
        };
    };
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
<
声明:本文内容由易百纳平台入驻作者撰写,文章观点仅代表作者本人,不代表易百纳立场。如有内容侵权或者其他问题,请联系本站进行删除。
红包 1 收藏 评论 打赏
评论
0个
内容存在敏感词
手气红包
    易百纳技术社区暂无数据
相关专栏
置顶时间设置
结束时间
删除原因
  • 广告/SPAM
  • 恶意灌水
  • 违规内容
  • 文不对题
  • 重复发帖
打赏作者
易百纳技术社区
万万没想到
您的支持将鼓励我继续创作!
打赏金额:
¥1易百纳技术社区
¥5易百纳技术社区
¥10易百纳技术社区
¥50易百纳技术社区
¥100易百纳技术社区
支付方式:
微信支付
支付宝支付
易百纳技术社区微信支付
易百纳技术社区
打赏成功!

感谢您的打赏,如若您也想被打赏,可前往 发表专栏 哦~

举报反馈

举报类型

  • 内容涉黄/赌/毒
  • 内容侵权/抄袭
  • 政治相关
  • 涉嫌广告
  • 侮辱谩骂
  • 其他

详细说明

审核成功

发布时间设置
发布时间:
是否关联周任务-专栏模块

审核失败

失败原因
备注
拼手气红包 红包规则
祝福语
恭喜发财,大吉大利!
红包金额
红包最小金额不能低于5元
红包数量
红包数量范围10~50个
余额支付
当前余额:
可前往问答、专栏板块获取收益 去获取
取 消 确 定

小包子的红包

恭喜发财,大吉大利

已领取20/40,共1.6元 红包规则

    易百纳技术社区