| 120 | |
| 121 | |
| 122 | void ram_check(uintptr_t start) |
| 123 | { |
| 124 | /* |
| 125 | * This is much more of a "Is my DRAM properly configured?" |
| 126 | * test than a "Is my DRAM faulty?" test. Not all bits |
| 127 | * are tested. -Tyson |
| 128 | */ |
| 129 | printk(BIOS_DEBUG, "Testing DRAM at: %08lx\n", start); |
| 130 | if (ram_bitset_nodie(start)) |
| 131 | die("DRAM ERROR"); |
| 132 | printk(BIOS_DEBUG, "Done.\n"); |
| 133 | } |
| 134 | |
| 135 | |
| 136 | int ram_check_nodie(uintptr_t start) |
no test coverage detected