110-powerpc-85xx-br200-wp-support.patch 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --- a/arch/powerpc/platforms/85xx/Kconfig
  2. +++ b/arch/powerpc/platforms/85xx/Kconfig
  3. @@ -49,6 +49,16 @@ config BSC9132_QDS
  4. and dual StarCore SC3850 DSP cores.
  5. Manufacturer : Freescale Semiconductor, Inc
  6. +config BR200_WP
  7. + bool "Aerohive BR200-WP"
  8. + select DEFAULT_UIMAGE
  9. + select ARCH_REQUIRE_GPIOLIB
  10. + select GPIO_MPC8XXX
  11. + help
  12. + This option enables support for the Aerohive BR200-WP board.
  13. +
  14. + This board is a wireless router with a Freescale P1011 SoC.
  15. +
  16. config HIVEAP_330
  17. bool "Aerohive HiveAP-330"
  18. select DEFAULT_UIMAGE
  19. --- a/arch/powerpc/platforms/85xx/Makefile
  20. +++ b/arch/powerpc/platforms/85xx/Makefile
  21. @@ -12,6 +12,7 @@ obj-y += common.o
  22. obj-$(CONFIG_BSC9131_RDB) += bsc913x_rdb.o
  23. obj-$(CONFIG_BSC9132_QDS) += bsc913x_qds.o
  24. obj-$(CONFIG_C293_PCIE) += c293pcie.o
  25. +obj-$(CONFIG_BR200_WP) += br200-wp.o
  26. obj-$(CONFIG_HIVEAP_330) += hiveap-330.o
  27. obj-$(CONFIG_MPC8540_ADS) += mpc85xx_ads.o
  28. obj-$(CONFIG_MPC8560_ADS) += mpc85xx_ads.o
  29. --- a/arch/powerpc/boot/Makefile
  30. +++ b/arch/powerpc/boot/Makefile
  31. @@ -163,6 +163,7 @@ src-plat-$(CONFIG_PPC_PSERIES) += pserie
  32. src-plat-$(CONFIG_PPC_POWERNV) += pseries-head.S
  33. src-plat-$(CONFIG_PPC_IBM_CELL_BLADE) += pseries-head.S
  34. src-plat-$(CONFIG_MVME7100) += motload-head.S mvme7100.c
  35. +src-plat-$(CONFIG_BR200_WP) += simpleboot.c fixed-head.S
  36. src-plat-$(CONFIG_HIVEAP_330) += simpleboot.c fixed-head.S
  37. src-plat-$(CONFIG_TL_WDR4900_V1) += simpleboot.c fixed-head.S
  38. src-plat-$(CONFIG_WS_AP3825I) += simpleboot.c fixed-head.S
  39. @@ -346,6 +347,7 @@ image-$(CONFIG_TQM8548) += cuImage.tqm
  40. image-$(CONFIG_TQM8555) += cuImage.tqm8555
  41. image-$(CONFIG_TQM8560) += cuImage.tqm8560
  42. image-$(CONFIG_KSI8560) += cuImage.ksi8560
  43. +image-$(CONFIG_BR200_WP) += simpleImage.br200-wp
  44. image-$(CONFIG_HIVEAP_330) += simpleImage.hiveap-330
  45. image-$(CONFIG_TL_WDR4900_V1) += simpleImage.tl-wdr4900-v1
  46. image-$(CONFIG_WS_AP3715I) += simpleImage.ws-ap3715i
  47. --- a/arch/powerpc/boot/wrapper
  48. +++ b/arch/powerpc/boot/wrapper
  49. @@ -339,6 +339,7 @@ adder875-redboot)
  50. platformo="$object/fixed-head.o $object/redboot-8xx.o"
  51. binary=y
  52. ;;
  53. +simpleboot-br200-wp|\
  54. simpleboot-hiveap-330|\
  55. simpleboot-ws-ap3715i|\
  56. simpleboot-ws-ap3825i|\