[This RFC is proposed for v6.4 and hence is based off linux-next.] This series removes support for two PowerQUICC II (MPC82xx) Freescale processor family evaluation boards that were added to the kernel in approximately the 2003 era.
I couldn't easily find a reference picture, but there are line art sketches in the various manuals still available[1,2]. In any case, we've got one system with 32MB RAM and the other with 64MB. CPU speeds are also what one would expect for twenty year old platforms. Again, this only removes evaluation platforms. There are still a couple MPC82xx OEM platforms remaining in the kernel. But given that they are similar in age and similarly resource constrained, they probably should be near the top of the removal consideration list once all the evaluation board support removals are in. For comparison, in v2.6.27 (2008, 917f0af9e5a9) the WR SBC8260 support was implicitly retired by not being carried through the ppc --> powerpc device tree transition of that era. Paul. [1] https://www.nxp.com/design/qoriq-developer-resources/application-development-system-for-mpc8272:MPC8272ADS [2] https://www.nxp.com/design/qoriq-developer-resources/mpc82xx-family-application-development-system:PQ2FADS_VR Paul Gortmaker (3): powerpc: drop MPC8272_ADS platform support powerpc: drop PowerQUICC II Family ADS platform support powerpc: drop MPC8272-ADS and PowerQUICC II FADS shared code. arch/powerpc/boot/Makefile | 2 - arch/powerpc/boot/dts/mpc8272ads.dts | 263 ------------------- arch/powerpc/boot/dts/pq2fads.dts | 243 ----------------- arch/powerpc/configs/mpc8272_ads_defconfig | 79 ------ arch/powerpc/configs/ppc6xx_defconfig | 2 - arch/powerpc/configs/pq2fads_defconfig | 80 ------ arch/powerpc/include/asm/mpc8260.h | 4 - arch/powerpc/platforms/82xx/Kconfig | 27 -- arch/powerpc/platforms/82xx/Makefile | 3 - arch/powerpc/platforms/82xx/mpc8272_ads.c | 213 --------------- arch/powerpc/platforms/82xx/pq2ads-pci-pic.c | 172 ------------ arch/powerpc/platforms/82xx/pq2ads.h | 40 --- arch/powerpc/platforms/82xx/pq2fads.c | 191 -------------- 13 files changed, 1319 deletions(-) delete mode 100644 arch/powerpc/boot/dts/mpc8272ads.dts delete mode 100644 arch/powerpc/boot/dts/pq2fads.dts delete mode 100644 arch/powerpc/configs/mpc8272_ads_defconfig delete mode 100644 arch/powerpc/configs/pq2fads_defconfig delete mode 100644 arch/powerpc/platforms/82xx/mpc8272_ads.c delete mode 100644 arch/powerpc/platforms/82xx/pq2ads-pci-pic.c delete mode 100644 arch/powerpc/platforms/82xx/pq2ads.h delete mode 100644 arch/powerpc/platforms/82xx/pq2fads.c -- 2.17.1