mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: barebox@lists.infradead.org
Subject: [PATCH 3/4] ARM: versatile: switch to devicetree support
Date: Fri, 20 Jun 2014 01:28:39 +0400	[thread overview]
Message-ID: <1403213320-28750-4-git-send-email-antonynpavlov@gmail.com> (raw)
In-Reply-To: <1403213320-28750-1-git-send-email-antonynpavlov@gmail.com>

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 arch/arm/boards/versatile/versatilepb.c     | 10 ----------
 arch/arm/dts/versatile-pb.dts               | 10 ++++++++++
 arch/arm/mach-versatile/core.c              | 11 -----------
 arch/arm/mach-versatile/include/mach/init.h |  2 --
 4 files changed, 10 insertions(+), 23 deletions(-)

diff --git a/arch/arm/boards/versatile/versatilepb.c b/arch/arm/boards/versatile/versatilepb.c
index 8f39dc9..fdd0820 100644
--- a/arch/arm/boards/versatile/versatilepb.c
+++ b/arch/arm/boards/versatile/versatilepb.c
@@ -32,7 +32,6 @@
 
 static int vpb_console_init(void)
 {
-	barebox_set_model("ARM Versatile/PB (ARM926EJ-S)");
 	barebox_set_hostname("versatilepb");
 
 	versatile_register_uart(0);
@@ -40,14 +39,6 @@ static int vpb_console_init(void)
 }
 console_initcall(vpb_console_init);
 
-static int vpb_mem_init(void)
-{
-	versatile_add_sdram(64 * 1024 *1024);
-
-	return 0;
-}
-mem_initcall(vpb_mem_init);
-
 static struct smc91c111_pdata net_pdata = {
 	.qemu_fixup = 1,
 };
@@ -55,7 +46,6 @@ static struct smc91c111_pdata net_pdata = {
 static int vpb_devices_init(void)
 {
 	add_cfi_flash_device(DEVICE_ID_DYNAMIC, VERSATILE_FLASH_BASE, VERSATILE_FLASH_SIZE, 0);
-	versatile_register_i2c();
 	devfs_add_partition("nor0", 0x00000, 0x40000, DEVFS_PARTITION_FIXED, "self");
 	devfs_add_partition("nor0", 0x40000, 0x20000, DEVFS_PARTITION_FIXED, "env0");
 
diff --git a/arch/arm/dts/versatile-pb.dts b/arch/arm/dts/versatile-pb.dts
new file mode 100644
index 0000000..8c80f8c
--- /dev/null
+++ b/arch/arm/dts/versatile-pb.dts
@@ -0,0 +1,10 @@
+#include <arm/versatile-ab.dts>
+
+/ {
+	model = "ARM Versatile PB";
+	compatible = "arm,versatile-pb";
+
+	memory {
+		reg = <0x0 0x04000000>;
+	};
+};
diff --git a/arch/arm/mach-versatile/core.c b/arch/arm/mach-versatile/core.c
index 8aca2a1..84a85a4 100644
--- a/arch/arm/mach-versatile/core.c
+++ b/arch/arm/mach-versatile/core.c
@@ -40,11 +40,6 @@
 #include <mach/platform.h>
 #include <mach/init.h>
 
-void versatile_add_sdram(u32 size)
-{
-	arm_add_mem_device("ram0", 0x00000000, size);
-}
-
 struct clk {
 	unsigned long rate;
 };
@@ -183,12 +178,6 @@ void versatile_register_uart(unsigned id)
 	amba_apb_device_add(NULL, "uart-pl011", id, start, 4096, NULL, 0);
 }
 
-void versatile_register_i2c(void)
-{
-	add_generic_device("versatile-i2c", DEVICE_ID_DYNAMIC, NULL,
-			VERSATILE_I2C_BASE, SZ_4K, IORESOURCE_MEM, NULL);
-}
-
 void __noreturn reset_cpu (unsigned long ignored)
 {
 	u32 val;
diff --git a/arch/arm/mach-versatile/include/mach/init.h b/arch/arm/mach-versatile/include/mach/init.h
index b40e4f9..acb0f66 100644
--- a/arch/arm/mach-versatile/include/mach/init.h
+++ b/arch/arm/mach-versatile/include/mach/init.h
@@ -2,8 +2,6 @@
 #ifndef __VERSATILE_INIT_H__
 #define __VERSATILE_INIT_H__
 
-void versatile_add_sdram(u32 size);
 void versatile_register_uart(unsigned id);
-void versatile_register_i2c(void);
 
 #endif
-- 
1.9.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  parent reply	other threads:[~2014-06-19 21:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-19 21:28 [PATCH 0/4] " Antony Pavlov
2014-06-19 21:28 ` [PATCH 1/4] ARM: versatile: drop redundant <mach/gpio.h> Antony Pavlov
2014-06-19 21:28 ` [PATCH 2/4] i2c: versatile: add devicetree support Antony Pavlov
2014-06-19 21:28 ` Antony Pavlov [this message]
2014-06-19 21:28 ` [PATCH 4/4] ARM: versatilepb_defconfig: enable " Antony Pavlov
2014-06-23  6:46 ` [PATCH 0/4] ARM: versatile: switch to " Sascha Hauer

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=1403213320-28750-4-git-send-email-antonynpavlov@gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox