Skip to content

Internals

Andrea Barisani edited this page Sep 30, 2024 · 110 revisions

Key concepts

  • Go applications built with TamaGo run on bare metal, without any underlying OS. All required support is provided by the Go runtime and driver packages, also written in Go.

  • When hardware initialization is provided (like in the imx6ul package), the compiled binaries can be directly executed by the processor, without any need for a 3rd party bootloader. This completely eliminates any non-Go dependency.

Go distribution changes

  • TamaGo modifications to the original Go distribution are minimal to ease maintainability and potential upstream acceptance.

  • TamaGo support is implemented with a clean separation from other OSes, all modifications are conditional to compilation option GOOS=tamago and do not affect other architectures.

Go runtime changes

Go application limitations

The GOOS=tamago target maintains full language and standard library support, see the following page for all compatibility notes:

Default memory layout

  +----------------------------------+ 0000 0000
  |                                  |
  |                                  |
  |                                  |
  |                                  |
  |                                  |
  +----------------------------------+ runtime.ramStart (default for runtime.vecTableStart)
  |                                  |
  |  EXCEPTION VECTOR TABLE (16 kB)  |
  |                                  |
  +----------------------------------+ runtime.ramStart + 0x4000 (16 kB)
  |                                  |
  |        L1 PAGE TABLE (16 kB)     |
  |                                  |
  +----------------------------------+ runtime.ramStart + 0x8000 (32 kB)
  |                                  |
  |       EXCEPTION STACK (16 kB)    |
  |                                  |
  +----------------------------------+ runtime.ramStart + 0xC000 (48 kB)
  |                                  |
  |       L2 PAGE TABLE (16 kB)      |
  |                                  |
  +----------------------------------+ runtime.ramStart + 0x10000 (64 kB)
  |                                  |
  | .text                            |
  |                                  |
  | .noptrdata                       |
  |                Go application    |
  | .data                            |
  |                                  |
  | .bss                             |
  |                                  |
  | .noptrbss                        |
  |                                  |
  +----------------------------------+
  |                                  |
  |                                  |
  |                                  |
  |                                  |
  |              HEAP                |
  |                                  |
  |                                  |
  |                                  |
  |                                  |
  +----------------------------------+ runtime.g0.stack.lo (runtime.go.stack.hi - 0x10000)
  |                                  |
  |                                  |
  |           STACK (64 kB)          |
  |                                  |
  |                                  |
  +----------------------------------+ runtime.go.stack.hi (runtime.ramStart + runtime.ramSize - runtime.ramStackOffset)
  |                                  |
  |             UNUSED               |
  |                                  |
  +----------------------------------+ runtime.ramStart + runtime.ramSize
  |                                  |
  |                                  |
  +----------------------------------+ FFFF FFFF

Additionally the imx6ul package uses the 128KB On-Chip RAM (also known as iRAM) for DMA transfers.

The Go runtime is not direcly aware of this memory area, to prevent any GC operation on it and allow its use for DMA transfers with hardware peripherals.

  +----------------------------------+ mem.dmaStart
  |                                  |
  |           DMA BUFFERS            |
  |                                  |
  +----------------------------------+ mem.dmaStart + mem.dmaSize

Board packages and applications are free to override ramStart and ramSize as well as re-initialize DMA buffers if more space is required.

Interrupts (ARM)

On the ARM architecture interrupts are supported with the following helpers:

  • Package gic, which provides a driver for the ARM Generic Interrupt Controller.

  • Function ServiceInterrupts, which allows registration of a gorouting as IRQ handler.

  • Peripheral drivers functions to enable specific controller IRQs as needed, such as NXP ENET Ethernet driver.

The following projects provide an example use of such helpers:

Board support packages

SoC support packages

Applications

External drivers

Clone this wiki locally