This question is inspired from this answer,
what does the bottom half do for a driver that doesn't have actual hardware device?
This question is inspired from this answer,
what does the bottom half do for a driver that doesn't have actual hardware device?
That looks like more of a conceptual division than an actual division, i.e.:
In a driver without an actual device, the "bottom half" does whatever the driver is supposed to do. For example, if it's a RAM disk, it manages blocks of memory.
That answer uses a metaphor to explain device drivers. There isn't necessarily a division of two halves, in which the bottom one controls the hardware.
In any case, the answer could be that that "bottom half" simulates some hardware instead, like a virtual CD-ROM drive or something like that.