xistor 910619de4c fix missing semicolon | 1 year ago | |
---|---|---|
.. | ||
Makefile | 5 years ago | |
Makefile.clang | 2 years ago | |
Makefile.gcc | 2 years ago | |
OLVASSEL.md | 4 years ago | |
README.md | 2 years ago | |
delays.c | 1 year ago | |
delays.h | 5 years ago | |
gpio.h | 5 years ago | |
kernel8.img | 4 years ago | |
link.ld | 5 years ago | |
main.c | 5 years ago | |
mbox.c | 5 years ago | |
mbox.h | 5 years ago | |
sd.c | 4 years ago | |
sd.h | 5 years ago | |
start.S | 3 years ago | |
uart.c | 3 years ago | |
uart.h | 5 years ago |
Let's go back to tutorial 0B for a moment, and add a function to write the SD card. To test it, we'll implement a boot counter. We're going to read a sector into memory (same as in 0B), increase a counter in the sector buffer, then save it back to the SD card. This way every time we reboot this image, the counter should be increased.
For the counter I've choosen the last 4 bytes of the 2nd sector. I did not want to use the first sector, as that could mess up the Master Boot Record and render our card unbootable. Second sector is safer, although if you're using an EFI Partitioning Table (like I do), then the counter could mess up that too. So I've choosen the last 4 bytes of the sector hoping the table is shorter than 508 bytes. If this not the case for you, then change the COUNTER_SECTOR define to point to a surely unused sector on your SD card.
I'd would like to say thanks to @DamianOslebo for thgroughful testing and spotting a bad constant in the command defines.
I've added new commands (CMD_WRITE_SINGLE, CMD_WRITE_MULTI) and new status flags (SR_WRITE_AVAILABLE, INT_WRITE_RDY) to our driver. We'll use them instead of their READ counterparts.
sd_writeblock(buffer,lba,num)
write num blocks (sectors) from the buffer into the SD card starting at sector lba.
We read a block after the bss segment in memory, and increase a counter in it, and save it back to the card. If everything went well, we print the actual counter value on the console.