gesbc9312.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * arch/arm/mach-ep93xx/gesbc9312.c
  3. * Glomation GESBC-9312-sx support.
  4. *
  5. * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or (at
  10. * your option) any later version.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/init.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/sizes.h>
  16. #include <mach/hardware.h>
  17. #include <asm/mach-types.h>
  18. #include <asm/mach/arch.h>
  19. #include "soc.h"
  20. static struct ep93xx_eth_data __initdata gesbc9312_eth_data = {
  21. .phy_id = 1,
  22. };
  23. static void __init gesbc9312_init_machine(void)
  24. {
  25. ep93xx_init_devices();
  26. ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_8M);
  27. ep93xx_register_eth(&gesbc9312_eth_data, 0);
  28. }
  29. MACHINE_START(GESBC9312, "Glomation GESBC-9312-sx")
  30. /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
  31. .atag_offset = 0x100,
  32. .map_io = ep93xx_map_io,
  33. .init_irq = ep93xx_init_irq,
  34. .init_time = ep93xx_timer_init,
  35. .init_machine = gesbc9312_init_machine,
  36. .init_late = ep93xx_init_late,
  37. .restart = ep93xx_restart,
  38. MACHINE_END