bear20081015
    @bear20081015:为啥不能在最下面回复了???长度限制么? wowo,不好意思,关于pm runtime在suspend中的设计还是觉得有点奇怪: 我看到pm runtime的documents说对于某些设备来说,有可能它在系统suspend和pm runtime suspend下的实现会不一样,比如在系统suspend的时候可能需要先把设备从 pm runtime suspend中resume回来,然后再放到系统suspend希望的硬件状态中去。如果是这样的话,假如下面的情形: 1. 系统suspend之前设备处于pm runtime suspend状态; 2. 在device->suspend callback function中,先调用pm_runtime_put将设备唤醒,再把它放到某些更低功耗的状态中。 这种用法是不是会有下面的问题: 1. 执行pm runtime是在workqueue中,而这个workqueue在suspend比较早的阶段就被freeze了, 也就是说pm_runtime_put并不会真正打开设备? 2. 因为pm_runtime_barrier是在device->suspend之前调用的,如果这个resume的请求被pending在wq上的话,等执行到suspend_late的pm_runtime_disable时还是会产生我最早说的问题吧?
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 19:44
    wowo
    @Jeff:不可以的。freeze_wake對應的是PM_SUSPEND_FREEZE,既FREEZE狀態。而大多數deep sleep,對應的是SUSPEND狀態,需要由系統中斷wakeup。
    Linux电源管理(7)_Wakeup events framework  发表时间:2015-06-03 19:01
    Jeff
    先謝謝一下wowo, 很詳盡的解說! 想請教一下文中以下的freeze_wake()是否就是可以將系統從deep sleep(於suspend.c中error = suspend_ops->enter(state);)狀態下wakeup回來的functions.?? static void wakeup_source_activate(struct wakeup_source *ws) { ... /* * active wakeup source should bring the system * out of PM_SUSPEND_FREEZE state */ freeze_wake(); ... }
    Linux电源管理(7)_Wakeup events framework  发表时间:2015-06-03 18:48
    wowo
    @bear20081015:不用客气,也不要再说“请教”之类的话了,我们是在讨论,愈辩愈明嘛。 关于suspend后device的行为,可以参考“include/linux/pm.h”中的注释(我在“http://www.wowotech.net/linux_kenrel/suspend_and_resume.html”中也有强调): * @suspend: Executed before putting the system into a sleep state in which the * contents of main memory are preserved. The exact action to perform * depends on the device's subsystem (PM domain, device type, class or bus * type), but generally the device must be quiescent after subsystem-level * @suspend() has returned, so that it doesn't do any I/O or DMA. * Subsystem-level @suspend() is executed for all devices after invoking * subsystem-level @prepare() for all of them. 至于你的两个疑问,其实是一个,我猜原因是这样的: 对系统的suspend而言,操作对象不是单一设备,所以suspend或者suspend_late是针对系统中的所有设备的。suspend对应pm_runtime_barrier,suspend_late对应pm_runtime_disable,有两个好处: 1. 结构上是清晰的(suspend之后调用pm_runtime_disable也有可能是可以的)。 2. 设备之间可能有依存关系,所以先barrier所有设备的runtime请求,然后再disable所有设备的runtime功能,是比较合符逻辑。 嗯,其实这两个好处也可以归结为一个,就是结构清晰,至于功能上,可能没有特别深层次的考虑(毕竟,设备已经suspend了,什么时候pm_runtime_disable,都无伤大雅了)。
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 18:43
    bear20081015
    @wowo:"设备suspend了,也就意味着不会再产生resume事件了,也就不应该再对其执行pm_rutime_put操作了(这是由设备的suspend代码保证的)。"如果有这个假设的话,那么是没有问题的。 还是有点疑问,既然有这样的假设, 1.为什么还要在suspend_late中调用pm_runtime_disable呢,反正这时候也不会有pm runtime的操作了吧? 2. 为啥不干脆在__device_suspend->pm_runtime_barrier之后就直接将pm_runtime_disable了呢?是让device在suspend函数中还能调用pm runtime么? 问题比较多,见谅!
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 17:44
    wowo
    @wowo:错了,应该是“也就不应该再对其执行pm_rutime_get操作了”
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 17:30
    wowo
    @bear20081015:dpm_suspend_start-->dpm_suspend-->device_suspend-->__device_suspend-->pm_runtime_barrier 直到这个地方,device的resume请求都是可被处理的。 然后在pm_runtime_barrier之后,会suspend设备。 设备suspend了,也就意味着不会再产生resume事件了,也就不应该再对其执行pm_rutime_put操作了(这是由设备的suspend代码保证的)。 因此在随后的device_suspend_late里面,已经假设设备不会再有resume请求,这也是suspend、suspend_late的设计初衷。 因此suspend_late时,不应该出现我们讨论的这种情况。
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 17:29
    bear20081015
    @蜗蜗:wowo,哪里的代码体现了这一点?我看到的代码是如果在device_suspend_late里面, __pm_runtime_disable之前有人调用了pm_runtime_abort的话,系统是不会从suspend中abort的。如果是在device_suspend的pm_runtimer_barrier之前的话则系统会abort。不知道我理解的对不对?
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 17:11
    蜗蜗
    @蜗蜗:我觉得问题的关键是: “如果恰好在此之前,有人希望通过pm_runtime_get来resume这个设备,那么就会把一个pending的resume request放到pm runtime work queue上;此时usage_count=2, runtime_state = RPM_SUSPENDED; ” 上面的步骤执行后,系统suspend就应该abort了,后续的__pm_runtime_disable就不应该接着执行。
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 16:38
    蜗蜗
    @bear20081015: 我把您的问题贴到了这里,我们在这里讨论。 ================================================================================ 1.一个设备在系统suspend之前处于RPM_SUSPENDED状态;此时dev->power.usage_count=0,dev->power.runtime_state = RPM_SUSPENDED; 2.在dev->prepare函数, system suspend框架会调用pm_runtime_get_noresume,此时dev->power.usage_count=1, runtime_state仍然是RPM_SUSPENEDED; 3.接着,system suspend会调用device_suspend_late,这个函数中调用了__pm_runtime_disable()。如果恰好在此之前,有人希望通过pm_runtime_get来resume这个设备,那么就会把一个pending的resume request放到pm runtime work queue上;此时usage_count=2, runtime_state = RPM_SUSPENDED; 4. 在__pm_runtime_disable中,函数会调用__pm_runtime_barrier,这会取消step3中的pending resume请求。 但不会将usage_count减1。此时usage_count=2, runtime_state = RPM_SUSPENDED。 5. 当系统resume回来的时候,它会调用pm_runtime_put来将usage_count减1。 此时usage_count=1, runtime_state = RPM_SUSPENDED。 可以看到,经过这几个步骤后,device的runtime_state和usage_count出现了不匹配的情况,runtime_state=RPM_SUSPENDED的时候usage_count应该是0,但现在变成了1。我做的实验也是这样。不知道这算不算runtime的bug呢?还是我上面哪一步有问题?请指教,谢谢!
    Linux电源管理(11)_Runtime PM之功能描述  发表时间:2015-06-03 16:31

共7862条619/787上一页 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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 下一页
Copyright @ 2013-2015 蜗窝科技 All rights reserved. Powered by emlog