| 52 | } |
| 53 | |
| 54 | int flash_prepare_flashing() |
| 55 | { |
| 56 | /* switch to FlexRAM */ |
| 57 | if ( !FTFL.fcnfg.ramrdy ) |
| 58 | { |
| 59 | FTFL.fccob.set_flexram.fcmd = FTFL_FCMD_SET_FLEXRAM; |
| 60 | FTFL.fccob.set_flexram.flexram_function = FTFL_FLEXRAM_RAM; |
| 61 | return (ftfl_submit_cmd()); |
| 62 | } |
| 63 | return (0); |
| 64 | } |
| 65 | |
| 66 | int flash_read_1s_sector( uintptr_t addr, size_t num ) |
| 67 | { |
no test coverage detected
searching dependent graphs…