
On Wed, Jul 11, 2018 at 02:33:37PM +0200, Daniel Schwierzeck wrote:
On 09.07.2018 21:09, Tom Rini wrote:
The only platform left for the AU1x00 SoCs was the pb1x00 platform, an apparent clone of the dbau1x00 platform. As pb1x00 had no listed maintainer I am assuming that it is also orphaned. Remove this platform and then remove the unused SoC support.
Cc: Daniel Schwierzeck daniel.schwierzeck@gmail.com Signed-off-by: Tom Rini trini@konsulko.com
arch/mips/Kconfig | 10 - arch/mips/Makefile | 1 - arch/mips/include/asm/addrspace.h | 6 +- arch/mips/mach-au1x00/Makefile | 6 - arch/mips/mach-au1x00/au1x00_eth.c | 307 ----- arch/mips/mach-au1x00/au1x00_ide.c | 14 - arch/mips/mach-au1x00/au1x00_serial.c | 130 --- arch/mips/mach-au1x00/au1x00_usb_ohci.c | 1609 --------------------------- arch/mips/mach-au1x00/au1x00_usb_ohci.h | 416 ------- arch/mips/mach-au1x00/include/mach/au1x00.h | 1040 ----------------- board/pb1x00/Kconfig | 27 - board/pb1x00/MAINTAINERS | 6 - board/pb1x00/Makefile | 7 - board/pb1x00/README | 63 -- board/pb1x00/flash.c | 26 - board/pb1x00/lowlevel_init.S | 391 ------- board/pb1x00/pb1x00.c | 108 -- configs/pb1000_defconfig | 20 - include/configs/pb1x00.h | 138 --- 19 files changed, 3 insertions(+), 4322 deletions(-) delete mode 100644 arch/mips/mach-au1x00/Makefile delete mode 100644 arch/mips/mach-au1x00/au1x00_eth.c delete mode 100644 arch/mips/mach-au1x00/au1x00_ide.c delete mode 100644 arch/mips/mach-au1x00/au1x00_serial.c delete mode 100644 arch/mips/mach-au1x00/au1x00_usb_ohci.c delete mode 100644 arch/mips/mach-au1x00/au1x00_usb_ohci.h delete mode 100644 arch/mips/mach-au1x00/include/mach/au1x00.h delete mode 100644 board/pb1x00/Kconfig delete mode 100644 board/pb1x00/MAINTAINERS delete mode 100644 board/pb1x00/Makefile delete mode 100644 board/pb1x00/README delete mode 100644 board/pb1x00/flash.c delete mode 100644 board/pb1x00/lowlevel_init.S delete mode 100644 board/pb1x00/pb1x00.c delete mode 100644 configs/pb1000_defconfig delete mode 100644 include/configs/pb1x00.h
there are still some remnants:
$ git grep -in 'au1x' doc/README.qemu-mips:11:Derived from au1x00 with a lot of things cut out. drivers/serial/serial.c:112:serial_initfunc(au1x00_serial_initialize); drivers/serial/serial.c:167: au1x00_serial_initialize(); drivers/usb/gadget/gadget_chips.h:156: * CONFIG_USB_GADGET_AU1X00 include/netdev.h:28:int au1x00_enet_initialize(bd_t*); include/serial.h:185:void au1x00_serial_initialize(void); scripts/config_whitelist.txt:1843:CONFIG_SOC_AU1X00 scripts/config_whitelist.txt:4634:CONFIG_USB_GADGET_AU1X00
OK. Once Manuel replies about the dbau1x00 part I'll rework this part.