Re: [PATCH 2/2] board: rock5b-rk3588: add memory gaps into kernel's DTB

2023-02-21 Thread Mark Kettenis
> Date: Tue, 21 Feb 2023 10:35:18 +0200 > From: Eugen Hristev > > On 2/21/23 00:47, Mark Kettenis wrote: > >> From: Eugen Hristev > >> Date: Thu, 16 Feb 2023 15:29:05 +0200 > >> > >> RK3588 has two memory gaps when using 16 GiB DRAM size: > >> [0x3fc00 , 0x3fc50] > >> and > >> [0x3fff000

Re: [PATCH 2/2] board: rock5b-rk3588: add memory gaps into kernel's DTB

2023-02-21 Thread Eugen Hristev
On 2/21/23 00:47, Mark Kettenis wrote: From: Eugen Hristev Date: Thu, 16 Feb 2023 15:29:05 +0200 RK3588 has two memory gaps when using 16 GiB DRAM size: [0x3fc00 , 0x3fc50] and [0x3fff0 , 0x3] If the kernel is agnostic to these gaps, accessing the area causes a SError panic

Re: [PATCH 2/2] board: rock5b-rk3588: add memory gaps into kernel's DTB

2023-02-20 Thread Mark Kettenis
> From: Eugen Hristev > Date: Thu, 16 Feb 2023 15:29:05 +0200 > > RK3588 has two memory gaps when using 16 GiB DRAM size: > [0x3fc00 , 0x3fc50] > and > [0x3fff0 , 0x3] > > If the kernel is agnostic to these gaps, accessing the area causes > a SError panic. > > Hence, add res

[PATCH 2/2] board: rock5b-rk3588: add memory gaps into kernel's DTB

2023-02-16 Thread Eugen Hristev
RK3588 has two memory gaps when using 16 GiB DRAM size: [0x3fc00 , 0x3fc50] and [0x3fff0 , 0x3] If the kernel is agnostic to these gaps, accessing the area causes a SError panic. Hence, add reserved memory areas in kernel's DTB before booting. Signed-off-by: Eugen Hristev --