diff mbox

[U-Boot,V2,3/4] sandbox: Introduce dummy remoteproc nodes

Message ID 1440734853-6552-4-git-send-email-nm@ti.com
State Superseded
Delegated to: Tom Rini
Headers show

Commit Message

Nishanth Menon Aug. 28, 2015, 4:07 a.m. UTC
Introduce dummy devices for sandbox remoteproc device and enable it by
default

Signed-off-by: Nishanth Menon <nm@ti.com>
---

Changes in V2:
	- review comments incorporated from V1.

V1: https://patchwork.ozlabs.org/patch/510196/

 arch/sandbox/dts/test.dts | 13 +++++++++++++
 configs/sandbox_defconfig |  2 ++
 2 files changed, 15 insertions(+)

Comments

Simon Glass Sept. 2, 2015, 3:46 a.m. UTC | #1
On 27 August 2015 at 22:07, Nishanth Menon <nm@ti.com> wrote:
> Introduce dummy devices for sandbox remoteproc device and enable it by
> default
>
> Signed-off-by: Nishanth Menon <nm@ti.com>
> ---
>
> Changes in V2:
>         - review comments incorporated from V1.
>
> V1: https://patchwork.ozlabs.org/patch/510196/
>
>  arch/sandbox/dts/test.dts | 13 +++++++++++++
>  configs/sandbox_defconfig |  2 ++
>  2 files changed, 15 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox

Patch

diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index c948df8c864b..9e85c2868444 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -12,6 +12,8 @@ 
 		eth5 = &eth_5;
 		i2c0 = "/i2c@0";
 		pci0 = &pci;
+		remoteproc1 = &rproc_1;
+		remoteproc2 = &rproc_2;
 		rtc0 = &rtc_0;
 		rtc1 = &rtc_1;
 		spi0 = "/spi@0";
@@ -226,6 +228,17 @@ 
 		compatible = "sandbox,reset";
 	};
 
+	rproc_1: rproc@1 {
+		compatible = "sandbox,test-processor";
+		remoteproc-name = "remoteproc-test-dev1";
+	};
+
+	rproc_2: rproc@2 {
+		compatible = "sandbox,test-processor";
+		internal-memory-mapped;
+		remoteproc-name = "remoteproc-test-dev2";
+	};
+
 	spi@0 {
 		#address-cells = <1>;
 		#size-cells = <0>;
diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig
index 85ff95df7962..a33a05d08c90 100644
--- a/configs/sandbox_defconfig
+++ b/configs/sandbox_defconfig
@@ -54,3 +54,5 @@  CONFIG_UNIT_TEST=y
 CONFIG_UT_TIME=y
 CONFIG_UT_DM=y
 CONFIG_UT_ENV=y
+CONFIG_REMOTEPROC_SANDBOX=y
+CONFIG_CMD_REMOTEPROC=y