能否介绍下确定一款SOC的频点和电压的原则或方法?比如拿到一款新的SOC,我们应该给它选定哪些频点和电压呢。个人理解选好了这个,再加上cpufreq的软件框架,才能很好的达到power优化的目标吧?
《linux cpufreq framework(1)_概述》 发表时间:2015-06-24 02:46
@printk:可以给个你优化的例子吗?具体哪些点,耗时多少,做了哪些优化,优化后耗时多少。
还有个疑问:把kernel读出来 vs 解压kernel, 更大的kernel读出来的时间肯定更长,优化这个时间 vs 优化解压的时间,哪个更好,要对比一下吧?
就uboot来说,我感觉主要有两个功能,一个是把kernel拷贝到内存,另一个是调试。 在发布的时候,其实调试功能是不需要的,仅需要第一个功能。
firstboot也是可以把kernel拷贝到内存的,这样发布的时候就可以不要uboot了。
ps:
1、firstboot是指把uboot拷贝到内存的这个boot,imx6中可能不是这个名字。
2、建议楼主说明你优化的kernel和uboot版本。 kernel 3.0以上版本,大多用了设备树,uboot具有调试设备树的功能,所以uboot有可能悄悄改了设备树,如果不要uboot,需要确定uboot是如何改了设备树。
3、uboot一般是读取固定大小的kernel和文件系统进内存。例如kernel是2.9M,uboot可能固定读4M,不会去管真正的kernel是多大,建议楼主确认下你的uboot是否是这样。
还有两个记不清楚的地方,说出来供楼主参考。
我以前粗略看过kernel的汇编部分,记得在汇编里好像会把真正的kernel搬运到新的内存地址,这个地方应该也可以优化。
读内核时,开启dma,应该可以读的更快吧
《kernel启动优化》 发表时间:2015-06-23 16:53
@bear20081015:涨姿势了,原来cache里面的内容已经pre-decode了,这样可以节省很多decode动作,进而节省power。多谢分享。
《计算机科学基础知识(一):The Memory Hierarchy》 发表时间:2015-06-23 09:13
@linuxer:@linuxer,
linuxer。
我问了下ARM的人,他们的意思是说icache里面确实存储的是40个bit,是memory中的32bit指令经过predecoder得到的。还给了一个转换公式,不过我尝试了一下,似乎不是很对,还在等他们的进一步回复。供你参考。
[From Jim Sykes - ARM Technical Support]
Cortex-A5/A7/A53 store a special extended format in the I$ which is:
For Cortex-A5/A7: 18 bits Thumb / 36 bits ARM
For Cortex-A53: 20 bits Thumb / 40 bits ARM aarch32 or aarch64
This is related to changes to the instruction decode logic – a predecoder is added before the I$ - the main decoder is simplified and this leads to power and area savings.
We do not have a script or documentation for this I$ format, however the tarmac logger contains functions to decode the instructions – when used with code below.
The below SystemVerilog code can reverse the translations done in the predecode process for Cortex-A53.
This includes snippets of code which show how to turn the 40-bit encoding in the I-cache into the 32-bit memory view (or at least as close as possible, the translation isn’t entirely two-way). For the code below "icb_encoding_for_reconstruction" is the 40-bit value from the I-cache, and "pfb_to_raw_encoding" is the 32-bit memory view of that value.
ARM A64:
if (icb_encoding_for_reconstruction[18:13] == 6'b000000) begin
// We need first to check if the original encoding was undef or unpred
pfb_to_raw_encoding[31:28] = icb_encoding_for_reconstruction[39:36];
pfb_to_raw_encoding[27:0] =
{icb_encoding_for_reconstruction[11:0],icb_encoding_for_reconstruction[35:20]};
end else begin
// normal case
pfb_to_raw_encoding[31:0] = t32_to_a64(icb_encoding_for_reconstruction);
end
《计算机科学基础知识(一):The Memory Hierarchy》 发表时间:2015-06-22 23:24
您好我订阅的时候 出现了
Sorry, we were unable to deliver your message to the following address.
<majordomo@vger.kernel.org>:
Remote host said:
553 5.7.1 Hello [98.138.229.47], for your MAIL FROM address <qianshiyilv@yahoo.com> policy analysis reported: Your address is not liked source for email
[MAIL_FROM]
--- Below this line is a copy of the message.
请问这是怎么回事
《新技能get: 订阅Linux内核邮件列表》 发表时间:2015-06-22 00:54
@wowo:@蜗蜗:
1 应该是醒来了,boot cpu sleep时,停在了cpu的power collapse(这个不大清楚究竟有什么特别的)。resume时,可以获知reason,前后间隔时间有10s。
2 电流表50ms采样一次,精度应该是够的。
《Linux时间子系统之(十四):tick broadcast framework》 发表时间:2015-06-19 15:47
@xie1230:我们需要先理解一点:DTS文件描述的是platform bus上的platform设备。
这也是为什么linux kernel of模块只会帮忙解析DTS中第2级别(例如i2c controller)的节点,因为只有这一级别的节点才是根正苗红的platform device。
然后再回到i2c bus下面的设备,它已经不是platform设备了(虽然很多driver也会为其创建platform设备),因此,kernel of模块就不会帮忙解析。那么谁解析呢?i2c bus driver。这就是为什么i2c设备的DTS node放到了i2c controller下面,也因此就没有i2c bus number的困扰了。
最后,i2c device设备的DTS node,本质上也是DTS node,只要能拿到它的句柄,一样可以通过of接口解析其中的properties。
《Device Tree(二):基本概念》 发表时间:2015-06-19 12:40
共7908条616/791上一页 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 616617 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 788 789 790 791 下一页
功能
最新评论
- pdzhu
@ctwillson:state=4294967295为-1... - linuxer
@白璐:有兴趣可以聊一聊,OPPO内核优化team需要的是对... - ylsislove
感谢大佬的文章 - xing
@王:牛逼 - 白璐
@linuxer:学长 还要人吗 - muto
终于看到更新了,赞 +1
文章分类
随机文章
文章存档
- 2024年2月(1)
- 2023年5月(1)
- 2022年10月(1)
- 2022年8月(1)
- 2022年6月(1)
- 2022年5月(1)
- 2022年4月(2)
- 2022年2月(2)
- 2021年12月(1)
- 2021年11月(5)
- 2021年7月(1)
- 2021年6月(1)
- 2021年5月(3)
- 2020年3月(3)
- 2020年2月(2)
- 2020年1月(3)
- 2019年12月(3)
- 2019年5月(4)
- 2019年3月(1)
- 2019年1月(3)
- 2018年12月(2)
- 2018年11月(1)
- 2018年10月(2)
- 2018年8月(1)
- 2018年6月(1)
- 2018年5月(1)
- 2018年4月(7)
- 2018年2月(4)
- 2018年1月(5)
- 2017年12月(2)
- 2017年11月(2)
- 2017年10月(1)
- 2017年9月(5)
- 2017年8月(4)
- 2017年7月(4)
- 2017年6月(3)
- 2017年5月(3)
- 2017年4月(1)
- 2017年3月(8)
- 2017年2月(6)
- 2017年1月(5)
- 2016年12月(6)
- 2016年11月(11)
- 2016年10月(9)
- 2016年9月(6)
- 2016年8月(9)
- 2016年7月(5)
- 2016年6月(8)
- 2016年5月(8)
- 2016年4月(7)
- 2016年3月(5)
- 2016年2月(5)
- 2016年1月(6)
- 2015年12月(6)
- 2015年11月(9)
- 2015年10月(9)
- 2015年9月(4)
- 2015年8月(3)
- 2015年7月(7)
- 2015年6月(3)
- 2015年5月(6)
- 2015年4月(9)
- 2015年3月(9)
- 2015年2月(6)
- 2015年1月(6)
- 2014年12月(17)
- 2014年11月(8)
- 2014年10月(9)
- 2014年9月(7)
- 2014年8月(12)
- 2014年7月(6)
- 2014年6月(6)
- 2014年5月(9)
- 2014年4月(9)
- 2014年3月(7)
- 2014年2月(3)
- 2014年1月(4)