I have restructured the source code tree for MAXI09OS. Source files are now grouped in directories, with a directory for drivers, another one for the core of the OS, etc. The assembly source files are no longer stuck in a single directory. The makefiles are, by necessity, a little more complex as a result. After toying with using make in a recursive (PDF) fashion, I’ve instead settled on using include files which enumerate the build files.
One other improvement is that the source for the 256 byte boot loader, described previously, has been folded into the main MAXI09OS repo, along with the flasher tool for transferring new ROM images to the MAXI09 board.
All in all, it’s a neater setup even if it is a little over engineered. I learned a bit more about make writing it as well. There’s a few further improvements I could make if I wanted to, like a better header dependancy system then simply having a full rebuild whenever one of the headers is changed, but since a full rebuild takes only seconds it’s probably pointless.
Back in the OS code itself, I have been improving my monitor by folding it into the OS as a kind of debug task. Commands are now words instead of a single letter. So “dump” instead of “d”. Much nicer. The “command table” is handled through a generic subroutine, so other environments, like the Shell, can use the same mechanism.
While in use, the monitor task is the only one which will be scheduled. It is entered by hitting return on whatever IO device it is running on, which is usually a UART port. Interrupts are still enabled, but a flag variable is incremented that causes the scheduler, when it runs under the main ticker interrupt, to always return causing the same task to run each time. In this state the monitor will see a mostly static system. This is the same mechanism (forbid()/permit()) used when a task needs to be the only task running in the system.
I’ve added a command that shows memory stats, and the tasks in the system, or just the information about a specific task as this screenshot shows:
The “Largest” value from the memory command warrants some elaboration. This is the size of the largest free memory block. Since the simple linked list approach to the memory management lacks a mechanism to coalesce free blocks, it is very prone to memory fragmentation. The Largest value is the size of the biggest free memory block, which might well be considerably less then the total free memory. Actually after coalescing adjacent free blocks, free memory could still be fragmented.
I’ve also been working on making the monitor useful for exercising device drivers directly, without the need to write a specific test program.
With the sysopen command, it is possible to set the A register (which is usually the unit number) as well as the B register, which is used to set the baud rate in the UART driver but is otherwise not specifically assigned to a particular purpose.
The main motivation for doing this was to make it easier to write a driver for the IDE interface.
The IDE driver is for sector level access to the attached disk; the filesystem layer, described later, sits on top of it.
The same driver mechanism, and subroutines (sysopen, sysread, etc) are used for the IDE driver, except that in the case of sysread additional registers are used since the read is a sector read and not a byte read.
The following registers are used, in both sysread and syswrite:
- X: the device handle, as usual
- Y: the memory address to write to (sysread) or read from (syswrite)
- U: the sector number (LBA) to start from
- A: the count of sectors to read or write
Currently no interrupts are used so the IO operations busy-wait until the device is ready to send (or receive) the data. There are obstacles in MAXI09OS to doing this which I’ll write about later. In reality this would only really matter if MAXI09 was ever attached to a very slow, old, hard disk. Whilst a CompactFlash is used the interrupt would fire, most likely, only a few iterations into the polling loop. Such is the speed of the MPU in MAXI09 retaliative to what a CF would more usually be attached too. All that said, getting interrupts working with the IDE interface would be nice.
I’m also using syscontrol for a few things (more will come later):
- IDECTRL_IDENTIFY – 0: perform an identify command on the drive and fill out the 512 byte sector of information referenced by the Y register
- IDECTRL_READ_MBR – 1: read sector 0 into device handle memory and copy partition information into a system table
The partition table, which is a section of 4 lots of 16 bytes within the MBR sector, contains start and length sector information about each partition, as well as other non pertinent data. The syscontrol action reads this in and uses it as sector offsets when doing IO on a partition. Currently no info about the partition table is returned with the syscontrol call. I will probably change this at some point so the user could view the table etc.
Inside the sysopen call partitions map nicely to units, with unit 0 being used to access the entire disk. The partition table information is used to calculate an offset for each partition / unit. At present, the lengths of each partition is not enforced and accesses for the first partition could overlap into the second, etc. This would be trivial to honour I’d I wanted to write some extra code.
This screenshot shows the monitor being used to open the IDE device and issue the IDENTITY command. The first 128 bytes of the resultant sector are dumped out, showing the vendor and model:
- Open the entire disk
- Read the MBR
- Close the entire disk
- Open partition 1
- Read in the Minix superblock (2 sectors) into memory location 0x4000
- Dump out the first 128 bytes of the superblock
(The way I worked out that this was a MinixFS superblock was to spot the 0x8f13 sequence at offset 0x10. This is the magic number sequence for a Minix filesystem with 30 character file names, byte swapped since the format on disk is little-endian.)After implementing the low level IDE layer (and MBR reading) the next task was to write routines for dealing with the filesystem layer.
For anyone interested in the guts of this ancient filesystem I suggest you read this overview, as well as this look at some of the data structures. Needless to say, MinixFS version 1 and 2 are about the simplest form of UNIX filesystem, all the more interesting (for me and this project) because the important structure fields are 16 bits wide.
The functionality nicely splits in two modules:
This wraps a mounted Minix filesystem handle.
It contains code to parse the superblock structure (including lots of little to big endian swaps), and a routine to read a arbitrary 1KB FS block which calls to the underlying device ie. the IDE layer to do the reading at the calculated physical offset. This routine uses a block offset calculated when the filesystem is mounted (of course, the underlying IDE layer will apply its own partition-based offset) The filesystem-layer offset calculation uses fields from the superblock, which includes fields which indicate the number of blocks used for the inode and data zone bitmaps.
There’s also a routine to read in an arbitrary inode. This uses a simple cache; the last disk block of inodes read in. If the requested inode has already been read in then there won’t be any disk access.
An interesting aspect of this module is that it is possible to have multiple mounted file systems in the system at the same time. However to keep things simple the init task is responsible for mounting a system-wide root filesystem.
Also since an open “low level” device handle is the thing which is mounted, in theory the code written supports the adding of other block devices sitting under the filesystem code, say a SCSI disk attached to a controller.
Those good things said, I have not attempted to implement a VFS-type layer in MAXI09OS. Only Minix FS volumes can be mounted and the subroutine is called “mountminix”. I did toy with writing more abstractions that would allow, hypothetically, the writing of a FAT16 layer without changing any user level code but in the end I concluded it would add yet more complexity and time and not really teach me anything useful.
This wraps an open “file”, and presents the same entry points for an open file as the other drivers in the system, with the addition of a new sysseek call to move the file pointer around the file. It also contains other routines, for things like stat-ing a file by its filename.
The basic “thing which is opened” is a file referenced by its inode number. sysopen is called with X pointing to “minix”, Y pointed at a mounted filesystem superblock handle obtained with mountminix, and U with the inode number. As usual the device/file handle is returned in X.
These handles are used for all types of “files”. Opening one principally consists of locating and reading in its inode. This inode includes the “data zones” (block numbers) for the entry’s data. For directories this data consists of an array of 32 byte directory entries AKA dirents. The structure of a dirent is trivial:
- 2 byte inode number
- 30 byte (max) null-padded filename
Thus to open a file by it’s filename the first thing to do is to open the directory the file is in. We have to start somewhere, and what we start with is the root directory inode, which in Minix is always inode 1. (Inode 0 is reserved.)
The dirent array is iterated through, possibly by reading in additional data zone (filesystem blocks) if the directory contains more entries then would fit in a single filesystem block.
If a match of filename is found, the inode number for the file becomes known and its inode structure can be read from disk. The content – data zones – of the file can then be read in using the data zone pointers.
The following screenshot shows the monitor to be used to:
- Open the IDE disk.
- Read the partition table.
- Close the IDE disk.
- Open partition 1.
- Mount the MinixFS.
- Open inode 1, the root directory.
- Read in the first few dirents and dump them out.
As well as simple linear reading through a file it is also possible to seek to an arbitrary byte position, and continue reading from there.
The last thing I have been working on is the command-line Shell. Currently it is very, very basic. You can perform the following operations:
- Change directory to a named directory (cd)
- List the current directory (list)
- List in long form the current directory (list -l)
- Output files by name (type)
These are internal commands, effectively subroutines in the ROM. But external commands should be perfectly possible too. Since I can now read from a filesystem, if the user enters the filename for a command that filename will be opened, read into RAM, and jumped too as a subroutine of the Shell process.
The list functionality warrants a little discussion. In a simple listing, it is only necessary to iterate the dirents in a directory. The user cannot tell even wether the entries being listed are files or directories, since those attributes (the file “mode”) are stored in the inode and not with the filenames. List in long form opens each file’s inode and displays the type of the “file” (regular, directory, pipe, device node, etc), along with its files size, user and group etc. Thus list long, on MAXI09 as it is on a real UNIX/Linux, is more expensive then simply listing the names of the files.
I’ve yet to write a routine to output decimal numbers, so all the values for things like file size are still in hex.
The following screenshot shows the Shell being used to wander around the Minix filesystem, listing directories etc:
The Shell is coming along quite nicely. Of course, what’s not shown here is that it is possible to have multiple Shells running at the same time, on the virtual consoles and on the UART ports. There’s a few limitations not shown in the screenshot, like the fact that you can only change directory into a directory in the current directory, not to an arbitrary path.
So MAXI09OS is coming along quite nicely, though you still can’t really “do” anything useful with it yet.
I think I’ll take a break from working on the software side for a while now and switch to working on the hardware:
- There’s the SPI controller VHDL code in DISCo. I can then write a driver for it, and finally some utilities for setting and getting the date and time from the Real Time Clock.
- The Citizen 120D+ printer I bought about a year ago has yet to even be powered on. I could have a go at writing a driver so I can print to it, much like how they can be outputted to the console. This might also prove that I need to implement command redirection.
- I could have a go at finishing the building of an analogue joystick I started a year or so ago, and experimenting with that
- The keyboard controller can generate a reset signal on a particular key combination, but I’ve not even experimented with getting that working yet