Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-02-07 Thread Stefano Babic
On 18/01/2012 12:33, Matthias Fuchs wrote:
 This patch adds support for the MX28 internal RTC
 and enables u-boot's date command.
 
 Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu
 ---

Applied to u-boot-imx, thanks.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-02-06 Thread Fabio Estevam
Hi Stefano,

On 1/23/12, Fabio Estevam feste...@gmail.com wrote:
 On 1/18/12, Matthias Fuchs matthias.fu...@esd.eu wrote:
 This patch adds support for the MX28 internal RTC
 and enables u-boot's date command.

 Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu

 Tested-by: Fabio Estevam fabio.este...@freescale.com

Any issues with this patch series?

If not, is it possible to apply them?

Thanks,

Fabio Estevam
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-02-06 Thread Stefano Babic
On 06/02/2012 13:51, Fabio Estevam wrote:
 Hi Stefano,
 
 On 1/23/12, Fabio Estevam feste...@gmail.com wrote:
 On 1/18/12, Matthias Fuchs matthias.fu...@esd.eu wrote:
 This patch adds support for the MX28 internal RTC
 and enables u-boot's date command.

 Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu

 Tested-by: Fabio Estevam fabio.este...@freescale.com
 
 Any issues with this patch series?
 
 If not, is it possible to apply them?

No issue, I am going to apply them.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-01-23 Thread Fabio Estevam
On 1/18/12, Matthias Fuchs matthias.fu...@esd.eu wrote:
 This patch adds support for the MX28 internal RTC
 and enables u-boot's date command.

 Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu

Tested-by: Fabio Estevam fabio.este...@freescale.com
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-01-19 Thread Fabio Estevam
On Wed, Jan 18, 2012 at 2:07 PM, Marek Vasut marek.va...@gmail.com wrote:

 Fabio, can you please test this and 2/3 ?

Yes, will test them soon.

Regards,

Fabio Estevam
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-01-19 Thread Marek Vasut
 On Wed, Jan 18, 2012 at 2:07 PM, Marek Vasut marek.va...@gmail.com wrote:
  Fabio, can you please test this and 2/3 ?
 
 Yes, will test them soon.
 
 Regards,
 
 Fabio Estevam

Thanks a lot!
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-01-18 Thread Matthias Fuchs
This patch adds support for the MX28 internal RTC
and enables u-boot's date command.

Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu
---
 include/configs/mx28evk.h |8 
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h
index bea46e7..8a752aa 100644
--- a/include/configs/mx28evk.h
+++ b/include/configs/mx28evk.h
@@ -56,6 +56,7 @@
 #define CONFIG_CMD_FAT
 
 #define CONFIG_CMD_CACHE
+#define CONFIG_CMD_DATE
 #define CONFIG_CMD_DHCP
 #define CONFIG_CMD_GPIO
 #define CONFIG_CMD_MII
@@ -150,6 +151,13 @@
 #endif
 
 /*
+ * RTC
+ */
+#ifdef CONFIG_CMD_DATE
+#defineCONFIG_RTC_MXS
+#endif
+
+/*
  * Boot Linux
  */
 #define CONFIG_CMDLINE_TAG
-- 
1.6.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 1/3] mx28evk: add RTC support

2012-01-18 Thread Marek Vasut
 This patch adds support for the MX28 internal RTC
 and enables u-boot's date command.
 
 Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu
 ---
  include/configs/mx28evk.h |8 
  1 files changed, 8 insertions(+), 0 deletions(-)
 
 diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h
 index bea46e7..8a752aa 100644
 --- a/include/configs/mx28evk.h
 +++ b/include/configs/mx28evk.h
 @@ -56,6 +56,7 @@
  #define CONFIG_CMD_FAT
 
  #define CONFIG_CMD_CACHE
 +#define CONFIG_CMD_DATE
  #define CONFIG_CMD_DHCP
  #define CONFIG_CMD_GPIO
  #define CONFIG_CMD_MII
 @@ -150,6 +151,13 @@
  #endif
 
  /*
 + * RTC
 + */
 +#ifdef   CONFIG_CMD_DATE
 +#define  CONFIG_RTC_MXS
 +#endif
 +
 +/*
   * Boot Linux
   */
  #define CONFIG_CMDLINE_TAG

Fabio, can you please test this and 2/3 ?
TIA
M
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot