wink
    不需要了。precharge的作用是关闭已打开的row,每次突发的时候是在同row中对BL个column操作。只有在切换row的时候才需要precharge关闭当前row,然后再发送act激活下一个操作行.
    DRAM 原理 3 :DRAM Device  发表时间:2020-06-10 17:21
    wink
    不需要了。precharge的作用是关闭已打开的row,每次突发的时候是在同row中对BL个column操作。只有在切换row的时候才需要precharge关闭当前row,然后再发送act激活下一个操作行,
    DRAM 原理 3 :DRAM Device  发表时间:2020-06-10 17:20
    bsp
    @bsp:/sys/devices/virtual/workqueue# echo fe >cpumask 找到一个方法,可以fix。但总觉的是workaround
    Concurrency Managed Workqueue之(二):CMWQ概述  发表时间:2020-06-10 16:08
    小毛驴
    你好,看了您的文章受益匪浅,现在遇到一个问题,在echo mem >/sys/power/state后,一开始有wake lock,然后我把他们都写入到了wake_unlock中之后,还是无法休眠,打印是无法冻结进程,Freezing of tasks aborted after 0.003 seconds,请教下该怎么处理
    留言板  发表时间:2020-06-10 15:54
    bsp
    大神,碰到一个问题,麻烦有空帮忙分析下。 在跑camera和ufs测试的时候: 1,处理camera_work的worker(UNBOuND | HIGHPRI)有时候会运行在cpu0上; 2,ufs突然频繁操作时,ufs_irq在cpu0(linux的默认conf)上频繁触发,导致中断不断抢占 处理camera_work的worker,持续10ms以上; 3,由于camera 运行在120fps,需要8ms左右处理一帧数据,而ufs_irq抢占其worker,导致丢帧。 想过一些办法: 1,迁移irq(利用irqbalance),但是这只会减小概率,如果worker和ufs_irq又都在某个cpu会合了,就又触发了; 2,不迁移irq,但迁移cpu-loading高的worker到big cpu上,但是此work只要求实时性,所占cpu-loading只有不到10%; 3,设thread affinity,可是worker-thread是动态create和distroy的; 4,replace workqueue with irq_thread, 这个工作量太大。 有没有其它办法,让某个worker绑定在非CPU0上? 或者怎么解决这个丢帧的问题?
    Concurrency Managed Workqueue之(二):CMWQ概述  发表时间:2020-06-10 15:34
    鱼儿
    在平坦模型和不连续模型中,都有pg_list node节点,并以此可以与zone区域联系,在sparse模型中,struct mem_section中并没有与zone产生连续的元素,那在sparse模型中,zone是如何使用的呢
    Linux内存模型  发表时间:2020-06-09 20:37
    benjoÿing
    赞!图形解析很清楚!
    SLUB DEBUG原理  发表时间:2020-06-08 10:54
    wowo
    @hczx123:现在没有多少时间能写文章,抱歉!~
    USB-C(USB Type-C)规范的简单介绍和分析  发表时间:2020-06-06 16:18
    hczx123
    本来想在论坛发贴求助的,发现帐号忘了,想重新注册个帐号,没想到现在不允许注册了。。 最近在搞UAC这块,感觉介绍这方面的文档不多,不知道蜗窝能不能写写这方面的,还有 就是想找音视频相关的知识,发现这里没有这个版块,提个建议加下这个版块。 最后再表示感谢,这里对我的帮助真的很大,讲的比较深入,然后又容易懂。
    USB-C(USB Type-C)规范的简单介绍和分析  发表时间:2020-06-04 15:06
    bsp
    @crash:分享下通过psci处理system_suspend, suspend_ops->enter的流程: 1, psci初始化:suspend_set_ops(&psci_suspend_ops); static const struct platform_suspend_ops psci_suspend_ops = { .enter = psci_system_suspend_enter, }; 2, suspend_ops->enter,即 static int psci_system_suspend_enter(suspend_state_t state) { return cpu_suspend(0, psci_system_suspend); } arch/arm64/kernel/suspend.c int cpu_suspend(unsigned long arg, int (*fn)(unsigned long)) { struct sleep_stack_data state; 这里类似fork,有返回两次的效果: if (__cpu_suspend_enter(&state)) { //第一次返回1, 往下走 ret = invoke_psci_fn(PSCI_FN_NATIVE(1_0, SYSTEM_SUSPEND), __pa_symbol(cpu_resume), 0, 0);; } else { //第二次由于cpu_resume返回值为0,往这走: __cpu_suspend_exit(); } 2.1,这里通过psci组装smc指令,跳转到TZ执行tzbsp_psci_cpu_suspend_wrapper; TZ会和RPM通信配置lpm mode,比如power down l3/ power down cpu-core; PSCI(Power State Coordination Interface), 是arm定义的一套处理cpu on/off/suspend等的协议, 比如Linux-kernel发送相应的cpu operation到和Trust-Zone(EL3 by smc)或Hypervirsor(EL2 by hvc),再由TZ或Hyp做对应的操作: 比如: Linux-kernel 要offline、suspend一个cpu,Hypervisor只是把这个cpu给其它的OS使用。 2.2 cpu_resume是物理地址; 唤醒cpu重新power-up时,cpu 会call cpu_resume; 因为此时mmu还未打开,所以2.2必须传入cpu_resume的物理地址; cpu_resume中会打开mmu; 2.3 __cpu_suspend_enter两次返回的效果: __cpu_suspend_enter做一些准备工作后返回 1,then call smc into TZ and suspend system/cpu; 重新唤醒cpu时,cpu call cpu_resume() and return 0 to the next instruction of __cpu_suspend_enter; 因为是0,所以会call __cpu_suspend_exit。 3, arch/arm64/kernel/sleep.S ENTRY(__cpu_suspend_enter) //第一步保存当前lr到state中 stp x29, lr, [x0, #SLEEP_STACK_DATA_CALLEE_REGS] ... mov x0, #1 //这里返回1 ret ENDPROC(__cpu_suspend_enter) ENTRY(cpu_resume) bl el2_setup // if in EL2 drop to EL1 cleanly bl __cpu_setup /* enable the MMU early - so we can access sleep_save_stash by va */ bl __enable_mmu ldr x8, =_cpu_resume br x8 ENDPROC(cpu_resume) ENTRY(_cpu_resume) ... ldp x29, lr, [x29] //从之前的state中恢复lr mov x0, #0 //返回值为0 ret //return到__cpu_suspend_enter下一行 ENDPROC(_cpu_resume) 4, for cpu suspend, intead of system suspend: static int psci_suspend_finisher(u32 state, unsigned long entry_point) { int err; u32 fn; fn = psci_function_id[PSCI_FN_CPU_SUSPEND]; err = invoke_psci_fn(fn, state, __pa_symbol(cpu_resume), 0); return psci_to_linux_errno(err); } cpu_suspend(state_id, psci_suspend_finisher);
    系统休眠(System Suspend)和设备中断处理  发表时间:2020-06-04 09:47

共7862条69/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 6970 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 619 620 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