Re: [PATCH 10/16] ppc: Remove MPC8544DS board

2021-02-15 Thread Tom Rini
On Tue, Feb 09, 2021 at 09:42:51PM -0500, Tom Rini wrote:

> This board relies on using CONFIG_LIBATA but does not enable CONFIG_AHCI.  The
> deadline for this conversion was the v2019.07 release.  The use of CONFIG_AHCI
> requires CONFIG_DM.  The deadline for this conversion was v2020.01.  Remove
> this board.
> 
> Cc: Priyanka Jain 
> Signed-off-by: Tom Rini 
> Reviewed-by: Priyanka Jain 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


RE: [PATCH 10/16] ppc: Remove MPC8544DS board

2021-02-11 Thread Priyanka Jain
>-Original Message-
>From: Tom Rini 
>Sent: Wednesday, February 10, 2021 8:13 AM
>To: u-boot@lists.denx.de
>Cc: Priyanka Jain 
>Subject: [PATCH 10/16] ppc: Remove MPC8544DS board
>
>This board relies on using CONFIG_LIBATA but does not enable CONFIG_AHCI.
>The deadline for this conversion was the v2019.07 release.  The use of
>CONFIG_AHCI requires CONFIG_DM.  The deadline for this conversion was
>v2020.01.  Remove this board.
>
>Cc: Priyanka Jain 
>Signed-off-by: Tom Rini 
>---
Reviewed-by: Priyanka Jain 


[PATCH 10/16] ppc: Remove MPC8544DS board

2021-02-09 Thread Tom Rini
This board relies on using CONFIG_LIBATA but does not enable CONFIG_AHCI.  The
deadline for this conversion was the v2019.07 release.  The use of CONFIG_AHCI
requires CONFIG_DM.  The deadline for this conversion was v2020.01.  Remove
this board.

Cc: Priyanka Jain 
Signed-off-by: Tom Rini 
---
 arch/powerpc/cpu/mpc85xx/Kconfig  |   6 -
 board/freescale/mpc8544ds/Kconfig |  12 -
 board/freescale/mpc8544ds/MAINTAINERS |   6 -
 board/freescale/mpc8544ds/Makefile|  10 -
 board/freescale/mpc8544ds/README  | 122 
 board/freescale/mpc8544ds/ddr.c   |  56 
 board/freescale/mpc8544ds/law.c   |  17 --
 board/freescale/mpc8544ds/mpc8544ds.c | 321 
 board/freescale/mpc8544ds/tlb.c   |  74 -
 configs/MPC8544DS_defconfig   |  52 
 include/configs/MPC8544DS.h   | 408 --
 11 files changed, 1084 deletions(-)
 delete mode 100644 board/freescale/mpc8544ds/Kconfig
 delete mode 100644 board/freescale/mpc8544ds/MAINTAINERS
 delete mode 100644 board/freescale/mpc8544ds/Makefile
 delete mode 100644 board/freescale/mpc8544ds/README
 delete mode 100644 board/freescale/mpc8544ds/ddr.c
 delete mode 100644 board/freescale/mpc8544ds/law.c
 delete mode 100644 board/freescale/mpc8544ds/mpc8544ds.c
 delete mode 100644 board/freescale/mpc8544ds/tlb.c
 delete mode 100644 configs/MPC8544DS_defconfig
 delete mode 100644 include/configs/MPC8544DS.h

diff --git a/arch/powerpc/cpu/mpc85xx/Kconfig b/arch/powerpc/cpu/mpc85xx/Kconfig
index c1a377067106..28c9f113d3f5 100644
--- a/arch/powerpc/cpu/mpc85xx/Kconfig
+++ b/arch/powerpc/cpu/mpc85xx/Kconfig
@@ -52,11 +52,6 @@ config TARGET_MPC8541CDS
bool "Support MPC8541CDS"
select ARCH_MPC8541
 
-config TARGET_MPC8544DS
-   bool "Support MPC8544DS"
-   select ARCH_MPC8544
-   imply PANIC_HANG
-
 config TARGET_MPC8548CDS
bool "Support MPC8548CDS"
select ARCH_MPC8548
@@ -1443,7 +1438,6 @@ config SYS_FSL_LBC_CLK_DIV
 
 source "board/freescale/corenet_ds/Kconfig"
 source "board/freescale/mpc8541cds/Kconfig"
-source "board/freescale/mpc8544ds/Kconfig"
 source "board/freescale/mpc8548cds/Kconfig"
 source "board/freescale/mpc8555cds/Kconfig"
 source "board/freescale/mpc8568mds/Kconfig"
diff --git a/board/freescale/mpc8544ds/Kconfig 
b/board/freescale/mpc8544ds/Kconfig
deleted file mode 100644
index c3e25b89a028..
--- a/board/freescale/mpc8544ds/Kconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-if TARGET_MPC8544DS
-
-config SYS_BOARD
-   default "mpc8544ds"
-
-config SYS_VENDOR
-   default "freescale"
-
-config SYS_CONFIG_NAME
-   default "MPC8544DS"
-
-endif
diff --git a/board/freescale/mpc8544ds/MAINTAINERS 
b/board/freescale/mpc8544ds/MAINTAINERS
deleted file mode 100644
index 74e7249e4734..
--- a/board/freescale/mpc8544ds/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-MPC8544DS BOARD
-M: Priyanka Jain 
-S: Maintained
-F: board/freescale/mpc8544ds/
-F: include/configs/MPC8544DS.h
-F: configs/MPC8544DS_defconfig
diff --git a/board/freescale/mpc8544ds/Makefile 
b/board/freescale/mpc8544ds/Makefile
deleted file mode 100644
index 1693ae84330e..
--- a/board/freescale/mpc8544ds/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0+
-#
-# Copyright 2007 Freescale Semiconductor, Inc.
-# (C) Copyright 2001-2006
-# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
-
-obj-y  += mpc8544ds.o
-obj-y  += ddr.o
-obj-y  += law.o
-obj-y  += tlb.o
diff --git a/board/freescale/mpc8544ds/README b/board/freescale/mpc8544ds/README
deleted file mode 100644
index b49c3c07c405..
--- a/board/freescale/mpc8544ds/README
+++ /dev/null
@@ -1,122 +0,0 @@
-Overview
-
-The MPC8544DS system is similar to the 85xx CDS systems such
-as the MPC8548CDS due to the similar E500 core.  However, it
-is placed on the same board as the 8641 HPCN system.
-
-
-Flash Banks

-Like the 85xx CDS systems, the 8544 DS board has two flash banks.
-They are both present on boot, but there locations can be swapped
-using the dip-switch SW10, bit 2.
-
-However, unlike the CDS systems, but similar to the 8641 HPCN
-board, a runtime reset through the FPGA can also affect a swap
-on the flash bank mappings for the next reset cycle.
-
-Irrespective of the switch SW10[2], booting is always from the
-boot bank at 0xfff8_.
-
-
-Memory Map
---
-
-0xff80_ - 0xffbf_  Alternate bank  4MB
-0xffc0_ - 0x_  Boot bank   4MB
-
-0xffb8_Alternate image start   512KB
-0xfff8_Boot image start512KB
-
-
-Flashing Images

-
-For example, to place a new image in the alternate flash bank
-and then reset with that new image temporarily, use this:
-
-tftp 100 u-boot.bin.8544ds
-erase ffb8 ffbf
-cp.b 100 ffb8 8
-pixis_reset altbank
-
-
-To overwrite the image in