This one is a low end chip (single core, slow, based on the early 2017 specs) aimed at custom, embedded devices where the whole software stack (firmware image) is built from a single Makefile by the vendor.
I have a development board with one of them (only 512MB RAM, I managed to run a web browser on it at one point); I do indeed own too many RISC-V trinkets; this was the second RISC-V board I got.
Allwinner, same situation as their ARM chips (e.g. the A64 used in Pine64 I also own, or the A10 in the Cubieboard I also own). Most upstreaming work is done by linux-sunxi[0] instead of Allwinner themselves, which does not seem to care.
Not great in terms of already upstreamed drivers, which is why it is perceived as a pain. The hardware is also pretty limited, being a design that predates the base 2019 RISC-V specifications. But it can run Linux. The earlier Kendrite K210 (my and many people's first RISC-V chip) can run Linux too, but as an academic exercise. That one only has the builtin 8MB SRAM and its implemented privileged spec predates the first ratified one with significant differences.
Otherwise, standard RISC-V boot flow (i.e. "0" does not apply). In that sense, much better than its ARM counterparts, but you'll want to ensure you have the latest boot firmware in any event, not the early shipped one. This is a fairly early design too, so note the boot specs that were available at the time are far less reaching than what is available today, and were not even ratified yet. Despite this, the firmware has advanced somewhat, alongside the specs.
Runs generic RVA20 gcc compiled code just fine (i.e. "1" does not apply either) because the unprivileged spec ratified in 2019 didn't really chance since 2017. It does also have a pre-1.0 vector extension, which was very useful at the time to play with vector before the final version was available. GCC has support for this extension. Obviously, it is considered a "custom extension", and thus code using it will only work on processors implementing it.
TL;DR: One of the earliest designs, based on specs earlier than 2019, predating any ratified spec. Despite this, it manages to not meet 0 nor 1. Irrespective of all the FUD, RISC-V is doing great.
And, yes, that latest commit at the time was priv spec draft 1.9.1, which is quite different to what eventually got ratified.
For a while people trying to use the K210 thought the MMU was broken but it's not -- it's just an older spec.
Good luck cutting down any modern Linux kernel to boot in 8 MB RAM! Being able to do that might even predate Linux working on anything other than x86.
xv6 works fine though.
Edit: I was a little bit off. Linux 2.0 required 4 MB, recommended 8+, and already worked on Alpha, SPARC, MIPS, PowerPC, ARM, 68k. Linux 2.2 (1999) required 8 MB, recommended 16+.