diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-12-15 23:26:09 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-05 12:08:51 -0500 |
commit | 4317d070db98281fe2f65da01398a6e05a423d70 (patch) | |
tree | b6e11161127ed9ac2d97526aa702a835b060ba91 /arch | |
parent | 3c5b20f1b7c6687813d193033adddf0f93a3335d (diff) | |
download | u-boot-imx-4317d070db98281fe2f65da01398a6e05a423d70.zip u-boot-imx-4317d070db98281fe2f65da01398a6e05a423d70.tar.gz u-boot-imx-4317d070db98281fe2f65da01398a6e05a423d70.tar.bz2 |
mpc8xx: remove KUP4X, KUP4K board support
These boards are still non-generic boards.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Klaus Heydeck <heydeck@kieback-peter.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/Kconfig | 8 | ||||
-rw-r--r-- | arch/powerpc/cpu/mpc8xx/cpu.c | 11 |
2 files changed, 0 insertions, 19 deletions
diff --git a/arch/powerpc/cpu/mpc8xx/Kconfig b/arch/powerpc/cpu/mpc8xx/Kconfig index 30f8533..7fa5b0b 100644 --- a/arch/powerpc/cpu/mpc8xx/Kconfig +++ b/arch/powerpc/cpu/mpc8xx/Kconfig @@ -37,12 +37,6 @@ config TARGET_RRVISION config TARGET_SPD823TS bool "Support SPD823TS" -config TARGET_KUP4K - bool "Support KUP4K" - -config TARGET_KUP4X - bool "Support KUP4X" - config TARGET_TQM823L bool "Support TQM823L" @@ -86,8 +80,6 @@ source "board/cogent/Kconfig" source "board/esteem192e/Kconfig" source "board/ip860/Kconfig" source "board/ivm/Kconfig" -source "board/kup/kup4k/Kconfig" -source "board/kup/kup4x/Kconfig" source "board/lwmon/Kconfig" source "board/netvia/Kconfig" source "board/r360mpi/Kconfig" diff --git a/arch/powerpc/cpu/mpc8xx/cpu.c b/arch/powerpc/cpu/mpc8xx/cpu.c index eb4432f..9967664 100644 --- a/arch/powerpc/cpu/mpc8xx/cpu.c +++ b/arch/powerpc/cpu/mpc8xx/cpu.c @@ -598,17 +598,6 @@ void reset_8xx_watchdog (volatile immap_t * immr) immr->im_ioport.iop_paodr &= ~(WATCHDOG_BIT); /* active output */ immr->im_ioport.iop_padat ^= WATCHDOG_BIT; /* Toggle WDI */ -# elif defined(CONFIG_KUP4K) || defined(CONFIG_KUP4X) - /* - * The KUP4 boards uses a TPS3705 Watchdog - * with the trigger pin connected to port PA.5 - */ -# define WATCHDOG_BIT 0x0400 - immr->im_ioport.iop_papar &= ~(WATCHDOG_BIT); /* GPIO */ - immr->im_ioport.iop_padir |= WATCHDOG_BIT; /* Output */ - immr->im_ioport.iop_paodr &= ~(WATCHDOG_BIT); /* active output */ - - immr->im_ioport.iop_padat ^= WATCHDOG_BIT; /* Toggle WDI */ # else /* * All other boards use the MPC8xx Internal Watchdog |