507-board-MAGIC.patch 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
  2. +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
  3. @@ -436,6 +436,39 @@ static struct board_info __initdata boar
  4. .num_board_fixups = ARRAY_SIZE(spw500v_fixups),
  5. },
  6. };
  7. +
  8. +static struct board_info __initdata board_96348sv = {
  9. + .name = "MAGIC",
  10. + .expected_cpu_id = 0x6348,
  11. +
  12. + .has_enet0 = 1,
  13. + .has_enet1 = 1,
  14. + .has_pci = 1,
  15. +
  16. + .enet0 = {
  17. + .has_phy = 1,
  18. + .use_internal_phy = 1,
  19. + },
  20. + .enet1 = {
  21. + /* it has BP_ENET_EXTERNAL_PHY */
  22. + .has_phy = 1,
  23. + .phy_id = 0,
  24. + .force_speed_100 = 1,
  25. + .force_duplex_full = 1,
  26. + },
  27. +
  28. + .has_ohci0 = 1,
  29. + .has_pccard = 1,
  30. + .has_ehci0 = 1,
  31. +
  32. + .has_dsp = 1,
  33. + .dsp = {
  34. + .gpio_rst = 25,
  35. + .gpio_int = 34,
  36. + .cs = 2,
  37. + .ext_irq = 2,
  38. + },
  39. +};
  40. #endif /* CONFIG_BCM63XX_CPU_6348 */
  41. /*
  42. @@ -666,6 +699,7 @@ static const struct board_info __initcon
  43. &board_rta1025w_16,
  44. &board_96348_D4PW,
  45. &board_spw500v,
  46. + &board_96348sv,
  47. #endif
  48. #ifdef CONFIG_BCM63XX_CPU_6358
  49. @@ -710,6 +744,7 @@ static struct of_device_id const bcm963x
  50. { .compatible = "t-com,spw500v", .data = &board_spw500v, },
  51. { .compatible = "tecom,gw6000", .data = &board_gw6000, },
  52. { .compatible = "tecom,gw6200", .data = &board_gw6200, },
  53. + { .compatible = "telsey,magic", .data = &board_96348sv, },
  54. { .compatible = "tp-link,td-w8900gb", .data = &board_96348gw_11, },
  55. { .compatible = "usr,9108", .data = &board_96348gw_a, },
  56. #endif