Kickstart (Amiga)
Kickstart is the bootstrap firmware of the Amiga computers developed by Commodore International. Its purpose is to initialize the Amiga hardware and core components of AmigaOS and then attempt to boot from a bootable volume, such as a floppy disk. Most Amiga models were shipped with the Kickstart firmware stored on ROM chips.
Versions
Commodore's AmigaOS was formed of both the Kickstart firmware and a software component provided on disk. For most AmigaOS updates the Kickstart version number was matched to the Workbench version number. Confusingly, Commodore also used internal revision numbers for Kickstart chips. For example, there were several Kickstart revisions designated as version 2.0.Version summary
The first Amiga model, the A1000, required that Kickstart 1.x be loaded from floppy disk into a 256 KB section of RAM called the writable control store. Some A1000 software titles provided an alternative code-base in order to use the extra 256 KB for data. Later Amiga models had Kickstart embedded in a ROM chip, thus improving boot times. Many Amiga 1000 computers were modified to take these chips.Kickstart was stored in 256 KB ROM chips for releases prior to AmigaOS 2.0. Later releases used 512 KB ROM chips containing additional and improved functionality. The Amiga CD32 featured a 1 MB ROM with additional firmware and an integrated file system for CD-ROM.
Early A3000 models were, like the A1000, also shipped with Kickstart on floppy disk, and used a 1.4 BETA ROM as bootstrap. Either Kickstart 1.3 or 2.0 could be extracted to a partition specifically named WB_1.3 or WB_2.x, respectively, and put in DEVS:kickstart, an absolute system location from where the A3000 system will find it at bootstrap and copy its image into RAM. This early A3000 supported both ROM based Kickstarts and disk-based Kickstarts, although not simultaneously. An A3000 configured to use disk-based Kickstart images had the benefit of being able to boot various versions of AmigaOS without additional tools, simply by selecting the appropriate Kickstart image at boot time.
The Commodore CDTV featured additional firmware ROMs which are not technically part of the Amiga Kickstart. The CDTV's original firmware ROMs must be upgraded in order to install a Kickstart version later than 1.3.
AmigaOS 2.1 was a pure software update and did not require matching Kickstart ROM chips. Workbench 2.1 ran on all Kickstart ROMs of the 2.0x family. Later releases of AmigaOS were also software only and did not include matching ROM upgrades instead requiring Kickstart 3.1, with ROM-file based Kickstart components replacing those in ROM. Kickstart modules of AmigaOS 4 are stored on the boot disk partition.
Up to Kickstart v2.0 only 512-byte blocks were supported.
Motorola 68040 uses write caches that requires the use of the functions CacheClearU and CacheControl to flush cache when program code has been modified. These functions are only available in or better.
Function
[Image:amiga kickstart2 boot screen.png|frame|right|The default boot screen displayed under Kickstart 2.0, requesting that the user insert a boot disk]Upon startup or reset, the Kickstart performs a number of diagnostic and system checks and then initializes the Amiga chipset and some core OS components. It will then check for connected boot devices and attempt to boot from the one with the highest boot priority. If no boot device is present a screen will be displayed asking the user to insert a boot disk – typically a floppy disk.
Insertion of such a bootable disk will result in:
a) a command line interface prompt to operate with ROM-internal and disks commands, or
b) a point and click UI named "Workbench" if the disk contains at least "loadwb" in the "startup-sequence" script residing inside the "s"-folder on this disk.
c) the disk booting into a customized workbench or an application, keeping the OS "alive" in the background.
d) a game or other application directly starting up, taking over all the hardware resources of this computer by avoiding to establish core Exec multitasking, driver initialization etc.
The Kickstart contains many of the core components of the Amiga's operating system, such as:Exec – the Amiga's multi-tasking kernelIntuition – functionality for GUI, screens, windowing and handling of input/output devicesAutoconfig – functionality to automatically initialize or boot from compliant expansion hardware
- Floppy disk device driver and file system to read and boot from floppy disk
- DOS library for file access and handling AmigaDOS – command-line interface functionality and a number of core CLI commands
- Graphics library for basic drawing and raster graphics functions using the native Amiga chipset
- Audio device driver for the native Amiga sound hardware
- Device drivers for the Amiga keyboard and mouse/gameports
From AmigaOS release 2.0 onwards Kickstart also contained device drivers to boot from devices on IDE controllers, support for PC Card ports and various other hardware built into Amiga models.
Diagnostic test
At power-on self-test will run from the ROM, this is a short program that can produce a color on the screen corresponding with a fault.If everything works correctly, the following screen color sequence will be displayed on older Kickstarts:
- Dark grey – Hardware working and the registers are readable.
- Light grey – ROM verified.
- White – Initialization has succeeded and the Amiga is ready to boot.
- '
The keyboard LED uses blink codes that come from the keyboard controller chip where:
- One blink means the keyboard ROM has a checksum error.
- Two blinks means keyboard RAM failure.
- Three blinks means watchdog timer failure.
- When the Caps Lock key is repeatedly pressed approx. 10 times, and the Caps Lock LED is not turning on and off each time it is pressed, the CPU is not reading out key presses and mostly indicate a CPU crash. The CIA-A serial register is used and a CIA interrupt can be used to pickup key presses from the keyboard buffer. If the Caps Lock LED sticks on or off, the CPU is probably not servicing CIA interrupt requests.
Usage
In general, to run a specific Workbench version, it is generally required to run a Kickstart with a corresponding or greater version number.It is not generally possible to boot directly into the Workbench windowing environment from Kickstart alone. Though much of the functionality required for Workbench is contained in Kickstart, as some disk-based components are needed to launch it.
From release 2.0 onwards it is possible to enter a boot menu by holding down both mouse buttons at power on or reset. This allows the user to choose a boot device, set parameters for backwards compatibility and examine Autoconfig hardware.
With third-party software, it is possible to use an alternate Kickstart to the version stored in the embedded ROM chip. Such software allows a Kickstart version to be loaded from file into RAM – for example Kickstart 1.3 may be loaded in order to run old software incompatible with Kickstart 2.0 or later. Several third-party vendors produced hardware Kickstart switchers in the form of socket doublers in order to allow two ROM chips to plug into a single motherboard socket with some mechanism to switch between them. These became popular with users who had problems with later Kickstart versions causing incompatibility with earlier software titles.
An MMU-enabled Amiga is able to "shadow" Kickstart from the embedded ROM chip into RAM and pass control to it at startup. This is often preferable as RAM access times are significantly faster than ROM, particularly on expanded systems. At subsequent resets the copy of Kickstart is reused, reducing boot time and allowing faster access and execution of Kickstart functionality. Similar shadowing functions were also developed for some devices without MMU hardware.