Rockchip RK3066: Difference between revisions
ValPackett (talk | contribs) Create basic page |
ValPackett (talk | contribs) Add mainlining WIP documentation, at least the interesting parts |
||
Line 28: | Line 28: | ||
| status_camera = | | status_camera = | ||
}} | }} | ||
== General description == | |||
[https://www.rock-chips.com/upload/DatasheetRK3066.pdf RK3066] is a Rockchip SoC released in 2012, supported by mainline. | |||
== Devices == | == Devices == | ||
Line 39: | Line 42: | ||
|more results text= | |more results text= | ||
}} | }} | ||
== Flashing and Booting == | |||
Like other Rockchip SoCs, the recovery mode on the RK3066 uses RockUsb and does not depend on NAND contents (rock-solid, ha). You can use [https://github.com/linux-rockchip/rkflashtool rkflashtool] to interact with the recovery mode. | |||
You can run <code>rkflashtool p</code> to read firmware parameters as text to stdout and <code>rkflashtool P</code> to apply firmware parameters in the same format from stdin. The text format looks like this: | |||
<pre> | |||
FIRMWARE_VER:4.0.4 | |||
MACHINE_MODEL:rk30sdk | |||
MACHINE_ID:007 | |||
MANUFACTURER:RK30SDK | |||
MAGIC: 0x5041524B | |||
ATAG: 0x60000800 | |||
MACHINE: 3066 | |||
CHECK_MASK: 0x80 | |||
KERNEL_IMG: 0x60408000 | |||
#RECOVER_KEY: 1,1,0,20,0 | |||
CMDLINE: console=ttyS2,115200n8 earlyprintk init=/init PMOS_NO_OUTPUT_REDIRECT initrd=0x62000000,0x00800000 mtdparts=rk29xxnand:0x00002000@0x00002000(misc),0x00006000@0x00004000(kernel),0x00008000@0x0000A000(boot),0x00008000@0x00012000(recovery),0x000C0000@0x0001A000(backup),0x00040000@0x000DA000(cache),0x00200000@0x0011A000(userdata),0x00002000@0x0031A000(kpanic),0x00200000@0x0031C000(system),-@0x0051C000(user) | |||
</pre> | |||
The only really relevant part is the cmdline, and you can add arbitrary arguments to it (like in the example) to be passed to Linux, and it is the right place to add them (as it overrides various embedded cmdlines), but note that the boot ROM has some "special magic" handling of the arguments <code>mtdparts</code> and <code>initrd</code>. In fact, this <code>mtdparts</code> '''is the source of truth''' for NAND flash partitioning '''for the boot ROM itself''', so when you run <code>rkflashtool w boot</code>, the definition of <code>boot</code> comes from that line. | |||
The "Android" boot.img format supported by the RK3066 boot ROM is '''NOT''' compatible with the normal Android format!! It is similar, but slightly mangled (e.g. the SHA1 hash seems to occupy 1 byte less and such). Regular Android boot.img tools can unpack the format, but trying to boot images packed with those tools will fail the hash check. You MUST use an appropriately modified tool such as: | |||
* [https://github.com/apeelme/cm_rk3066_mkbootimg cm_rk3066_mkbootimg] (written in C) ''confirmed to work great, also has the kernel/initrd addresses predefined'' | |||
* [https://github.com/neo-technologies/rockchip-mkbootimg rockchip-mkbootimg] (written in C) | |||
* [https://github.com/rockchip-linux/kernel/blob/develop-4.4/scripts/mkbootimg rockchip-linux scripts/mkbootimg] (written in Python) | |||
The ROM seemingly has an ability to load a bare kernel instead of a boot.img, if checksummed with <code>rkcrc</code> from the <code>rkflashtool</code> repo, but {{User:ValPackett}} could not get that to work. boot.img images do not seem to require that CRC at all. | |||
== Serial == | |||
The 2nd (counting up from 0) UART is commonly used for the debug console and defaults to 115200 baud unlike more recent Rockchip SoCs. | |||
== Power and Clock Management == | |||
The RK3066 is commonly paired with the following PMICs: | |||
* [https://github.com/crewrktablets/rk30_kernel/blob/master/arch/arm/mach-rk30/board-rk30-sdk-tps65910.c TPS65910] | |||
* [https://github.com/crewrktablets/rk30_kernel/blob/master/arch/arm/mach-rk30/board-rk30-sdk-wm8326.c WM8326] | |||
* [https://github.com/crewrktablets/rk30_kernel/blob/c93447601546838855533adaa88dc5ac7a7507c7/arch/arm/mach-rk30/board-rk30-sdk.c#L2154-L2162 AXP202] | |||
* [https://github.com/crewrktablets/rk30_kernel/blob/master/arch/arm/mach-rk30/board-rk30-sdk-twl80032.c TWL80032] (?) | |||
That PMIC is responsible for most voltages, except there's also a very important auxiliary voltage called <code>vdd_core</code> or <code>vdd_log</code> (for "logic") that's usually handled via [https://github.com/crewrktablets/rk30_kernel/blob/c93447601546838855533adaa88dc5ac7a7507c7/arch/arm/mach-rk30/board-rk30-sdk.c#L1839-L1959 PWM from the SoC]. That voltage '''scales together with the CPU one''', i.e. [https://github.com/crewrktablets/rk30_kernel/blob/c93447601546838855533adaa88dc5ac7a7507c7/arch/arm/mach-rk30/board-rk30-sdk.c#L2620-L2632 the DVFS table in the vendor kernel] has three columns: <code>frequency</code>, <code>cpu_volt</code>, <code>logic_volt</code>. Various device trees in mainline just have [https://github.com/torvalds/linux/blob/0450d2083be6bdcd18c9535ac50c55266499b2df/arch/arm/boot/dts/rockchip/rk3066a-bqcurie2.dts#L25-L35 a high voltage hardcoded] for this regulator. | |||
Another interesting quirk is that some I2C bus clocks are internally derived from the CPU clock, so the vendor I2C driver uses [https://github.com/linuxium/rockchips-kk/blob/65dedb187255cb1ded1dde16ccdaec28c3bd6d22/drivers/i2c/busses/i2c-rk29.c#L650-L690 a cpufreq listener] to reapply the I2C clock if it has drifted upon CPU frequency change. That prevents a very "fun" failure mode where the I2C bus the PMIC is on stops working, so DVFS has applied a higher CPU frequency but the necessary voltage change failed to apply, and the CPU crashes. | |||
[https://github.com/crewrktablets/rk30_kernel/commit/c93447601546838855533adaa88dc5ac7a7507c7 Overclocks up to 1.8 GHz] have been reached on vendor Android years ago. | |||
== Display == | |||
The mainline Rockchip VOP driver supports this SoC, little patches are required for internal display to work though: | |||
* [https://patchwork.kernel.org/project/linux-rockchip/patch/20240519074019.10424-1-val@packett.cool/ drm/rockchip: vop: clear DMA stop bit on flush on RK3066] | |||
* [https://patchwork.kernel.org/project/linux-rockchip/patch/20240519074019.10424-2-val@packett.cool/ drm/rockchip: vop: enable VOP_FEATURE_INTERNAL_RGB on RK3066] | |||
The SoC can output HDMI and parallel RGB; some devices use a basic LVDS encoder for onboard displays, but others (particularly tablets with a mini HDMI port) use the RK610 chip, which allows for basic LVDS encoding (bypass mode) when HDMI is not connected, as well as scaling (encode HDMI and downscale to mirror to LVDS as well). As of May 2024, {{User:ValPackett}} is starting work on a real RK610 driver (at least LVDS, hopefully also HDMI, probably not audio), however the most basic userspace "driver" for enabling bypass mode is just: | |||
<pre> | |||
sudo i2cset -y 1 0x40 0x09 0x54 | |||
sudo i2cset -y 1 0x40 0x0a 0x00 | |||
sudo i2cset -y 1 0x40 0x0c 0x10 | |||
sudo i2cset -y 1 0x40 0x08 0x05 | |||
</pre> | |||
Along with pretending to just have a simple <code>"lvds-encoder"</code>. The reset pin is <code>&gpio0 RK_PC6</code> and the voltage regulator you might see listed as "hdmi" must be turned on. | |||
Panel pins are likely to be, as defined in the [https://github.com/crewrktablets/rk30_kernel/blob/c93447601546838855533adaa88dc5ac7a7507c7/arch/arm/mach-rk30/board-rk30-sdk.c#L1296-L1316 vendor kernel]: | |||
* for RK610 devices: <code>&gpio1 RK_PC3</code> chip select, <code>&gpio6 RK_PB0</code> enable | |||
* for non-RK610 devices: <code>&gpio4 RK_PC7</code> chip select, <code>&gpio6 RK_PB4</code> enable | |||
== WiFi == | |||
The RK3066 is commonly paired with Broadcom SDIO Wi-Fi chips, often Rockchip-rebranded, e.g.: | |||
* [https://techinfodepot.shoutwiki.com/wiki/Rockchip_RK901 RK901]: commonly listed as BCM4329, but at runtime the driver recognizes it as a BCM43362 and wants firmware/nvram for <code>brcm/brcmfmac43362-sdio</code> | |||
** nvram used by Rockchip can be found e.g. [https://github.com/linuxium/rockchips-kk/blob/65dedb187255cb1ded1dde16ccdaec28c3bd6d22/drivers/net/wireless/rkwifi/firmware/nvram_RK901.txt here] though [https://github.com/armbian/firmware/blob/master/brcm/brcmfmac43362-sdio.txt other] ones seem to work fine too | |||
** it *does not* have the Bluetooth part |
Revision as of 08:09, 19 May 2024
![]() RK3066 in plastic package | |
Manufacturer | Rockchip |
---|---|
Name | RK3066 |
Architecture | armv7 |
CPU | 2x 1.6 GHz ARM Cortex-A9 |
GPU | ARM Mali-400 |
Year | 2012 |
Process | 40nm |
Mainline | yes |
Components | |
CPU |
Works |
UART |
Works |
Storage |
Works |
USB |
Works |
Display |
Partial |
GPU |
Works |
Pinctrl |
Works |
IĀ²C |
Works |
SPI |
No data |
Audio |
Partial |
Video |
No data |
Thermal |
No data |
WiFi |
Works |
Bluetooth |
Works |
Modem |
No data |
GPS |
Works |
Camera |
No data |
NPU |
No data |
Suspend |
No data |
Ethernet |
No data |
SATA |
No data |
General description
RK3066 is a Rockchip SoC released in 2012, supported by mainline.
Devices
Device | Codename | Chipset | Mainline | Booting |
---|---|---|---|---|
BQ Curie | bq-curie | Rockchip RK3066 | P | Yes |
DNS AirTab M83W | dns-airtab-m83w | Rockchip RK3066 | No | |
Upvel UM-514TV | upvel-um514tv | Rockchip RK3066 | N | No |
Flashing and Booting
Like other Rockchip SoCs, the recovery mode on the RK3066 uses RockUsb and does not depend on NAND contents (rock-solid, ha). You can use rkflashtool to interact with the recovery mode.
You can run rkflashtool p
to read firmware parameters as text to stdout and rkflashtool P
to apply firmware parameters in the same format from stdin. The text format looks like this:
FIRMWARE_VER:4.0.4 MACHINE_MODEL:rk30sdk MACHINE_ID:007 MANUFACTURER:RK30SDK MAGIC: 0x5041524B ATAG: 0x60000800 MACHINE: 3066 CHECK_MASK: 0x80 KERNEL_IMG: 0x60408000 #RECOVER_KEY: 1,1,0,20,0 CMDLINE: console=ttyS2,115200n8 earlyprintk init=/init PMOS_NO_OUTPUT_REDIRECT initrd=0x62000000,0x00800000 mtdparts=rk29xxnand:0x00002000@0x00002000(misc),0x00006000@0x00004000(kernel),0x00008000@0x0000A000(boot),0x00008000@0x00012000(recovery),0x000C0000@0x0001A000(backup),0x00040000@0x000DA000(cache),0x00200000@0x0011A000(userdata),0x00002000@0x0031A000(kpanic),0x00200000@0x0031C000(system),-@0x0051C000(user)
The only really relevant part is the cmdline, and you can add arbitrary arguments to it (like in the example) to be passed to Linux, and it is the right place to add them (as it overrides various embedded cmdlines), but note that the boot ROM has some "special magic" handling of the arguments mtdparts
and initrd
. In fact, this mtdparts
is the source of truth for NAND flash partitioning for the boot ROM itself, so when you run rkflashtool w boot
, the definition of boot
comes from that line.
The "Android" boot.img format supported by the RK3066 boot ROM is NOT compatible with the normal Android format!! It is similar, but slightly mangled (e.g. the SHA1 hash seems to occupy 1 byte less and such). Regular Android boot.img tools can unpack the format, but trying to boot images packed with those tools will fail the hash check. You MUST use an appropriately modified tool such as:
- cm_rk3066_mkbootimg (written in C) confirmed to work great, also has the kernel/initrd addresses predefined
- rockchip-mkbootimg (written in C)
- rockchip-linux scripts/mkbootimg (written in Python)
The ROM seemingly has an ability to load a bare kernel instead of a boot.img, if checksummed with rkcrc
from the rkflashtool
repo, but
ā» | This user has ported postmarketOS to 3 devices. |
---|
š§ | This user is currently trying to mainline a device. |
---|
This user has a pmOS's GitLab profile. |
![]() |
This user has a GitLab profile at gitlab.com instance. |
---|
This user has a GitHub account. |
This user has a Matrix account. |
Hi, I'm Val~
she/her or they/them
Currently working on:
- MediaTek MT8167
- MediaTek Kompanio 500 (MT8183) but in Android devices
- Generic MSM89x7 (qcom-msm89x7)
Worked on:
No results
could not get that to work. boot.img images do not seem to require that CRC at all.
Serial
The 2nd (counting up from 0) UART is commonly used for the debug console and defaults to 115200 baud unlike more recent Rockchip SoCs.
Power and Clock Management
The RK3066 is commonly paired with the following PMICs:
That PMIC is responsible for most voltages, except there's also a very important auxiliary voltage called vdd_core
or vdd_log
(for "logic") that's usually handled via PWM from the SoC. That voltage scales together with the CPU one, i.e. the DVFS table in the vendor kernel has three columns: frequency
, cpu_volt
, logic_volt
. Various device trees in mainline just have a high voltage hardcoded for this regulator.
Another interesting quirk is that some I2C bus clocks are internally derived from the CPU clock, so the vendor I2C driver uses a cpufreq listener to reapply the I2C clock if it has drifted upon CPU frequency change. That prevents a very "fun" failure mode where the I2C bus the PMIC is on stops working, so DVFS has applied a higher CPU frequency but the necessary voltage change failed to apply, and the CPU crashes.
Overclocks up to 1.8 GHz have been reached on vendor Android years ago.
Display
The mainline Rockchip VOP driver supports this SoC, little patches are required for internal display to work though:
- drm/rockchip: vop: clear DMA stop bit on flush on RK3066
- drm/rockchip: vop: enable VOP_FEATURE_INTERNAL_RGB on RK3066
The SoC can output HDMI and parallel RGB; some devices use a basic LVDS encoder for onboard displays, but others (particularly tablets with a mini HDMI port) use the RK610 chip, which allows for basic LVDS encoding (bypass mode) when HDMI is not connected, as well as scaling (encode HDMI and downscale to mirror to LVDS as well). As of May 2024,
ā» | This user has ported postmarketOS to 3 devices. |
---|
š§ | This user is currently trying to mainline a device. |
---|
This user has a pmOS's GitLab profile. |
![]() |
This user has a GitLab profile at gitlab.com instance. |
---|
This user has a GitHub account. |
This user has a Matrix account. |
Hi, I'm Val~
she/her or they/them
Currently working on:
- MediaTek MT8167
- MediaTek Kompanio 500 (MT8183) but in Android devices
- Generic MSM89x7 (qcom-msm89x7)
Worked on:
No results
is starting work on a real RK610 driver (at least LVDS, hopefully also HDMI, probably not audio), however the most basic userspace "driver" for enabling bypass mode is just:
sudo i2cset -y 1 0x40 0x09 0x54 sudo i2cset -y 1 0x40 0x0a 0x00 sudo i2cset -y 1 0x40 0x0c 0x10 sudo i2cset -y 1 0x40 0x08 0x05
Along with pretending to just have a simple "lvds-encoder"
. The reset pin is &gpio0 RK_PC6
and the voltage regulator you might see listed as "hdmi" must be turned on.
Panel pins are likely to be, as defined in the vendor kernel:
- for RK610 devices:
&gpio1 RK_PC3
chip select,&gpio6 RK_PB0
enable - for non-RK610 devices:
&gpio4 RK_PC7
chip select,&gpio6 RK_PB4
enable
WiFi
The RK3066 is commonly paired with Broadcom SDIO Wi-Fi chips, often Rockchip-rebranded, e.g.: