mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/4] ARM: versatile: switch to devicetree support
@ 2014-06-19 21:28 Antony Pavlov
  2014-06-19 21:28 ` [PATCH 1/4] ARM: versatile: drop redundant <mach/gpio.h> Antony Pavlov
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Antony Pavlov @ 2014-06-19 21:28 UTC (permalink / raw)
  To: barebox

Antony Pavlov (4):
  ARM: versatile: drop redundant <mach/gpio.h>
  i2c: versatile: add devicetree support
  ARM: versatile: switch to devicetree support
  ARM: versatilepb_defconfig: enable devicetree support

 arch/arm/boards/versatile/versatilepb.c     | 10 ------
 arch/arm/configs/versatilepb_defconfig      | 50 ++++++++++++++++-------------
 arch/arm/dts/versatile-pb.dts               | 10 ++++++
 arch/arm/mach-versatile/core.c              | 11 -------
 arch/arm/mach-versatile/include/mach/gpio.h |  1 -
 arch/arm/mach-versatile/include/mach/init.h |  2 --
 drivers/i2c/busses/i2c-versatile.c          |  7 ++++
 7 files changed, 44 insertions(+), 47 deletions(-)
 create mode 100644 arch/arm/dts/versatile-pb.dts
 delete mode 100644 arch/arm/mach-versatile/include/mach/gpio.h

-- 
1.9.2


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/4] ARM: versatile: drop redundant <mach/gpio.h>
  2014-06-19 21:28 [PATCH 0/4] ARM: versatile: switch to devicetree support Antony Pavlov
@ 2014-06-19 21:28 ` Antony Pavlov
  2014-06-19 21:28 ` [PATCH 2/4] i2c: versatile: add devicetree support Antony Pavlov
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Antony Pavlov @ 2014-06-19 21:28 UTC (permalink / raw)
  To: barebox

The arch/arm/include/asm/gpio.h header file contains

  #ifndef CONFIG_GPIOLIB
  #include <mach/gpio.h>
  #else
  #include <asm-generic/gpio.h>
  #endif

We use CONFIG_GPIOLIB=y for the only mach-versatile
Versatile/PB board so there is no need of <mach/gpio.h>.

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 arch/arm/mach-versatile/include/mach/gpio.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/mach-versatile/include/mach/gpio.h b/arch/arm/mach-versatile/include/mach/gpio.h
deleted file mode 100644
index 306ab4c..0000000
--- a/arch/arm/mach-versatile/include/mach/gpio.h
+++ /dev/null
@@ -1 +0,0 @@
-#include <asm-generic/gpio.h>
-- 
1.9.2


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/4] i2c: versatile: add devicetree support
  2014-06-19 21:28 [PATCH 0/4] ARM: versatile: switch to devicetree support Antony Pavlov
  2014-06-19 21:28 ` [PATCH 1/4] ARM: versatile: drop redundant <mach/gpio.h> Antony Pavlov
@ 2014-06-19 21:28 ` Antony Pavlov
  2014-06-19 21:28 ` [PATCH 3/4] ARM: versatile: switch to " Antony Pavlov
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Antony Pavlov @ 2014-06-19 21:28 UTC (permalink / raw)
  To: barebox

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 drivers/i2c/busses/i2c-versatile.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/i2c/busses/i2c-versatile.c b/drivers/i2c/busses/i2c-versatile.c
index d395e1d..4fead61 100644
--- a/drivers/i2c/busses/i2c-versatile.c
+++ b/drivers/i2c/busses/i2c-versatile.c
@@ -84,6 +84,7 @@ static int i2c_versatile_probe(struct device_d *dev)
 
 	i2c->adap.algo_data = &i2c->algo;
 	i2c->adap.dev.parent = dev;
+	i2c->adap.dev.device_node = dev->device_node;
 	i2c->algo = i2c_versatile_algo;
 	i2c->algo.data = i2c;
 
@@ -99,8 +100,14 @@ static int i2c_versatile_probe(struct device_d *dev)
 	return ret;
 }
 
+static struct of_device_id i2c_versatile_match[] = {
+	{ .compatible = "arm,versatile-i2c", },
+	{},
+};
+
 static struct driver_d i2c_versatile_driver = {
 	.name	= "versatile-i2c",
 	.probe	= i2c_versatile_probe,
+	.of_compatible = DRV_OF_COMPAT(i2c_versatile_match),
 };
 device_platform_driver(i2c_versatile_driver);
-- 
1.9.2


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 3/4] ARM: versatile: switch to devicetree support
  2014-06-19 21:28 [PATCH 0/4] ARM: versatile: switch to devicetree support 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
  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
  4 siblings, 0 replies; 6+ messages in thread
From: Antony Pavlov @ 2014-06-19 21:28 UTC (permalink / raw)
  To: barebox

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 4/4] ARM: versatilepb_defconfig: enable devicetree support
  2014-06-19 21:28 [PATCH 0/4] ARM: versatile: switch to devicetree support Antony Pavlov
                   ` (2 preceding siblings ...)
  2014-06-19 21:28 ` [PATCH 3/4] ARM: versatile: switch to " Antony Pavlov
@ 2014-06-19 21:28 ` Antony Pavlov
  2014-06-23  6:46 ` [PATCH 0/4] ARM: versatile: switch to " Sascha Hauer
  4 siblings, 0 replies; 6+ messages in thread
From: Antony Pavlov @ 2014-06-19 21:28 UTC (permalink / raw)
  To: barebox

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 arch/arm/configs/versatilepb_defconfig | 50 ++++++++++++++++++----------------
 1 file changed, 27 insertions(+), 23 deletions(-)

diff --git a/arch/arm/configs/versatilepb_defconfig b/arch/arm/configs/versatilepb_defconfig
index 423e8cd..58dfb8b 100644
--- a/arch/arm/configs/versatilepb_defconfig
+++ b/arch/arm/configs/versatilepb_defconfig
@@ -1,7 +1,8 @@
+CONFIG_BUILTIN_DTB=y
+CONFIG_BUILTIN_DTB_NAME="versatile-pb"
 CONFIG_ARCH_VERSATILE=y
 CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS=y
 CONFIG_PROMPT="versatilepb> "
-CONFIG_LONGHELP=y
 CONFIG_GLOB=y
 CONFIG_HUSH_FANCY_PROMPT=y
 CONFIG_CMDLINE_EDITING=y
@@ -10,44 +11,47 @@ CONFIG_MENU=y
 CONFIG_PARTITION=y
 CONFIG_DEFAULT_ENVIRONMENT_GENERIC=y
 CONFIG_DEFAULT_ENVIRONMENT_PATH="arch/arm/boards/versatile/env"
-CONFIG_CMD_EDIT=y
-CONFIG_CMD_SLEEP=y
-CONFIG_CMD_SAVEENV=y
-CONFIG_CMD_LOADENV=y
+CONFIG_LONGHELP=y
+CONFIG_CMD_IOMEM=y
+CONFIG_CMD_MEMINFO=y
+CONFIG_CMD_BOOTM_SHOW_TYPE=y
+CONFIG_CMD_GO=y
+CONFIG_CMD_LOADB=y
+CONFIG_CMD_RESET=y
+CONFIG_CMD_PARTITION=y
 CONFIG_CMD_EXPORT=y
+CONFIG_CMD_LOADENV=y
 CONFIG_CMD_PRINTENV=y
-CONFIG_CMD_READLINE=y
+CONFIG_CMD_SAVEENV=y
+CONFIG_CMD_UNCOMPRESS=y
+CONFIG_CMD_SLEEP=y
+CONFIG_CMD_DHCP=y
+CONFIG_CMD_PING=y
+CONFIG_CMD_TFTP=y
+CONFIG_CMD_ECHO_E=y
+CONFIG_CMD_EDIT=y
 CONFIG_CMD_MENU=y
 CONFIG_CMD_MENU_MANAGEMENT=y
 CONFIG_CMD_PASSWD=y
-CONFIG_CMD_ECHO_E=y
-CONFIG_CMD_LOADB=y
-CONFIG_CMD_MEMINFO=y
-CONFIG_CMD_MTEST=y
-CONFIG_CMD_MTEST_ALTERNATIVE=y
-CONFIG_CMD_BOOTM_ZLIB=y
-CONFIG_CMD_BOOTM_BZLIB=y
-CONFIG_CMD_BOOTM_SHOW_TYPE=y
-CONFIG_CMD_RESET=y
-CONFIG_CMD_GO=y
+CONFIG_CMD_READLINE=y
 CONFIG_CMD_TIMEOUT=y
-CONFIG_CMD_PARTITION=y
 CONFIG_CMD_GPIO=y
-CONFIG_CMD_UNCOMPRESS=y
 CONFIG_CMD_I2C=y
+CONFIG_CMD_OF_NODE=y
+CONFIG_CMD_OF_PROPERTY=y
+CONFIG_CMD_OFTREE=y
 CONFIG_NET=y
-CONFIG_CMD_DHCP=y
 CONFIG_NET_NFS=y
-CONFIG_CMD_PING=y
-CONFIG_CMD_TFTP=y
-CONFIG_FS_TFTP=y
 CONFIG_NET_NETCONSOLE=y
 CONFIG_NET_RESOLV=y
+CONFIG_OFDEVICE=y
+CONFIG_OF_BAREBOX_DRIVERS=y
 CONFIG_SERIAL_AMBA_PL011=y
 CONFIG_DRIVER_NET_SMC91111=y
-CONFIG_GPIO_PL061=y
 CONFIG_I2C=y
 CONFIG_I2C_VERSATILE=y
+CONFIG_GPIO_PL061=y
 CONFIG_FS_CRAMFS=y
+CONFIG_FS_TFTP=y
 CONFIG_SHA1=y
 CONFIG_SHA256=y
-- 
1.9.2


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/4] ARM: versatile: switch to devicetree support
  2014-06-19 21:28 [PATCH 0/4] ARM: versatile: switch to devicetree support Antony Pavlov
                   ` (3 preceding siblings ...)
  2014-06-19 21:28 ` [PATCH 4/4] ARM: versatilepb_defconfig: enable " Antony Pavlov
@ 2014-06-23  6:46 ` Sascha Hauer
  4 siblings, 0 replies; 6+ messages in thread
From: Sascha Hauer @ 2014-06-23  6:46 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

On Fri, Jun 20, 2014 at 01:28:36AM +0400, Antony Pavlov wrote:
> Antony Pavlov (4):
>   ARM: versatile: drop redundant <mach/gpio.h>
>   i2c: versatile: add devicetree support
>   ARM: versatile: switch to devicetree support
>   ARM: versatilepb_defconfig: enable devicetree support

Applied, thanks

Sascha

> 
>  arch/arm/boards/versatile/versatilepb.c     | 10 ------
>  arch/arm/configs/versatilepb_defconfig      | 50 ++++++++++++++++-------------
>  arch/arm/dts/versatile-pb.dts               | 10 ++++++
>  arch/arm/mach-versatile/core.c              | 11 -------
>  arch/arm/mach-versatile/include/mach/gpio.h |  1 -
>  arch/arm/mach-versatile/include/mach/init.h |  2 --
>  drivers/i2c/busses/i2c-versatile.c          |  7 ++++
>  7 files changed, 44 insertions(+), 47 deletions(-)
>  create mode 100644 arch/arm/dts/versatile-pb.dts
>  delete mode 100644 arch/arm/mach-versatile/include/mach/gpio.h
> 
> -- 
> 1.9.2
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-06-23  6:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-19 21:28 [PATCH 0/4] ARM: versatile: switch to devicetree support 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 ` [PATCH 3/4] ARM: versatile: switch to " Antony Pavlov
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox