pmac.h 841 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef __PMAC_H__
  2. #define __PMAC_H__
  3. #include <linux/pci.h>
  4. #include <linux/ide.h>
  5. /*
  6. * Declaration for the various functions exported by the
  7. * pmac_* files. Mostly for use by pmac_setup
  8. */
  9. extern void pmac_get_boot_time(struct rtc_time *tm);
  10. extern void pmac_get_rtc_time(struct rtc_time *tm);
  11. extern int pmac_set_rtc_time(struct rtc_time *tm);
  12. extern void pmac_read_rtc_time(void);
  13. extern void pmac_calibrate_decr(void);
  14. extern void pmac_pcibios_fixup(void);
  15. extern void pmac_pci_init(void);
  16. extern void pmac_setup_pci_dma(void);
  17. extern void pmac_check_ht_link(void);
  18. extern void pmac_setup_smp(void);
  19. extern unsigned long pmac_ide_get_base(int index);
  20. extern void pmac_ide_init_hwif_ports(hw_regs_t *hw,
  21. unsigned long data_port, unsigned long ctrl_port, int *irq);
  22. extern void pmac_nvram_init(void);
  23. #endif /* __PMAC_H__ */