• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン67b7eb76a38c9bc9d8c51af83db1acaf5adf973d (tree)
日時2022-01-30 23:33:49
作者Yoshinori Sato <ysato@user...>
コミッターYoshinori Sato

ログメッセージ

hw/rx: rx-gdbsim: DTB load address fix.

Linux kernel required alined address of DTB.
But missing align in dtb load function.
Fixed to load to the correct address.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

変更サマリ

差分

--- a/hw/rx/rx-gdbsim.c
+++ b/hw/rx/rx-gdbsim.c
@@ -143,6 +143,7 @@ static void rx_gdbsim_init(MachineState *machine)
143143 }
144144 /* DTB is located at the end of SDRAM space. */
145145 dtb_offset = machine->ram_size - dtb_size;
146+ dtb_offset &= ~0x0f;
146147 rom_add_blob_fixed("dtb", dtb, dtb_size,
147148 SDRAM_BASE + dtb_offset);
148149 /* Set dtb address to R1 */