mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

VIA/WonderMedia SoCs don't have on-chip memory, so their memory nodes are better placed in per-board dts rather than per-SoC dtsi. Move them accordingly, and also add correct node addresses and sizes for each of the boards. Some boards were also available with more memory than included in this commit - those would need a separate DT or an appropriate kernel cmdline argument to reflect it, as the bootloader on these devices doesn't handle DT at all nor does it any runtime discovery of available memory size. Signed-off-by: Alexey Charkov <alchark@gmail.com> Link: https://lore.kernel.org/r/20250515-wmt-dts-updates-v2-2-246937484cc8@gmail.com Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
41 lines
713 B
Text
41 lines
713 B
Text
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* wm8650-mid.dts - Device tree file for Wondermedia WM8650-MID Tablet
|
|
*
|
|
* Copyright (C) 2012 Tony Prisk <linux@prisktech.co.nz>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/include/ "wm8650.dtsi"
|
|
|
|
/ {
|
|
model = "Wondermedia WM8650-MID Tablet";
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x10000000>;
|
|
};
|
|
};
|
|
|
|
&fb {
|
|
bits-per-pixel = <16>;
|
|
|
|
display-timings {
|
|
native-mode = <&timing0>;
|
|
timing0: timing-800x480 {
|
|
clock-frequency = <0>; /* unused but required */
|
|
hactive = <800>;
|
|
vactive = <480>;
|
|
hfront-porch = <40>;
|
|
hback-porch = <88>;
|
|
hsync-len = <0>;
|
|
vback-porch = <32>;
|
|
vfront-porch = <11>;
|
|
vsync-len = <1>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|