common.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. void orion5x_setup_eth_wins(void);
  23. /*
  24. * Shared code used internally by other Orion core functions.
  25. * (/mach-orion/pci.c)
  26. */
  27. struct pci_sys_data;
  28. struct pci_bus;
  29. void orion5x_pcie_id(u32 *dev, u32 *rev);
  30. int orion5x_pcie_local_bus_nr(void);
  31. int orion5x_pci_local_bus_nr(void);
  32. int orion5x_pci_sys_setup(int nr, struct pci_sys_data *sys);
  33. struct pci_bus *orion5x_pci_sys_scan_bus(int nr, struct pci_sys_data *sys);
  34. /*
  35. * Valid GPIO pins according to MPP setup, used by machine-setup.
  36. * (/mach-orion/gpio.c).
  37. */
  38. void orion5x_gpio_set_valid_pins(u32 pins);
  39. void gpio_display(void); /* debug */
  40. /*
  41. * Pull in Orion Ethernet platform_data, used by machine-setup
  42. */
  43. struct mv643xx_eth_platform_data;
  44. void orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data);
  45. /*
  46. * Orion Sata platform_data, used by machine-setup
  47. */
  48. struct mv_sata_platform_data;
  49. void orion5x_sata_init(struct mv_sata_platform_data *sata_data);
  50. struct machine_desc;
  51. struct meminfo;
  52. struct tag;
  53. extern void __init tag_fixup_mem32(struct machine_desc *, struct tag *,
  54. char **, struct meminfo *);
  55. #endif