Re: [U-Boot] [PATCH 4/8] ipam390: remove board

2019-05-29 Thread Tom Rini
On Fri, May 17, 2019 at 11:17:16AM +0200, Bartosz Golaszewski wrote:

> From: Bartosz Golaszewski 
> 
> This board still doesn't select CONFIG_DM and seems to be umaintained.
> As it makes progress on modernizing several DaVinci drivers more
> difficult and the maintainer has not expressed interest in updating
> it, this patch proposes to remove it.
> 
> Signed-off-by: Bartosz Golaszewski 
> Acked-by: Heiko Schocher 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH 4/8] ipam390: remove board

2019-05-19 Thread Heiko Schocher

Hello Bartosz,

Am 17.05.2019 um 11:17 schrieb Bartosz Golaszewski:

From: Bartosz Golaszewski 

This board still doesn't select CONFIG_DM and seems to be umaintained.
As it makes progress on modernizing several DaVinci drivers more
difficult and the maintainer has not expressed interest in updating
it, this patch proposes to remove it.

Signed-off-by: Bartosz Golaszewski 
---
  arch/arm/mach-davinci/Kconfig  |   7 -
  board/Barix/ipam390/Kconfig|  12 -
  board/Barix/ipam390/MAINTAINERS|   6 -
  board/Barix/ipam390/Makefile   |   8 -
  board/Barix/ipam390/README.ipam390 | 229 --
  board/Barix/ipam390/ipam390-ais-uart.cfg   | 202 -
  board/Barix/ipam390/ipam390.c  | 335 -
  board/Barix/ipam390/u-boot-spl-ipam390.lds |  57 
  configs/ipam390_defconfig  |  45 ---
  include/configs/ipam390.h  | 237 ---
  10 files changed, 1138 deletions(-)
  delete mode 100644 board/Barix/ipam390/Kconfig
  delete mode 100644 board/Barix/ipam390/MAINTAINERS
  delete mode 100644 board/Barix/ipam390/Makefile
  delete mode 100644 board/Barix/ipam390/README.ipam390
  delete mode 100644 board/Barix/ipam390/ipam390-ais-uart.cfg
  delete mode 100644 board/Barix/ipam390/ipam390.c
  delete mode 100644 board/Barix/ipam390/u-boot-spl-ipam390.lds
  delete mode 100644 configs/ipam390_defconfig
  delete mode 100644 include/configs/ipam390.h


Thanks!

Acked-by: Heiko Schocher 

bye,
Heiko
--
DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52   Fax: +49-8142-66989-80   Email: h...@denx.de
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH 4/8] ipam390: remove board

2019-05-17 Thread Bartosz Golaszewski
From: Bartosz Golaszewski 

This board still doesn't select CONFIG_DM and seems to be umaintained.
As it makes progress on modernizing several DaVinci drivers more
difficult and the maintainer has not expressed interest in updating
it, this patch proposes to remove it.

Signed-off-by: Bartosz Golaszewski 
---
 arch/arm/mach-davinci/Kconfig  |   7 -
 board/Barix/ipam390/Kconfig|  12 -
 board/Barix/ipam390/MAINTAINERS|   6 -
 board/Barix/ipam390/Makefile   |   8 -
 board/Barix/ipam390/README.ipam390 | 229 --
 board/Barix/ipam390/ipam390-ais-uart.cfg   | 202 -
 board/Barix/ipam390/ipam390.c  | 335 -
 board/Barix/ipam390/u-boot-spl-ipam390.lds |  57 
 configs/ipam390_defconfig  |  45 ---
 include/configs/ipam390.h  | 237 ---
 10 files changed, 1138 deletions(-)
 delete mode 100644 board/Barix/ipam390/Kconfig
 delete mode 100644 board/Barix/ipam390/MAINTAINERS
 delete mode 100644 board/Barix/ipam390/Makefile
 delete mode 100644 board/Barix/ipam390/README.ipam390
 delete mode 100644 board/Barix/ipam390/ipam390-ais-uart.cfg
 delete mode 100644 board/Barix/ipam390/ipam390.c
 delete mode 100644 board/Barix/ipam390/u-boot-spl-ipam390.lds
 delete mode 100644 configs/ipam390_defconfig
 delete mode 100644 include/configs/ipam390.h

diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig
index c2a5759f45..61e84e5129 100644
--- a/arch/arm/mach-davinci/Kconfig
+++ b/arch/arm/mach-davinci/Kconfig
@@ -4,12 +4,6 @@ choice
prompt "DaVinci board select"
optional
 
-config TARGET_IPAM390
-   bool "IPAM390 board"
-   select MACH_DAVINCI_DA850_EVM
-   select SOC_DA850
-   select SUPPORT_SPL
-
 config TARGET_DA850EVM
bool "DA850 EVM board"
select MACH_DAVINCI_DA850_EVM
@@ -136,7 +130,6 @@ config SYS_DA850_PLL1_PLLDIV3
 
 endif
 
-source "board/Barix/ipam390/Kconfig"
 source "board/davinci/da8xxevm/Kconfig"
 source "board/lego/ev3/Kconfig"
 
diff --git a/board/Barix/ipam390/Kconfig b/board/Barix/ipam390/Kconfig
deleted file mode 100644
index b85d4da44b..00
--- a/board/Barix/ipam390/Kconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-if TARGET_IPAM390
-
-config SYS_BOARD
-   default "ipam390"
-
-config SYS_VENDOR
-   default "Barix"
-
-config SYS_CONFIG_NAME
-   default "ipam390"
-
-endif
diff --git a/board/Barix/ipam390/MAINTAINERS b/board/Barix/ipam390/MAINTAINERS
deleted file mode 100644
index 640e34fc8d..00
--- a/board/Barix/ipam390/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-IPAM390 BOARD
-M: Heiko Schocher 
-S: Maintained
-F: board/Barix/ipam390/
-F: include/configs/ipam390.h
-F: configs/ipam390_defconfig
diff --git a/board/Barix/ipam390/Makefile b/board/Barix/ipam390/Makefile
deleted file mode 100644
index 735250a1e2..00
--- a/board/Barix/ipam390/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0+
-#
-# (C) Copyright 2000, 2001, 2002
-# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
-#
-# Copyright (C) 2007 Sergey Kubushyn 
-
-obj-y  += ipam390.o
diff --git a/board/Barix/ipam390/README.ipam390 
b/board/Barix/ipam390/README.ipam390
deleted file mode 100644
index be09280dd8..00
--- a/board/Barix/ipam390/README.ipam390
+++ /dev/null
@@ -1,229 +0,0 @@
-Summary
-===
-The README is for the boot procedure on the ipam390 board
-
-In the context of U-Boot, the board is booted in three stages. The initial
-bootloader which executes upon reset is the ROM Boot Loader (RBL) and sits
-in the internal ROM. The RBL initializes the internal memory and then
-depending on the exact board and pin configurations will initialize another
-controller (such as NAND) to continue the boot process by loading
-the secondary program loader (SPL). The SPL will initialize the system
-further (some clocks, SDRAM). As on this board is used the falcon boot
-mode, now 2 ways are possible depending on the GPIO 7_14 input pin,
-connected with the "soft reset switch"
-
-If this pin is logical 1 (high level):
-spl code starts the kernel image without delay
-
-If this pin is logical 0 (low level):
-spl code starts the u-boot image
-
-AIS is an image format defined by TI for the images that are to be loaded
-to memory by the RBL. The image is divided into a series of sections and
-the image's entry point is specified. Each section comes with meta data
-like the target address the section is to be copied to and the size of the
-section, which is used by the RBL to load the image. At the end of the
-image the RBL jumps to the image entry point.  The AIS format allows for
-other things such as programming the clocks and SDRAM if the header is
-programmed for it.  We do not take advantage of this and instead use SPL as
-it allows for additional flexibility (run-time detect of board revision,
-loading the next image from a different media, etc).
-