common.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef __ARCH_ORION5X_COMMON_H
  2. #define __ARCH_ORION5X_COMMON_H
  3. /*
  4. * Basic Orion init functions used early by machine-setup.
  5. */
  6. void orion5x_map_io(void);
  7. void orion5x_init_irq(void);
  8. void orion5x_init(void);
  9. extern struct sys_timer orion5x_timer;
  10. /*
  11. * Enumerations and functions for Orion windows mapping. Used by Orion core
  12. * functions to map its interfaces and by the machine-setup to map its on-
  13. * board devices. Details in /mach-orion/addr-map.c
  14. */
  15. extern struct mbus_dram_target_info orion5x_mbus_dram_info;
  16. void orion5x_setup_cpu_mbus_bridge(void);
  17. void orion5x_setup_dev_boot_win(u32 base, u32 size);
  18. void orion5x_setup_dev0_win(u32 base, u32 size);
  19. void orion5x_setup_dev1_win(u32 base, u32 size);
  20. void orion5x_setup_dev2_win(u32 base, u32 size);
  21. void orion5x_setup_pcie_wa_win(u32 base, u32 size);
  22. /*
  23. * Shared code used internally by other Orion core functions.
  24. * (/mach-orion/pci.c)
  25. */
  26. struct pci_sys_data;
  27. struct pci_bus;
  28. void orion5x_pcie_id(u32 *dev, u32 *rev);
  29. int orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys);
  30. struct pci_bus *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys);
  31. int orion5x_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin);
  32. /*
  33. * Valid GPIO pins according to MPP setup, used by machine-setup.
  34. * (/mach-orion/gpio.c).
  35. */
  36. void orion5x_gpio_set_valid_pins(u32 pins);
  37. void gpio_display(void); /* debug */
  38. /*
  39. * Pull in Orion Ethernet platform_data, used by machine-setup
  40. */
  41. struct mv643xx_eth_platform_data;
  42. void orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data);
  43. /*
  44. * Orion Sata platform_data, used by machine-setup
  45. */
  46. struct mv_sata_platform_data;
  47. void orion5x_sata_init(struct mv_sata_platform_data *sata_data);
  48. struct machine_desc;
  49. struct meminfo;
  50. struct tag;
  51. extern void __init tag_fixup_mem32(struct machine_desc *, struct tag *,
  52. char **, struct meminfo *);
  53. #endif