via.h 831 B

123456789101112131415161718
  1. #ifndef _MPC85xx_VIA_H
  2. void mpc85xx_config_via(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
  3. /* Function 1, IDE */
  4. void mpc85xx_config_via_usbide(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
  5. /* Function 2, USB ports 0-1 */
  6. void mpc85xx_config_via_usb(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
  7. /* Function 3, USB ports 2-3 */
  8. void mpc85xx_config_via_usb2(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
  9. /* Function 5, Power Management */
  10. void mpc85xx_config_via_power(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
  11. /* Function 6, AC97 Interface */
  12. void mpc85xx_config_via_ac97(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab);
  13. #endif /* _MPC85xx_VIA_H */