我有一個關於 Raspberry Pi 3 的裸機引導選擇器/狀態整合的問題(用於多個 rootfs + RAUC 軟體更新)。
我正在使用以下內容:Yocto Pyro 2.3.2,barebox 2018.12.0。我已經成功配置了 barebox,我可以在調試控制台上看到輸出。
Rpi 3沒有任何其他非揮發性記憶體(SD卡除外)。如何將裸機狀態儲存在SD卡上?對於其他板,裸機狀態儲存在 EEPROM/板載 eMMC/NAND(甚至 SD 卡)上,這已在裝置樹源中進行了描述。 RPI (mci0) 的 SD 卡在裸機啟動時被偵測到,並且在 DTS 中沒有描述(請參閱下面的 devinfo 輸出):
barebox@RaspberryPi 3 Model B:/ devinfo
`-- global
`-- nv
`-- platform
`-- soc
`-- 3f003000.timer@7e003000
`-- 3f004000.txp@7e004000
`-- 3f007000.dma@7e007000
`-- 3f00b200.interrupt-controller@7e00b200
`-- 3f100000.watchdog@7e100000
`-- wdog0
`-- 3f101000.cprman@7e101000
`-- 3f104000.rng@7e104000
`-- 3f00b880.mailbox@7e00b880
`-- 3f200000.gpio@7e200000
`-- 3f202000.mmc@7e202000
`-- 3f205000.i2c@7e205000
`-- 3f206000.pixelvalve@7e206000
`-- 3f207000.pixelvalve@7e207000
`-- 3f209000.dsi@7e209000
`-- 3f212000.thermal@7e212000
`-- 3f215000.aux@7e215000
`-- 3f215040.serial@7e215040
`-- 3f20c000.pwm@7e20c000
`-- 3f300000.sdhci@7e300000
`-- mci0
`-- 0x00000000-0x76e47ffff ( 29.7 GiB): /dev/disk0
`-- 0x00001000-0x022c1fff ( 34.8 MiB): /dev/disk0.0
`-- 0x022c2000-0xfbc5bbff ( 3.9 GiB): /dev/disk0.1
`-- 0xfbc5c000-0x1f55f5bff ( 3.9 GiB): /dev/disk0.2
`-- 0x1f55f5c00-0x2149f5fff ( 500 MiB): /dev/disk0.3
`-- 0x1f55f5e00-0x1fb9f5dff ( 100 MiB): /dev/disk0.4
`-- 0x1fb9f6000-0x2149f5fff ( 400 MiB): /dev/disk0.5
`-- fat0
`-- 3f400000.hvs@7e400000
`-- 3f804000.i2c@7e804000
`-- 3f805000.i2c@7e805000
`-- 3f806000.vec@7e806000
`-- 3f807000.pixelvalve@7e807000
`-- 3f902000.hdmi@7e902000
`-- 3f980000.usb@7e980000
`-- 3fc00000.v3d@7ec00000
`-- soc:gpu
`-- 40000000.local_intc@40000000
`-- soc:firmware
`-- soc:firmware:gpio
`-- soc:power
`-- 3f00b840.mailbox@7e00b840
`-- clocks
`-- clocks:clock@3
`-- clocks:clock@4
`-- phy
`-- arm-pmu
`-- timer
`-- leds
`-- wifi-pwrseq
`-- regulator-bcm2835
`-- mem0
`-- 0x00000000-0x3b3fffff ( 948 MiB): /dev/ram0
`-- mem1
`-- 0x00000000-0xfffffffe ( 4 GiB): /dev/mem
`-- bcm2835_fb0
`-- amba
`-- 3f201000.serial@7e201000
`-- cs0
`-- 0x00000000-0xffffffffffffffff ( 0 Bytes): /dev/cs0
`-- spi
`-- fs
`-- ramfs0
`-- devfs0
此外,barebox 文件說明了以下內容(關於 SD 卡狀態儲存):「請注意,目前不支援磁碟分割表。相反,必須使用 ofpart 分割區描述。您必須確保該分割區不支援磁碟分割表。」不與分割區表中的任何其他分區衝突。
如果我在設備樹源中定義 mci0 節點可以嗎?我該怎麼做呢? barebox 文件提供了一個範例,但這對我的情況沒有太大幫助:
backend_state_sd: part@100000 {
label = "state";
reg = <0x100000 0x20000>;
};
aliases {
state = &state_sd;
};
state_sd: state_memory {
#address-cells = <1>;
#size-cells = <1>;
compatible = "barebox,state";
magic = <0xab67421f>;
backend-type = "raw";
backend = <&backend_state_sd>;
backend-stridesize = <0x40>;
variable@0 {
reg = <0x0 0x1>;
type ="uint8";
default = <0x1>;
};
};
非常感謝!
問候,瓦利。
答案1
如果我在設備樹源中定義 mci0 節點可以嗎?
是的,這正是文檔所建議的。
我該怎麼做呢? barebox 文件提供了一個範例,但這對我的情況沒有太大幫助
看看它是如何完成的SoCFPGA Arria10 Achilles 板:
&mmc {
partitions {
compatible = "fixed-partitions";
#size-cells = <1>;
#address-cells = <1>;
state_mmc: partition@400000 {
label = "state";
reg = <0x400000 0x8000>;
};
};
};
PS:有一個裸箱郵件清單和freenode頻道,有更多的人可以回答裸箱問題。 :)