From patchwork Mon May 25 17:41:53 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 11569141 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id C3F2B14F6 for ; Mon, 25 May 2020 17:42:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AD64B207DA for ; Mon, 25 May 2020 17:42:20 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=crapouillou.net header.i=@crapouillou.net header.b="uGztXLgG" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389539AbgEYRmR (ORCPT ); Mon, 25 May 2020 13:42:17 -0400 Received: from outils.crapouillou.net ([89.234.176.41]:48862 "EHLO crapouillou.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389348AbgEYRmR (ORCPT ); Mon, 25 May 2020 13:42:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1590428533; h=from:from:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-transfer-encoding:content-transfer-encoding: in-reply-to:references; bh=7pGoTltF4vbYs/4AgdTEYADlgf+GoP3BBu4X9qCt46A=; b=uGztXLgGX6XMUBxLQUUTtmjfB1jF1T/eLtSCAk0NmpBsAp6xcjRasLXmF4/+wVuVW/A3gy P3Y9Bl+sBCwV9yGB+0CoHVtblVBoogDrOrXSxA2N9lN/Q6aNVk/yJoU7FV9MnEfDZKKvFo dGDuLr3O1NHUHqlKm7OaES93ykSUDVY= From: Paul Cercueil To: Thomas Bogendoerfer Cc: od@zcrc.me, devicetree@vger.kernel.org, linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, Paul Cercueil Subject: [PATCH 1/3] MIPS: ingenic: DTS: Add memory info of GCW Zero Date: Mon, 25 May 2020 19:41:53 +0200 Message-Id: <20200525174155.457491-1-paul@crapouillou.net> MIME-Version: 1.0 Sender: linux-mips-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org Add memory info of the GCW Zero in its devicetree. The bootloader generally provides this information, but since it is fixed to 512 MiB, it doesn't hurt to have it in devicetree. It allows the kernel to boot without any parameter passed as argument. Signed-off-by: Paul Cercueil --- arch/mips/boot/dts/ingenic/gcw0.dts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/mips/boot/dts/ingenic/gcw0.dts b/arch/mips/boot/dts/ingenic/gcw0.dts index c2396b5ca175..8d22828787d8 100644 --- a/arch/mips/boot/dts/ingenic/gcw0.dts +++ b/arch/mips/boot/dts/ingenic/gcw0.dts @@ -19,6 +19,12 @@ aliases { serial3 = &uart3; }; + memory: memory { + device_type = "memory"; + reg = <0x0 0x10000000>, + <0x30000000 0x10000000>; + }; + chosen { stdout-path = "serial2:57600n8"; };