Difference between revisions of "Unit BCM2836"

From Ultibo.org
Jump to: navigation, search
Line 4,811: Line 4,811:
 
----
 
----
  
''To be documented''
+
 
 +
'''BCM2836 interrupt controller registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836InterruptRegisters = ^TBCM2836InterruptRegisters;</code>
 +
 
 +
<code>TBCM2836InterruptRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Interrupt Controller registers (See 7.5)
 +
|-
 +
| <code>IRQ_basic_pending:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>IRQ_pending_1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>IRQ_pending_2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>FIQ_control:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Enable_IRQs_1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Enable_IRQs_2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Enable_Basic_IRQs:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Disable_IRQs_1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Disable_IRQs_2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Disable_Basic_IRQs:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 system timer registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836SystemTimerRegisters = ^TBCM2836SystemTimerRegisters;</code>
 +
 
 +
<code>TBCM2836SystemTimerRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 System Timer registers (See 12.1)
 +
|-
 +
| <code>CS:LongWord;</code>
 +
| System Timer Control/Status
 +
|-
 +
| <code>CLO:LongWord;</code>
 +
| System Timer Counter Lower 32 bits
 +
|-
 +
| <code>CHI:LongWord;</code>
 +
| System Timer Counter Higher 32 bits
 +
|-
 +
| <code>C0:LongWord;</code>
 +
| System Timer Compare 0. Already used by the VideoCore GPU (Do not use)
 +
|-
 +
| <code>C1:LongWord;</code>
 +
| System Timer Compare 1
 +
|-
 +
| <code>C2:LongWord;</code>
 +
| System Timer Compare 2. Already used by the VideoCore GPU (Do not use)
 +
|-
 +
| <code>C3:LongWord;</code>
 +
| System Timer Compare 3
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 DMA channel registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836DMARegisters = ^TBCM2836DMARegisters;</code>
 +
 
 +
<code>TBCM2836DMARegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 DMA Channel registers (See 4.2.1.2)
 +
|-
 +
| <code>CS:LongWord;</code>
 +
| DMA Channel Control and Status
 +
|-
 +
| <code>CONBLK_AD:LongWord;</code>
 +
| DMA Channel Control Block Address
 +
|-
 +
| <code>TI:LongWord;</code>
 +
| DMA Channel CB Word 0 (Transfer Information)
 +
|-
 +
| <code>SOURCE_AD:LongWord;</code>
 +
| DMA Channel CB Word 1 (Source Address)
 +
|-
 +
| <code>DEST_AD:LongWord;</code>
 +
| DMA Channel CB Word 2 (Destination Address)
 +
|-
 +
| <code>TXFR_LEN:LongWord;</code>
 +
| DMA Channel CB Word 3 (Transfer Length)
 +
|-
 +
| <code>STRIDE:LongWord;</code>
 +
| DMA Channel CB Word 4 (2D Stride)
 +
|-
 +
| <code>NEXTCONBK:LongWord;</code>
 +
| DMA Channel CB Word 5 (Next CB Address)
 +
|-
 +
| <code>DEBUG:LongWord;</code>
 +
| DMA Channel Debug
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 DMA control block structure'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836DMAControlBlock = ^TBCM2836DMAControlBlock;</code>
 +
 
 +
<code>TBCM2836DMAControlBlock = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of BCM2836 DMA Control Block structure (See 4.2.1.1) Must be 32byte (256bit) aligned
 +
|-
 +
| <code>TransferInformation:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>SourceAddress:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>DestinationAddress:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>TransferLength:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>ModeStide:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>NextControlBlockAddress:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 BSC (I2C0/1/2) registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836BSCRegisters = ^TBCM2836BSCRegisters;</code>
 +
 
 +
<code>TBCM2836BSCRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 BSC (I2C0/1/2) registers (See 3.2)
 +
|-
 +
| <code>C:LongWord;</code>
 +
| Control
 +
|-
 +
| <code>S:LongWord;</code>
 +
| Status
 +
|-
 +
| <code>DLEN:LongWord;</code>
 +
| Data Length
 +
|-
 +
| <code>A:LongWord;</code>
 +
| Slave Address
 +
|-
 +
| <code>FIFO:LongWord;</code>
 +
| Data FIFO
 +
|-
 +
| <code>CDIV:LongWord;</code>
 +
| Clock Divider
 +
|-
 +
| <code>DEL:LongWord;</code>
 +
| Data Delay
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 SPI0 registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836SPI0Registers = ^TBCM2836SPI0Registers;</code>
 +
 
 +
<code>TBCM2836SPI0Registers = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 SPI0 registers (See 10.5)
 +
|-
 +
| <code>CS:LongWord;</code>
 +
| SPI Master Control and Status
 +
|-
 +
| <code>FIFO:LongWord;</code>
 +
| SPI Master TX and RX FIFOs
 +
|-
 +
| <code>CLK:LongWord;</code>
 +
| SPI Master Clock Divider
 +
|-
 +
| <code>DLEN:LongWord;</code>
 +
| SPI Master Data Length
 +
|-
 +
| <code>LTOH:LongWord;</code>
 +
| SPI LOSSI mode TOH
 +
|-
 +
| <code>DC:LongWord;</code>
 +
| SPI DMA DREQ Controls
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 I2C / SPI slave registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836I2CSPIRegisters = ^TBCM2836I2CSPIRegisters;</code>
 +
 
 +
<code>TBCM2836I2CSPIRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 I2C / SPI Slave registers (See 11.2)
 +
|-
 +
| <code>DR:LongWord;</code>
 +
| Data Register
 +
|-
 +
| <code>RSR:LongWord;</code>
 +
| Operation status register and error clear register
 +
|-
 +
| <code>SLV:LongWord;</code>
 +
| I2C SPI Address Register holds the I2C slave address value
 +
|-
 +
| <code>CR:LongWord;</code>
 +
| Control register is used to configure the I2C or SPI operation
 +
|-
 +
| <code>FR:LongWord;</code>
 +
| Flag register
 +
|-
 +
| <code>IFLS:LongWord;</code>
 +
| Interrupt fifo level select register
 +
|-
 +
| <code>IMSC:LongWord;</code>
 +
| Interupt Mask Set Clear Register
 +
|-
 +
| <code>RIS:LongWord;</code>
 +
| Raw Interupt Status Register
 +
|-
 +
| <code>MIS:LongWord;</code>
 +
| Masked Interupt Status Register
 +
|-
 +
| <code>ICR:LongWord;</code>
 +
| Interupt Clear Register
 +
|-
 +
| <code>DMACR:LongWord;</code>
 +
| DMA Control Register
 +
|-
 +
| <code>TDR:LongWord;</code>
 +
| FIFO Test Data Register
 +
|-
 +
| <code>GPUSTAT:LongWord;</code>
 +
| GPU Status Register
 +
|-
 +
| <code>HCTRL:LongWord;</code>
 +
| Host Control Register
 +
|-
 +
| <code>DEBUG1:LongWord;</code>
 +
| I2C Debug Register
 +
|-
 +
| <code>DEBUG2:LongWord;</code>
 +
| SPI Debug Register
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 AUX (UART1, SPI1 and SPI2) registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836AUXRegisters = ^TBCM2836AUXRegisters;</code>
 +
 
 +
<code>TBCM2836AUXRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 AUX (UART1, SPI1 and SPI2) registers (See 2.1)
 +
|-
 +
| <code>AUX_IRQ:LongWord;</code>
 +
| Auxiliary Interrupt status
 +
|-
 +
| <code>AUX_ENABLE:LongWord;</code>
 +
| Auxiliary enables
 +
|-
 +
| <code>Reserved01:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved02:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved03:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved04:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved05:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved06:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved07:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved08:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved09:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved0A:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved0B:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved0C:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved0D:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved0E:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>AUX_MU_IO:LongWord;</code>
 +
| Mini Uart I/O Data
 +
|-
 +
| <code>AUX_MU_IER:LongWord;</code>
 +
| Mini Uart Interrupt Enable
 +
|-
 +
| <code>AUX_MU_IIR:LongWord;</code>
 +
| Mini Uart Interrupt Identify
 +
|-
 +
| <code>AUX_MU_LCR:LongWord;</code>
 +
| Mini Uart Line Control
 +
|-
 +
| <code>AUX_MU_MCR:LongWord;</code>
 +
| Mini Uart Modem Control
 +
|-
 +
| <code>AUX_MU_LSR:LongWord;</code>
 +
| Mini Uart Line Status
 +
|-
 +
| <code>AUX_MU_MSR:LongWord;</code>
 +
| Mini Uart Modem Status
 +
|-
 +
| <code>AUX_MU_SCRATCH:LongWord;</code>
 +
| Mini Uart Scratch
 +
|-
 +
| <code>AUX_MU_CNTL:LongWord;</code>
 +
| Mini Uart Extra Control
 +
|-
 +
| <code>AUX_MU_STAT:LongWord;</code>
 +
| Mini Uart Extra Status
 +
|-
 +
| <code>AUX_MU_BAUD:LongWord;</code>
 +
| Mini Uart Baudrate
 +
|-
 +
| <code>Reserved11:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved12:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved13:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved14:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved15:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>AUX_SPI1_CNTL0:LongWord;</code>
 +
| SPI 1 Control register 0
 +
|-
 +
| <code>AUX_SPI1_CNTL1:LongWord;</code>
 +
| SPI 1 Control register 1
 +
|-
 +
| <code>AUX_SPI1_STAT:LongWord;</code>
 +
| SPI 1 Status
 +
|-
 +
| <code>Reserved21:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>AUX_SPI1_IO:LongWord;</code>
 +
| SPI 1 Data
 +
|-
 +
| <code>AUX_SPI1_PEEK:LongWord;</code>
 +
| SPI 1 Peek
 +
|-
 +
| <code>Reserved31:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved32:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved33:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved34:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved35:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved36:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved37:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved38:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved39:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved3A:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>AUX_SPI2_CNTL0:LongWord;</code>
 +
| SPI 2 Control register 0
 +
|-
 +
| <code>AUX_SPI2_CNTL1:LongWord;</code>
 +
| SPI 2 Control register 1
 +
|-
 +
| <code>AUX_SPI2_STAT:LongWord;</code>
 +
| SPI 2 Status
 +
|-
 +
| <code>Reserved40:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>AUX_SPI2_IO:LongWord;</code>
 +
| SPI 2 Data
 +
|-
 +
| <code>AUX_SPI2_PEEK:LongWord;</code>
 +
| SPI 2 Peek
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 PCM / I2S registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836PCMRegisters = ^TBCM2836PCMRegisters; </code>
 +
 
 +
<code>TBCM2836PCMRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 PCM / I2S registers (See 8.8)
 +
|-
 +
| <code>CS_A:LongWord;</code>
 +
| PCM Control and Status
 +
|-
 +
| <code>FIFO_A:LongWord;</code>
 +
| PCM FIFO Data
 +
|-
 +
| <code>MODE_A:LongWord;</code>
 +
| PCM Mode
 +
|-
 +
| <code>RXC_A:LongWord;</code>
 +
| PCM Receive Configuration
 +
|-
 +
| <code>TXC_A:LongWord;</code>
 +
| PCM Transmit Configuration
 +
|-
 +
| <code>DREQ_A:LongWord;</code>
 +
| PCM DMA Request Level
 +
|-
 +
| <code>INTEN_A:LongWord;</code>
 +
| PCM Interrupt Enables
 +
|-
 +
| <code>INTSTC_A:LongWord;</code>
 +
| PCM Interrupt Status & Clear
 +
|-
 +
| <code>GRAY:LongWord;</code>
 +
| PCM Gray Mode Control
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 pulse width modulator (PWM) registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836PWMRegisters = ^TBCM2836PWMRegisters;</code>
 +
 
 +
<code>TBCM2836PWMRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Pulse Width Modulator (PWM) registers (See 9.6)
 +
|-
 +
| <code>CTL:LongWord;</code>
 +
| PWM Control
 +
|-
 +
| <code>STA:LongWord;</code>
 +
| PWM Status
 +
|-
 +
| <code>DMAC:LongWord;</code>
 +
| PWM DMA Configuration
 +
|-
 +
| <code>Reserved1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>RNG1:LongWord;</code>
 +
| PWM Channel 1 Range
 +
|-
 +
| <code>DAT1:LongWord;</code>
 +
| PWM Channel 1 Data
 +
|-
 +
| <code>FIF1:LongWord;</code>
 +
| PWM FIFO Input
 +
|-
 +
| <code>Reserved2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>RNG2:LongWord;</code>
 +
| PWM Channel 2 Range
 +
|-
 +
| <code>DAT2:LongWord;</code>
 +
| PWM Channel 2 Data
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 PL011 UART registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836PL011Registers = ^TBCM2836PL011Registers;</code>
 +
 
 +
<code>TBCM2836PL011Registers = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 PL011 UART registers (See 13.4)
 +
|-
 +
| <code>DR:LongWord;</code>
 +
| Data Register
 +
|-
 +
| <code>RSRECR:LongWord;</code>
 +
| Receive Status Register / Error Clear Register
 +
|-
 +
| <code>Reserved01:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved02:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved03:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved04:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>FR:LongWord;</code>
 +
| Flag register
 +
|-
 +
| <code>Reserved05:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>ILPR:LongWord;</code>
 +
| Not in use
 +
|-
 +
| <code>IBRD:LongWord;</code>
 +
| Integer Baud rate divisor
 +
|-
 +
| <code>FBRD:LongWord;</code>
 +
| Fractional Baud rate divisor
 +
|-
 +
| <code>LCRH:LongWord;</code>
 +
| Line Control register
 +
|-
 +
| <code>CR:LongWord;</code>
 +
| Control register
 +
|-
 +
| <code>IFLS:LongWord;</code>
 +
| Interupt FIFO Level Select Register
 +
|-
 +
| <code>IMSC:LongWord;</code>
 +
| Interupt Mask Set Clear Register
 +
|-
 +
| <code>RIS:LongWord;</code>
 +
| Raw Interupt Status Register
 +
|-
 +
| <code>MIS:LongWord;</code>
 +
| Masked Interupt Status Register
 +
|-
 +
| <code>ICR:LongWord;</code>
 +
| Interupt Clear Register
 +
|-
 +
| <code>DMACR:LongWord;</code>
 +
| DMA Control Register
 +
|-
 +
| <code>Reserved11:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved12:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved13:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved14:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved15:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved16:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved17:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved18:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved19:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved1A:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved1B:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved1C:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved1D:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>ITCR:LongWord;</code>
 +
| Test Control Register
 +
|-
 +
| <code>ITIP:LongWord;</code>
 +
| Integration Test Input Register
 +
|-
 +
| <code>ITOP:LongWord;</code>
 +
| Integration Test Output Register
 +
|-
 +
| <code>TDR:LongWord;</code>
 +
| Test Data Register
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 ARM timer registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836ARMTimerRegisters = ^TBCM2836ARMTimerRegisters;</code>
 +
 
 +
<code>TBCM2836ARMTimerRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the  (See 14.2)
 +
|-
 +
| <code>Load:LongWord;</code>
 +
| Timer Load register
 +
|-
 +
| <code>Value:LongWord;</code>
 +
| Timer Value register
 +
|-
 +
| <code>Control:LongWord;</code>
 +
| Timer control register
 +
|-
 +
| <code>IRQClear:LongWord;</code>
 +
| Timer IRQ clear register
 +
|-
 +
| <code>RawIRQ:LongWord;</code>
 +
| Timer Raw IRQ register
 +
|-
 +
| <code>MaskedIRQ:LongWord;</code>
 +
| Timer Masked IRQ register
 +
|-
 +
| <code>Reload:LongWord;</code>
 +
| Timer Reload register
 +
|-
 +
| <code>Predivider:LongWord;</code>
 +
| The timer pre-divider register
 +
|-
 +
| <code>Counter:LongWord;</code>
 +
| Free running counter
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 power management watchdog registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836PMWatchdogRegisters = ^TBCM2836PMWatchdogRegisters;</code>
 +
 
 +
<code>TBCM2836PMWatchdogRegisters = record </code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Power Management Watchdog registers
 +
|-
 +
| <code>Reserved1:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Reserved2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved3:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved4:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved5:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved6:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Reserved7:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>RSTC:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>RSTS:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>WDOG:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 random number generator registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836RNGRegisters = ^TBCM2836RNGRegisters;</code>
 +
 
 +
<code>TBCM2836RNGRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Random Number Generator registers
 +
|-
 +
| <code>Control:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Data:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>FFThreshold:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 GPIO registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836GPIORegisters = ^TBCM2836GPIORegisters;</code>
 +
 
 +
<code>TBCM2836GPIORegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 GPIO registers (See 6.1)
 +
|-
 +
| <code>GPFSEL0:LongWord;</code>
 +
| GPIO Function Select 0
 +
|-
 +
| <code>GPFSEL1:LongWord;</code>
 +
| GPIO Function Select 1
 +
|-
 +
| <code>GPFSEL2:LongWord;</code>
 +
| GPIO Function Select 2
 +
|-
 +
| <code>GPFSEL3:LongWord;</code>
 +
| GPIO Function Select 3
 +
|-
 +
| <code>GPFSEL4:LongWord;</code>
 +
| GPIO Function Select 4
 +
|-
 +
| <code>GPFSEL5:LongWord;</code>
 +
| GPIO Function Select 5
 +
|-
 +
| <code>Reserved1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPSET0:LongWord;</code>
 +
| GPIO Pin Output Set 0
 +
|-
 +
| <code>GPSET1:LongWord;</code>
 +
| GPIO Pin Output Set 1
 +
|-
 +
| <code>Reserved2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPCLR0:LongWord;</code>
 +
| GPIO Pin Output Clear 0
 +
|-
 +
| <code>GPCLR1:LongWord;</code>
 +
| GPIO Pin Output Clear 1
 +
|-
 +
| <code>Reserved3:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPLEV0:LongWord;</code>
 +
| GPIO Pin Level 0
 +
|-
 +
| <code>GPLEV1:LongWord;</code>
 +
| GPIO Pin Level 1
 +
|-
 +
| <code>Reserved4:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPEDS0:LongWord;</code>
 +
| GPIO Pin Event Detect Status 0
 +
|-
 +
| <code>GPEDS1:LongWord;</code>
 +
| GPIO Pin Event Detect Status 1
 +
|-
 +
| <code>Reserved5:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPREN0:LongWord;</code>
 +
| GPIO Pin Rising Edge Detect Enable 0
 +
|-
 +
| <code>GPREN1:LongWord;</code>
 +
| GPIO Pin Rising Edge Detect Enable 1
 +
|-
 +
| <code>Reserved6:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPFEN0:LongWord;</code>
 +
| GPIO Pin Falling Edge Detect Enable 0
 +
|-
 +
| <code>GPFEN1:LongWord;</code>
 +
| GPIO Pin Falling Edge Detect Enable 1
 +
|-
 +
| <code>Reserved7:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPHEN0:LongWord;</code>
 +
| GPIO Pin High Detect Enable 0
 +
|-
 +
| <code>GPHEN1:LongWord;</code>
 +
| GPIO Pin High Detect Enable 1
 +
|-
 +
| <code>Reserved8:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPLEN0:LongWord;</code>
 +
| GPIO Pin Low Detect Enable 0
 +
|-
 +
| <code>GPLEN1:LongWord;</code>
 +
| GPIO Pin Low Detect Enable 1
 +
|-
 +
| <code>Reserved9:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPAREN0:LongWord;</code>
 +
| GPIO Pin Async. Rising Edge Detect 0
 +
|-
 +
| <code>GPAREN1:LongWord;</code>
 +
| GPIO Pin Async. Rising Edge Detect 1
 +
|-
 +
| <code>Reserved10:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPAFEN0:LongWord;</code>
 +
| GPIO Pin Async. Falling Edge Detect 0
 +
|-
 +
| <code>GPAFEN1:LongWord;</code>
 +
| GPIO Pin Async. Falling Edge Detect 1
 +
|-
 +
| <code>Reserved11:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>GPPUD:LongWord;</code>
 +
| GPIO Pin Pull-up/down Enable
 +
|-
 +
| <code>GPPUDCLK0:LongWord;</code>
 +
| GPIO Pin Pull-up/down Enable Clock 0
 +
|-
 +
| <code>GPPUDCLK1:LongWord;</code>
 +
| GPIO Pin Pull-up/down Enable Clock 1
 +
|-
 +
| <code>Reserved12:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Test:LongWord;</code>
 +
| Test
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox0 registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836Mailbox0Registers = ^TBCM2836Mailbox0Registers;</code>
 +
 
 +
<code>TBCM2836Mailbox0Registers = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Mailbox0 registers (See https://github.com/raspberrypi/firmware/wiki/Mailboxes)
 +
|-
 +
| <code>Read:LongWord;</code>
 +
| Offset 0x00 (The read register for mailbox 0)
 +
|-
 +
| <code>Reserved1:LongWord;</code>
 +
| Offset 0x04
 +
|-
 +
| <code>Reserved2:LongWord;</code>
 +
| Offset 0x08
 +
|-
 +
| <code>Reserved3:LongWord;</code>
 +
| Offset 0x0C
 +
|-
 +
| <code>Peek:LongWord;</code>
 +
| Offset 0x10 (Read from the mailbox without removing data from it)
 +
|-
 +
| <code>Sender:LongWord;</code>
 +
| Offset 0x14 (Sender ID (bottom 2 bits only))
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| Offset 0x18 (The status register for mailbox 0
 +
|-
 +
| <code>Config:LongWord;</code>
 +
| Offset 0x1C (The configuration register for mailbox 0)
 +
|-
 +
| <code>Write:LongWord;</code>
 +
| Offset 0x20 (The write register for mailbox 0 (This is actually the read register for Mailbox 1))
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox framebuffer request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxFramebuffer = ^TBCM2836MailboxFramebuffer;</code>
 +
 
 +
<code>TBCM2836MailboxFramebuffer = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Layout of the BCM2836 Mailbox Framebuffer request (This structure must be 16 byte aligned when passed to the GPU)
 +
|-
 +
| <code>PhysicalWidth:LongWord;</code>
 +
| Requested width of Physical Framebuffer
 +
|-
 +
| <code>PhysicalHeight:LongWord;</code>
 +
| Requested height of Physical Framebuffer
 +
|-
 +
| <code>VirtualWidth:LongWord;</code>
 +
| Requested width of Virtual Display
 +
|-
 +
| <code>VirtualHeight:LongWord;</code>
 +
| Requested height of Virtual Display
 +
|-
 +
| <code>Pitch:LongWord;</code>
 +
| Zero on request, Number of Bytes per Row in response
 +
|-
 +
| <code>Depth:LongWord;</code>
 +
| Requested Colour Depth in Bits per Pixel
 +
|-
 +
| <code>OffsetX:LongWord;</code>
 +
| Requested X offset of Virtual Framebuffer
 +
|-
 +
| <code>OffsetY:LongWord;</code>
 +
| Requested Y offset of Virtual Framebuffer
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| Framebuffer address (Zero on request, Failure if zero in response)
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| Framebuffer size (Zero on request, Size in bytes in response)
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox header property tags'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxHeader = ^TBCM2836MailboxHeader;</code>
 +
 
 +
<code>TBCM2836MailboxHeader = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Mailbox Property tags (These structures must be 16 byte aligned when passed to the GPU)
 +
|-
 +
|colspan="2"|''Header''
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| Total buffer size in bytes (including the header values, the end tag and padding)
 +
|-
 +
| <code>Code:LongWord;</code>
 +
| Request/response code
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox footer property tags'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxFooter = ^TBCM2836MailboxFooter;</code>
 +
 
 +
<code>TBCM2836MailboxFooter = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: Layout of the BCM2836 Mailbox Property tags (These structures must be 16 byte aligned when passed to the GPU)
 +
|-
 +
|colspan="2"|''Footer''
 +
|-
 +
| <code>Tag:LongWord;</code>
 +
| BCM2836_MBOX_TAG_END
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag headers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagHeader = ^TBCM2836MailboxTagHeader;</code>
 +
 
 +
<code>TBCM2836MailboxTagHeader = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Tag Header''
 +
|-
 +
| <code>Tag:LongWord;</code>
 +
| Tag identifier
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| Value buffer size in bytes
 +
|-
 +
| <code>Length:LongWord;</code>
 +
| 1 bit (MSB) request/response indicator (0=request, 1=response), 31 bits (LSB) value length in bytes
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag no request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagNoRequest = ^TBCM2836MailboxTagNoRequest;</code>
 +
 
 +
<code>TBCM2836MailboxTagNoRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Tag No Request''
 +
|-
 +
| &nbsp;
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag no response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagNoResponse = ^TBCM2836MailboxTagNoResponse;</code>
 +
 
 +
<code>TBCM2836MailboxTagNoResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Tag No Response''
 +
|-
 +
| &nbsp;
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag firmware revision response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagFirmwareRevisionResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Firmware Revision''
 +
|-
 +
| <code>Revision:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag get firmware revision'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetFirmwareRevision = ^TBCM2836MailboxTagGetFirmwareRevision;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetFirmwareRevision = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagFirmwareRevisionResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag board model response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagBoardModelResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Board Model''
 +
|-
 +
| <code>Model:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag get board model''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetBoardModel = ^TBCM2836MailboxTagGetBoardModel;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetBoardModel = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagBoardModelResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag board revision response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagBoardRevisionResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Board Revision''
 +
|-
 +
| <code>Revision:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get board revision'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetBoardRevision = ^TBCM2836MailboxTagGetBoardRevision;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetBoardRevision = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagBoardRevisionResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag MAC address response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagMACAddressResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get MAC Address''
 +
|-
 +
| <code>MAC:array[0..5] of Byte;</code>
 +
| MAC address in network byte order
 +
|-
 +
| <code>Padding:Word;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag get MAC address''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetMACAddress = ^TBCM2836MailboxTagGetMACAddress;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetMACAddress = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagMACAddressResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag board serial response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagBoardSerialResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Board Serial''
 +
|-
 +
| <code>Serial:Int64;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get board serial''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetBoardSerial = ^TBCM2836MailboxTagGetBoardSerial;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetBoardSerial = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagBoardSerialResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag ARM memory response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagARMMemoryResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get ARM Memory''
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| Base address in bytes
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| Size in bytes
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get ARM memory'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetARMMemory = ^TBCM2836MailboxTagGetARMMemory;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetARMMemory = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagARMMemoryResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag VC memory response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagVCMemoryResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get VC Memory''
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| Base address in bytes
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| Size in bytes
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get VC memory'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetVCMemory = ^TBCM2836MailboxTagGetVCMemory;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetVCMemory = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVCMemoryResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag clock response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagClockResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Clocks''
 +
|-
 +
| <code>ParentId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag clocks response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagClocksResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Clocks:array[0..255] of TBCM2836MailboxTagClockResponse;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get clocks''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetClocks = ^TBCM2836MailboxTagGetClocks;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetClocks = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagClocksResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get power state requests''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetPowerStateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Power State''
 +
|-
 +
| <code>DeviceId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag power state response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPowerStateResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>DeviceId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>State:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get power state'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetPowerState = ^TBCM2836MailboxTagGetPowerState;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetPowerState = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetPowerStateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPowerStateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag timing request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagTimingRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Timing''
 +
|-
 +
| <code>DeviceId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag timing response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagTimingResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>DeviceId:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Wait:LongWord;</code>
 +
| Enable wait time in microseconds
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get timing'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetTiming = ^TBCM2836MailboxTagGetTiming;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetTiming = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagTimingRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagTimingResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set power state request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetPowerStateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Power State''
 +
|-
 +
| <code>DeviceId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>State:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set power state'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetPowerState = ^TBCM2836MailboxTagSetPowerState;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetPowerState = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetPowerStateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPowerStateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get clock state request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetClockStateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Clock State''
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag clock state response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagClockStateResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>State:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get clock state'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetClockState = ^TBCM2836MailboxTagGetClockState;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetClockState = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetClockStateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagClockStateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag set clock state request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetClockStateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Clock State''
 +
|-
 +
| <code>ClockId:LongWord; </code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>State:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set clock state'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetClockState = ^TBCM2836MailboxTagSetClockState;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetClockState = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetClockStateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagClockStateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get clock rate request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetClockRateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Clock Rate''
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag clock rate response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagClockRateResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>ClockId:LongWord; </code>
 +
| &nbsp;
 +
|-
 +
| <code>Rate:LongWord;</code>
 +
| In Hz
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get clock rate''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetClockRate = ^TBCM2836MailboxTagGetClockRate;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetClockRate = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetClockRateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagClockRateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set clock rate request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetClockRateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Clock Rate''
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Rate:LongWord;</code>
 +
| In Hz
 +
|-
 +
| <code>SkipTurbo:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag set clock rate'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetClockRate = ^TBCM2836MailboxTagSetClockRate;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetClockRate = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetClockRateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagClockRateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get clock max rate request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetClockMaxRateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Clock Max Rate''
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get clock max rate response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetClockMaxRateResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>ClockId:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Rate:LongWord;</code>
 +
| In Hz
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get clock max rate'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetClockMaxRate = ^TBCM2836MailboxTagGetClockMaxRate;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetClockMaxRate = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetClockMaxRateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetClockMaxRateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get clock min rate''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetClockMinRate = ^TBCM2836MailboxTagGetClockMinRate;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetClockMinRate = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Clock Min Rate''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetClockMaxRateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetClockMaxRateResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get turbo request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetTurboRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Turbo''
 +
|-
 +
| <code>Id:LongWord; </code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag turbo response'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagTurboResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Id:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Level:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get turbo''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetTurbo = ^TBCM2836MailboxTagGetTurbo;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetTurbo = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetTurboRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagTurboResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag set turbo request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetTurboRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Turbo''
 +
|-
 +
| <code>Id:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Level:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set turbo'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetTurbo = ^TBCM2836MailboxTagSetTurbo;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetTurbo = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetTurboRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagTurboResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get voltage request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetVoltageRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Voltage''
 +
|-
 +
| <code>VoltageId:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag voltage response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagVoltageResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>VoltageId:LongWord; </code>
 +
| &nbsp;
 +
|-
 +
| <code>Value:LongWord;</code>
 +
| Offset from 1.2V in units of 0.025V
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get voltage''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetVoltage = ^TBCM2836MailboxTagGetVoltage;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetVoltage = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetVoltageRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVoltageResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set voltage request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetVoltageRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Voltage''
 +
|-
 +
| <code>VoltageId:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Value:LongWord;</code>
 +
| Offset from 1.2V in units of 0.025V
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set voltage'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetVoltage = ^TBCM2836MailboxTagSetVoltage;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetVoltage = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetVoltageRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVoltageResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get max voltage'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetMaxVoltage = ^TBCM2836MailboxTagGetMaxVoltage;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetMaxVoltage = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Max Voltage''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetVoltageRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVoltageResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get min voltage''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetMinVoltage = ^TBCM2836MailboxTagGetMinVoltage;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetMinVoltage = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Min Voltage''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetVoltageRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVoltageResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag temperature request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagTemperatureRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Temperature''
 +
|-
 +
| <code>TemperatureId:LongWord; </code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag temperature response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagTemperatureResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>TemperatureId:LongWord;</code>
 +
| Should be zero
 +
|-
 +
| <code>Temperature:LongWord;</code>
 +
| Return the temperature of the SoC in thousandths of a degree C
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get temperature'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetTemperature = ^TBCM2836MailboxTagGetTemperature;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetTemperature = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagTemperatureRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagTemperatureResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get max temperature''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetMaxTemperature = ^TBCM2836MailboxTagGetMaxTemperature;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetMaxTemperature = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Max Temp''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagTemperatureRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagTemperatureResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag allocate memory request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagAllocateMemoryRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Allocate Memory''
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Alignment:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Flags:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag allocate memory response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagAllocateMemoryResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Handle:THandle;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag allocate memory'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagAllocateMemory = ^TBCM2836MailboxTagAllocateMemory;</code>
 +
 
 +
<code>TBCM2836MailboxTagAllocateMemory = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagAllocateMemoryRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagAllocateMemoryResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag lock memory request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagLockMemoryRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Lock Memory''
 +
|-
 +
| <code>Handle:THandle;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag locl memory response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagLockMemoryResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| Bus Address
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag lock memory'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagLockMemory = ^TBCM2836MailboxTagLockMemory;</code>
 +
 
 +
<code>TBCM2836MailboxTagLockMemory = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagLockMemoryRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagLockMemoryResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag unlock memory response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagUnlockMemoryResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Unlock Memory''
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| 0 is Success
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag unlock memory''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagUnlockMemory = ^TBCM2836MailboxTagUnlockMemory;</code>
 +
 
 +
<code>TBCM2836MailboxTagUnlockMemory = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagLockMemoryRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagUnlockMemoryResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag release memory''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagReleaseMemory = ^TBCM2836MailboxTagReleaseMemory;</code>
 +
 
 +
<code>TBCM2836MailboxTagReleaseMemory = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Release Memory''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagLockMemoryRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagUnlockMemoryResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag execute code request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagExecuteCodeRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Execute Code''
 +
|-
 +
| <code>Address:Pointer;</code>
 +
| Bus Address
 +
|-
 +
| <code>R0:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>R1:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>R2:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>R3:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>R4:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>R5:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag execute code response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagExecuteCodeResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>R0:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag execute code'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagExecuteCode = ^TBCM2836MailboxTagExecuteCode;</code>
 +
 
 +
<code>TBCM2836MailboxTagExecuteCode = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagExecuteCodeRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagExecuteCodeResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get dispmanx handle''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetDispmanxHandleRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Dispmanx Handle''
 +
|-
 +
| <code>Resource:THandle;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get dispmanx handle response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetDispmanxHandleResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| 0 is Success
 +
|-
 +
| <code>Memory:THandle;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get dispmanx handle'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetDispmanxHandle = ^TBCM2836MailboxTagGetDispmanxHandle;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetDispmanxHandle = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetDispmanxHandleRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetDispmanxHandleResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag EDID block request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetEDIDBlockRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get EDID Block''
 +
|-
 +
| <code>Block:LongWord;</code>
 +
| Starting from 0
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag EDID block response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetEDIDBlockResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Block:LongWord;</code>
 +
| Starting from 0
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| 0 is Success
 +
|-
 +
| <code>EDID:array[0..127] of Byte;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get EDID block''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetEDIDBlock = ^TBCM2836MailboxTagGetEDIDBlock;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetEDIDBlock = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagGetEDIDBlockRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetEDIDBlockResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag allocate buffer request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagAllocateBufferRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Allocate Buffer''
 +
|-
 +
| <code>Alignment:LongWord;</code>
 +
| Bytes
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag allocate buffer response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagAllocateBufferResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| Base Address in Bytes
 +
|-
 +
| <code>Size:LongWord;</code>
 +
| Size in Bytes
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag allocate buffer''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagAllocateBuffer = ^TBCM2836MailboxTagAllocateBuffer;</code>
 +
 
 +
<code>TBCM2836MailboxTagAllocateBuffer = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagAllocateBufferRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagAllocateBufferResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag release buffer'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagReleaseBuffer = ^TBCM2836MailboxTagReleaseBuffer;</code>
 +
 
 +
<code>TBCM2836MailboxTagReleaseBuffer = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Release Buffer''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagNoResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag blank screen request''' 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagBlankScreenRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Blank Screen''
 +
|-
 +
| <code>State:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag blank screen response'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagBlankScreenResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>State:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag blank screen'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagBlankScreen = ^TBCM2836MailboxTagBlankScreen;</code>
 +
 
 +
<code>TBCM2836MailboxTagBlankScreen = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagBlankScreenRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagBlankScreenResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag physical request''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPhysicalRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Physical''
 +
|-
 +
| <code>Width:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Height:Longword;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag physical response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPhysicalResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Width:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Height:Longword;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get physical''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetPhysical = ^TBCM2836MailboxTagGetPhysical;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetPhysical = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPhysicalResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag test physical''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestPhysical = ^TBCM2836MailboxTagTestPhysical;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestPhysical = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Physical''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagPhysicalRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPhysicalResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set physical''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetPhysical = ^TBCM2836MailboxTagSetPhysical;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetPhysical = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Physical''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagPhysicalRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPhysicalResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag virtual request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagVirtualRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Virtual''
 +
|-
 +
| <code>Width:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Height:Longword;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag virtual response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagVirtualResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Width:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Height:Longword;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get virtual'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetVirtual = ^TBCM2836MailboxTagGetVirtual;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetVirtual = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVirtualResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag test virtual''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestVirtual = ^TBCM2836MailboxTagTestVirtual;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestVirtual = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Virtual''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagVirtualRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVirtualResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set virtual''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetVirtual = ^TBCM2836MailboxTagSetVirtual;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetVirtual = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Virtual''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagVirtualRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVirtualResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag depth request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagDepthRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Depth''
 +
|-
 +
| <code>Depth:LongWord;</code>
 +
| Bits per pixel
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag depth response'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagDepthResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Depth:LongWord;</code>
 +
| Bits per pixel
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get depth'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetDepth = ^TBCM2836MailboxTagGetDepth;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetDepth = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagDepthResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag test depth'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestDepth = ^TBCM2836MailboxTagTestDepth;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestDepth = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Depth''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagDepthRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagDepthResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set depth''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetDepth = ^TBCM2836MailboxTagSetDepth;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetDepth = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Depth''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagDepthRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagDepthResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag pixel order request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPixelOrderRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Pixel Order''
 +
|-
 +
| <code>Order:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag pixel order response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPixelOrderResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Order:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get pixel order'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetPixelOrder = ^TBCM2836MailboxTagGetPixelOrder;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetPixelOrder = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPixelOrderResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag test pixel order''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestPixelOrder = ^TBCM2836MailboxTagTestPixelOrder;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestPixelOrder = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Pixel Order''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagPixelOrderRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPixelOrderResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag set pixel order''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetPixelOrder = ^TBCM2836MailboxTagSetPixelOrder;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetPixelOrder = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Pixel Order''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagPixelOrderRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPixelOrderResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag alpha mode request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagAlphaModeRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Alpha Mode''
 +
|-
 +
| <code>Mode:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag alpha mode response'''
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagAlphaModeResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Mode:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get alpha mode'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetAlphaMode = ^TBCM2836MailboxTagGetAlphaMode;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetAlphaMode = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagAlphaModeResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag test alpha mode''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestAlphaMode = ^TBCM2836MailboxTagTestAlphaMode;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestAlphaMode = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Alpha Mode''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagAlphaModeRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagAlphaModeResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set alpha more''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetAlphaMode = ^TBCM2836MailboxTagSetAlphaMode;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetAlphaMode = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Alpha Mode''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagAlphaModeRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagAlphaModeResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag pitch response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPitchResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Pitch''
 +
|-
 +
| <code>Pitch:LongWord;</code>
 +
| Bytes per line
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag get pitch'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetPitch = ^TBCM2836MailboxTagGetPitch;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetPitch = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPitchResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag virtual offset request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagVirtualOffsetRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Virtual Offset''
 +
|-
 +
| <code>X:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Y:LongWord;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag virtual offset response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagVirtualOffsetResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>X:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Y:LongWord;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag virtual offset'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetVirtualOffset = ^TBCM2836MailboxTagGetVirtualOffset;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetVirtualOffset = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVirtualOffsetResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag test virtual offset''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestVirtualOffset = ^TBCM2836MailboxTagTestVirtualOffset;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestVirtualOffset = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Virtual Offset''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagVirtualOffsetRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVirtualOffsetResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set virtual offset''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetVirtualOffset = ^TBCM2836MailboxTagSetVirtualOffset;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetVirtualOffset = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Virtual Offset''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagVirtualOffsetRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagVirtualOffsetResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag overscan request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagOverscanRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Overscan''
 +
|-
 +
| <code>Top:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Bottom:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Left:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Right:LongWord;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag overscan response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagOverscanResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Top:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Bottom:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Left:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Right:LongWord;</code>
 +
| Pixels
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get overscan'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetOverscan = ^TBCM2836MailboxTagGetOverscan;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetOverscan = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagOverscanResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag test overscan''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestOverscan = ^TBCM2836MailboxTagTestOverscan;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestOverscan = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Overscan''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagOverscanRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagOverscanResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set overscan''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetOverscan = ^TBCM2836MailboxTagSetOverscan;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetOverscan = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Overscan''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagOverscanRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagOverscanResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get palette response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetPaletteResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Palette''
 +
|-
 +
| <code>Values:array[0..255] of LongWord;</code>
 +
| RGBA Palette Values
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get palette''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetPalette = ^TBCM2836MailboxTagGetPalette;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetPalette = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetPaletteResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag palette request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPaletteRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Palette''
 +
|-
 +
| <code>Offset:LongWord;</code>
 +
| First palette index to set (0-255)
 +
|-
 +
| <code>Length:LongWord;</code>
 +
| Number of palette entries to set (1-256)
 +
|-
 +
| <code>Values:array[0..255] of LongWord;</code>
 +
| RGBA Palette Values
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag palette response'''
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagPaletteResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag test palette''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestPalette = ^TBCM2836MailboxTagTestPalette;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestPalette = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagPaletteRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPaletteResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set palette''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetPalette = ^TBCM2836MailboxTagSetPalette;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetPalette = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Palette''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagPaletteRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagPaletteResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get touch response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetTouchResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Touch Buffer''
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''BCM2836 mailbox tag get touch''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetTouch = ^TBCM2836MailboxTagGetTouch;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetTouch = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetTouchResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get virtual GPIO response''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagGetVirtualGPIOResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Virtual GPIO Buffer''
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag get virtual GPIO''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetVirtualGPIO = ^TBCM2836MailboxTagGetVirtualGPIO;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetVirtualGPIO = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagGetVirtualGPIOResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag test vsync''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagTestVsync = ^TBCM2836MailboxTagTestVsync;</code>
 +
 
 +
<code>TBCM2836MailboxTagTestVsync = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Test Vsync''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagNoResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set vsync''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetVsync = ^TBCM2836MailboxTagSetVsync;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetVsync = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Vsync''
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagNoResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set backlight request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetBacklightRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Backlight''
 +
|-
 +
| <code>Brightness:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag set backlight response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetBacklightResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Brightness:LongWord; </code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set backlight''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetBacklight = ^TBCM2836MailboxTagSetBacklight;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetBacklight = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetBacklightRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagSetBacklightResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set cursor info request'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetCursorInfoRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Cursor Info''
 +
|-
 +
| <code>Width:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Height:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Reserved:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Pixels:Pointer;</code>
 +
| Format is 32bpp (ARGB) (Width and Height should be >= 16 and (Width * Height) <= 64)
 +
|-
 +
| <code>HotspotX:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>HotspotY:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag cursor response'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagCursorResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Status:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag set cursor info''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetCursorInfo = ^TBCM2836MailboxTagSetCursorInfo;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetCursorInfo = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetCursorInfoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagCursorResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''BCM2836 mailbox tag set cursor state request''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagSetCursorStateRequest = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Set Cursor State''
 +
|-
 +
| <code>Enable:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>X:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Y:LongWord;</code>
 +
| Pixels
 +
|-
 +
| <code>Flags:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag set cursor state'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagSetCursorState = ^TBCM2836MailboxTagSetCursorState;</code>
 +
 
 +
<code>TBCM2836MailboxTagSetCursorState = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagSetCursorStateRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagCursorResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag command line response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagCommandLineResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get Command Line''
 +
|-
 +
| <code>CommandLine:array[0..1023] of Char;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get command line''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetCommandLine = ^TBCM2836MailboxTagGetCommandLine;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetCommandLine = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagCommandLineResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag DMA channels response''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 
 +
<code>TBCM2836MailboxTagDMAChannelsResponse = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|''Get DMA Channels''
 +
|-
 +
| <code>Channels:LongWord;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag get DMA channels'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagGetDMAChannels = ^TBCM2836MailboxTagGetDMAChannels;</code>
 +
 
 +
<code>TBCM2836MailboxTagGetDMAChannels = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Header:TBCM2836MailboxTagHeader;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>case Integer of</code>
 +
| &nbsp;
 +
|-
 +
| <code>0:(Request:TBCM2836MailboxTagNoRequest);</code>
 +
| &nbsp;
 +
|-
 +
| <code>1:(Response:TBCM2836MailboxTagDMAChannelsResponse);</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 mailbox tag create buffer''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagCreateBuffer = ^TBCM2836MailboxTagCreateBuffer;</code>
 +
 
 +
<code>TBCM2836MailboxTagCreateBuffer = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: A combination tag to allocate and configure a framebuffer in one request
 +
|-
 +
|colspan="2"|''Create Buffer''
 +
|-
 +
| <code>Physical:TBCM2836MailboxTagSetPhysical;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Vertual:TBCM2836MailboxTagSetVirtual;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Depth:TBCM2836MailboxTagSetDepth;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Order:TBCM2836MailboxTagSetPixelOrder;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Mode:TBCM2836MailboxTagSetAlphaMode;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Offset:TBCM2836MailboxTagSetVirtualOffset;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Overscan:TBCM2836MailboxTagSetOverscan;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Allocate:TBCM2836MailboxTagAllocateBuffer;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Pitch:TBCM2836MailboxTagGetPitch;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 
 +
'''BCM2836 mailbox tag query buffer''' 
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836MailboxTagQueryBuffer = ^TBCM2836MailboxTagQueryBuffer;</code>
 +
 
 +
<code>TBCM2836MailboxTagQueryBuffer = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: A combination tag to query all framebuffer properties in one request
 +
|-
 +
|colspan="2"|''Query Buffer''
 +
|-
 +
| <code>Physical:TBCM2836MailboxTagGetPhysical;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>Vertual:TBCM2836MailboxTagGetVirtual;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Depth:TBCM2836MailboxTagGetDepth;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Order:TBCM2836MailboxTagGetPixelOrder;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Mode:TBCM2836MailboxTagGetAlphaMode;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Offset:TBCM2836MailboxTagGetVirtualOffset;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Overscan:TBCM2836MailboxTagGetOverscan;</code>
 +
| &nbsp;
 +
|-
 +
| <code>Pitch:TBCM2836MailboxTagGetPitch;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 ARM local mailbox write registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836ARMLocalMailboxWriteRegisters = ^TBCM2836ARMLocalMailboxWriteRegisters;</code>
 +
 
 +
<code>TBCM2836ARMLocalMailboxWriteRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: BCM2836 ARM local structures (See: QA7 Rev3.4.pdf)
 +
|-
 +
| <code>Mailbox0Write:LongWord;</code>
 +
| Mailbox 0 write-set (WO)
 +
|-
 +
| <code>Mailbox1Write:LongWord;</code>
 +
| Mailbox 1 write-set (WO)
 +
|-
 +
| <code>Mailbox2Write:LongWord;</code>
 +
| Mailbox 2 write-set (WO)
 +
|-
 +
| <code>Mailbox3Write:LongWord;</code>
 +
| Mailbox 3 write-set (WO)
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 ARM local mailbox read clear registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836ARMLocalMailboxReadClearRegisters = ^TBCM2836ARMLocalMailboxReadClearRegisters;</code>
 +
 
 +
<code>TBCM2836ARMLocalMailboxReadClearRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Mailbox0ReadClear:LongWord;</code>
 +
| Mailbox 0 read & write-high-to-clear
 +
|-
 +
| <code>Mailbox1ReadClear:LongWord;</code>
 +
| Mailbox 1 read & write-high-to-clear
 +
|-
 +
| <code>Mailbox2ReadClear:LongWord;</code>
 +
| Mailbox 2 read & write-high-to-clear
 +
|-
 +
| <code>Mailbox3ReadClear:LongWord;</code>
 +
| Mailbox 3 read & write-high-to-clear
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 ARM local registers'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2836ARMLocalRegisters = ^TBCM2836ARMLocalRegisters;</code>
 +
 
 +
<code>TBCM2836ARMLocalRegisters = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Control:LongWord;</code>
 +
| Control register $0000
 +
|-
 +
| <code>Reserved1:LongWord;</code>
 +
| Unused $0004
 +
|-
 +
| <code>CoreTimerPrescaler:LongWord;</code>
 +
| Core timer prescaler $0008
 +
|-
 +
| <code>GPUInterruptRouting:LongWord;</code>
 +
| GPU interrupts routing $000C
 +
|-
 +
| <code>PMInterruptRoutingSet:LongWord;</code>
 +
| Performance Monitor Interrupts routing-set $0010
 +
|-
 +
| <code>PMInterruptRoutingClear:LongWord;</code>
 +
| Performance Monitor Interrupts routing-clear $0014
 +
|-
 +
| <code>Reserved2:LongWord;</code>
 +
| Unused $0018
 +
|-
 +
| <code>CoreTimerLow:LongWord;</code>
 +
| Core timer access LS 32 bits $001C
 +
|-
 +
| <code>CoreTimerHigh:LongWord;</code>
 +
| Core timer access MS 32 bits $0020
 +
|-
 +
| <code>LocalIntRouting0:LongWord;</code>
 +
| Local Interrupts 0-7 routing (1 to 7 Unused) $0024
 +
|-
 +
| <code>LocalIntRouting1:LongWord;</code>
 +
| Local Interrupts 8-15 routing (Unused) $0028
 +
|-
 +
| <code>AXIOutstandingCount:LongWord;</code>
 +
| AXI outstanding counters $002C
 +
|-
 +
| <code>AXIOutstandingIRQ:LongWord;</code>
 +
| AXI outstanding IRQ $0030
 +
|-
 +
| <code>LocalTimerControl:LongWord;</code>
 +
| Local timer control & status $0034
 +
|-
 +
| <code>LocalTimerClearReload:LongWord;</code>
 +
| Local timer IRQ clear & reload $0038
 +
|-
 +
| <code>Reserved3:LongWord;</code>
 +
| Unused $003C
 +
|-
 +
| <code>TimersIntControl:array[0..BCM2836_CPU_COUNT - 1] of LongWord;</code>
 +
| Core0-3 Timers Interrupt control $0040-004C
 +
|-
 +
| <code>MailboxIntControl:array[0..BCM2836_CPU_COUNT - 1] of LongWord;</code>
 +
| Core0-3 Mailboxes Interrupt control $0050-005C
 +
|-
 +
| <code>IRQPending:array[0..BCM2836_CPU_COUNT - 1] of LongWord;</code>
 +
| Core0-3 IRQ Source $0060-006C
 +
|-
 +
| <code>FIQPending:array[0..BCM2836_CPU_COUNT - 1] of LongWord;</code>
 +
| Core0-3 FIQ Source $0070-007C
 +
|-
 +
| <code>MailboxWrite:array[0..BCM2836_CPU_COUNT - 1] of TBCM2836ARMLocalMailboxWriteRegisters;</code>
 +
| Core0-3 Mailbox 0-3 write-set (WO) $0080-00BC
 +
|-
 +
| <code>MailboxReadClear:array[0..BCM2836_CPU_COUNT - 1] of TBCM2836ARMLocalMailboxReadClearRegisters;</code>
 +
| Core0-3 Mailbox 0-3 read & write-high-to-clear $00C0-00FC
 +
|-
 +
|}
 +
</div></div> 
 +
 
 +
'''BCM2836 virtual GPIO buffer'''
 +
 
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PBCM2837VirtualGPIOBuffer = ^TBCM2837VirtualGPIOBuffer;</code>
 +
 
 +
<code>TBCM2837VirtualGPIOBuffer = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>Address:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>EnableDisable:array[0..BCM2837_VIRTUAL_GPIO_PIN_COUNT - 1] of LongWord;</code>
 +
| Two packed 16-bit counts of enabled and disabled / Allows host to detect a brief enable that was missed
 +
|-
 +
|}
 +
</div></div> 
 +
<br />
  
 
=== Public variables ===
 
=== Public variables ===

Revision as of 04:20, 13 January 2017

Return to Unit Reference


Description


Ultibo Definitions specific to the Broadcom 2836 System on chip unit

Note that most of this information is directly from the BCM2835 documentation as there is no complete technical reference yet available for the BCM2836.

Constants



[Expand]
BCM2836 specific constants BCM2836_*


[Expand]
BCM2836 ARM physical to VC IO mapping constants BCM2836_VCIO_*


[Expand]
BCM2836 ARM physical to VC bus mapping constants BCM2836_VCBUS_*


[Expand]
BCM2836 peripheral constants BCM2836_PERIPHERALS_*


[Expand]
BCM2836 interrupt controller 0 constants BCM2836_IC0_*


[Expand]
BCM2836 system timer constants BCM2836_SYSTEM_TIMER_*


[Expand]
BCM2836 message based parallel host interface constants BCM2836_MPHI_*


[Expand]
BCM2836 DMA controller constants BCM2836_DMA*


[Expand]
BCM2836 ARM interrupt controller constants BCM2836_INTERRUPT_*


[Expand]
BCM2836 ARM timer constants BCM2836_TIMER_*


[Expand]
BCM2836 ARM mailbox 0 constants BCM2836_MAILBOX0_*


[Expand]
BCM2836 ARM mailbox 1 constants BCM2836_MAILBOX1_*


[Expand]
BCM2836 power management, reset controller and watchdog constants BCM2836_PM_*


[Expand]
BCM2836 clock management constants BCM2836_CM_*


[Expand]
BCM2836 PCM clock constants BCM2836_PCM_CLOCK_*


[Expand]
BCM2836 random number generator constants BCM2836_RNG_*


[Expand]
BCM2836 GPIO constants BCM2836_GPIO_*


[Expand]
BCM2836 UART0 (PL011) constants BCM2836_PL011_*


[Expand]
BCM2836 MMCI0 constants BCM2836_MMCI0_*


[Expand]
BCM2836 PCM/I2S audio constants BCM2836_PCM_*


[Expand]
BCM2836 SPI0 constants BCM2836_SPI0_*


[Expand]
BCM2836 BSC0 (I2C) constants BCM2836_BSC0_*


[Expand]
BCM2836 PWM constants BCM2836_PWM_*


[Expand]
BCM2836 I2C/SPI slave constants BCM2836_I2CSPI_*


[Expand]
BCM2836 AUX (UART1, SPI1 and SPI2) constants BCM2836_AUX_*


[Expand]
BCM2836 SD host controller constants BCM2836_SDHCI_*


[Expand]
BCM2836 SMI constants BCM2836_SMI_*


[Expand]
BCM2836 BSC1 (I2C) constants BCM2836_BSC1_*


[Expand]
BCM2836 BSC2 (I2C) constants BCM2836_BSC2_*


[Expand]
BCM2836 USB constants BCM2836_USB_*


[Expand]
BCM2836 V3D constants BCM2836_V3D_*


[Expand]
BCM2836 DMA controller constants BCM2836_DMA15_*


[Expand]
BCM2836 IRQ peripheral constants BCM2836_IRQ_*


[Expand]
BCM2836 system timer frequency constants BCM2836_SYSTEM_TIMER_FREQUENCY*


[Expand]
BCM2836 system timer control/status constants BCM2836_SYSTEM_TIMER_CS_*


[Expand]
BCM2836 DMA control and status constants BCM2836_DMA_CS_*


[Expand]
BCM2836 DMA transfer information constants BCM2836_DMA_TI_*


[Expand]
BCM2836 DMA transfer length constants BCM2836_DMA_TXFR_LEN_*


[Expand]
BCM2836 DMA 2D stride constants BCM2836_DMA_STRIDE_*


[Expand]
BCM2836 DMA debug constants BCM2836_DMA_DEBUG_*


[Expand]
BCM2836 DMA engine interrupt status constants BCM2836_DMA_INT_STATUS_*


[Expand]
BCM2836 DMA engine enable constants BCM2836_DMA_ENABLE_*


[Expand]
BCM2836 DMA engine DREQ peripheral constants BCM2836_DMA_DREQ_*


[Expand]
BCM2836 BSC (I2C0/1/2) control constants BCM2836_BSC_C_*


[Expand]
BCM2836 BSC (I2C0/1/2) status constants BCM2836_BSC_S_*


[Expand]
BCM2836 BSC (I2C0/1/2) data length constants BCM2836_BSC_DLEN_*


[Expand]
BCM2836 BSC (I2C0/1/2) slave address constants BCM2836_BSC_A_*


[Expand]
BCM2836 BSC (I2C0/1/2) data FIFO constants BCM2836_BSC_FIFO_*


[Expand]
BCM2836 BSC (I2C0/1/2) clock divider constants BCM2836_BSC_CDIV_*


[Expand]
BCM2836 BSC (I2C0/1/2) data delay constants BCM2836_BSC_DEL_*


[Expand]
BCM2836 BSC (I2C0/1/2) clock stretch timeout constants BCM2836_BSC_CLKT_TOUT_*


[Expand]
BCM2836 SPI0 constants BCM2836_SPI0_CS_*


[Expand]
BCM2836 PWM control constants BCM2836_PWM_CTL_*


[Expand]
BCM2836 PWM status constants BCM2836_PWM_STA_*


[Expand]
BCM2836 PWM DMA configuration constants BCM2836_PWM_DMAC_*


[Expand]
BCM2836 PWM constants BCM2836_PWM_*


[Expand]
BCM2836 PL011 UART data constants BCM2836_PL011_DR_*


[Expand]
BCM2836 PL011 UART receive status / error clear constants BCM2836_PL011_RSRECR_*


[Expand]
BCM2836 PL011 UART flag constants BCM2836_PL011_FR_*


[Expand]
BCM2836 PL011 UART IrDA constants


[Expand]
BCM2836 PL011 UART integer baud rate divisor constants BCM2836_PL011_IBRD_*


[Expand]
BCM2836 PL011 UART fractional baud rate divisor constants BCM2836_PL011_FBRD_*


[Expand]
BCM2836 PL011 UART line control constants BCM2836_PL011_LCRH_*


[Expand]
BCM2836 PL011 UART control constants BCM2836_PL011_CR_*


[Expand]
BCM2836 PL011 UART interrupt FIFO level select constants BCM2836_PL011_IFLS_*


[Expand]
BCM2836 PL011 UART interrupt mask set/clear constants BCM2836_PL011_IMSC_*


[Expand]
BCM2836 PL011 UART raw interrupt status constants BCM2836_PL011_RIS_*


[Expand]
BCM2836 PL011 UART masked interrupt status constants BCM2836_PL011_MIS_*


[Expand]
BCM2836 PL011 UART interrupt clear constants BCM2836_PL011_ICR_*


[Expand]
BCM2836 PL011 UART DMA control constants


[Expand]
BCM2836 ARM interrupt controller constants BCM2836_ARM_INTERRUPT_FIQ_*


[Expand]
BCM2836 ARM timer constants BCM2836_ARM_TIMER_*


[Expand]
BCM2836 power management, reset controller and watchdog constants BCM2836_PM_*


[Expand]
BCM2836 random number generator constants BCM2836_RANDOM_*


[Expand]
BCM2836 clock management constants BCM2836_CM_*


[Expand]
BCM2836 clock manager control constants BCM2836_CM_CTL_*


[Expand]
BCM2836 clock manager divisor constants BCM2836_CM_DIV_*


[Expand]
BCM2836 clock manager constants BCM2836_CM_*


[Expand]
BCM2836 mailbox constants BCM2836_MAILBOX_*


[Expand]
BCM2836 mailbox 0 channel constants BCM2836_MAILBOX0_CHANNEL_*


[Expand]
BCM2836 mailbox 1 channel constants BCM2836_MAILBOX_*


[Expand]
BCM2836 mailbox status flag constants BCM2836_MAILBOX_STATUS_*


[Expand]
BCM2836 mailbox property tag constants BCM2836_MBOX_TAG_*


[Expand]
BCM2836 mailbox board revision value constants BCM2836_BOARD_REV_*


[Expand]
BCM2836 mailbox board revision constants BCM2836_BOARD_REVISION_*


[Expand]
BCM2836 mailbox power state device constants BCM2836_MBOX_POWER_DEVID_*


[Expand]
BCM2836 mailbox power state request constants BCM2836_MBOX_SET_POWER_STATE_REQ_*


[Expand]
BCM2836 mailbox power state response constants BCM2836_MBOX_POWER_STATE_RESP_*


[Expand]
BCM2836 mailbox clock state/rate id constants BCM2836_MBOX_CLOCK_ID_*


[Expand]
BCM2836 mailbox clock state request constants BCM2836_MBOX_SET_CLOCK_STATE_REQ_*


[Expand]
BCM2836 mailbox clock state response constants BCM2836_MBOX_CLOCK_STATE_RESP_*


[Expand]
BCM2836 mailbox clock rate turbo constants BCM2836_MBOX_CLOCK_RATE_*


[Expand]
BCM2836 mailbox voltage id constants BCM2836_MBOX_VOLTAGE_ID_*


[Expand]
BCM2836 mailbox voltage constants BCM2836_MBOX_VOLTAGE_*


[Expand]
BCM2836 mailbox temperature id constants BCM2836_MBOX_TEMP_ID_*


[Expand]
BCM2836 mailbox memory flag constants BCM2836_MBOX_MEM_FLAG_*


[Expand]
BCM2836 mailbox blank screen constants BCM2836_MBOX_BLANK_SCREEN_*


[Expand]
BCM2836 mailbox pixel order constants BCM2836_MBOX_PIXEL_ORDER_*


[Expand]
BCM2836 mailbox alpha mode constants BCM2836_MBOX_ALPHA_MODE_*


[Expand]
BCM2836 mailbox palette constants BCM2836_MBOX_PALETTE_*


[Expand]
BCM2836 mailbox cursor state constants BCM2836_MBOX_CURSOR_*


[Expand]
BCM2836 mailbox cursor state flag constants BCM2836_MBOX_CURSOR_STATE_*


[Expand]
BCM2836 mailbox cursor constants BCM2836_MBOX_CURSOR_*


[Expand]
BCM2836 mailbox request constants BCM2836_MBOX_REQUEST_*


[Expand]
BCM2836 mailbox tag request constants BCM2836_MBOX_TAG_REQUEST_*


[Expand]
BCM2836 GPIO constants BCM2836_GPIO_*


[Expand]
BCM2837 virtual GPIO constants BCM2837_VIRTUAL_GPIO_*


[Expand]
BCM2836 function select register constants BCM2836_GP*


[Expand]
BCM2836 ARM local constants BCM2836_ARM_LOCAL_*


[Expand]
BCM2836 ARM local peripheral constants BCM2836_ARM_LOCAL_REGS_*


[Expand]
BCM2836 IRQ local ARM peripheral constants BCM2836_IRQ_LOCAL_ARM_*


[Expand]
BCM2836 ARM local control constants BCM2836_ARM_LOCAL_CONTROL_*


[Expand]
BCM2836 ARM local GPU interrupt routing constants BCM2836_ARM_LOCAL_GPU_INT_ROUTING_*


[Expand]
BCM2836 ARM local PM interrupt routing set/clear constants BCM2836_ARM_LOCAL_PM_INT_ROUTING_*


[Expand]
BCM2836 ARM local interrupt routing0 (0-7) constants BCM2836_ARM_LOCAL_INT_ROUTING0_TIMER_*


[Expand]
BCM2836 ARM local AXI outstanding count constants BCM2836_ARM_LOCAL_AXI_COUNT_*


[Expand]
BCM2836 ARM local AXI outstanding IRQ constants BCM2836_ARM_LOCAL_AXI_IRQ_*


[Expand]
BCM2836 ARM local timer control constants BCM2836_ARM_LOCAL_TIMER_CONTROL_*


[Expand]
BCM2836 ARM local timer clear reload constants BCM2836_ARM_LOCAL_TIMER_CLEAR_*


[Expand]
BCM2836 ARM local timer interrupt control constants BCM2836_ARM_LOCAL_TIMER_INT_CONTROL_*


[Expand]
BCM2836 ARM local mailbox interrupt control constants BCM2836_ARM_LOCAL_MAILBOX_INT_CONTROL_*


[Expand]
BCM2836 ARM local IRQ pending constants BCM2836_ARM_LOCAL_IRQ_PENDING_*


[Expand]
BCM2836 ARM local FIQ pending constants BCM2836_ARM_LOCAL_FIQ_PENDING_*


Type definitions



BCM2836 interrupt controller registers

[Expand]

PBCM2836InterruptRegisters = ^TBCM2836InterruptRegisters;

TBCM2836InterruptRegisters = record

BCM2836 system timer registers

[Expand]

PBCM2836SystemTimerRegisters = ^TBCM2836SystemTimerRegisters;

TBCM2836SystemTimerRegisters = record

BCM2836 DMA channel registers

[Expand]

PBCM2836DMARegisters = ^TBCM2836DMARegisters;

TBCM2836DMARegisters = record

BCM2836 DMA control block structure

[Expand]

PBCM2836DMAControlBlock = ^TBCM2836DMAControlBlock;

TBCM2836DMAControlBlock = record

BCM2836 BSC (I2C0/1/2) registers

[Expand]

PBCM2836BSCRegisters = ^TBCM2836BSCRegisters;

TBCM2836BSCRegisters = record

BCM2836 SPI0 registers

[Expand]

PBCM2836SPI0Registers = ^TBCM2836SPI0Registers;

TBCM2836SPI0Registers = record

BCM2836 I2C / SPI slave registers

[Expand]

PBCM2836I2CSPIRegisters = ^TBCM2836I2CSPIRegisters;

TBCM2836I2CSPIRegisters = record

BCM2836 AUX (UART1, SPI1 and SPI2) registers

[Expand]

PBCM2836AUXRegisters = ^TBCM2836AUXRegisters;

TBCM2836AUXRegisters = record

BCM2836 PCM / I2S registers

[Expand]

PBCM2836PCMRegisters = ^TBCM2836PCMRegisters;

TBCM2836PCMRegisters = record

BCM2836 pulse width modulator (PWM) registers

[Expand]

PBCM2836PWMRegisters = ^TBCM2836PWMRegisters;

TBCM2836PWMRegisters = record

BCM2836 PL011 UART registers

[Expand]

PBCM2836PL011Registers = ^TBCM2836PL011Registers;

TBCM2836PL011Registers = record

BCM2836 ARM timer registers

[Expand]

PBCM2836ARMTimerRegisters = ^TBCM2836ARMTimerRegisters;

TBCM2836ARMTimerRegisters = record

BCM2836 power management watchdog registers

[Expand]

PBCM2836PMWatchdogRegisters = ^TBCM2836PMWatchdogRegisters;

TBCM2836PMWatchdogRegisters = record

BCM2836 random number generator registers

[Expand]

PBCM2836RNGRegisters = ^TBCM2836RNGRegisters;

TBCM2836RNGRegisters = record

BCM2836 GPIO registers

[Expand]

PBCM2836GPIORegisters = ^TBCM2836GPIORegisters;

TBCM2836GPIORegisters = record

BCM2836 mailbox0 registers

[Expand]

PBCM2836Mailbox0Registers = ^TBCM2836Mailbox0Registers;

TBCM2836Mailbox0Registers = record

BCM2836 mailbox framebuffer request

[Expand]

PBCM2836MailboxFramebuffer = ^TBCM2836MailboxFramebuffer;

TBCM2836MailboxFramebuffer = record

BCM2836 mailbox header property tags

[Expand]

PBCM2836MailboxHeader = ^TBCM2836MailboxHeader;

TBCM2836MailboxHeader = record

BCM2836 mailbox footer property tags

[Expand]

PBCM2836MailboxFooter = ^TBCM2836MailboxFooter;

TBCM2836MailboxFooter = record

BCM2836 mailbox tag headers

[Expand]

PBCM2836MailboxTagHeader = ^TBCM2836MailboxTagHeader;

TBCM2836MailboxTagHeader = record

BCM2836 mailbox tag no request

[Expand]

PBCM2836MailboxTagNoRequest = ^TBCM2836MailboxTagNoRequest;

TBCM2836MailboxTagNoRequest = record

BCM2836 mailbox tag no response

[Expand]

PBCM2836MailboxTagNoResponse = ^TBCM2836MailboxTagNoResponse;

TBCM2836MailboxTagNoResponse = record

BCM2836 mailbox tag firmware revision response

[Expand]

TBCM2836MailboxTagFirmwareRevisionResponse = record

BCM2836 mailbox tag get firmware revision

[Expand]

PBCM2836MailboxTagGetFirmwareRevision = ^TBCM2836MailboxTagGetFirmwareRevision;

TBCM2836MailboxTagGetFirmwareRevision = record

BCM2836 mailbox tag board model response

[Expand]

TBCM2836MailboxTagBoardModelResponse = record

BCM2836 mailbox tag get board model

[Expand]

PBCM2836MailboxTagGetBoardModel = ^TBCM2836MailboxTagGetBoardModel;

TBCM2836MailboxTagGetBoardModel = record

BCM2836 mailbox tag board revision response

[Expand]

TBCM2836MailboxTagBoardRevisionResponse = record

BCM2836 mailbox tag get board revision

[Expand]

PBCM2836MailboxTagGetBoardRevision = ^TBCM2836MailboxTagGetBoardRevision;

TBCM2836MailboxTagGetBoardRevision = record

BCM2836 mailbox tag MAC address response

[Expand]

TBCM2836MailboxTagMACAddressResponse = record

BCM2836 mailbox tag get MAC address

[Expand]

PBCM2836MailboxTagGetMACAddress = ^TBCM2836MailboxTagGetMACAddress;

TBCM2836MailboxTagGetMACAddress = record

BCM2836 mailbox tag board serial response

[Expand]

TBCM2836MailboxTagBoardSerialResponse = record

BCM2836 mailbox tag get board serial

[Expand]

PBCM2836MailboxTagGetBoardSerial = ^TBCM2836MailboxTagGetBoardSerial;

TBCM2836MailboxTagGetBoardSerial = record

BCM2836 mailbox tag ARM memory response

[Expand]

TBCM2836MailboxTagARMMemoryResponse = record

BCM2836 mailbox tag get ARM memory

[Expand]

PBCM2836MailboxTagGetARMMemory = ^TBCM2836MailboxTagGetARMMemory;

TBCM2836MailboxTagGetARMMemory = record

BCM2836 mailbox tag VC memory response

[Expand]

TBCM2836MailboxTagVCMemoryResponse = record

BCM2836 mailbox tag get VC memory

[Expand]

PBCM2836MailboxTagGetVCMemory = ^TBCM2836MailboxTagGetVCMemory;

TBCM2836MailboxTagGetVCMemory = record

BCM2836 mailbox tag clock response

[Expand]

TBCM2836MailboxTagClockResponse = record

BCM2836 mailbox tag clocks response

[Expand]

TBCM2836MailboxTagClocksResponse = record

BCM2836 mailbox tag get clocks

[Expand]

PBCM2836MailboxTagGetClocks = ^TBCM2836MailboxTagGetClocks;

TBCM2836MailboxTagGetClocks = record

BCM2836 mailbox tag get power state requests

[Expand]

TBCM2836MailboxTagGetPowerStateRequest = record

BCM2836 mailbox tag power state response

[Expand]

TBCM2836MailboxTagPowerStateResponse = record

BCM2836 mailbox tag get power state

[Expand]

PBCM2836MailboxTagGetPowerState = ^TBCM2836MailboxTagGetPowerState;

TBCM2836MailboxTagGetPowerState = record

BCM2836 mailbox tag timing request

[Expand]

TBCM2836MailboxTagTimingRequest = record

BCM2836 mailbox tag timing response

[Expand]

TBCM2836MailboxTagTimingResponse = record

BCM2836 mailbox tag get timing

[Expand]

PBCM2836MailboxTagGetTiming = ^TBCM2836MailboxTagGetTiming;

TBCM2836MailboxTagGetTiming = record

BCM2836 mailbox tag set power state request

[Expand]

TBCM2836MailboxTagSetPowerStateRequest = record

BCM2836 mailbox tag set power state

[Expand]

PBCM2836MailboxTagSetPowerState = ^TBCM2836MailboxTagSetPowerState;

TBCM2836MailboxTagSetPowerState = record

BCM2836 mailbox tag get clock state request

[Expand]

TBCM2836MailboxTagGetClockStateRequest = record

BCM2836 mailbox tag clock state response

[Expand]

TBCM2836MailboxTagClockStateResponse = record

BCM2836 mailbox tag get clock state

[Expand]

PBCM2836MailboxTagGetClockState = ^TBCM2836MailboxTagGetClockState;

TBCM2836MailboxTagGetClockState = record

BCM2836 mailbox tag set clock state request

[Expand]

TBCM2836MailboxTagSetClockStateRequest = record

BCM2836 mailbox tag set clock state

[Expand]

PBCM2836MailboxTagSetClockState = ^TBCM2836MailboxTagSetClockState;

TBCM2836MailboxTagSetClockState = record

BCM2836 mailbox tag get clock rate request

[Expand]

TBCM2836MailboxTagGetClockRateRequest = record

BCM2836 mailbox tag clock rate response

[Expand]

TBCM2836MailboxTagClockRateResponse = record

BCM2836 mailbox tag get clock rate

[Expand]

PBCM2836MailboxTagGetClockRate = ^TBCM2836MailboxTagGetClockRate;

TBCM2836MailboxTagGetClockRate = record

BCM2836 mailbox tag set clock rate request

[Expand]

TBCM2836MailboxTagSetClockRateRequest = record

BCM2836 mailbox tag set clock rate

[Expand]

PBCM2836MailboxTagSetClockRate = ^TBCM2836MailboxTagSetClockRate;

TBCM2836MailboxTagSetClockRate = record

BCM2836 mailbox tag get clock max rate request

[Expand]

TBCM2836MailboxTagGetClockMaxRateRequest = record

BCM2836 mailbox tag get clock max rate response

[Expand]

TBCM2836MailboxTagGetClockMaxRateResponse = record

BCM2836 mailbox tag get clock max rate

[Expand]

PBCM2836MailboxTagGetClockMaxRate = ^TBCM2836MailboxTagGetClockMaxRate;

TBCM2836MailboxTagGetClockMaxRate = record

BCM2836 mailbox tag get clock min rate

[Expand]

PBCM2836MailboxTagGetClockMinRate = ^TBCM2836MailboxTagGetClockMinRate;

TBCM2836MailboxTagGetClockMinRate = record

BCM2836 mailbox tag get turbo request

[Expand]

TBCM2836MailboxTagGetTurboRequest = record

BCM2836 mailbox tag turbo response

[Expand]

TBCM2836MailboxTagTurboResponse = record

BCM2836 mailbox tag get turbo

[Expand]

PBCM2836MailboxTagGetTurbo = ^TBCM2836MailboxTagGetTurbo;

TBCM2836MailboxTagGetTurbo = record

BCM2836 mailbox tag set turbo request

[Expand]

TBCM2836MailboxTagSetTurboRequest = record

BCM2836 mailbox tag set turbo

[Expand]

PBCM2836MailboxTagSetTurbo = ^TBCM2836MailboxTagSetTurbo;

TBCM2836MailboxTagSetTurbo = record

BCM2836 mailbox tag get voltage request

[Expand]

TBCM2836MailboxTagGetVoltageRequest = record

BCM2836 mailbox tag voltage response

[Expand]

TBCM2836MailboxTagVoltageResponse = record

BCM2836 mailbox tag get voltage

[Expand]

PBCM2836MailboxTagGetVoltage = ^TBCM2836MailboxTagGetVoltage;

TBCM2836MailboxTagGetVoltage = record

BCM2836 mailbox tag set voltage request

[Expand]

TBCM2836MailboxTagSetVoltageRequest = record

BCM2836 mailbox tag set voltage

[Expand]

PBCM2836MailboxTagSetVoltage = ^TBCM2836MailboxTagSetVoltage;

TBCM2836MailboxTagSetVoltage = record

BCM2836 mailbox tag get max voltage

[Expand]

PBCM2836MailboxTagGetMaxVoltage = ^TBCM2836MailboxTagGetMaxVoltage;

TBCM2836MailboxTagGetMaxVoltage = record

BCM2836 mailbox tag get min voltage

[Expand]

PBCM2836MailboxTagGetMinVoltage = ^TBCM2836MailboxTagGetMinVoltage;

TBCM2836MailboxTagGetMinVoltage = record

BCM2836 mailbox tag temperature request

[Expand]

TBCM2836MailboxTagTemperatureRequest = record

BCM2836 mailbox tag temperature response

[Expand]

TBCM2836MailboxTagTemperatureResponse = record

BCM2836 mailbox tag get temperature

[Expand]

PBCM2836MailboxTagGetTemperature = ^TBCM2836MailboxTagGetTemperature;

TBCM2836MailboxTagGetTemperature = record

BCM2836 mailbox tag get max temperature

[Expand]

PBCM2836MailboxTagGetMaxTemperature = ^TBCM2836MailboxTagGetMaxTemperature;

TBCM2836MailboxTagGetMaxTemperature = record

BCM2836 mailbox tag allocate memory request

[Expand]

TBCM2836MailboxTagAllocateMemoryRequest = record

BCM2836 mailbox tag allocate memory response

[Expand]

TBCM2836MailboxTagAllocateMemoryResponse = record

BCM2836 mailbox tag allocate memory

[Expand]

PBCM2836MailboxTagAllocateMemory = ^TBCM2836MailboxTagAllocateMemory;

TBCM2836MailboxTagAllocateMemory = record

BCM2836 mailbox tag lock memory request

[Expand]

TBCM2836MailboxTagLockMemoryRequest = record

BCM2836 mailbox tag locl memory response

[Expand]

TBCM2836MailboxTagLockMemoryResponse = record

BCM2836 mailbox tag lock memory

[Expand]

PBCM2836MailboxTagLockMemory = ^TBCM2836MailboxTagLockMemory;

TBCM2836MailboxTagLockMemory = record

BCM2836 mailbox tag unlock memory response

[Expand]

TBCM2836MailboxTagUnlockMemoryResponse = record

BCM2836 mailbox tag unlock memory

[Expand]

PBCM2836MailboxTagUnlockMemory = ^TBCM2836MailboxTagUnlockMemory;

TBCM2836MailboxTagUnlockMemory = record

BCM2836 mailbox tag release memory

[Expand]

PBCM2836MailboxTagReleaseMemory = ^TBCM2836MailboxTagReleaseMemory;

TBCM2836MailboxTagReleaseMemory = record

BCM2836 mailbox tag execute code request

[Expand]

TBCM2836MailboxTagExecuteCodeRequest = record

BCM2836 mailbox tag execute code response

[Expand]

TBCM2836MailboxTagExecuteCodeResponse = record

BCM2836 mailbox tag execute code

[Expand]

PBCM2836MailboxTagExecuteCode = ^TBCM2836MailboxTagExecuteCode;

TBCM2836MailboxTagExecuteCode = record

BCM2836 mailbox tag get dispmanx handle

[Expand]

TBCM2836MailboxTagGetDispmanxHandleRequest = record

BCM2836 mailbox tag get dispmanx handle response

[Expand]

TBCM2836MailboxTagGetDispmanxHandleResponse = record

BCM2836 mailbox tag get dispmanx handle

[Expand]

PBCM2836MailboxTagGetDispmanxHandle = ^TBCM2836MailboxTagGetDispmanxHandle;

TBCM2836MailboxTagGetDispmanxHandle = record

BCM2836 mailbox tag EDID block request

[Expand]

TBCM2836MailboxTagGetEDIDBlockRequest = record

BCM2836 mailbox tag EDID block response

[Expand]

TBCM2836MailboxTagGetEDIDBlockResponse = record

BCM2836 mailbox tag get EDID block

[Expand]

PBCM2836MailboxTagGetEDIDBlock = ^TBCM2836MailboxTagGetEDIDBlock;

TBCM2836MailboxTagGetEDIDBlock = record

BCM2836 mailbox tag allocate buffer request

[Expand]

TBCM2836MailboxTagAllocateBufferRequest = record

BCM2836 mailbox tag allocate buffer response

[Expand]

TBCM2836MailboxTagAllocateBufferResponse = record

BCM2836 mailbox tag allocate buffer

[Expand]

PBCM2836MailboxTagAllocateBuffer = ^TBCM2836MailboxTagAllocateBuffer;

TBCM2836MailboxTagAllocateBuffer = record

BCM2836 mailbox tag release buffer

[Expand]

PBCM2836MailboxTagReleaseBuffer = ^TBCM2836MailboxTagReleaseBuffer;

TBCM2836MailboxTagReleaseBuffer = record

BCM2836 mailbox tag blank screen request

[Expand]

TBCM2836MailboxTagBlankScreenRequest = record

BCM2836 mailbox tag blank screen response

[Expand]

TBCM2836MailboxTagBlankScreenResponse = record

BCM2836 mailbox tag blank screen

[Expand]

PBCM2836MailboxTagBlankScreen = ^TBCM2836MailboxTagBlankScreen;

TBCM2836MailboxTagBlankScreen = record

BCM2836 mailbox tag physical request

[Expand]

TBCM2836MailboxTagPhysicalRequest = record

BCM2836 mailbox tag physical response

[Expand]

TBCM2836MailboxTagPhysicalResponse = record

BCM2836 mailbox tag get physical

[Expand]

PBCM2836MailboxTagGetPhysical = ^TBCM2836MailboxTagGetPhysical;

TBCM2836MailboxTagGetPhysical = record

BCM2836 mailbox tag test physical

[Expand]

PBCM2836MailboxTagTestPhysical = ^TBCM2836MailboxTagTestPhysical;

TBCM2836MailboxTagTestPhysical = record

BCM2836 mailbox tag set physical

[Expand]

PBCM2836MailboxTagSetPhysical = ^TBCM2836MailboxTagSetPhysical;

TBCM2836MailboxTagSetPhysical = record

BCM2836 mailbox tag virtual request

[Expand]

TBCM2836MailboxTagVirtualRequest = record

BCM2836 mailbox tag virtual response

[Expand]

TBCM2836MailboxTagVirtualResponse = record

BCM2836 mailbox tag get virtual

[Expand]

PBCM2836MailboxTagGetVirtual = ^TBCM2836MailboxTagGetVirtual;

TBCM2836MailboxTagGetVirtual = record

BCM2836 mailbox tag test virtual

[Expand]

PBCM2836MailboxTagTestVirtual = ^TBCM2836MailboxTagTestVirtual;

TBCM2836MailboxTagTestVirtual = record

BCM2836 mailbox tag set virtual

[Expand]

PBCM2836MailboxTagSetVirtual = ^TBCM2836MailboxTagSetVirtual;

TBCM2836MailboxTagSetVirtual = record

BCM2836 mailbox tag depth request

[Expand]

TBCM2836MailboxTagDepthRequest = record

BCM2836 mailbox tag depth response

[Expand]

TBCM2836MailboxTagDepthResponse = record

BCM2836 mailbox tag get depth

[Expand]

PBCM2836MailboxTagGetDepth = ^TBCM2836MailboxTagGetDepth;

TBCM2836MailboxTagGetDepth = record

BCM2836 mailbox tag test depth

[Expand]

PBCM2836MailboxTagTestDepth = ^TBCM2836MailboxTagTestDepth;

TBCM2836MailboxTagTestDepth = record

BCM2836 mailbox tag set depth

[Expand]

PBCM2836MailboxTagSetDepth = ^TBCM2836MailboxTagSetDepth;

TBCM2836MailboxTagSetDepth = record

BCM2836 mailbox tag pixel order request

[Expand]

TBCM2836MailboxTagPixelOrderRequest = record

BCM2836 mailbox tag pixel order response

[Expand]

TBCM2836MailboxTagPixelOrderResponse = record

BCM2836 mailbox tag get pixel order

[Expand]

PBCM2836MailboxTagGetPixelOrder = ^TBCM2836MailboxTagGetPixelOrder;

TBCM2836MailboxTagGetPixelOrder = record

BCM2836 mailbox tag test pixel order

[Expand]

PBCM2836MailboxTagTestPixelOrder = ^TBCM2836MailboxTagTestPixelOrder;

TBCM2836MailboxTagTestPixelOrder = record

BCM2836 mailbox tag set pixel order

[Expand]

PBCM2836MailboxTagSetPixelOrder = ^TBCM2836MailboxTagSetPixelOrder;

TBCM2836MailboxTagSetPixelOrder = record

BCM2836 mailbox tag alpha mode request

[Expand]

TBCM2836MailboxTagAlphaModeRequest = record

BCM2836 mailbox tag alpha mode response

[Expand]

TBCM2836MailboxTagAlphaModeResponse = record

BCM2836 mailbox tag get alpha mode

[Expand]

PBCM2836MailboxTagGetAlphaMode = ^TBCM2836MailboxTagGetAlphaMode;

TBCM2836MailboxTagGetAlphaMode = record

BCM2836 mailbox tag test alpha mode

[Expand]

PBCM2836MailboxTagTestAlphaMode = ^TBCM2836MailboxTagTestAlphaMode;

TBCM2836MailboxTagTestAlphaMode = record

BCM2836 mailbox tag set alpha more

[Expand]

PBCM2836MailboxTagSetAlphaMode = ^TBCM2836MailboxTagSetAlphaMode;

TBCM2836MailboxTagSetAlphaMode = record

BCM2836 mailbox tag pitch response

[Expand]

TBCM2836MailboxTagPitchResponse = record

BCM2836 mailbox tag get pitch

[Expand]

PBCM2836MailboxTagGetPitch = ^TBCM2836MailboxTagGetPitch;

TBCM2836MailboxTagGetPitch = record

BCM2836 mailbox tag virtual offset request

[Expand]

TBCM2836MailboxTagVirtualOffsetRequest = record

BCM2836 mailbox tag virtual offset response

[Expand]

TBCM2836MailboxTagVirtualOffsetResponse = record

BCM2836 mailbox tag virtual offset

[Expand]

PBCM2836MailboxTagGetVirtualOffset = ^TBCM2836MailboxTagGetVirtualOffset;

TBCM2836MailboxTagGetVirtualOffset = record

BCM2836 mailbox tag test virtual offset

[Expand]

PBCM2836MailboxTagTestVirtualOffset = ^TBCM2836MailboxTagTestVirtualOffset;

TBCM2836MailboxTagTestVirtualOffset = record

BCM2836 mailbox tag set virtual offset

[Expand]

PBCM2836MailboxTagSetVirtualOffset = ^TBCM2836MailboxTagSetVirtualOffset;

TBCM2836MailboxTagSetVirtualOffset = record

BCM2836 mailbox tag overscan request

[Expand]

TBCM2836MailboxTagOverscanRequest = record

BCM2836 mailbox tag overscan response

[Expand]

TBCM2836MailboxTagOverscanResponse = record

BCM2836 mailbox tag get overscan

[Expand]

PBCM2836MailboxTagGetOverscan = ^TBCM2836MailboxTagGetOverscan;

TBCM2836MailboxTagGetOverscan = record

BCM2836 mailbox tag test overscan

[Expand]

PBCM2836MailboxTagTestOverscan = ^TBCM2836MailboxTagTestOverscan;

TBCM2836MailboxTagTestOverscan = record

BCM2836 mailbox tag set overscan

[Expand]

PBCM2836MailboxTagSetOverscan = ^TBCM2836MailboxTagSetOverscan;

TBCM2836MailboxTagSetOverscan = record

BCM2836 mailbox tag get palette response

[Expand]

TBCM2836MailboxTagGetPaletteResponse = record

BCM2836 mailbox tag get palette

[Expand]

PBCM2836MailboxTagGetPalette = ^TBCM2836MailboxTagGetPalette;

TBCM2836MailboxTagGetPalette = record

BCM2836 mailbox tag palette request

[Expand]

TBCM2836MailboxTagPaletteRequest = record

BCM2836 mailbox tag palette response

[Expand]

TBCM2836MailboxTagPaletteResponse = record

BCM2836 mailbox tag test palette

[Expand]

PBCM2836MailboxTagTestPalette = ^TBCM2836MailboxTagTestPalette;

TBCM2836MailboxTagTestPalette = record

BCM2836 mailbox tag set palette

[Expand]

PBCM2836MailboxTagSetPalette = ^TBCM2836MailboxTagSetPalette;

TBCM2836MailboxTagSetPalette = record

BCM2836 mailbox tag get touch response

[Expand]

TBCM2836MailboxTagGetTouchResponse = record

BCM2836 mailbox tag get touch

[Expand]

PBCM2836MailboxTagGetTouch = ^TBCM2836MailboxTagGetTouch;

TBCM2836MailboxTagGetTouch = record

BCM2836 mailbox tag get virtual GPIO response

[Expand]

TBCM2836MailboxTagGetVirtualGPIOResponse = record

BCM2836 mailbox tag get virtual GPIO

[Expand]

PBCM2836MailboxTagGetVirtualGPIO = ^TBCM2836MailboxTagGetVirtualGPIO;

TBCM2836MailboxTagGetVirtualGPIO = record

BCM2836 mailbox tag test vsync

[Expand]

PBCM2836MailboxTagTestVsync = ^TBCM2836MailboxTagTestVsync;

TBCM2836MailboxTagTestVsync = record

BCM2836 mailbox tag set vsync

[Expand]

PBCM2836MailboxTagSetVsync = ^TBCM2836MailboxTagSetVsync;

TBCM2836MailboxTagSetVsync = record

BCM2836 mailbox tag set backlight request

[Expand]

TBCM2836MailboxTagSetBacklightRequest = record

BCM2836 mailbox tag set backlight response

[Expand]

TBCM2836MailboxTagSetBacklightResponse = record

BCM2836 mailbox tag set backlight

[Expand]

PBCM2836MailboxTagSetBacklight = ^TBCM2836MailboxTagSetBacklight;

TBCM2836MailboxTagSetBacklight = record

BCM2836 mailbox tag set cursor info request

[Expand]

TBCM2836MailboxTagSetCursorInfoRequest = record

BCM2836 mailbox tag cursor response

[Expand]

TBCM2836MailboxTagCursorResponse = record

BCM2836 mailbox tag set cursor info

[Expand]

PBCM2836MailboxTagSetCursorInfo = ^TBCM2836MailboxTagSetCursorInfo;

TBCM2836MailboxTagSetCursorInfo = record

BCM2836 mailbox tag set cursor state request

[Expand]

TBCM2836MailboxTagSetCursorStateRequest = record

BCM2836 mailbox tag set cursor state

[Expand]

PBCM2836MailboxTagSetCursorState = ^TBCM2836MailboxTagSetCursorState;

TBCM2836MailboxTagSetCursorState = record

BCM2836 mailbox tag command line response

[Expand]

TBCM2836MailboxTagCommandLineResponse = record

BCM2836 mailbox tag get command line

[Expand]

PBCM2836MailboxTagGetCommandLine = ^TBCM2836MailboxTagGetCommandLine;

TBCM2836MailboxTagGetCommandLine = record

BCM2836 mailbox tag DMA channels response

[Expand]

TBCM2836MailboxTagDMAChannelsResponse = record

BCM2836 mailbox tag get DMA channels

[Expand]

PBCM2836MailboxTagGetDMAChannels = ^TBCM2836MailboxTagGetDMAChannels;

TBCM2836MailboxTagGetDMAChannels = record

BCM2836 mailbox tag create buffer

[Expand]

PBCM2836MailboxTagCreateBuffer = ^TBCM2836MailboxTagCreateBuffer;

TBCM2836MailboxTagCreateBuffer = record

BCM2836 mailbox tag query buffer

[Expand]

PBCM2836MailboxTagQueryBuffer = ^TBCM2836MailboxTagQueryBuffer;

TBCM2836MailboxTagQueryBuffer = record

BCM2836 ARM local mailbox write registers

[Expand]

PBCM2836ARMLocalMailboxWriteRegisters = ^TBCM2836ARMLocalMailboxWriteRegisters;

TBCM2836ARMLocalMailboxWriteRegisters = record

BCM2836 ARM local mailbox read clear registers

[Expand]

PBCM2836ARMLocalMailboxReadClearRegisters = ^TBCM2836ARMLocalMailboxReadClearRegisters;

TBCM2836ARMLocalMailboxReadClearRegisters = record

BCM2836 ARM local registers

[Expand]

PBCM2836ARMLocalRegisters = ^TBCM2836ARMLocalRegisters;

TBCM2836ARMLocalRegisters = record

BCM2836 virtual GPIO buffer

[Expand]

PBCM2837VirtualGPIOBuffer = ^TBCM2837VirtualGPIOBuffer;

TBCM2837VirtualGPIOBuffer = record


Public variables


None defined

Function declarations


None defined


Return to Unit Reference