Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
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 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 |
diff --git a/firmware/export/system.h b/firmware/export/system.h index ce6277a..ed10c84 100644 static inline uint32_t swap_odd_even32(uint32_t value) /* Just define these as empty if not declared */ #ifdef HAVE_CPUCACHE_INVALIDATE +void cpucache_commit_discard(void); +/* deprecated alias */ void cpucache_invalidate(void); #else +static inline void cpucache_commit_discard(void) +{ +} +/* deprecated alias */ static inline void cpucache_invalidate(void) { } #endif #ifdef HAVE_CPUCACHE_FLUSH +void cpucache_commit(void); +/* deprecated alias */ void cpucache_flush(void); #else +static inline void cpucache_commit(void) +{ +} +/* deprecated alias */ static inline void cpucache_flush(void) { } diff --git a/firmware/target/arm/mmu-arm.S b/firmware/target/arm/mmu-arm.S index 02f1454..507c6a3 100644 enable_mmu: /** Cache coherency **/ /* - * Invalidate DCache for this range - * will do write back - * void invalidate_dcache_range(const void *base, unsigned int size); + * Write DCache back to RAM for the given range and remove cache lines + * from DCache afterwards + * void commit_discard_dcache_range(const void *base, unsigned int size); */ .section .text, "ax", %progbits .align 2 - .global invalidate_dcache_range - .type invalidate_dcache_range, %function + .global commit_discard_dcache_range + .type commit_discard_dcache_range, %function + .global invalidate_dcache_range @ Alias, deprecated + @ MVA format: 31:5 = Modified virtual address, 4:0 = SBZ +commit_discard_dcache_range: invalidate_dcache_range: add r1, r0, r1 @ size -> end cmp r1, r0 @ end <= start? bxls lr @ bic r0, r0, #31 @ Align start to cache line (down) 1: @ inv_start @ - mcr p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcr p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA add r0, r0, #32 @ cmp r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrhi p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ bhi 1b @ inv_start @ mov r0, #0 @ mcr p15, 0, r0, c7, c10, 4 @ Drain write buffer bx lr @ - .size invalidate_dcache_range, .-invalidate_dcache_range + .size commit_discard_dcache_range, .-commit_discard_dcache_range /* - * clean DCache for this range - * forces DCache writeback for the specified range - * void clean_dcache_range(const void *base, unsigned int size); + * Write DCache back to RAM for the given range + * void commit_dcache_range(const void *base, unsigned int size); */ .section .text, "ax", %progbits .align 2 - .global clean_dcache_range - .type clean_dcache_range, %function + .global commit_dcache_range + .type commit_dcache_range, %function + .global clean_dcache_range @ Alias, deprecated + @ MVA format: 31:5 = Modified virtual address, 4:0 = SBZ +commit_dcache_range: clean_dcache_range: add r1, r0, r1 @ size -> end cmp r1, r0 @ end <= start? bxls lr @ bic r0, r0, #31 @ Align start to cache line (down) 1: @ clean_start @ - mcr p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcr p15, 0, r0, c7, c10, 1 @ commit line by MVA add r0, r0, #32 @ cmp r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c10, 1 @ Clean line by MVA + mcrhi p15, 0, r0, c7, c10, 1 @ commit line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ bhi 1b @clean_start @ mov r0, #0 @ mcr p15, 0, r0, c7, c10, 4 @ Drain write buffer bx lr @ - .size clean_dcache_range, .-clean_dcache_range + .size commit_dcache_range, .-commit_dcache_range /* - * Dump DCache for this range + * Remove cache lines for the given range from DCache * will *NOT* do write back except for buffer edges not on a line boundary - * void dump_dcache_range(const void *base, unsigned int size); + * void discard_dcache_range(const void *base, unsigned int size); */ .section .text, "ax", %progbits .align 2 - .global dump_dcache_range - .type dump_dcache_range, %function + .global discard_dcache_range + .type discard_dcache_range, %function + .global dump_dcache_range @ Alias, deprecated + @ MVA format: 31:5 = Modified virtual address, 4:0 = SBZ - dump_dcache_range: +discard_dcache_range: +dump_dcache_range: add r1, r0, r1 @ size -> end cmp r1, r0 @ end <= start? bxls lr @ tst r0, #31 @ Check first line for bits set bicne r0, r0, #31 @ Clear low five bits (down) - mcrne p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrne p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA @ if not cache aligned addne r0, r0, #32 @ Move to the next cache line @ tst r1, #31 @ Check last line for bits set bicne r1, r1, #31 @ Clear low five bits (down) - mcrne p15, 0, r1, c7, c14, 1 @ Clean and invalidate line by MVA + mcrne p15, 0, r1, c7, c14, 1 @ commit and discard line by MVA @ if not cache aligned cmp r1, r0 @ end <= start now? -1: @ dump_start @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA +1: @ discard_start @ + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - mcrhi p15, 0, r0, c7, c6, 1 @ Invalidate line by MVA + mcrhi p15, 0, r0, c7, c6, 1 @ discard line by MVA addhi r0, r0, #32 @ cmphi r1, r0 @ - bhi 1b @ dump_start @ + bhi 1b @ discard_start @ mov r0, #0 @ mcr p15, 0, r0, c7, c10, 4 @ Drain write buffer bx lr @ - .size dump_dcache_range, .-dump_dcache_range + .size discard_dcache_range, .-discard_dcache_range /* - * Cleans entire DCache - * void clean_dcache(void); + * Write entire DCache back to RAM + * void commit_dcache(void); */ .section .text, "ax", %progbits .align 2 - .global clean_dcache - .type clean_dcache, %function - .global cpucache_flush @ Alias + .global commit_dcache + .type commit_dcache, %function + .global cpucache_commit @ Alias + .global clean_dcache @ Alias, deprecated + .global cpucache_flush @ Alias, deprecated + +commit_dcache: +cpucache_commit: clean_dcache: cpucache_flush: #ifdef HAVE_TEST_AND_CLEAN_CACHE mrc p15, 0, r15, c7, c10, 3 @ test and clean dcache - bne clean_dcache + bne commit_dcache mov r1, #0 #else mov r1, #0x00000000 @ -1: @ clean_start @ - mcr p15, 0, r1, c7, c10, 2 @ Clean entry by index +1: @ commit_start @ + mcr p15, 0, r1, c7, c10, 2 @ commit entry by index add r0, r1, #(1<<CACHEALIGN_BITS) - mcr p15, 0, r0, c7, c10, 2 @ Clean entry by index + mcr p15, 0, r0, c7, c10, 2 @ commit entry by index .rept INDEX_STEPS - 2 /* 2 steps already executed */ add r0, r0, #(1<<CACHEALIGN_BITS) - mcr p15, 0, r0, c7, c10, 2 @ Clean entry by index + mcr p15, 0, r0, c7, c10, 2 @ commit entry by index .endr adds r1, r1, #0x04000000 @ will wrap to zero at loop end - bne 1b @ clean_start @ + bne 1b @ commit_start @ #endif /* HAVE_TEST_AND_CLEAN_CACHE */ mcr p15, 0, r1, c7, c10, 4 @ Drain write buffer bx lr @ - .size clean_dcache, .-clean_dcache + .size commit_dcache, .-commit_dcache /* - * Invalidate entire DCache - * will do writeback - * void invalidate_dcache(void); + * Commit and discard entire DCache, will do writeback + * void commit_discard_dcache(void); */ .section .icode, "ax", %progbits .align 2 - .global invalidate_dcache - .type invalidate_dcache, %function + .global commit_discard_dcache + .type commit_discard_dcache, %function + .global invalidate_dcache @ Alias, deprecated + +commit_discard_dcache: invalidate_dcache: #ifdef HAVE_TEST_AND_CLEAN_CACHE - mrc p15, 0, r15, c7, c14, 3 @ test, clean and invalidate dcache - bne invalidate_dcache + mrc p15, 0, r15, c7, c14, 3 @ test, commit and discard dcache + bne commit_discard_dcache mov r1, #0 #else mov r1, #0x00000000 @ 1: @ inv_start @ - mcr p15, 0, r1, c7, c14, 2 @ Clean and invalidate entry by index + mcr p15, 0, r1, c7, c14, 2 @ commit and discard entry by index add r0, r1, #(1<<CACHEALIGN_BITS) - mcr p15, 0, r0, c7, c14, 2 @ Clean and invalidate entry by index + mcr p15, 0, r0, c7, c14, 2 @ commit and discard entry by index .rept INDEX_STEPS - 2 /* 2 steps already executed */ add r0, r0, #(1<<CACHEALIGN_BITS) - mcr p15, 0, r0, c7, c14, 2 @ Clean and invalidate entry by index + mcr p15, 0, r0, c7, c14, 2 @ commit and discard entry by index .endr adds r1, r1, #0x04000000 @ will wrap to zero at loop end bne 1b @ inv_start @ #endif /* HAVE_TEST_AND_CLEAN_CACHE */ mcr p15, 0, r1, c7, c10, 4 @ Drain write buffer bx lr @ - .size invalidate_dcache, .-invalidate_dcache + .size commit_discard_dcache, .-commit_discard_dcache /* - * Invalidate entire ICache and DCache - * will do writeback - * void invalidate_idcache(void); + * Discards the entire ICache, and commit+discards the entire DCache + * void commit_discard_idcache(void); */ .section .icode, "ax", %progbits .align 2 - .global invalidate_idcache - .type invalidate_idcache, %function - .global cpucache_invalidate @ Alias + .global commit_discard_idcache + .type commit_discard_idcache, %function + .global cpucache_commit_discard @ Alias + .global invalidate_idcache @ Alias, deprecated + .global cpucache_invalidate @ Alias, deprecated + +commit_discard_idcache: +cpucache_commit_discard: invalidate_idcache: cpucache_invalidate: mov r2, lr @ save lr to r1, call uses r0 only - bl invalidate_dcache @ Clean and invalidate entire DCache + bl commit_discard_dcache @ commit and discard entire DCache mcr p15, 0, r1, c7, c5, 0 @ Invalidate ICache (r1=0 from call) bx r2 - .size invalidate_idcache, .-invalidate_idcache + .size commit_discard_idcache, .-commit_discard_idcache diff --git a/firmware/target/arm/mmu-arm.h b/firmware/target/arm/mmu-arm.h index 1cf1f68..cc969fd 100644 void ttb_init(void); void enable_mmu(void); void map_section(unsigned int pa, unsigned int va, int mb, int flags); -/* Cleans entire DCache */ +/* Commits entire DCache */ +void commit_dcache(void); +/* deprecated alias */ void clean_dcache(void); -/* Invalidate entire DCache */ -/* will do writeback */ +/* Commit and discard entire DCache, will do writeback */ +void commit_discard_dcache(void); +/* deprecated alias */ void invalidate_dcache(void); -/* Invalidate DCache for this range */ -/* will do writeback */ +/* Write DCache back to RAM for the given range and remove cache lines + * from DCache afterwards */ +void commit_discard_dcache_range(const void *base, unsigned int size); +/* deprecated alias */ void invalidate_dcache_range(const void *base, unsigned int size); -/* clean DCache for this range */ -/* forces DCache writeback for the specified range */ +/* Write DCache back to RAM for the given range */ +void commit_dcache_range(const void *base, unsigned int size); +/* deprecated alias */ void clean_dcache_range(const void *base, unsigned int size); -/* Dump DCache for this range */ -/* Will *NOT* do write back except for buffer ends not on a line boundary */ +/* + * Remove cache lines for the given range from DCache + * will *NOT* do write back except for buffer edges not on a line boundary + */ +void discard_dcache_range(const void *base, unsigned int size); +/* deprecated alias */ void dump_dcache_range(const void *base, unsigned int size); -/* Invalidate entire ICache and DCache */ -/* will do writeback */ +/* Discards the entire ICache, and commit+discards the entire DCache */ +void commit_discard_idcache(void); +/* deprecated alias */ void invalidate_idcache(void); +#define HAVE_CPUCACHE_COMMIT_DISCARD +#define HAVE_CPUCACHE_COMMIT +/* deprecated alias */ #define HAVE_CPUCACHE_INVALIDATE #define HAVE_CPUCACHE_FLUSH diff --git a/firmware/target/arm/mmu-armv6.S b/firmware/target/arm/mmu-armv6.S index 58e03d6..62b1c75 100644 #if 0 /* unused */ /* - * Invalidate DCache for this range - * will do write back - * void invalidate_dcache_range(const void *base, unsigned int size) + * Write DCache back to RAM for the given range and remove cache lines + * from DCache afterwards + * void commit_discard_dcache_range(const void *base, unsigned int size); */ .section .text, "ax", %progbits .align 2 - .global invalidate_dcache_range - .type invalidate_dcache_range, %function - @ MVA format: 31:5 = Modified virtual address, 4:0 = Ignored + .global commit_discard_dcache_range + .type commit_discard_dcache_range, %function + .global invalidate_dcache_range @ Alias, deprecated + + @ MVA format: 31:5 = Modified virtual address, 4:0 = SBZ +commit_discard_dcache_range: invalidate_dcache_range: add r1, r0, r1 @ size -> end cmp r1, r0 @ end <= start? subhi r1, r1, #1 @ round it down movhi r2, #0 @ - mcrrhi p15, 0, r1, r0, c14 @ Clean and invalidate DCache range + mcrrhi p15, 0, r1, r0, c14 @ commit and discard DCache range mcrhi p15, 0, r2, c7, c10, 4 @ Data synchronization barrier bx lr @ - .size invalidate_dcache_range, .-invalidate_dcache_range + .size commit_discard_dcache_range, .-commit_discard_dcache_range #endif /* unused function */ /* - * clean DCache for this range - * forces DCache writeback for the specified range - * void clean_dcache_range(const void *base, unsigned int size); + * Write DCache back to RAM for the given range + * void commit_dcache_range(const void *base, unsigned int size); */ .section .text, "ax", %progbits .align 2 - .global clean_dcache_range - .type clean_dcache_range, %function - @ MVA format: 31:5 = Modified virtual address, 4:0 = Ignored + .global commit_dcache_range + .type commit_dcache_range, %function + .global clean_dcache_range @ Alias, deprecated + + @ MVA format: 31:5 = Modified virtual address, 4:0 = SBZ +commit_dcache_range: clean_dcache_range: add r1, r0, r1 @ size -> end cmp r1, r0 @ end <= start? clean_dcache_range: mcrrhi p15, 0, r1, r0, c12 @ Clean DCache range mcrhi p15, 0, r2, c7, c10, 4 @ Data synchronization barrier bx lr @ - .size clean_dcache_range, .-clean_dcache_range + .size commit_dcache_range, .-commit_dcache_range /* - * Dump DCache for this range + * Remove cache lines for the given range from DCache * will *NOT* do write back except for buffer edges not on a line boundary - * void dump_dcache_range(const void *base, unsigned int size); + * void discard_dcache_range(const void *base, unsigned int size); */ .section .text, "ax", %progbits .align 2 - .global dump_dcache_range - .type dump_dcache_range, %function - @ MVA format (mcr): 31:5 = Modified virtual address, 4:0 = SBZ - @ MVA format (mcrr): 31:5 = Modified virtual address, 4:0 = Ignored - dump_dcache_range: + .global discard_dcache_range + .type discard_dcache_range, %function + .global dump_dcache_range @ Alias, deprecated + + @ MVA format: 31:5 = Modified virtual address, 4:0 = SBZ +discard_dcache_range: +dump_dcache_range: add r1, r0, r1 @ size -> end cmp r1, r0 @ end <= start? bxls lr @ tst r0, #31 @ Check first line for bits set bicne r0, r0, #31 @ Clear low five bits (down) - mcrne p15, 0, r0, c7, c14, 1 @ Clean and invalidate line by MVA + mcrne p15, 0, r0, c7, c14, 1 @ commit and discard line by MVA @ if not cache aligned addne r0, r0, #32 @ Move to the next cache line @ tst r1, #31 @ Check last line for bits set bicne r1, r1, #31 @ Clear low five bits (down) - mcrne p15, 0, r1, c7, c14, 1 @ Clean and invalidate line by MVA + mcrne p15, 0, r1, c7, c14, 1 @ commit and discard line by MVA @ if not cache aligned sub r1, r1, #32 @ Move to the previous cache line cmp r1, r0 @ end < start now? clean_dcache_range: mov r0, #0 @ mcr p15, 0, r0, c7, c10, 4 @ Data synchronization barrier bx lr @ - .size dump_dcache_range, .-dump_dcache_range + .size discard_dcache_range, .-discard_dcache_range /* - * Cleans entire DCache - * void clean_dcache(void); + * Write entire DCache back to RAM + * void commit_dcache(void); */ .section .text, "ax", %progbits .align 2 - .global clean_dcache - .type clean_dcache, %function - .global cpucache_flush @ Alias + .global commit_dcache + .type commit_dcache, %function + .global cpucache_commit @ Alias + .global clean_dcache @ Alias, deprecated + .global cpucache_flush @ Alias, deprecated + +commit_dcache: +cpucache_commit: clean_dcache: cpucache_flush: mov r0, #0 @ mcr p15, 0, r0, c7, c10, 0 @ Clean entire DCache mcr p15, 0, r0, c7, c10, 4 @ Data synchronization barrier bx lr @ - .size clean_dcache, .-clean_dcache + .size commit_dcache, .-commit_dcache /* - * Invalidate entire DCache - * will do writeback - * void invalidate_dcache(void); + * Commit and discard entire DCache, will do writeback + * void commit_discard_dcache(void); */ - .section .text, "ax", %progbits + .section .icode, "ax", %progbits .align 2 - .global invalidate_dcache - .type invalidate_dcache, %function + .global commit_discard_dcache + .type commit_discard_dcache, %function + .global invalidate_dcache @ Alias, deprecated + +commit_discard_dcache: invalidate_dcache: mov r0, #0 @ - mcr p15, 0, r0, c7, c14, 0 @ Clean and invalidate entire DCache + mcr p15, 0, r0, c7, c14, 0 @ commit and discard entire DCache mcr p15, 0, r0, c7, c10, 4 @ Data synchronization barrier bx lr @ - .size invalidate_dcache, .-invalidate_dcache + .size commit_discard_dcache, .-commit_discard_dcache + /* - * Invalidate entire ICache and DCache - * will do writeback - * void invalidate_idcache(void); + * Discards the entire ICache, and commit+discards the entire DCache + * void commit_discard_idcache(void); */ .section .icode, "ax", %progbits .align 2 - .global invalidate_idcache - .type invalidate_idcache, %function - .global cpucache_invalidate @ Alias + .global commit_discard_idcache + .type commit_discard_idcache, %function + .global cpucache_commit_discard @ Alias + .global invalidate_idcache @ Alias, deprecated + .global cpucache_invalidate @ Alias, deprecated + +commit_discard_idcache: invalidate_idcache: cpucache_invalidate: mov r0, #0 @ - mcr p15, 0, r0, c7, c14, 0 @ Clean and invalidate entire DCache - mcr p15, 0, r0, c7, c5, 0 @ Invalidate entire ICache + mcr p15, 0, r0, c7, c14, 0 @ commit and discard entire DCache + mcr p15, 0, r0, c7, c5, 0 @ discard entire ICache @ Also flushes the branch target cache mcr p15, 0, r0, c7, c10, 4 @ Data synchronization barrier mcr p15, 0, r0, c7, c5, 4 @ Flush prefetch buffer (IMB) bx lr @ - .size invalidate_idcache, .-invalidate_idcache + .size commit_discard_idcache, .-commit_discard_idcache diff --git a/firmware/target/arm/system-pp5002.c b/firmware/target/arm/system-pp5002.c index 7464411..e45f42a 100644 void __attribute__((interrupt("IRQ"))) irq_handler(void) some other CPU frequency scaling. */ #ifndef BOOTLOADER -void ICODE_ATTR __attribute__((naked)) cpucache_flush(void) +void ICODE_ATTR __attribute__((naked)) cpucache_commit(void) { asm volatile( "mov r0, #0xf0000000 \n" void ICODE_ATTR __attribute__((naked)) cpucache_flush(void) "add r1, r0, #0x2000 \n" /* r1 = CACHE_FLUSH_BASE + CACHE_SIZE */ "mov r2, #0 \n" "1: \n" - "str r2, [r0], #16 \n" /* Flush */ + "str r2, [r0], #16 \n" /* Commit */ "cmp r0, r1 \n" "blo 1b \n" "bx lr \n" ); } +void cpucache_flush(void) __attribute__((weak, alias("cpucache_commit"))); -void ICODE_ATTR __attribute__((naked)) cpucache_invalidate(void) +void ICODE_ATTR __attribute__((naked)) cpucache_commit_discard(void) { asm volatile( "mov r0, #0xf0000000 \n" void ICODE_ATTR __attribute__((naked)) cpucache_invalidate(void) "add r1, r0, #0x2000 \n" /* r2 = CACHE_FLUSH_BASE + CACHE_SIZE */ "mov r3, #0 \n" "1: \n" - "str r3, [r0], #16 \n" /* Flush */ - "str r3, [r2], #16 \n" /* Invalidate */ + "str r3, [r0], #16 \n" /* Commit */ + "str r3, [r2], #16 \n" /* Discard */ "cmp r0, r1 \n" "blo 1b \n" "bx lr \n" ); } +void cpucache_invalidate(void) __attribute__((weak, alias("cpucache_commit_discard"))); static void ipod_init_cache(void) { diff --git a/firmware/target/arm/system-target.h b/firmware/target/arm/system-target.h index c7503d7..1e573be 100644 static inline void wake_core(int core) /** cache functions **/ #ifndef BOOTLOADER +#define HAVE_CPUCACHE_COMMIT_DISCARD +#define HAVE_CPUCACHE_COMMIT +/* deprecated alias */ #define HAVE_CPUCACHE_INVALIDATE #define HAVE_CPUCACHE_FLUSH #endif diff --git a/firmware/target/coldfire/system-coldfire.c b/firmware/target/coldfire/system-coldfire.c index 75440a2..0ccac0a 100644 void coldfire_set_dataincontrol(unsigned long value) restore_irq(level); } -void cpucache_invalidate(void) +void cpucache_commit_discard(void) { asm volatile ("move.l #0x01000000,%d0\n" "movec.l %d0,%cacr\n" "move.l #0x80000000,%d0\n" "movec.l %d0,%cacr"); } + +void cpucache_invalidate(void) __attribute__((weak, alias("cpucache_commit_discard"))); diff --git a/firmware/target/coldfire/system-target.h b/firmware/target/coldfire/system-target.h index 347d8e1..2de8fd0 100644 static inline uint32_t swap_odd_even32(uint32_t value) return value; } +#define HAVE_CPUCACHE_COMMIT_DISCARD +/* deprecated alias */ #define HAVE_CPUCACHE_INVALIDATE #define DEFAULT_PLLCR_AUDIO_BITS 0x10400000 |