Re: [PATCH 12/16] ppc: Remove MPC8610HPCD board

2021-02-15 Thread Tom Rini
On Tue, Feb 09, 2021 at 09:42:53PM -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 12/16] ppc: Remove MPC8610HPCD 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 12/16] ppc: Remove MPC8610HPCD 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 12/16] ppc: Remove MPC8610HPCD 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/mpc86xx/Kconfig  |   6 -
 board/freescale/common/pixis.h|  30 -
 board/freescale/mpc8610hpcd/Kconfig   |  12 -
 board/freescale/mpc8610hpcd/MAINTAINERS   |   6 -
 board/freescale/mpc8610hpcd/Makefile  |   7 -
 board/freescale/mpc8610hpcd/README|  73 ---
 board/freescale/mpc8610hpcd/ddr.c |  56 --
 board/freescale/mpc8610hpcd/law.c |  21 -
 board/freescale/mpc8610hpcd/mpc8610hpcd.c | 335 ---
 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c |  72 ---
 configs/MPC8610HPCD_defconfig |  37 --
 include/configs/MPC8610HPCD.h | 559 --
 12 files changed, 1214 deletions(-)
 delete mode 100644 board/freescale/mpc8610hpcd/Kconfig
 delete mode 100644 board/freescale/mpc8610hpcd/MAINTAINERS
 delete mode 100644 board/freescale/mpc8610hpcd/Makefile
 delete mode 100644 board/freescale/mpc8610hpcd/README
 delete mode 100644 board/freescale/mpc8610hpcd/ddr.c
 delete mode 100644 board/freescale/mpc8610hpcd/law.c
 delete mode 100644 board/freescale/mpc8610hpcd/mpc8610hpcd.c
 delete mode 100644 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c
 delete mode 100644 configs/MPC8610HPCD_defconfig
 delete mode 100644 include/configs/MPC8610HPCD.h

diff --git a/arch/powerpc/cpu/mpc86xx/Kconfig b/arch/powerpc/cpu/mpc86xx/Kconfig
index 0f253051f26d..294485794bdf 100644
--- a/arch/powerpc/cpu/mpc86xx/Kconfig
+++ b/arch/powerpc/cpu/mpc86xx/Kconfig
@@ -13,11 +13,6 @@ config TARGET_SBC8641D
select ARCH_MPC8641
select BOARD_EARLY_INIT_F
 
-config TARGET_MPC8610HPCD
-   bool "Support MPC8610HPCD"
-   select ARCH_MPC8610
-   select BOARD_EARLY_INIT_F
-
 config TARGET_MPC8641HPCN
bool "Support MPC8641HPCN"
select ARCH_MPC8641
@@ -62,7 +57,6 @@ config SYS_FSL_NUM_LAWS
Number of local access windows. This is fixed per SoC.
If not sure, do not change.
 
-source "board/freescale/mpc8610hpcd/Kconfig"
 source "board/freescale/mpc8641hpcn/Kconfig"
 source "board/sbc8641d/Kconfig"
 source "board/xes/xpedite517x/Kconfig"
diff --git a/board/freescale/common/pixis.h b/board/freescale/common/pixis.h
index f927f2c754da..36c94862a55b 100644
--- a/board/freescale/common/pixis.h
+++ b/board/freescale/common/pixis.h
@@ -72,36 +72,6 @@ typedef struct pixis {
u8 res2[34];
 } __attribute__ ((packed)) pixis_t;
 
-#elif defined(CONFIG_TARGET_MPC8610HPCD)
-typedef struct pixis {
-   u8 id;
-   u8 ver; /* also called arch */
-   u8 pver;
-   u8 csr;
-   u8 rst;
-   u8 pwr;
-   u8 aux;
-   u8 spd;
-   u8 brdcfg0;
-   u8 brdcfg1;
-   u8 res[4];
-   u8 led;
-   u8 serno;
-   u8 vctl;
-   u8 vstat;
-   u8 vcfgen0;
-   u8 vcfgen1;
-   u8 vcore0;
-   u8 res1;
-   u8 vboot;
-   u8 vspeed[2];
-   u8 res2;
-   u8 sclk[3];
-   u8 res3;
-   u8 watch;
-   u8 res4[33];
-} __attribute__ ((packed)) pixis_t;
-
 #elif defined(CONFIG_TARGET_MPC8641HPCN)
 typedef struct pixis {
u8 id;
diff --git a/board/freescale/mpc8610hpcd/Kconfig 
b/board/freescale/mpc8610hpcd/Kconfig
deleted file mode 100644
index 8f713beaa842..
--- a/board/freescale/mpc8610hpcd/Kconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-if TARGET_MPC8610HPCD
-
-config SYS_BOARD
-   default "mpc8610hpcd"
-
-config SYS_VENDOR
-   default "freescale"
-
-config SYS_CONFIG_NAME
-   default "MPC8610HPCD"
-
-endif
diff --git a/board/freescale/mpc8610hpcd/MAINTAINERS 
b/board/freescale/mpc8610hpcd/MAINTAINERS
deleted file mode 100644
index 9b1e0cd4e56b..
--- a/board/freescale/mpc8610hpcd/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-MPC8610HPCD BOARD
-M: Priyanka Jain 
-S: Maintained
-F: board/freescale/mpc8610hpcd/
-F: include/configs/MPC8610HPCD.h
-F: configs/MPC8610HPCD_defconfig
diff --git a/board/freescale/mpc8610hpcd/Makefile 
b/board/freescale/mpc8610hpcd/Makefile
deleted file mode 100644
index 3a02a0641690..
--- a/board/freescale/mpc8610hpcd/Makefile
+++ /dev/null
@@ -1,7 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0+
-# Copyright 2007 Freescale Semiconductor, Inc.
-
-obj-y  += mpc8610hpcd.o
-obj-$(CONFIG_SYS_FSL_DDR2) += ddr.o
-obj-y  += law.o
-obj-$(CONFIG_FSL_DIU_FB)   += mpc8610hpcd_diu.o
diff --git a/board/freescale/mpc8610hpcd/README 
b/board/freescale/mpc8610hpcd/README
deleted file mode 100644
index 066e625d484d..
--- a/board/freescale/mpc8610hpcd/README
+++ /dev/null
@@ -1,73 +0,0 @@
-Freescale MPC8610HPCD board
-===
-
-
-Building U-Boot

-
-$ make MPC8610HPCD_config
-