public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/5] bcm63158: add initial support
@ 2019-01-31 17:57 Philippe Reynes
  2019-01-31 17:57 ` [U-Boot] [PATCH 2/5] bcm963158: " Philippe Reynes
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Philippe Reynes @ 2019-01-31 17:57 UTC (permalink / raw)
  To: u-boot

This add the initial support of the broadcom bcm63158 SoC family,
only the cpu, dram and uart are supported.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 arch/arm/Kconfig           |  6 ++++
 arch/arm/dts/bcm63158.dtsi | 85 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 91 insertions(+)
 create mode 100644 arch/arm/dts/bcm63158.dtsi

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index f0edb10..4316de0 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -528,6 +528,12 @@ config ARCH_BCM283X
 	imply CMD_DM
 	imply FAT_WRITE
 
+config ARCH_BCM63158
+	bool "Broadcom BCM63158 family"
+	select DM
+	select OF_CONTROL
+	imply CMD_DM
+
 config ARCH_BCM6858
 	bool "Broadcom BCM6858 family"
 	select DM
diff --git a/arch/arm/dts/bcm63158.dtsi b/arch/arm/dts/bcm63158.dtsi
new file mode 100644
index 0000000..be68205
--- /dev/null
+++ b/arch/arm/dts/bcm63158.dtsi
@@ -0,0 +1,85 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
+ */
+
+#include "skeleton64.dtsi"
+
+/ {
+	compatible = "brcm,bcm63158";
+	#address-cells = <2>;
+	#size-cells = <2>;
+
+	cpus {
+		#address-cells = <2>;
+		#size-cells = <0>;
+		u-boot,dm-pre-reloc;
+
+		cpu0: cpu at 0 {
+			compatible = "arm,cortex-a53", "arm,armv8";
+			device_type = "cpu";
+			reg = <0x0 0x0>;
+			next-level-cache = <&l2>;
+			u-boot,dm-pre-reloc;
+		};
+
+		cpu1: cpu at 1 {
+			compatible = "arm,cortex-a53", "arm,armv8";
+			device_type = "cpu";
+			reg = <0x0 0x1>;
+			next-level-cache = <&l2>;
+			u-boot,dm-pre-reloc;
+		};
+
+		cpu2: cpu at 2 {
+			compatible = "arm,cortex-a53", "arm,armv8";
+			device_type = "cpu";
+			reg = <0x0 0x2>;
+			next-level-cache = <&l2>;
+			u-boot,dm-pre-reloc;
+		};
+
+		cpu3: cpu at 3 {
+			compatible = "arm,cortex-a53", "arm,armv8";
+			device_type = "cpu";
+			reg = <0x0 0x3>;
+			next-level-cache = <&l2>;
+			u-boot,dm-pre-reloc;
+		};
+
+		l2: l2-cache0 {
+			compatible = "cache";
+			u-boot,dm-pre-reloc;
+		};
+	};
+
+	clocks {
+		compatible = "simple-bus";
+		#address-cells = <2>;
+		#size-cells = <2>;
+		ranges;
+		u-boot,dm-pre-reloc;
+
+		periph_osc: periph-osc {
+			compatible = "fixed-clock";
+			#clock-cells = <0>;
+			clock-frequency = <0xbebc200>;
+			u-boot,dm-pre-reloc;
+		};
+	};
+
+	ubus {
+		compatible = "simple-bus";
+		#address-cells = <2>;
+		#size-cells = <2>;
+		u-boot,dm-pre-reloc;
+
+		uart0: serial at ff812000 {
+			compatible = "arm,pl011", "arm,primecell";
+			reg = <0x0 0xff812000 0x0 0x1000>;
+			clock = <50000000>;
+
+			status = "disabled";
+		};
+	};
+};
-- 
2.7.4

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

* [U-Boot] [PATCH 2/5] bcm963158: add initial support
  2019-01-31 17:57 [U-Boot] [PATCH 1/5] bcm63158: add initial support Philippe Reynes
@ 2019-01-31 17:57 ` Philippe Reynes
  2019-02-10 13:10   ` [U-Boot] [U-Boot,2/5] " Tom Rini
  2019-01-31 17:57 ` [U-Boot] [PATCH 3/5] watchdog: bcm6345: allow to use this driver on arm bcm63158 Philippe Reynes
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Philippe Reynes @ 2019-01-31 17:57 UTC (permalink / raw)
  To: u-boot

This add the initial support of the broadcom reference
board bcm963158 with a bcm63158 SoC.

This board has 1 GB of ram, 512 MB of flash (nand),
2 usb port, 1 uart, 4 ethernet ports (LAN), 1 ethernet port (WAN).

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 arch/arm/Kconfig                     |  1 +
 arch/arm/dts/bcm963158.dts           | 31 ++++++++++++++++++
 board/broadcom/bcm963158/Kconfig     | 17 ++++++++++
 board/broadcom/bcm963158/MAINTAINERS |  6 ++++
 board/broadcom/bcm963158/Makefile    |  3 ++
 board/broadcom/bcm963158/bcm963158.c | 61 ++++++++++++++++++++++++++++++++++++
 configs/bcm963158_ram_defconfig      | 40 +++++++++++++++++++++++
 include/configs/broadcom_bcm963158.h | 37 ++++++++++++++++++++++
 8 files changed, 196 insertions(+)
 create mode 100644 arch/arm/dts/bcm963158.dts
 create mode 100644 board/broadcom/bcm963158/Kconfig
 create mode 100644 board/broadcom/bcm963158/MAINTAINERS
 create mode 100644 board/broadcom/bcm963158/Makefile
 create mode 100644 board/broadcom/bcm963158/bcm963158.c
 create mode 100644 configs/bcm963158_ram_defconfig
 create mode 100644 include/configs/broadcom_bcm963158.h

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 4316de0..455f06c 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1532,6 +1532,7 @@ source "board/armltd/vexpress/Kconfig"
 source "board/armltd/vexpress64/Kconfig"
 source "board/broadcom/bcm23550_w1d/Kconfig"
 source "board/broadcom/bcm28155_ap/Kconfig"
+source "board/broadcom/bcm963158/Kconfig"
 source "board/broadcom/bcm968580xref/Kconfig"
 source "board/broadcom/bcmcygnus/Kconfig"
 source "board/broadcom/bcmnsp/Kconfig"
diff --git a/arch/arm/dts/bcm963158.dts b/arch/arm/dts/bcm963158.dts
new file mode 100644
index 0000000..dc5afb5
--- /dev/null
+++ b/arch/arm/dts/bcm963158.dts
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
+ */
+
+/dts-v1/;
+
+#include "bcm63158.dtsi"
+
+/ {
+	model = "Broadcom bcm963158";
+	compatible = "broadcom,bcm963158", "brcm,bcm63158";
+
+	aliases {
+		serial0 = &uart0;
+	};
+
+	chosen {
+		stdout-path = "serial0:115200n8";
+	};
+
+	memory {
+		device_type = "memory";
+		reg = <0x0 0x0 0x0 0x40000000>;
+	};
+};
+
+&uart0 {
+	u-boot,dm-pre-reloc;
+	status = "okay";
+};
diff --git a/board/broadcom/bcm963158/Kconfig b/board/broadcom/bcm963158/Kconfig
new file mode 100644
index 0000000..41b6adb
--- /dev/null
+++ b/board/broadcom/bcm963158/Kconfig
@@ -0,0 +1,17 @@
+if ARCH_BCM63158
+
+config SYS_VENDOR
+	default "broadcom"
+
+config SYS_BOARD
+	default "bcm963158"
+
+config SYS_CONFIG_NAME
+	default "broadcom_bcm963158"
+
+endif
+
+config TARGET_BCM963158
+	bool "Support Broadcom bcm963158"
+	depends on ARCH_BCM63158
+	select ARM64
diff --git a/board/broadcom/bcm963158/MAINTAINERS b/board/broadcom/bcm963158/MAINTAINERS
new file mode 100644
index 0000000..d28d971
--- /dev/null
+++ b/board/broadcom/bcm963158/MAINTAINERS
@@ -0,0 +1,6 @@
+BROADCOM BCM963158
+M:	Philippe Reynes <philippe.reynes@softathome.com>
+S:	Maintained
+F:	board/broadcom/bcm963158/
+F:	include/configs/broadcom_bcm963158.h
+F:	configs/bcm963158_ram_defconfig
diff --git a/board/broadcom/bcm963158/Makefile b/board/broadcom/bcm963158/Makefile
new file mode 100644
index 0000000..0a902c9
--- /dev/null
+++ b/board/broadcom/bcm963158/Makefile
@@ -0,0 +1,3 @@
+# SPDX-License-Identifier: GPL-2.0+
+
+obj-y	+= bcm963158.o
diff --git a/board/broadcom/bcm963158/bcm963158.c b/board/broadcom/bcm963158/bcm963158.c
new file mode 100644
index 0000000..db82cd5
--- /dev/null
+++ b/board/broadcom/bcm963158/bcm963158.c
@@ -0,0 +1,61 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
+ */
+
+#include <common.h>
+#include <fdtdec.h>
+#include <linux/io.h>
+
+#ifdef CONFIG_ARM64
+#include <asm/armv8/mmu.h>
+
+static struct mm_region broadcom_bcm963158_mem_map[] = {
+	{
+		/* RAM */
+		.virt = 0x00000000UL,
+		.phys = 0x00000000UL,
+		.size = 8UL * SZ_1G,
+		.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
+			 PTE_BLOCK_INNER_SHARE
+	}, {
+		/* SoC */
+		.virt = 0x80000000UL,
+		.phys = 0x80000000UL,
+		.size = 0xff80000000UL,
+		.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
+			 PTE_BLOCK_NON_SHARE |
+			 PTE_BLOCK_PXN | PTE_BLOCK_UXN
+	}, {
+		/* List terminator */
+		0,
+	}
+};
+
+struct mm_region *mem_map = broadcom_bcm963158_mem_map;
+#endif
+
+int board_init(void)
+{
+	return 0;
+}
+
+int dram_init(void)
+{
+	if (fdtdec_setup_mem_size_base() != 0)
+		printf("fdtdec_setup_mem_size_base() has failed\n");
+
+	return 0;
+}
+
+int dram_init_banksize(void)
+{
+	fdtdec_setup_memory_banksize();
+
+	return 0;
+}
+
+int print_cpuinfo(void)
+{
+	return 0;
+}
diff --git a/configs/bcm963158_ram_defconfig b/configs/bcm963158_ram_defconfig
new file mode 100644
index 0000000..6e3b688
--- /dev/null
+++ b/configs/bcm963158_ram_defconfig
@@ -0,0 +1,40 @@
+CONFIG_ARM=y
+# CONFIG_ARM64_SUPPORT_AARCH32 is not set
+CONFIG_ARCH_BCM63158=y
+CONFIG_SYS_TEXT_BASE=0x10000000
+CONFIG_SYS_MALLOC_F_LEN=0x8000
+CONFIG_SPL_SYS_MALLOC_F_LEN=0x400
+CONFIG_TARGET_BCM963158=y
+CONFIG_ENV_VARS_UBOOT_CONFIG=y
+CONFIG_NR_DRAM_BANKS=1
+CONFIG_TPL_SYS_MALLOC_F_LEN=0x400
+CONFIG_FIT=y
+CONFIG_FIT_SIGNATURE=y
+CONFIG_FIT_ENABLE_RSASSA_PSS_SUPPORT=y
+CONFIG_FIT_VERBOSE=y
+CONFIG_IMAGE_FORMAT_LEGACY=y
+CONFIG_SUPPORT_RAW_INITRD=y
+CONFIG_DISPLAY_BOARDINFO_LATE=y
+CONFIG_HUSH_PARSER=y
+CONFIG_CMD_BOOTEFI_SELFTEST=y
+# CONFIG_CMD_LZMADEC is not set
+# CONFIG_CMD_UNZIP is not set
+# CONFIG_CMD_FLASH is not set
+CONFIG_CMD_CACHE=y
+CONFIG_DOS_PARTITION=y
+CONFIG_ISO_PARTITION=y
+CONFIG_EFI_PARTITION=y
+CONFIG_DEFAULT_DEVICE_TREE="bcm963158"
+# CONFIG_NET is not set
+CONFIG_BLK=y
+CONFIG_CLK=y
+# CONFIG_MMC is not set
+CONFIG_SPECIFY_CONSOLE_INDEX=y
+# CONFIG_SPL_SERIAL_PRESENT is not set
+CONFIG_CONS_INDEX=0
+CONFIG_DM_SERIAL=y
+CONFIG_SERIAL_SEARCH_ALL=y
+CONFIG_PL01X_SERIAL=y
+CONFIG_SYSRESET=y
+CONFIG_REGEX=y
+# CONFIG_GENERATE_SMBIOS_TABLE is not set
diff --git a/include/configs/broadcom_bcm963158.h b/include/configs/broadcom_bcm963158.h
new file mode 100644
index 0000000..5834e1e
--- /dev/null
+++ b/include/configs/broadcom_bcm963158.h
@@ -0,0 +1,37 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2019 Philippe Reynes <philippe.reynes@softathome.com>
+ */
+
+#include <linux/sizes.h>
+
+/*
+ * common
+ */
+
+/* UART */
+#define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200, \
+					  230400, 500000, 1500000 }
+/* Memory usage */
+#define CONFIG_SYS_MAXARGS		24
+#define CONFIG_SYS_MALLOC_LEN		(1024 * 1024)
+#define CONFIG_SYS_BOOTM_LEN		(16 * 1024 * 1024)
+
+/*
+ * 63158
+ */
+
+/* RAM */
+#define CONFIG_SYS_SDRAM_BASE		0x00000000
+
+/* U-Boot */
+#define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_TEXT_BASE + SZ_16M)
+#define CONFIG_SYS_LOAD_ADDR		CONFIG_SYS_TEXT_BASE
+
+#define CONFIG_SKIP_LOWLEVEL_INIT
+
+/*
+ * bcm963158
+ */
+
+#define CONFIG_ENV_SIZE			(8 * 1024)
-- 
2.7.4

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

* [U-Boot] [PATCH 3/5] watchdog: bcm6345: allow to use this driver on arm bcm63158
  2019-01-31 17:57 [U-Boot] [PATCH 1/5] bcm63158: add initial support Philippe Reynes
  2019-01-31 17:57 ` [U-Boot] [PATCH 2/5] bcm963158: " Philippe Reynes
@ 2019-01-31 17:57 ` Philippe Reynes
  2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
  2019-01-31 17:57 ` [U-Boot] [PATCH 4/5] dt: bcm63158: add watchdog Philippe Reynes
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Philippe Reynes @ 2019-01-31 17:57 UTC (permalink / raw)
  To: u-boot

This IP is also used on some arm SoC, so we allow to
use it on arm bcm63158 too.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 drivers/watchdog/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index 9456abd..115fc45 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -88,7 +88,7 @@ config WDT_ASPEED
 
 config WDT_BCM6345
 	bool "BCM6345 watchdog timer support"
-	depends on WDT && (ARCH_BMIPS || ARCH_BCM6858)
+	depends on WDT && (ARCH_BMIPS || ARCH_BCM6858 || ARCH_BCM63158)
 	help
 	  Select this to enable watchdog timer for BCM6345 SoCs.
 	  The watchdog timer is stopped when initialized.
-- 
2.7.4

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

* [U-Boot] [PATCH 4/5] dt: bcm63158: add watchdog
  2019-01-31 17:57 [U-Boot] [PATCH 1/5] bcm63158: add initial support Philippe Reynes
  2019-01-31 17:57 ` [U-Boot] [PATCH 2/5] bcm963158: " Philippe Reynes
  2019-01-31 17:57 ` [U-Boot] [PATCH 3/5] watchdog: bcm6345: allow to use this driver on arm bcm63158 Philippe Reynes
@ 2019-01-31 17:57 ` Philippe Reynes
  2019-02-10 13:10   ` [U-Boot] [U-Boot,4/5] " Tom Rini
  2019-01-31 17:57 ` [U-Boot] [PATCH 5/5] bcm963158: enable watchdog and reboot with watchdog Philippe Reynes
  2019-02-10 13:09 ` [U-Boot] [U-Boot,1/5] bcm63158: add initial support Tom Rini
  4 siblings, 1 reply; 10+ messages in thread
From: Philippe Reynes @ 2019-01-31 17:57 UTC (permalink / raw)
  To: u-boot

This commit add watchdog and sysreset watchdog
in the bcm63158 device tree.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 arch/arm/dts/bcm63158.dtsi | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/arch/arm/dts/bcm63158.dtsi b/arch/arm/dts/bcm63158.dtsi
index be68205..6a3fbc9 100644
--- a/arch/arm/dts/bcm63158.dtsi
+++ b/arch/arm/dts/bcm63158.dtsi
@@ -81,5 +81,22 @@
 
 			status = "disabled";
 		};
+
+		wdt1: watchdog at ff800480 {
+			compatible = "brcm,bcm6345-wdt";
+			reg = <0x0 0xff800480 0x0 0x14>;
+			clocks = <&periph_osc>;
+		};
+
+		wdt2: watchdog at ff8004c0 {
+			compatible = "brcm,bcm6345-wdt";
+			reg = <0x0 0xff8004c0 0x0 0x14>;
+			clocks = <&periph_osc>;
+		};
+
+		wdt-reboot {
+			compatible = "wdt-reboot";
+			wdt = <&wdt1>;
+		};
 	};
 };
-- 
2.7.4

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

* [U-Boot] [PATCH 5/5] bcm963158: enable watchdog and reboot with watchdog
  2019-01-31 17:57 [U-Boot] [PATCH 1/5] bcm63158: add initial support Philippe Reynes
                   ` (2 preceding siblings ...)
  2019-01-31 17:57 ` [U-Boot] [PATCH 4/5] dt: bcm63158: add watchdog Philippe Reynes
@ 2019-01-31 17:57 ` Philippe Reynes
  2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
  2019-02-10 13:09 ` [U-Boot] [U-Boot,1/5] bcm63158: add initial support Tom Rini
  4 siblings, 1 reply; 10+ messages in thread
From: Philippe Reynes @ 2019-01-31 17:57 UTC (permalink / raw)
  To: u-boot

Enable watchdog and reboot with watchdog in the configuration.

Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
---
 configs/bcm963158_ram_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/bcm963158_ram_defconfig b/configs/bcm963158_ram_defconfig
index 6e3b688..9083f1d 100644
--- a/configs/bcm963158_ram_defconfig
+++ b/configs/bcm963158_ram_defconfig
@@ -36,5 +36,7 @@ CONFIG_DM_SERIAL=y
 CONFIG_SERIAL_SEARCH_ALL=y
 CONFIG_PL01X_SERIAL=y
 CONFIG_SYSRESET=y
+CONFIG_SYSRESET_WATCHDOG=y
+CONFIG_WDT_BCM6345=y
 CONFIG_REGEX=y
 # CONFIG_GENERATE_SMBIOS_TABLE is not set
-- 
2.7.4

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

* [U-Boot] [U-Boot,1/5] bcm63158: add initial support
  2019-01-31 17:57 [U-Boot] [PATCH 1/5] bcm63158: add initial support Philippe Reynes
                   ` (3 preceding siblings ...)
  2019-01-31 17:57 ` [U-Boot] [PATCH 5/5] bcm963158: enable watchdog and reboot with watchdog Philippe Reynes
@ 2019-02-10 13:09 ` Tom Rini
  4 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2019-02-10 13:09 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 31, 2019 at 06:57:35PM +0100, Philippe Reynes wrote:

> This add the initial support of the broadcom bcm63158 SoC family,
> only the cpu, dram and uart are supported.
> 
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/2bdee224/attachment.sig>

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

* [U-Boot] [U-Boot,2/5] bcm963158: add initial support
  2019-01-31 17:57 ` [U-Boot] [PATCH 2/5] bcm963158: " Philippe Reynes
@ 2019-02-10 13:10   ` Tom Rini
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 31, 2019 at 06:57:36PM +0100, Philippe Reynes wrote:

> This add the initial support of the broadcom reference
> board bcm963158 with a bcm63158 SoC.
> 
> This board has 1 GB of ram, 512 MB of flash (nand),
> 2 usb port, 1 uart, 4 ethernet ports (LAN), 1 ethernet port (WAN).
> 
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/0dcfef86/attachment.sig>

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

* [U-Boot] [U-Boot, 3/5] watchdog: bcm6345: allow to use this driver on arm bcm63158
  2019-01-31 17:57 ` [U-Boot] [PATCH 3/5] watchdog: bcm6345: allow to use this driver on arm bcm63158 Philippe Reynes
@ 2019-02-10 13:10   ` Tom Rini
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 31, 2019 at 06:57:37PM +0100, Philippe Reynes wrote:

> This IP is also used on some arm SoC, so we allow to
> use it on arm bcm63158 too.
> 
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/dfb45431/attachment.sig>

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

* [U-Boot] [U-Boot,4/5] dt: bcm63158: add watchdog
  2019-01-31 17:57 ` [U-Boot] [PATCH 4/5] dt: bcm63158: add watchdog Philippe Reynes
@ 2019-02-10 13:10   ` Tom Rini
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 31, 2019 at 06:57:38PM +0100, Philippe Reynes wrote:

> This commit add watchdog and sysreset watchdog
> in the bcm63158 device tree.
> 
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/66df19b4/attachment.sig>

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

* [U-Boot] [U-Boot, 5/5] bcm963158: enable watchdog and reboot with watchdog
  2019-01-31 17:57 ` [U-Boot] [PATCH 5/5] bcm963158: enable watchdog and reboot with watchdog Philippe Reynes
@ 2019-02-10 13:10   ` Tom Rini
  0 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 31, 2019 at 06:57:39PM +0100, Philippe Reynes wrote:

> Enable watchdog and reboot with watchdog in the configuration.
> 
> Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/a990766e/attachment.sig>

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

end of thread, other threads:[~2019-02-10 13:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-31 17:57 [U-Boot] [PATCH 1/5] bcm63158: add initial support Philippe Reynes
2019-01-31 17:57 ` [U-Boot] [PATCH 2/5] bcm963158: " Philippe Reynes
2019-02-10 13:10   ` [U-Boot] [U-Boot,2/5] " Tom Rini
2019-01-31 17:57 ` [U-Boot] [PATCH 3/5] watchdog: bcm6345: allow to use this driver on arm bcm63158 Philippe Reynes
2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
2019-01-31 17:57 ` [U-Boot] [PATCH 4/5] dt: bcm63158: add watchdog Philippe Reynes
2019-02-10 13:10   ` [U-Boot] [U-Boot,4/5] " Tom Rini
2019-01-31 17:57 ` [U-Boot] [PATCH 5/5] bcm963158: enable watchdog and reboot with watchdog Philippe Reynes
2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
2019-02-10 13:09 ` [U-Boot] [U-Boot,1/5] bcm63158: add initial support Tom Rini

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