All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
To: u-boot@lists.denx.de
Subject: [PATCH v3 04/15] dt-bindings: memory: ns3: add memory definitions
Date: Wed, 10 Jun 2020 16:11:09 +0530	[thread overview]
Message-ID: <20200610104120.30668-5-rayagonda.kokatanur@broadcom.com> (raw)
In-Reply-To: <20200610104120.30668-1-rayagonda.kokatanur@broadcom.com>

Add NS3 memory definitions.

Signed-off-by: Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>
---
 include/dt-bindings/memory/bcm-ns3-mc.h | 34 +++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 include/dt-bindings/memory/bcm-ns3-mc.h

diff --git a/include/dt-bindings/memory/bcm-ns3-mc.h b/include/dt-bindings/memory/bcm-ns3-mc.h
new file mode 100644
index 0000000000..b4f78584a5
--- /dev/null
+++ b/include/dt-bindings/memory/bcm-ns3-mc.h
@@ -0,0 +1,34 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2020 Broadcom
+ */
+
+#ifndef DT_BINDINGS_BCM_NS3_MC_H
+#define DT_BINDINGS_BCM_NS3_MC_H
+
+/*
+ * Reserved Memory Map : SHMEM & TZDRAM.
+ * +--------+----------+ 0x8D000000
+ * | SHMEM (NS)         | 16 MB
+ * +-------------------+ 0x8E000000
+ * |        | TEE_RAM(S)| 4MB
+ * + TZDRAM +----------+ 0x8E400000
+ * |        | TA_RAM(S) | 12MB
+ * +--------+----------+ 0x8F000000
+ * | BL31 + TMON + LPM  |
+ * | memory             | 1MB
+ * +-------------------+ 0x8F100000
+ */
+
+#define BCM_NS3_MEM_SHARE_START    0x8D000000
+#define BCM_NS3_MEM_SHARE_LEN      0x020FFFFF
+
+/* ATF/U-boot/Linux error logs */
+#define BCM_NS3_MEM_ELOG_START     0x8F113000
+#define BCM_NS3_MEM_ELOG_LEN       0x00100000
+
+/* CRMU Page table memroy */
+#define BCM_NS3_MEM_CRMU_PT_START  0x880000000
+#define BCM_NS3_MEM_CRMU_PT_LEN    0x200000
+
+#endif
-- 
2.17.1

  parent reply	other threads:[~2020-06-10 10:41 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-10 10:41 [PATCH v3 00/15] add initial support for broadcom NS3 soc Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 01/15] board: ns3: add support for Broadcom Northstar 3 Rayagonda Kokatanur
2020-06-17  3:11   ` Simon Glass
2020-06-10 10:41 ` [PATCH v3 02/15] arm: cpu: armv8: add L3 memory flush support Rayagonda Kokatanur
2020-06-17  3:11   ` Simon Glass
2020-06-19 16:55     ` Rayagonda Kokatanur
2020-06-26  1:43       ` Simon Glass
2020-06-26  9:06         ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 03/15] configs: ns3: enable clock subsystem Rayagonda Kokatanur
2020-06-17  3:11   ` Simon Glass
2020-06-17  6:44     ` Rayagonda Kokatanur
2020-06-10 10:41 ` Rayagonda Kokatanur [this message]
2020-06-26  1:11   ` [PATCH v3 04/15] dt-bindings: memory: ns3: add memory definitions Simon Glass
2020-06-10 10:41 ` [PATCH v3 05/15] board: ns3: add api to save boot parameters passed from BL31 Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-26 17:15     ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 06/15] board: ns3: default reset type to L3 Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-30  4:43     ` Rayagonda Kokatanur
2020-07-03  0:46       ` Simon Glass
2020-07-08  7:01         ` Rayagonda Kokatanur
2020-07-08 15:01           ` Simon Glass
2020-07-08 15:14             ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 07/15] dt-bindings: memory: ns3: update GIC LPI address Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-07-04  7:50     ` Rayagonda Kokatanur
2020-07-04 18:50       ` Rayagonda Kokatanur
2020-07-05 18:21         ` Rayagonda Kokatanur
2020-07-06  5:26           ` Simon Glass
2020-07-06  6:23             ` Rayagonda Kokatanur
2020-07-08 15:21               ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 08/15] board: ns3: program GIC LPI tables Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-07-05 18:14     ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 09/15] configs: ns3: enable GIC ITS LPI table programing Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-10 10:41 ` [PATCH v3 10/15] dt-bindings: memory: ns3: add ddr memory definition Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-10 10:41 ` [PATCH v3 11/15] board: ns3: define ddr memory layout Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-10 10:41 ` [PATCH v3 12/15] board: ns3: limit U-boot relocation within 16MB memory Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-26 10:21     ` Rayagonda Kokatanur
2020-06-29 17:26       ` Simon Glass
2020-07-08  8:17         ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 13/15] include/configs: ns3: add env variables for Linux boot Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-26 18:08     ` Rayagonda Kokatanur
2020-06-10 10:41 ` [PATCH v3 14/15] include/configs: ns3: add support for flashing images Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-10 10:41 ` [PATCH v3 15/15] MAINTAINERS: update maintainers for broadcom ns3 platform Rayagonda Kokatanur
2020-06-26  1:11   ` Simon Glass
2020-06-26 14:27   ` Peter Tyser
2020-06-26 14:30     ` Rayagonda Kokatanur

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200610104120.30668-5-rayagonda.kokatanur@broadcom.com \
    --to=rayagonda.kokatanur@broadcom.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.