gesbc9312.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 <mach/hardware.h>
  16. #include <asm/hardware/vic.h>
  17. #include <asm/mach-types.h>
  18. #include <asm/mach/arch.h>
  19. static struct ep93xx_eth_data __initdata gesbc9312_eth_data = {
  20. .phy_id = 1,
  21. };
  22. static void __init gesbc9312_init_machine(void)
  23. {
  24. ep93xx_init_devices();
  25. ep93xx_register_flash(4, EP93XX_CS6_PHYS_BASE, SZ_8M);
  26. ep93xx_register_eth(&gesbc9312_eth_data, 0);
  27. }
  28. MACHINE_START(GESBC9312, "Glomation GESBC-9312-sx")
  29. /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
  30. .atag_offset = 0x100,
  31. .map_io = ep93xx_map_io,
  32. .init_irq = ep93xx_init_irq,
  33. .handle_irq = vic_handle_irq,
  34. .timer = &ep93xx_timer,
  35. .init_machine = gesbc9312_init_machine,
  36. .restart = ep93xx_restart,
  37. MACHINE_END