linux-chenxing.org

IP blocks

PM domain

Mostly a mystery. Hardware in this area is kept alive even when the chip is in deep sleep. For infinity3 and mercury5 at least PM domain blocks are easy to see because they mapped to 0x1f00xxxx.

sleep intc

32 interrupts forwarded to the IRQ intc via a single interrupt. This is mostly for the pm / interrupts.

  u-boot linux
infinity   yes
infinity3   yes
mercury5   yes

PM GPIO

pm_gpio4 on infinity3 (maybe others) is weird and needs to be “unlocked” before it can be set.

/*
 * MStar PM GPIO
 *
 * 15 - 12 | 11 - 0 |      9       |    8       |    7     |    6    | 5 |    4     | 3 | 2  |  1  |  0
 *    ?    |    0   | INVERTED IN? | INT STATUS | INT TYPE | INT CLR | ? | INT MASK | ? | IN | OUT | OEN
 *         |        |     ro?      |   ro?      |          |   wo    |   |          |   |    |     |
 *
 * bit 9 reacts to the pin being pulled up and down
 *
 * Reset value is 0x0215
 *
 */
  u-boot linux
infinity   yes
infinity3   yes
mercury5   yes

EFUSE

more info

Interrupt controllers

more info

IRQ intc

64 interrupts forwarded to the GIC

  u-boot linux u-boot mainlined linux mainlined
infinity   yes   yes
infinity2m   yes   yes
infinity3   yes   yes
mercury5   yes   yes

FIQ intc

32 interrupts forwarded to the GIC as FIQs. Basically the same as the above.

GPI gpio interrupt controller

Seems to be new for i2m and i6. This seems to be another interrupt controller for GPIO interrupts that are forwarded via a single interrupt to the GIC.

Support Matrix

  u-boot linux
infinity   N/A
infinity2m   wip
infinity3   N/A
mercury5   N/A
pioneer3   wip

Pinmux

More details

Support Matrix

  u-boot linux
infinity   yes
infinity2m   partial
infinity3   yes
mercury5   wip

Clocks

See clks.

Bus Glue

L3 Bridge/AXI interface

There is some fabric between the CPU, other bus masters and the memory. Some magic bits in here are used to flush pending cpu writes to memory so other bus masters can see them.

More info

MIU

MIU or “memory interface unit” is a multiport DDR controller that is wired to the CPU(s) and DMA capable perpherials like USB, Ethernet and so on.

More info

MMU

More info

RIU

RIU or “register interface unit” is a brige between the CPU and perpherial registers. It’s fairly straight forward for the most part with one annoying quirk; 32 bit registers are split into two 16 bit locations that are spaced 4 bytes apart. This means that any existing drivers that expect 32 bit registers aligned to 4 bytes needs to have a quirk added to read the two 16 bit parts and stitch them back together.

XIU

XIU, maybe eXtended interface unit?, seems to be a second way to access the registers that uses the same offsets as the RIU but presents 32bit wide registers for selected blocks like the EMAC and USB. For example on i3 the EMAC is present as split registers at 0x1f2a2000 and 32bit wide registers with the same offsets at 0x1f343c00. For i1 only the split interface exists.

IMI

IMI or “internal memory interface”? interface for embedded SRAM. It seems to have multiple ports so the CPU and some perpherials are able to access the SRAM but not a lot is known about that yet.

Timers

Appart from the ARMv7 builtin timer, there are 3 SoC specific timer peripherals at 0x1f006040, 0x1f006080 and 0x1f0060c0. They are running at 12MHz on infinity3 and 432MHz on infinity2m (and newer?). Infinity2m have a clock divider. The IPL sets the divider of the first timer to emulate the existing 12MHz behaviour.

Registermap

Offset Name Comment
0x00 CTRL bit0 - ~oe
bit1 - trig
bit3 - clear
bit4 - capture
bit8 - int
0x08 MAX_L Low 16 bits of the max value
0x0c MAX_H High 16 bits of the max value
0x10 CNT_L Low 16 bits of the counter
0x14 CNT_H High 16 bits of the counter

Support Matrix

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

RTC

Base address is 0x1f202400 (on infinity3). Can be a wakeup source, can generate alarm interrupt, does not seem to have an eeprom.

Registermap:

Offset Name Comment
0x00 CTRL bit fileds below
bit 0 CTRL_SOFT_RSTZ it is set to 1 by the driver, not sure what it means
bit 1 CTRL_CNT_EN start the counter?? set to 1 in the probe of driver [0]
bit 2 CTRL_WRAP_EN ??
bit 3 CTRL_LOAD_EN should read back in a loop to ensure HW latch, needed to set RTC_LOAD_VAL
bit 4 CTRL_READ_EN should read back in a loop to ensure HW latch, needed to read RTC_CNT_VAL
bit 5 CTRL_INT_MASK mask alarm interrupt (when RTC_MATCH_VAL reached)
bit 6 CTRL_FORCE force an alarm interrupt maybe?
bit 7 CTRL_INT_CLEAR set to clear the interrupt status
0x04 RTC_FREQ_CW_L low 16bits of clock frequency divider value
0x08 RTC_FREQ_CW_H high 16bits of clock frequency divider value
0x0C RTC_LOAD_VAL_L low 16bits for the load value (to change the current time), set LOAD_EN after changing this, the driver also zeroes this after the LOAD_EN_BIT was set
0x10 RTC_LOAD_VAL_H hih 16bits for the load value (to change the current time), see the note above
0x14 RTC_MATCH_VAL_L low 16bits of match value (for alarm)
0x18 RTC_MATCH_VAL_H high 16bits of match value (for alarm)
0x20 RTC_CNT_VAL_L low 16bits of counter
0x24 RTC_CNT_VAL_H high 16bits of counter

Note [0]: IPL expects this bit to be set after a software reset - otherwise it assumes a HW reset happened. The only difference is in the messages printed and the fact that bit 1 in RSTLEN of WDT is cleared in software reset case, though.

Support Matrix

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

RTCPWC

https://github.com/linux-chenxing/linux-ssc325/blob/takoyaki_dls00v017/drivers/sstar/rtc/reg/reg_rtcpwc.h https://github.com/linux-chenxing/linux-ssc325/blob/pudding_clc03v002/drivers/sstar/sar_key/adc-keys.c

offset name 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 notes
0x0                 sw1 rd sw0 rd sw1 wr sw1 rd alarm wr cnt rst wr base rd base wr   these bits seem to control which internal register is read/wrote from rddata/wrdata
0x4                                 cnt rd  
0x8                                    
0xc iso ctrl                                  
0x10 wrdata_l wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata  
0x14 wrdata_h wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata wrdata  
0x18                                    
0x1c                                    
0x20 iso ctrl ack                         ack        
0x24 rddata_l rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata rddata need to confirm how many bits
0x28 rddata_h rddata? rddata? rddata? rddata? rddata? rddata? rddata? rddata? rddata rddata? rddata? rddata? rddata? rddata? rddata? rddata see above
0x2c                                 cnt_updating  
0x30 rddata_cnt_l                                  
0x34 rddata_cnt_h                                  
0x38                                 cnt_rd_trig  
0x3c                             1 at boot can write 1 at boot zero’d by power off code
0x40                 rst                  
0x44                                    
0x48                                    
0x4c                                    
0x50                                    
0x54 testbus                     clk_1k         iso_en  
  u-boot linux
infinity   no hardware?
infinity2m   wip
infinity3   no hardware?
mercury5   no hardware?

DMA

BDMA

BDMA or “Byte DMA” is a simple A -> B DMA engine. It’s mainly used to move data from the memory mapped SPI NOR into main memory so the CPU doesn’t have to do it. It also apparently supports doing CRC calculations.

more info

Support Matrix

  u-boot linux number of channels
infinity   yes 2
infinity2m   yes 4
infinity3   yes 2
mercury5   yes 2

CMDQ

CMDQ or “command queue” is a descriptor list based DMA engine that seems to be intended to be used to tie the parts of the camera pipeline together so that the CPU doesn’t need to be involved.

Note: This seems to live in the “RIU” register address space and maybe can’t see the system memory.

more info

Support Matrix

  u-boot linux
infinity   wip
infinity3   wip

URDMA

Per-uart DMA controller. Present on “FUART” uarts.

more info

MOVEDMA

MOVEDMA is a new DMA controller that seems to have appeared in newer infinity parts. It seems to be used for DMA driven SPI.

More info

  u-boot linux
infinity   NA?
infinity2m    
infinity3   NA?

Crypto

See Crypto

Support Matrix

block family u-boot linux
RNG infinity   yes
  infinity2m   yes
  infinity3   yes
  mercury5   yes

Ethernet

100mbit phy

This PHY is weird in that it’s registers are visible via MDIO and memory mapped. 0x00 - 0x7c are visible as MII registers 0 - 31.

offset name 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 default working value writeable msc313 msc313e
0x74                                           x
0xe4 lpbk enable set to 0                                   0x4a0   x x
0x29c det max                                   0x24c   x x
0x2a0 det min                                   0x160   x x
0x2e0                                           x
0x2ec snr len                                   0x1800   x x
0x368 gain shift                                   0x0002   x x
0x374                                           x
0x388                                           x
0x398                                           x
0x3f8 ldo power down?                                   0x0000 0xffff x x
0x460                                           x
0x470                                           x
0x500                                           x
0x514                                           x
0x540                                           x
0x588                                           x
0x5e4 200 gat                                         x

Cadence EMAC

More details

Based on the comments for the registers in the vendor code this seems to be the same as the version in the AT91RM200 as they match up almost exactly with the comments for some official code for the AT91RM200.

Support Matrix

  u-boot linux notes
infinity yes yes  
infinity2m yes yes integrated phy port works, port with phy untested
infinity3 yes yes  

GMAC

USB

UTMI

This is the USB PHY. It’s probably a Faraday design to go with the Faraday EHCI host but this isn’t confirmed. This also supplies the clocks for the UHC and OTG so it’s not safe to access them before enabling the clocks here first.

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

BC

This seems to be a way of presenting the right resistor values on the data lines to trigger chargers into supplying more current.

  u-boot linux
infinity    
infinity3    
mercury5    

USBC

This seems to be essentially a mux that sits between the UTMI and the UHC and OTG blocks so that UTMI can be connected to the right block for the current role the port is in.

More details

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

UHC

This is a usb host controller that seems to be based on a Faraday design. It’s a broken-EHCI controller. Seems to be called “FUSBH200”.

According to this commit on the Faraday usb controller PORTSC is at 0x30 instead of 0x44 which matches the register descriptions in the datahsheets we have with registers. https://github.com/linux-chenxing/u-boot/commit/e82a316d7f9425943d86c1ed61c5cf57b0d5b188#diff-7d35a95a303a716a610d53273a2cf3a8d3e0093b3fbfb3ce470285df7ff0ac2a

More details

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

OTG

This seems to be an musb USB device controller.

  u-boot linux
infinity   wip
infinity3   wip
mercury5   wip

USB3

Seems to be DWC3

ADC

SAR

This seems to be a fairly standard ADC. Channel 7 is an on-die temp sensor.

rough register descriptions

Support Matrix

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

Registers

note these seem to be slightly different for older chips. The listing here is for the infinity/mercury5.

address name 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0  
0x0 ctrl   load en   [0] nch en sel freerun adc pd start digital pd mode single channel en level trigger single channel mask single channel mask single channel mask  
                        0 - one shot            
                        1 - free run            
0x4 sample period                                  
0x40 reg_pm_dmy                                  
0x44 gpio ctrl         CH3_OEN CH2_OEN CH1_OEN CH0_OEN         CH3_EN CH2_EN CH1_EN CH0_EN  
0x48 gpio data         CH3_IN CH2_IN CH1_IN CH0_IN         CH3_OUT CH2_OUT CH1_OUT CH0_OUT  
0x50 int mask               ? ? ? ? ? ? ? ? ?  
0x54 int clear                                  
0x58 int force                                  
0x5c int status                                  
0x60 cmp out rdy                                  
0x64 vref sel                   ch7         ch1    
                      0 - 2.0v         0 - 2.0v    
                      1 - avdd         1 - avdd    
0x118 ch7 data                                  
0x180 INT_DIRECT2TOP_SEL                                  

CH?_EN bits control if the pin is an ADC pin or GPIO, 1 = ADC, 0 = GPIO CH?_OEN bits control the gpio direction, 1 = input, 0 = output CH?_IN bits represent the gpio input level CH?_OUT bits set the gpio output level

INT_DIRECT2TOP_SEL – this seems to select which interrupt comes straight to the CPU. It seems to default to 0x2 which means writing 0x4 to force interrupt causes an interrupt.

 * # devmem 0x1f0018bc
 * 	0x00000000
 * # devmem 0x1f001cbc
 *	0x00000000
 * # devmem 0x1f001d90 16 0x2400
 *
 * This seems to be power down for the temp sensor
 * # devmem 0x1f001cbc 16 0x4

Serial

Serial seems to be a standard Designware UART with USR register in a different location (at offset 0x38). The usual 8250 registers are at offsets divisible by 8 (the reg-shift is 3). So:

There seems to be some unknown register at offset 0x70, the bootROM zeroes bit 0 of it and then sets it back to 1 before configuring UART so it is resetting something.

Support Matrix

  u-boot linux
infinity yes yes
infinity3 yes yes
mercury5 yes yes

i2c

  u-boot linux
infinity   yes
infinity2m   yes
infinity3   yes
mercury5   yes

Rough register descriptions

spi

pspi

Pixel(?) SPI. New in pioneer3

more details

pwm

  u-boot linux channels
infinity2m   yes 4
infinity3   yes 8
       
/*
 *
 * There are channels at
 * 0x1f003400
 * 0x1f003480
 * 0x1f003500
 * 0x1f003580
 * 0x1f003600
 * 0x1f003680
 * ..
 *
 *         reset value     writable bits

0x0  -  0               0xFFFF
0x4  -  0               0x3
0x8  -  0               0xFFFF -- duty
0xc  -  0               0x3
0x10 -  0               0xFFFF -- period
0x14 -  0               0x3
0x18 -  0               0xFFFF -- clk div


0x1c -  0               0x1F

    4    |
polarity |
 */

spi-nor

spi-nor functionality is made of 3 different IP blocks; ISP, FSP and QSP. These are all basically slightly different SPI masters.

Support Matrix

  u-boot linux
infinity yes yes
infinity2m yes yes
infinity3 yes yes
mercury5 yes yes
pioneer3   yes

More info

SD/SDIO

There seem to be many versions or revions of the SD/SDIO block. Some versions seem to also support memory stick etc.

v5 as seen in i3 and m5

  u-boot linux notes
infinity   yes  
infinity2m   yes  
infinity3   yes  
mercury5   yes  
pioneer 3   yes  

Display pipeline

This display pipeline(s) are made up of a bunch of different blocks that can be changed/mixed together and then thrown out of an output. The vendor code for this area is a complete mess so it’s going to be very hard to work out how to use any of it.

More info

For a mipi display on the m5 the pipeline seems to look like this:

 -----      ----------      ------
| PNL | -> | MIPI DSI | -> | DPHY |
 -----      ----------      ------

MIPI DSI

Seems to be the same as the mediatek one based on this header.

HDMI TX

HDMI Transmitter

more info

GOP

“Graphics Output Path”. This is a simple framebuffer that uses a chunk of system memory.

MOP

“?mozaic? Output Path”. This is a unit that allowed for descrambling censored adult videos.. not really.

This apparently allows tiling up to 16 inputs. So maybe you could have 16 frames coming from somewhere and then tile them and display them all at once. Maybe for a tiled CCTV display?

PNL

PaNeL? Seems to be incharge of driving LCDs either via a parallel interface or MIPI.

  u-boot linux
infinity2m   wip

Camera

The pipeline for the m5 seems to look like this:

          
 -------         -----      ------
|  VIF  | <-X-- | CSI | <- | DPHY |
 -------    |    -----      ------
            |    -------
             \- | BT656 |
                 -------

There seems to be 3 “vif” blocks. Then two csi blocks and two dphys. The sr0 dphy seems to only support two lanes. The sr1 dphy supports 4.

VIF

vif, video interface?, seems to also be called “sensor” seems to be the sink for the video after it’s come from mipi or somewhere else.

Rough register descriptions

ISP

This is the main camera sensor interface block. It can either take input from a parallel sensor or from the CSI and in turn a MIPI CSI sensor.

CSI

This is a frontend for the ISP that allows it to interface with a MIPI CSI sensor.

  u-boot linux
infinity n/a wip
infinity3 n/a wip
mercury5 n/a wip

Video Encoder/Decoder

MFE

“Multi-Format Encoder”.

Rough register descriptions

VFE

JPE

Hardware JPEG encoder

Rough register descriptions https://github.com/github188/sdk-2/blob/master/mhal/i2/jpe/hal/pub/hal_jpe_ios.h

VPU

Video decoder? Chips and Media block?

https://github.com/ZYCX8888/Democode-TAKOYAKI-BETA001-0312/tree/d5841ab9fde1771b72aa842fc48a01bb832d4a0a/sdk/verify/feature/vdec/cnm_sw

GE

2D “GPU” for doing basic 2D graphics operations in hardware

More info

Audio

BACH

BACH is a fairly generic DMA engine with a DAC attached audio block.

Also known as “Cleveland Haydn” or Haydn

Reverse engineering

Support Matrix

  u-boot linux
infinity n/a wip
infinity3 n/a wip
mercury5 n/a wip

SATA

Seems to be AHCI.

https://github.com/linux-chenxing/linux-ssc325/tree/takoyaki_dls00v017/drivers/sstar/sata_host

SATA

Misc

Mailbox

Seems to be 64 bytes of registers that survive reset. The boot rom seems to use the first word to track something. The values from 0xc0 to 0xff are constantly changing.

The vendor kernel writes the location of the kernel log buffer into there. Presumably so that the log can be read out in the case of a crash?

After writing 0xffff to every word and resetting to see what values get changed before u-boot:

Register values on i1 after filling with 0xffff and resetting:

=> md.w 0x1f200800 0x80
1f200800: a002 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200810: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200820: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200830: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200840: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200850: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200860: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200870: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200880: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200890: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008a0: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008b0: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008c0: 3991 0000 b999 0000 3991 0000 3999 0000    .9.......9...9..
1f2008d0: 1b99 0000 b999 0000 3991 0000 b999 0000    .........9......
1f2008e0: 3999 0000 b991 0000 3b91 0000 3999 0000    .9.......;...9..
1f2008f0: 3b91 0000 bb99 0000 3b91 0000 b999 0000    .;.......;......

Register values on i3 after filling with 0xffff and resetting:

=> md.w 0x1f200800 0x80
1f200800: a002 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200810: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200820: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200830: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200840: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200850: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200860: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200870: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200880: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200890: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008a0: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008b0: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008c0: 8442 0000 a442 0000 8440 0000 b442 0000    B...B...@...B...
1f2008d0: 8440 0000 b462 0000 8442 0000 b442 0000    @...b...B...B...
1f2008e0: 8442 0000 b442 0000 8442 0000 a442 0000    B...B...B...B...
1f2008f0: a442 0000 b442 0000 8442 0000 a442 0000    B...B...B...B...

And m5:

1f200800: 0b12 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200810: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200820: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200830: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200840: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200850: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200860: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200870: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200880: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f200890: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008a0: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008b0: ffff 0000 ffff 0000 ffff 0000 ffff 0000    ................
1f2008c0: 2d71 0000 0d71 0000 0d71 0000 0d71 0000    q-..q...q...q...
1f2008d0: 0d71 0000 0d71 0000 0d71 0000 0d71 0000    q...q...q...q...
1f2008e0: 0d71 0000 0d71 0000 0d71 0000 0d71 0000    q...q...q...q...
1f2008f0: 0d71 0000 0d71 0000 0d71 0000 0d71 0000    q...q...q...q...

And kronus:

<< MStar >># md.w bf206700 80
BF206700: 0019 0000 F009 0000 FFFF 0000 FFFF 0000    ................
BF206710: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206720: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206730: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206740: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206750: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206760: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206770: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206780: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF206790: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF2067A0: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF2067B0: FFFF 0000 FFFF 0000 FFFF 0000 FFFF 0000    ................
BF2067C0: 0000 0000 0000 0000 0000 0000 0000 0000    ................
BF2067D0: 0000 0000 0000 0000 0000 0000 0000 0000    ................
BF2067E0: 0000 0000 0000 0000 0000 0000 0000 0000    ................
BF2067F0: 0000 0000 0000 0000 0000 0000 0000 0000    ................

AI/NN

Some chips seem to contain a CEVA XM6.

Some chips seem to contain a “DLA” module that comes from cambricon.

SMP glue

For the infinity2, 2m and 6e where there is a second core there are registers to set the entry address for the secondary core and then a register that presumably unlocks the reset line of the second core and lets it go.

  u-boot linux
infinity   n/a
infinity2m   mainlined
infinity3   n/a
mercury5 n/a n/a

GPIO

Version 1

  u-boot linux
infinity   mainlined
infinity2m   yes
infinity3   mainlined
mercury5 n/a wip
/*
 * gpio data registers seem to be laid out like this in the gpio block
 *  5   |  4  | 3 | 2 | 1 | 0
 * ~OEN | OUT | 0 | 0 | 0 | IN
 */

Version 2

Pioneer3 has a slightly different GPIO that is in a new location. This new version apparently supports setting pull down, drive strength etc.

bit 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
function                 drive strength   pull something? pull enable   output enable out in
  u-boot linux
pioneer3 n/a wip

POR - power on reset?

Present on i2m and p3. Seems to be a block of NVRAM.