board-dreamplug.c 922 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright 2012 (C), Jason Cooper <jason@lakedaemon.net>
  3. *
  4. * arch/arm/mach-kirkwood/board-dreamplug.c
  5. *
  6. * Marvell DreamPlug Reference Board Init for drivers not converted to
  7. * flattened device tree yet.
  8. *
  9. * This file is licensed under the terms of the GNU General Public
  10. * License version 2. This program is licensed "as is" without any
  11. * warranty of any kind, whether express or implied.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/mv643xx_eth.h>
  16. #include <linux/gpio.h>
  17. #include "common.h"
  18. static struct mv643xx_eth_platform_data dreamplug_ge00_data = {
  19. .phy_addr = MV643XX_ETH_PHY_ADDR(0),
  20. };
  21. static struct mv643xx_eth_platform_data dreamplug_ge01_data = {
  22. .phy_addr = MV643XX_ETH_PHY_ADDR(1),
  23. };
  24. void __init dreamplug_init(void)
  25. {
  26. /*
  27. * Basic setup. Needs to be called early.
  28. */
  29. kirkwood_ge00_init(&dreamplug_ge00_data);
  30. kirkwood_ge01_init(&dreamplug_ge01_data);
  31. }