| d8920513 | 18-Mar-2018 |
Ian Lepore <[email protected]> |
Add the device/chip type to the disk d_descr field, and print more info about the chip including the erase block size at attach time.
Also add myself to the copyrights since at this point svn blame
Add the device/chip type to the disk d_descr field, and print more info about the chip including the erase block size at attach time.
Also add myself to the copyrights since at this point svn blame would point to me as the culprit for much of this.
show more ...
|
| c03ab159 | 18-Mar-2018 |
Ian Lepore <[email protected]> |
Make all internal routines return an int error status, and check the status at all call points. Combine the get_status and wait_for_ready routines, since waiting for ready is the only reason to ever
Make all internal routines return an int error status, and check the status at all call points. Combine the get_status and wait_for_ready routines, since waiting for ready is the only reason to ever get status.
show more ...
|
| 89a895b6 | 18-Mar-2018 |
Ian Lepore <[email protected]> |
Bugfix: wait for writes/erases to complete after starting them, instead of before starting them.
Using the wait-before logic would make sense if there was useful time- consuming work that could be d
Bugfix: wait for writes/erases to complete after starting them, instead of before starting them.
Using the wait-before logic would make sense if there was useful time- consuming work that could be done between the end of one write and the beginning of the next, but it also requires doing the wait-for-ready before reading, because a prior write or erase could still be in progress. Reading is the far more common case, so adding a whole extra bus transaction to check for ready before each read would soak up any small gains that might be had from doing async writes.
show more ...
|