* [U-Boot] [PATCH] mx53evk: Add RTC support
@ 2011-10-25 11:44 Fabio Estevam
2011-10-25 12:08 ` Stefano Babic
0 siblings, 1 reply; 3+ messages in thread
From: Fabio Estevam @ 2011-10-25 11:44 UTC (permalink / raw)
To: u-boot
MX53EVK has an MC13892 PMIC. Add RTC support.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
include/configs/mx53evk.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h
index c1941e3..6c4d34f 100644
--- a/include/configs/mx53evk.h
+++ b/include/configs/mx53evk.h
@@ -63,6 +63,7 @@
#define CONFIG_PMIC_I2C
#define CONFIG_PMIC_FSL
#define CONFIG_SYS_FSL_PMIC_I2C_ADDR 8
+#define CONFIG_RTC_MC13XXX
/* MMC Configs */
#define CONFIG_FSL_ESDHC
@@ -88,6 +89,7 @@
#define CONFIG_CMD_DHCP
#define CONFIG_CMD_MII
#define CONFIG_CMD_NET
+#define CONFIG_CMD_DATE
/* allow to overwrite serial and ethaddr */
#define CONFIG_ENV_OVERWRITE
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] mx53evk: Add RTC support
2011-10-25 11:44 [U-Boot] [PATCH] mx53evk: Add RTC support Fabio Estevam
@ 2011-10-25 12:08 ` Stefano Babic
2011-10-31 3:15 ` Jason Liu
0 siblings, 1 reply; 3+ messages in thread
From: Stefano Babic @ 2011-10-25 12:08 UTC (permalink / raw)
To: u-boot
On 10/25/2011 01:44 PM, Fabio Estevam wrote:
> MX53EVK has an MC13892 PMIC. Add RTC support.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
> include/configs/mx53evk.h | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h
> index c1941e3..6c4d34f 100644
> --- a/include/configs/mx53evk.h
> +++ b/include/configs/mx53evk.h
> @@ -63,6 +63,7 @@
> #define CONFIG_PMIC_I2C
> #define CONFIG_PMIC_FSL
> #define CONFIG_SYS_FSL_PMIC_I2C_ADDR 8
> +#define CONFIG_RTC_MC13XXX
>
> /* MMC Configs */
> #define CONFIG_FSL_ESDHC
> @@ -88,6 +89,7 @@
> #define CONFIG_CMD_DHCP
> #define CONFIG_CMD_MII
> #define CONFIG_CMD_NET
> +#define CONFIG_CMD_DATE
>
> /* allow to overwrite serial and ethaddr */
> #define CONFIG_ENV_OVERWRITE
Jason is not sent in CC as board maintainer - I have added him now.
Stefano
--
=====================================================================
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: office at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] mx53evk: Add RTC support
2011-10-25 12:08 ` Stefano Babic
@ 2011-10-31 3:15 ` Jason Liu
0 siblings, 0 replies; 3+ messages in thread
From: Jason Liu @ 2011-10-31 3:15 UTC (permalink / raw)
To: u-boot
2011/10/25 Stefano Babic <sbabic@denx.de>:
> On 10/25/2011 01:44 PM, Fabio Estevam wrote:
>> MX53EVK has an MC13892 PMIC. Add RTC support.
>>
>> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
>> ---
>> ?include/configs/mx53evk.h | ? ?2 ++
>> ?1 files changed, 2 insertions(+), 0 deletions(-)
>>
>> diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h
>> index c1941e3..6c4d34f 100644
>> --- a/include/configs/mx53evk.h
>> +++ b/include/configs/mx53evk.h
>> @@ -63,6 +63,7 @@
>> ?#define CONFIG_PMIC_I2C
>> ?#define CONFIG_PMIC_FSL
>> ?#define CONFIG_SYS_FSL_PMIC_I2C_ADDR ? ?8
>> +#define CONFIG_RTC_MC13XXX
>>
>> ?/* MMC Configs */
>> ?#define CONFIG_FSL_ESDHC
>> @@ -88,6 +89,7 @@
>> ?#define CONFIG_CMD_DHCP
>> ?#define CONFIG_CMD_MII
>> ?#define CONFIG_CMD_NET
>> +#define CONFIG_CMD_DATE
>>
>> ?/* allow to overwrite serial and ethaddr */
>> ?#define CONFIG_ENV_OVERWRITE
>
> Jason is not sent in CC as board maintainer - I have added him now.
Thanks Stefano. :)
Acked-by: Jason Liu < jason.hui@linaro.org>
BR,
Jason
>
> Stefano
>
> --
> =====================================================================
> 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: office at denx.de
> =====================================================================
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-10-31 3:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-25 11:44 [U-Boot] [PATCH] mx53evk: Add RTC support Fabio Estevam
2011-10-25 12:08 ` Stefano Babic
2011-10-31 3:15 ` Jason Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox