* [U-Boot] [PATCH 1/2] tbs2910: add thermal support
@ 2015-05-29 18:32 Soeren Moch
2015-05-29 18:32 ` [U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support Soeren Moch
2015-06-09 10:10 ` [U-Boot] [PATCH 1/2] tbs2910: add thermal support Stefano Babic
0 siblings, 2 replies; 4+ messages in thread
From: Soeren Moch @ 2015-05-29 18:32 UTC (permalink / raw)
To: u-boot
Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
---
configs/tbs2910_defconfig | 2 ++
include/configs/tbs2910.h | 2 ++
2 files changed, 4 insertions(+)
diff --git a/configs/tbs2910_defconfig b/configs/tbs2910_defconfig
index cace345..51319d1 100644
--- a/configs/tbs2910_defconfig
+++ b/configs/tbs2910_defconfig
@@ -1,3 +1,5 @@
CONFIG_ARM=y
CONFIG_TARGET_TBS2910=y
CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/boundary/nitrogen6x/nitrogen6q2g.cfg,MX6Q"
+CONFIG_DM=y
+CONFIG_DM_THERMAL=y
diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h
index 13a6e06..2d0de45 100644
--- a/include/configs/tbs2910.h
+++ b/include/configs/tbs2910.h
@@ -21,6 +21,8 @@
#define CONFIG_SYS_PROMPT "Matrix U-Boot> "
#define CONFIG_SYS_HZ 1000
+#define CONFIG_IMX6_THERMAL
+
/* Physical Memory Map */
#define CONFIG_NR_DRAM_BANKS 1
#define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support
2015-05-29 18:32 [U-Boot] [PATCH 1/2] tbs2910: add thermal support Soeren Moch
@ 2015-05-29 18:32 ` Soeren Moch
2015-06-09 10:10 ` Stefano Babic
2015-06-09 10:10 ` [U-Boot] [PATCH 1/2] tbs2910: add thermal support Stefano Babic
1 sibling, 1 reply; 4+ messages in thread
From: Soeren Moch @ 2015-05-29 18:32 UTC (permalink / raw)
To: u-boot
Add PRE_CONSOLE_BUFFER support to display early boot messages over HDMI.
Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
---
include/configs/tbs2910.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h
index 2d0de45..f915b18 100644
--- a/include/configs/tbs2910.h
+++ b/include/configs/tbs2910.h
@@ -51,6 +51,10 @@
#define CONFIG_CONSOLE_MUX
#define CONFIG_CONS_INDEX 1
+#define CONFIG_PRE_CONSOLE_BUFFER
+#define CONFIG_PRE_CON_BUF_SZ 4096
+#define CONFIG_PRE_CON_BUF_ADDR 0x7C000000
+
/* *** Command definition *** */
#define CONFIG_CMD_BMODE
#define CONFIG_CMD_SETEXPR
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support
2015-05-29 18:32 ` [U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support Soeren Moch
@ 2015-06-09 10:10 ` Stefano Babic
0 siblings, 0 replies; 4+ messages in thread
From: Stefano Babic @ 2015-06-09 10:10 UTC (permalink / raw)
To: u-boot
On 29/05/2015 20:32, Soeren Moch wrote:
> Add PRE_CONSOLE_BUFFER support to display early boot messages over HDMI.
>
> Signed-off-by: Soeren Moch <smoch@web.de>
> ---
> Cc: Stefano Babic <sbabic@denx.de>
> ---
> include/configs/tbs2910.h | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h
> index 2d0de45..f915b18 100644
> --- a/include/configs/tbs2910.h
> +++ b/include/configs/tbs2910.h
> @@ -51,6 +51,10 @@
> #define CONFIG_CONSOLE_MUX
> #define CONFIG_CONS_INDEX 1
>
> +#define CONFIG_PRE_CONSOLE_BUFFER
> +#define CONFIG_PRE_CON_BUF_SZ 4096
> +#define CONFIG_PRE_CON_BUF_ADDR 0x7C000000
> +
> /* *** Command definition *** */
> #define CONFIG_CMD_BMODE
> #define CONFIG_CMD_SETEXPR
>
Applied to u-boot-imx, thanks !
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/2] tbs2910: add thermal support
2015-05-29 18:32 [U-Boot] [PATCH 1/2] tbs2910: add thermal support Soeren Moch
2015-05-29 18:32 ` [U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support Soeren Moch
@ 2015-06-09 10:10 ` Stefano Babic
1 sibling, 0 replies; 4+ messages in thread
From: Stefano Babic @ 2015-06-09 10:10 UTC (permalink / raw)
To: u-boot
On 29/05/2015 20:32, Soeren Moch wrote:
> Signed-off-by: Soeren Moch <smoch@web.de>
> ---
> Cc: Stefano Babic <sbabic@denx.de>
> ---
> configs/tbs2910_defconfig | 2 ++
> include/configs/tbs2910.h | 2 ++
> 2 files changed, 4 insertions(+)
>
> diff --git a/configs/tbs2910_defconfig b/configs/tbs2910_defconfig
> index cace345..51319d1 100644
> --- a/configs/tbs2910_defconfig
> +++ b/configs/tbs2910_defconfig
> @@ -1,3 +1,5 @@
> CONFIG_ARM=y
> CONFIG_TARGET_TBS2910=y
> CONFIG_SYS_EXTRA_OPTIONS="IMX_CONFIG=board/boundary/nitrogen6x/nitrogen6q2g.cfg,MX6Q"
> +CONFIG_DM=y
> +CONFIG_DM_THERMAL=y
> diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h
> index 13a6e06..2d0de45 100644
> --- a/include/configs/tbs2910.h
> +++ b/include/configs/tbs2910.h
> @@ -21,6 +21,8 @@
> #define CONFIG_SYS_PROMPT "Matrix U-Boot> "
> #define CONFIG_SYS_HZ 1000
>
> +#define CONFIG_IMX6_THERMAL
> +
> /* Physical Memory Map */
> #define CONFIG_NR_DRAM_BANKS 1
> #define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
>
Applied to u-boot-imx, thanks !
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-09 10:10 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-29 18:32 [U-Boot] [PATCH 1/2] tbs2910: add thermal support Soeren Moch
2015-05-29 18:32 ` [U-Boot] [PATCH 2/2] tbs2910: add PRE_CONSOLE_BUFFER support Soeren Moch
2015-06-09 10:10 ` Stefano Babic
2015-06-09 10:10 ` [U-Boot] [PATCH 1/2] tbs2910: add thermal support Stefano Babic
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.