Эх сурвалжийг харах

MIPS: Alchemy: Move development board code to common subdirectory

This should ease sharing of common devboard code.

Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Manuel Lauss 16 жил өмнө
parent
commit
58e75e86cf
27 өөрчлөгдсөн 28 нэмэгдсэн , 12 устгасан
  1. 12 12
      arch/mips/Makefile
  2. 16 0
      arch/mips/alchemy/devboards/Makefile
  3. 0 0
      arch/mips/alchemy/devboards/db1x00/Makefile
  4. 0 0
      arch/mips/alchemy/devboards/db1x00/board_setup.c
  5. 0 0
      arch/mips/alchemy/devboards/db1x00/init.c
  6. 0 0
      arch/mips/alchemy/devboards/db1x00/irqmap.c
  7. 0 0
      arch/mips/alchemy/devboards/pb1000/Makefile
  8. 0 0
      arch/mips/alchemy/devboards/pb1000/board_setup.c
  9. 0 0
      arch/mips/alchemy/devboards/pb1000/init.c
  10. 0 0
      arch/mips/alchemy/devboards/pb1000/irqmap.c
  11. 0 0
      arch/mips/alchemy/devboards/pb1100/Makefile
  12. 0 0
      arch/mips/alchemy/devboards/pb1100/board_setup.c
  13. 0 0
      arch/mips/alchemy/devboards/pb1100/init.c
  14. 0 0
      arch/mips/alchemy/devboards/pb1100/irqmap.c
  15. 0 0
      arch/mips/alchemy/devboards/pb1200/Makefile
  16. 0 0
      arch/mips/alchemy/devboards/pb1200/board_setup.c
  17. 0 0
      arch/mips/alchemy/devboards/pb1200/init.c
  18. 0 0
      arch/mips/alchemy/devboards/pb1200/irqmap.c
  19. 0 0
      arch/mips/alchemy/devboards/pb1200/platform.c
  20. 0 0
      arch/mips/alchemy/devboards/pb1500/Makefile
  21. 0 0
      arch/mips/alchemy/devboards/pb1500/board_setup.c
  22. 0 0
      arch/mips/alchemy/devboards/pb1500/init.c
  23. 0 0
      arch/mips/alchemy/devboards/pb1500/irqmap.c
  24. 0 0
      arch/mips/alchemy/devboards/pb1550/Makefile
  25. 0 0
      arch/mips/alchemy/devboards/pb1550/board_setup.c
  26. 0 0
      arch/mips/alchemy/devboards/pb1550/init.c
  27. 0 0
      arch/mips/alchemy/devboards/pb1550/irqmap.c

+ 12 - 12
arch/mips/Makefile

@@ -188,84 +188,84 @@ cflags-$(CONFIG_SOC_AU1X00)	+= -I$(srctree)/arch/mips/include/asm/mach-au1x00
 #
 # AMD Alchemy Pb1000 eval board
 #
-libs-$(CONFIG_MIPS_PB1000)	+= arch/mips/alchemy/pb1000/
+core-$(CONFIG_MIPS_PB1000)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_PB1000)	+= -I$(srctree)/arch/mips/include/asm/mach-pb1x00
 load-$(CONFIG_MIPS_PB1000)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Pb1100 eval board
 #
-libs-$(CONFIG_MIPS_PB1100)	+= arch/mips/alchemy/pb1100/
+core-$(CONFIG_MIPS_PB1100)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_PB1100)	+= -I$(srctree)/arch/mips/include/asm/mach-pb1x00
 load-$(CONFIG_MIPS_PB1100)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Pb1500 eval board
 #
-libs-$(CONFIG_MIPS_PB1500)	+= arch/mips/alchemy/pb1500/
+core-$(CONFIG_MIPS_PB1500)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_PB1500)	+= -I$(srctree)/arch/mips/include/asm/mach-pb1x00
 load-$(CONFIG_MIPS_PB1500)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Pb1550 eval board
 #
-libs-$(CONFIG_MIPS_PB1550)	+= arch/mips/alchemy/pb1550/
+core-$(CONFIG_MIPS_PB1550)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_PB1550)	+= -I$(srctree)/arch/mips/include/asm/mach-pb1x00
 load-$(CONFIG_MIPS_PB1550)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Pb1200 eval board
 #
-libs-$(CONFIG_MIPS_PB1200)	+= arch/mips/alchemy/pb1200/
+core-$(CONFIG_MIPS_PB1200)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_PB1200)	+= -I$(srctree)/arch/mips/include/asm/mach-pb1x00
 load-$(CONFIG_MIPS_PB1200)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Db1000 eval board
 #
-libs-$(CONFIG_MIPS_DB1000)	+= arch/mips/alchemy/db1x00/
+core-$(CONFIG_MIPS_DB1000)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_DB1000)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_DB1000)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Db1100 eval board
 #
-libs-$(CONFIG_MIPS_DB1100)	+= arch/mips/alchemy/db1x00/
+core-$(CONFIG_MIPS_DB1100)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_DB1100)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_DB1100)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Db1500 eval board
 #
-libs-$(CONFIG_MIPS_DB1500)	+= arch/mips/alchemy/db1x00/
+core-$(CONFIG_MIPS_DB1500)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_DB1500)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_DB1500)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Db1550 eval board
 #
-libs-$(CONFIG_MIPS_DB1550)	+= arch/mips/alchemy/db1x00/
+core-$(CONFIG_MIPS_DB1550)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_DB1550)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_DB1550)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Db1200 eval board
 #
-libs-$(CONFIG_MIPS_DB1200)	+= arch/mips/alchemy/pb1200/
+core-$(CONFIG_MIPS_DB1200)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_DB1200)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_DB1200)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Bosporus eval board
 #
-libs-$(CONFIG_MIPS_BOSPORUS)	+= arch/mips/alchemy/db1x00/
+core-$(CONFIG_MIPS_BOSPORUS)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_BOSPORUS)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_BOSPORUS)	+= 0xffffffff80100000
 
 #
 # AMD Alchemy Mirage eval board
 #
-libs-$(CONFIG_MIPS_MIRAGE)	+= arch/mips/alchemy/db1x00/
+core-$(CONFIG_MIPS_MIRAGE)	+= arch/mips/alchemy/devboards/
 cflags-$(CONFIG_MIPS_MIRAGE)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
 load-$(CONFIG_MIPS_MIRAGE)	+= 0xffffffff80100000
 

+ 16 - 0
arch/mips/alchemy/devboards/Makefile

@@ -0,0 +1,16 @@
+#
+# Alchemy Develboards
+#
+
+obj-$(CONFIG_MIPS_PB1000)	+= pb1000/
+obj-$(CONFIG_MIPS_PB1100)	+= pb1100/
+obj-$(CONFIG_MIPS_PB1200)	+= pb1200/
+obj-$(CONFIG_MIPS_PB1500)	+= pb1500/
+obj-$(CONFIG_MIPS_PB1550)	+= pb1550/
+obj-$(CONFIG_MIPS_DB1000)	+= db1x00/
+obj-$(CONFIG_MIPS_DB1100)	+= db1x00/
+obj-$(CONFIG_MIPS_DB1200)	+= pb1200/
+obj-$(CONFIG_MIPS_DB1500)	+= db1x00/
+obj-$(CONFIG_MIPS_DB1550)	+= db1x00/
+obj-$(CONFIG_MIPS_BOSPORUS)	+= db1x00/
+obj-$(CONFIG_MIPS_MIRAGE)	+= db1x00/

+ 0 - 0
arch/mips/alchemy/db1x00/Makefile → arch/mips/alchemy/devboards/db1x00/Makefile


+ 0 - 0
arch/mips/alchemy/db1x00/board_setup.c → arch/mips/alchemy/devboards/db1x00/board_setup.c


+ 0 - 0
arch/mips/alchemy/db1x00/init.c → arch/mips/alchemy/devboards/db1x00/init.c


+ 0 - 0
arch/mips/alchemy/db1x00/irqmap.c → arch/mips/alchemy/devboards/db1x00/irqmap.c


+ 0 - 0
arch/mips/alchemy/pb1000/Makefile → arch/mips/alchemy/devboards/pb1000/Makefile


+ 0 - 0
arch/mips/alchemy/pb1000/board_setup.c → arch/mips/alchemy/devboards/pb1000/board_setup.c


+ 0 - 0
arch/mips/alchemy/pb1000/init.c → arch/mips/alchemy/devboards/pb1000/init.c


+ 0 - 0
arch/mips/alchemy/pb1000/irqmap.c → arch/mips/alchemy/devboards/pb1000/irqmap.c


+ 0 - 0
arch/mips/alchemy/pb1100/Makefile → arch/mips/alchemy/devboards/pb1100/Makefile


+ 0 - 0
arch/mips/alchemy/pb1100/board_setup.c → arch/mips/alchemy/devboards/pb1100/board_setup.c


+ 0 - 0
arch/mips/alchemy/pb1100/init.c → arch/mips/alchemy/devboards/pb1100/init.c


+ 0 - 0
arch/mips/alchemy/pb1100/irqmap.c → arch/mips/alchemy/devboards/pb1100/irqmap.c


+ 0 - 0
arch/mips/alchemy/pb1200/Makefile → arch/mips/alchemy/devboards/pb1200/Makefile


+ 0 - 0
arch/mips/alchemy/pb1200/board_setup.c → arch/mips/alchemy/devboards/pb1200/board_setup.c


+ 0 - 0
arch/mips/alchemy/pb1200/init.c → arch/mips/alchemy/devboards/pb1200/init.c


+ 0 - 0
arch/mips/alchemy/pb1200/irqmap.c → arch/mips/alchemy/devboards/pb1200/irqmap.c


+ 0 - 0
arch/mips/alchemy/pb1200/platform.c → arch/mips/alchemy/devboards/pb1200/platform.c


+ 0 - 0
arch/mips/alchemy/pb1500/Makefile → arch/mips/alchemy/devboards/pb1500/Makefile


+ 0 - 0
arch/mips/alchemy/pb1500/board_setup.c → arch/mips/alchemy/devboards/pb1500/board_setup.c


+ 0 - 0
arch/mips/alchemy/pb1500/init.c → arch/mips/alchemy/devboards/pb1500/init.c


+ 0 - 0
arch/mips/alchemy/pb1500/irqmap.c → arch/mips/alchemy/devboards/pb1500/irqmap.c


+ 0 - 0
arch/mips/alchemy/pb1550/Makefile → arch/mips/alchemy/devboards/pb1550/Makefile


+ 0 - 0
arch/mips/alchemy/pb1550/board_setup.c → arch/mips/alchemy/devboards/pb1550/board_setup.c


+ 0 - 0
arch/mips/alchemy/pb1550/init.c → arch/mips/alchemy/devboards/pb1550/init.c


+ 0 - 0
arch/mips/alchemy/pb1550/irqmap.c → arch/mips/alchemy/devboards/pb1550/irqmap.c