All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C
@ 2018-08-07  7:41 Chris Packham
  2018-08-07  7:41 ` [U-Boot] [PATCH v3 2/3] configs: move RTC_MV config from mv-plug-common.h to boards Chris Packham
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Chris Packham @ 2018-08-07  7:41 UTC (permalink / raw)
  To: u-boot

Enable DM_I2C and I2C_MVTSWI for the ds109 board.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
---

Changes in v3: None
Changes in v2:
- new

 configs/ds109_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
index c9207433b374..fd10e6e3c36e 100644
--- a/configs/ds109_defconfig
+++ b/configs/ds109_defconfig
@@ -18,6 +18,8 @@ CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
 CONFIG_MVSATA_IDE=y
+CONFIG_DM_I2C=y
+CONFIG_SYS_I2C_MVTWSI=y
 # CONFIG_MMC is not set
 CONFIG_SPI_FLASH=y
 CONFIG_SPI_FLASH_BAR=y
-- 
2.18.0

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

* [U-Boot] [PATCH v3 2/3] configs: move RTC_MV config from mv-plug-common.h to boards
  2018-08-07  7:41 [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Chris Packham
@ 2018-08-07  7:41 ` Chris Packham
  2018-08-07  7:41 ` [U-Boot] [PATCH v3 3/3] configs: kirkwood: Move RTC_MV to DM and Kconfig Chris Packham
  2018-09-19 12:11 ` [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Stefan Roese
  2 siblings, 0 replies; 8+ messages in thread
From: Chris Packham @ 2018-08-07  7:41 UTC (permalink / raw)
  To: u-boot

To aid in migrating CONFIG_RTC_MV to Kconfig move the definition of it
from mv-plug-common.h to the board config headers that nest it.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
---

Changes in v3: None
Changes in v2: None

 include/configs/dreamplug.h      | 4 ++++
 include/configs/ds109.h          | 4 ++++
 include/configs/guruplug.h       | 4 ++++
 include/configs/mv-plug-common.h | 7 -------
 include/configs/sheevaplug.h     | 4 ++++
 5 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/include/configs/dreamplug.h b/include/configs/dreamplug.h
index 1c94bf9fa1bf..742232d2d660 100644
--- a/include/configs/dreamplug.h
+++ b/include/configs/dreamplug.h
@@ -27,6 +27,10 @@
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/ds109.h b/include/configs/ds109.h
index c06f0058deb5..f8d663714239 100644
--- a/include/configs/ds109.h
+++ b/include/configs/ds109.h
@@ -30,6 +30,10 @@
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/guruplug.h b/include/configs/guruplug.h
index 739ab320f637..3ce021abea84 100644
--- a/include/configs/guruplug.h
+++ b/include/configs/guruplug.h
@@ -25,6 +25,10 @@
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/mv-plug-common.h b/include/configs/mv-plug-common.h
index 81c07a889a36..f424e2cc6c52 100644
--- a/include/configs/mv-plug-common.h
+++ b/include/configs/mv-plug-common.h
@@ -22,11 +22,4 @@
  */
 #include "mv-common.h"
 
-/*
- * RTC driver configuration
- */
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 #endif /* _CONFIG_MARVELL_PLUG_H */
diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index deec71734dc7..12e38b3f12dc 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -29,6 +29,10 @@
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
-- 
2.18.0

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

* [U-Boot] [PATCH v3 3/3] configs: kirkwood: Move RTC_MV to DM and Kconfig
  2018-08-07  7:41 [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Chris Packham
  2018-08-07  7:41 ` [U-Boot] [PATCH v3 2/3] configs: move RTC_MV config from mv-plug-common.h to boards Chris Packham
@ 2018-08-07  7:41 ` Chris Packham
  2018-09-19 12:11 ` [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Stefan Roese
  2 siblings, 0 replies; 8+ messages in thread
From: Chris Packham @ 2018-08-07  7:41 UTC (permalink / raw)
  To: u-boot

Now that there is DM support in the RTC_MV driver update board configs
to use it.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
---
I haven't removed this from the whitelist because the nsa310s board
lacks device-tree support. Once that board is converted the non-DM code
can be removed from RTC_MV and the whitelist updated.

Changes in v3:
- rebase against u-boot#master

Changes in v2: None

 configs/SBx81LIFKW_defconfig | 2 ++
 configs/dns325_defconfig     | 5 ++++-
 configs/dreamplug_defconfig  | 5 ++++-
 configs/ds109_defconfig      | 5 ++++-
 configs/goflexhome_defconfig | 5 ++++-
 configs/guruplug_defconfig   | 5 ++++-
 configs/nas220_defconfig     | 5 ++++-
 configs/sheevaplug_defconfig | 5 ++++-
 include/configs/SBx81LIFKW.h | 5 -----
 include/configs/dns325.h     | 7 -------
 include/configs/dreamplug.h  | 4 ----
 include/configs/ds109.h      | 4 ----
 include/configs/goflexhome.h | 7 -------
 include/configs/guruplug.h   | 4 ----
 include/configs/nas220.h     | 7 -------
 include/configs/sheevaplug.h | 4 ----
 16 files changed, 30 insertions(+), 49 deletions(-)

diff --git a/configs/SBx81LIFKW_defconfig b/configs/SBx81LIFKW_defconfig
index 348f861a143b..c786120e7fd4 100644
--- a/configs/SBx81LIFKW_defconfig
+++ b/configs/SBx81LIFKW_defconfig
@@ -35,5 +35,7 @@ CONFIG_MV88E61XX_SWITCH=y
 CONFIG_MV88E61XX_CPU_PORT=10
 CONFIG_MV88E61XX_PHY_PORTS=0x003
 CONFIG_MV88E61XX_FIXED_PORTS=0x300
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SPI=y
 CONFIG_KIRKWOOD_SPI=y
diff --git a/configs/dns325_defconfig b/configs/dns325_defconfig
index f0ed20992887..d77f7766ee92 100644
--- a/configs/dns325_defconfig
+++ b/configs/dns325_defconfig
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_DNS325=y
 CONFIG_IDENT_STRING="\nD-Link DNS-325"
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-dns325"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_BOOTDELAY=3
 CONFIG_CONSOLE_MUX=y
 # CONFIG_DISPLAY_BOARDINFO is not set
@@ -16,7 +17,6 @@ CONFIG_CMD_USB=y
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_MII=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_EXT2=y
 CONFIG_CMD_FAT=y
 CONFIG_CMD_JFFS2=y
@@ -26,10 +26,13 @@ CONFIG_CMD_UBI=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_NAND=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 # CONFIG_MMC is not set
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
diff --git a/configs/dreamplug_defconfig b/configs/dreamplug_defconfig
index 8090c9a37793..d7428ae9cd9e 100644
--- a/configs/dreamplug_defconfig
+++ b/configs/dreamplug_defconfig
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_DREAMPLUG=y
 CONFIG_IDENT_STRING="\nMarvell-DreamPlug"
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-dreamplug"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_BOOTDELAY=3
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_HUSH_PARSER=y
@@ -15,19 +16,21 @@ CONFIG_CMD_USB=y
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_MII=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_EXT2=y
 CONFIG_CMD_EXT4=y
 CONFIG_CMD_FAT=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 # CONFIG_MMC is not set
 CONFIG_SPI_FLASH=y
 CONFIG_SPI_FLASH_MACRONIX=y
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_SPI=y
 CONFIG_KIRKWOOD_SPI=y
diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
index fd10e6e3c36e..6428614c93c3 100644
--- a/configs/ds109_defconfig
+++ b/configs/ds109_defconfig
@@ -3,6 +3,7 @@ CONFIG_KIRKWOOD=y
 CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_DS109=y
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-ds109"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_HUSH_PARSER=y
 # CONFIG_CMD_FLASH is not set
 CONFIG_CMD_IDE=y
@@ -12,11 +13,11 @@ CONFIG_CMD_USB=y
 # CONFIG_CMD_SETEXPR is not set
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_FAT=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_SPI_FLASH=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 CONFIG_DM_I2C=y
 CONFIG_SYS_I2C_MVTWSI=y
@@ -26,6 +27,8 @@ CONFIG_SPI_FLASH_BAR=y
 CONFIG_SPI_FLASH_STMICRO=y
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_SPI=y
 CONFIG_KIRKWOOD_SPI=y
diff --git a/configs/goflexhome_defconfig b/configs/goflexhome_defconfig
index c0894c05ea4b..41d896a72504 100644
--- a/configs/goflexhome_defconfig
+++ b/configs/goflexhome_defconfig
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_GOFLEXHOME=y
 CONFIG_IDENT_STRING="\nSeagate GoFlex Home"
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-goflexnet"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_BOOTDELAY=3
 CONFIG_CONSOLE_MUX=y
 # CONFIG_DISPLAY_BOARDINFO is not set
@@ -16,7 +17,6 @@ CONFIG_CMD_USB=y
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_MII=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_EXT2=y
 CONFIG_CMD_EXT4=y
 CONFIG_CMD_FAT=y
@@ -27,10 +27,13 @@ CONFIG_CMD_UBI=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_NAND=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 # CONFIG_MMC is not set
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
diff --git a/configs/guruplug_defconfig b/configs/guruplug_defconfig
index da3895d4db9a..d77922e2a7d9 100644
--- a/configs/guruplug_defconfig
+++ b/configs/guruplug_defconfig
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_GURUPLUG=y
 CONFIG_IDENT_STRING="\nMarvell-GuruPlug"
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-guruplug-server-plus"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_BOOTDELAY=3
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_HUSH_PARSER=y
@@ -16,7 +17,6 @@ CONFIG_CMD_USB=y
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_MII=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_EXT2=y
 CONFIG_CMD_EXT4=y
 CONFIG_CMD_FAT=y
@@ -27,10 +27,13 @@ CONFIG_CMD_UBI=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_NAND=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 # CONFIG_MMC is not set
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
diff --git a/configs/nas220_defconfig b/configs/nas220_defconfig
index ddf5689bf474..4ae69fe71aae 100644
--- a/configs/nas220_defconfig
+++ b/configs/nas220_defconfig
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_NAS220=y
 CONFIG_IDENT_STRING="\nNAS 220"
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-blackarmor-nas220"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_BOOTDELAY=3
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_HUSH_PARSER=y
@@ -16,7 +17,6 @@ CONFIG_CMD_USB=y
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_MII=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_EXT2=y
 CONFIG_CMD_EXT4=y
 CONFIG_CMD_FAT=y
@@ -27,10 +27,13 @@ CONFIG_EFI_PARTITION=y
 # CONFIG_PARTITION_UUIDS is not set
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_NAND=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 # CONFIG_MMC is not set
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
diff --git a/configs/sheevaplug_defconfig b/configs/sheevaplug_defconfig
index d27698fcce31..b965ff442a84 100644
--- a/configs/sheevaplug_defconfig
+++ b/configs/sheevaplug_defconfig
@@ -5,6 +5,7 @@ CONFIG_SYS_TEXT_BASE=0x600000
 CONFIG_TARGET_SHEEVAPLUG=y
 CONFIG_IDENT_STRING="\nMarvell-Sheevaplug"
 CONFIG_DEFAULT_DEVICE_TREE="kirkwood-sheevaplug"
+# CONFIG_SYS_MALLOC_F is not set
 CONFIG_BOOTDELAY=3
 # CONFIG_DISPLAY_BOARDINFO is not set
 CONFIG_HUSH_PARSER=y
@@ -18,7 +19,6 @@ CONFIG_CMD_USB=y
 CONFIG_CMD_DHCP=y
 CONFIG_CMD_MII=y
 CONFIG_CMD_PING=y
-CONFIG_CMD_DATE=y
 CONFIG_CMD_EXT2=y
 CONFIG_CMD_EXT4=y
 CONFIG_CMD_FAT=y
@@ -29,9 +29,12 @@ CONFIG_CMD_UBI=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_ENV_IS_IN_NAND=y
+CONFIG_DM=y
 CONFIG_MVSATA_IDE=y
 CONFIG_NETDEVICES=y
 CONFIG_MVGBE=y
+CONFIG_DM_RTC=y
+CONFIG_RTC_MV=y
 CONFIG_SYS_NS16550=y
 CONFIG_USB=y
 CONFIG_USB_EHCI_HCD=y
diff --git a/include/configs/SBx81LIFKW.h b/include/configs/SBx81LIFKW.h
index bcc2c201d222..24712662d433 100644
--- a/include/configs/SBx81LIFKW.h
+++ b/include/configs/SBx81LIFKW.h
@@ -109,11 +109,6 @@
 #define CONFIG_ENV_OVERWRITE	/* ethaddr can be reprogrammed */
 #endif /* CONFIG_CMD_NET */
 
-/*
- * Time settings
- */
-#define CONFIG_RTC_MV
-
 #define CONFIG_SYS_LOAD_ADDR  0x1000000      /* default location for tftp and bootm */
 
 #endif /* _CONFIG_SBX81LIFKW_H */
diff --git a/include/configs/dns325.h b/include/configs/dns325.h
index 0d52ffb4d7e9..8658c80fdccd 100644
--- a/include/configs/dns325.h
+++ b/include/configs/dns325.h
@@ -54,13 +54,6 @@
 #define CONFIG_SYS_ATA_IDE1_OFFSET      MV_SATA_PORT1_OFFSET
 #endif
 
-/*
- * RTC driver configuration
- */
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif
-
 /*
  * Enable GPI0 support
  */
diff --git a/include/configs/dreamplug.h b/include/configs/dreamplug.h
index 742232d2d660..1c94bf9fa1bf 100644
--- a/include/configs/dreamplug.h
+++ b/include/configs/dreamplug.h
@@ -27,10 +27,6 @@
  */
 #include "mv-plug-common.h"
 
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/ds109.h b/include/configs/ds109.h
index f8d663714239..c06f0058deb5 100644
--- a/include/configs/ds109.h
+++ b/include/configs/ds109.h
@@ -30,10 +30,6 @@
  */
 #include "mv-plug-common.h"
 
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/goflexhome.h b/include/configs/goflexhome.h
index 29e104f3c657..1d69a4e51802 100644
--- a/include/configs/goflexhome.h
+++ b/include/configs/goflexhome.h
@@ -93,11 +93,4 @@
 #define CONFIG_SYS_ATA_IDE0_OFFSET      MV_SATA_PORT0_OFFSET
 #endif /*CONFIG_MVSATA_IDE*/
 
-/*
- *  * RTC driver configuration
- *   */
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 #endif /* _CONFIG_GOFLEXHOME_H */
diff --git a/include/configs/guruplug.h b/include/configs/guruplug.h
index 3ce021abea84..739ab320f637 100644
--- a/include/configs/guruplug.h
+++ b/include/configs/guruplug.h
@@ -25,10 +25,6 @@
  */
 #include "mv-plug-common.h"
 
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/nas220.h b/include/configs/nas220.h
index b37705e26e5f..ca5cb2a838e8 100644
--- a/include/configs/nas220.h
+++ b/include/configs/nas220.h
@@ -107,13 +107,6 @@
  * EFI partition
  */
 
-/*
- *  Date Time
- */
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 #define CONFIG_KIRKWOOD_GPIO
 
 #endif /* _CONFIG_NAS220_H */
diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index 12e38b3f12dc..deec71734dc7 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -29,10 +29,6 @@
  */
 #include "mv-plug-common.h"
 
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 /*
  *  Environment variables configurations
  */
-- 
2.18.0

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

* [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C
  2018-08-07  7:41 [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Chris Packham
  2018-08-07  7:41 ` [U-Boot] [PATCH v3 2/3] configs: move RTC_MV config from mv-plug-common.h to boards Chris Packham
  2018-08-07  7:41 ` [U-Boot] [PATCH v3 3/3] configs: kirkwood: Move RTC_MV to DM and Kconfig Chris Packham
@ 2018-09-19 12:11 ` Stefan Roese
  2018-11-20  6:59   ` Stefan Roese
  2 siblings, 1 reply; 8+ messages in thread
From: Stefan Roese @ 2018-09-19 12:11 UTC (permalink / raw)
  To: u-boot

On 07.08.2018 09:41, Chris Packham wrote:
> Enable DM_I2C and I2C_MVTSWI for the ds109 board.
> 
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
> 
> Changes in v3: None
> Changes in v2:
> - new
> 
>   configs/ds109_defconfig | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
> index c9207433b374..fd10e6e3c36e 100644
> --- a/configs/ds109_defconfig
> +++ b/configs/ds109_defconfig
> @@ -18,6 +18,8 @@ CONFIG_ISO_PARTITION=y
>   CONFIG_OF_CONTROL=y
>   CONFIG_ENV_IS_IN_SPI_FLASH=y
>   CONFIG_MVSATA_IDE=y
> +CONFIG_DM_I2C=y
> +CONFIG_SYS_I2C_MVTWSI=y
>   # CONFIG_MMC is not set
>   CONFIG_SPI_FLASH=y
>   CONFIG_SPI_FLASH_BAR=y
> 

Unfortunately this series does not apply any more (again). I'm
currently pushing my Marvell branch upstream and would like
to get the first batch of patches accepted. After Tom has
pulled these patches, please rebase on top of this new master.

Thanks,
Stefan

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

* [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C
  2018-09-19 12:11 ` [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Stefan Roese
@ 2018-11-20  6:59   ` Stefan Roese
  2018-11-20  7:52     ` Chris Packham
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Roese @ 2018-11-20  6:59 UTC (permalink / raw)
  To: u-boot

Hi Chris,

On 19.09.18 14:11, Stefan Roese wrote:
> On 07.08.2018 09:41, Chris Packham wrote:
>> Enable DM_I2C and I2C_MVTSWI for the ds109 board.
>>
>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
>> ---
>>
>> Changes in v3: None
>> Changes in v2:
>> - new
>>
>>    configs/ds109_defconfig | 2 ++
>>    1 file changed, 2 insertions(+)
>>
>> diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
>> index c9207433b374..fd10e6e3c36e 100644
>> --- a/configs/ds109_defconfig
>> +++ b/configs/ds109_defconfig
>> @@ -18,6 +18,8 @@ CONFIG_ISO_PARTITION=y
>>    CONFIG_OF_CONTROL=y
>>    CONFIG_ENV_IS_IN_SPI_FLASH=y
>>    CONFIG_MVSATA_IDE=y
>> +CONFIG_DM_I2C=y
>> +CONFIG_SYS_I2C_MVTWSI=y
>>    # CONFIG_MMC is not set
>>    CONFIG_SPI_FLASH=y
>>    CONFIG_SPI_FLASH_BAR=y
>>
> 
> Unfortunately this series does not apply any more (again). I'm
> currently pushing my Marvell branch upstream and would like
> to get the first batch of patches accepted. After Tom has
> pulled these patches, please rebase on top of this new master.

The new merge window is open and I'm trying to get all pending
Marvell patches handled. Chris, could you please rebase this
series on top of latest mainline? It still does not apply clean
any more.

Thanks,
Stefan

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

* [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C
  2018-11-20  6:59   ` Stefan Roese
@ 2018-11-20  7:52     ` Chris Packham
  2018-11-20  7:56       ` Stefan Roese
  0 siblings, 1 reply; 8+ messages in thread
From: Chris Packham @ 2018-11-20  7:52 UTC (permalink / raw)
  To: u-boot

Hi Stefan,

On Tue, Nov 20, 2018 at 8:00 PM Stefan Roese <sr@denx.de> wrote:
>
> Hi Chris,
>
> On 19.09.18 14:11, Stefan Roese wrote:
> > On 07.08.2018 09:41, Chris Packham wrote:
> >> Enable DM_I2C and I2C_MVTSWI for the ds109 board.
> >>
> >> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> >> ---
> >>
> >> Changes in v3: None
> >> Changes in v2:
> >> - new
> >>
> >>    configs/ds109_defconfig | 2 ++
> >>    1 file changed, 2 insertions(+)
> >>
> >> diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
> >> index c9207433b374..fd10e6e3c36e 100644
> >> --- a/configs/ds109_defconfig
> >> +++ b/configs/ds109_defconfig
> >> @@ -18,6 +18,8 @@ CONFIG_ISO_PARTITION=y
> >>    CONFIG_OF_CONTROL=y
> >>    CONFIG_ENV_IS_IN_SPI_FLASH=y
> >>    CONFIG_MVSATA_IDE=y
> >> +CONFIG_DM_I2C=y
> >> +CONFIG_SYS_I2C_MVTWSI=y
> >>    # CONFIG_MMC is not set
> >>    CONFIG_SPI_FLASH=y
> >>    CONFIG_SPI_FLASH_BAR=y
> >>
> >
> > Unfortunately this series does not apply any more (again). I'm
> > currently pushing my Marvell branch upstream and would like
> > to get the first batch of patches accepted. After Tom has
> > pulled these patches, please rebase on top of this new master.
>
> The new merge window is open and I'm trying to get all pending
> Marvell patches handled. Chris, could you please rebase this
> series on top of latest mainline? It still does not apply clean
> any more.

This as already been applied as
http://git.denx.de/?p=u-boot.git;a=commit;h=f596efb7

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

* [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C
  2018-11-20  7:52     ` Chris Packham
@ 2018-11-20  7:56       ` Stefan Roese
  2018-11-20  8:01         ` Chris Packham
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Roese @ 2018-11-20  7:56 UTC (permalink / raw)
  To: u-boot

On 20.11.18 08:52, Chris Packham wrote:
> Hi Stefan,
> 
> On Tue, Nov 20, 2018 at 8:00 PM Stefan Roese <sr@denx.de> wrote:
>>
>> Hi Chris,
>>
>> On 19.09.18 14:11, Stefan Roese wrote:
>>> On 07.08.2018 09:41, Chris Packham wrote:
>>>> Enable DM_I2C and I2C_MVTSWI for the ds109 board.
>>>>
>>>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
>>>> ---
>>>>
>>>> Changes in v3: None
>>>> Changes in v2:
>>>> - new
>>>>
>>>>     configs/ds109_defconfig | 2 ++
>>>>     1 file changed, 2 insertions(+)
>>>>
>>>> diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
>>>> index c9207433b374..fd10e6e3c36e 100644
>>>> --- a/configs/ds109_defconfig
>>>> +++ b/configs/ds109_defconfig
>>>> @@ -18,6 +18,8 @@ CONFIG_ISO_PARTITION=y
>>>>     CONFIG_OF_CONTROL=y
>>>>     CONFIG_ENV_IS_IN_SPI_FLASH=y
>>>>     CONFIG_MVSATA_IDE=y
>>>> +CONFIG_DM_I2C=y
>>>> +CONFIG_SYS_I2C_MVTWSI=y
>>>>     # CONFIG_MMC is not set
>>>>     CONFIG_SPI_FLASH=y
>>>>     CONFIG_SPI_FLASH_BAR=y
>>>>
>>>
>>> Unfortunately this series does not apply any more (again). I'm
>>> currently pushing my Marvell branch upstream and would like
>>> to get the first batch of patches accepted. After Tom has
>>> pulled these patches, please rebase on top of this new master.
>>
>> The new merge window is open and I'm trying to get all pending
>> Marvell patches handled. Chris, could you please rebase this
>> series on top of latest mainline? It still does not apply clean
>> any more.
> 
> This as already been applied as
> http://git.denx.de/?p=u-boot.git;a=commit;h=f596efb7

Ah, right. All 3 patches from this series? None is missing currently?

Thanks,
Stefan

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

* [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C
  2018-11-20  7:56       ` Stefan Roese
@ 2018-11-20  8:01         ` Chris Packham
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Packham @ 2018-11-20  8:01 UTC (permalink / raw)
  To: u-boot

On Tue, Nov 20, 2018 at 8:56 PM Stefan Roese <sr@denx.de> wrote:
>
> On 20.11.18 08:52, Chris Packham wrote:
> > Hi Stefan,
> >
> > On Tue, Nov 20, 2018 at 8:00 PM Stefan Roese <sr@denx.de> wrote:
> >>
> >> Hi Chris,
> >>
> >> On 19.09.18 14:11, Stefan Roese wrote:
> >>> On 07.08.2018 09:41, Chris Packham wrote:
> >>>> Enable DM_I2C and I2C_MVTSWI for the ds109 board.
> >>>>
> >>>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> >>>> ---
> >>>>
> >>>> Changes in v3: None
> >>>> Changes in v2:
> >>>> - new
> >>>>
> >>>>     configs/ds109_defconfig | 2 ++
> >>>>     1 file changed, 2 insertions(+)
> >>>>
> >>>> diff --git a/configs/ds109_defconfig b/configs/ds109_defconfig
> >>>> index c9207433b374..fd10e6e3c36e 100644
> >>>> --- a/configs/ds109_defconfig
> >>>> +++ b/configs/ds109_defconfig
> >>>> @@ -18,6 +18,8 @@ CONFIG_ISO_PARTITION=y
> >>>>     CONFIG_OF_CONTROL=y
> >>>>     CONFIG_ENV_IS_IN_SPI_FLASH=y
> >>>>     CONFIG_MVSATA_IDE=y
> >>>> +CONFIG_DM_I2C=y
> >>>> +CONFIG_SYS_I2C_MVTWSI=y
> >>>>     # CONFIG_MMC is not set
> >>>>     CONFIG_SPI_FLASH=y
> >>>>     CONFIG_SPI_FLASH_BAR=y
> >>>>
> >>>
> >>> Unfortunately this series does not apply any more (again). I'm
> >>> currently pushing my Marvell branch upstream and would like
> >>> to get the first batch of patches accepted. After Tom has
> >>> pulled these patches, please rebase on top of this new master.
> >>
> >> The new merge window is open and I'm trying to get all pending
> >> Marvell patches handled. Chris, could you please rebase this
> >> series on top of latest mainline? It still does not apply clean
> >> any more.
> >
> > This as already been applied as
> > http://git.denx.de/?p=u-boot.git;a=commit;h=f596efb7
>
> Ah, right. All 3 patches from this series? None is missing currently?

Yes they were all applied.

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

end of thread, other threads:[~2018-11-20  8:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-07  7:41 [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Chris Packham
2018-08-07  7:41 ` [U-Boot] [PATCH v3 2/3] configs: move RTC_MV config from mv-plug-common.h to boards Chris Packham
2018-08-07  7:41 ` [U-Boot] [PATCH v3 3/3] configs: kirkwood: Move RTC_MV to DM and Kconfig Chris Packham
2018-09-19 12:11 ` [U-Boot] [PATCH v3 1/3] configs: kirkwood: ds109: switch to DM_I2C Stefan Roese
2018-11-20  6:59   ` Stefan Roese
2018-11-20  7:52     ` Chris Packham
2018-11-20  7:56       ` Stefan Roese
2018-11-20  8:01         ` Chris Packham

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.