board-dreamplug.c 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 <linux/platform_data/mmc-mvsdio.h>
  18. #include "common.h"
  19. static struct mv643xx_eth_platform_data dreamplug_ge00_data = {
  20. .phy_addr = MV643XX_ETH_PHY_ADDR(0),
  21. };
  22. static struct mv643xx_eth_platform_data dreamplug_ge01_data = {
  23. .phy_addr = MV643XX_ETH_PHY_ADDR(1),
  24. };
  25. static struct mvsdio_platform_data dreamplug_mvsdio_data = {
  26. /* unfortunately the CD signal has not been connected */
  27. };
  28. void __init dreamplug_init(void)
  29. {
  30. /*
  31. * Basic setup. Needs to be called early.
  32. */
  33. kirkwood_ge00_init(&dreamplug_ge00_data);
  34. kirkwood_ge01_init(&dreamplug_ge01_data);
  35. kirkwood_sdio_init(&dreamplug_mvsdio_data);
  36. }