diff options
author | Matthew McClintock <msm@freescale.com> | 2006-06-28 10:46:13 -0500 |
---|---|---|
committer | Matthew McClintock <msm@freescale.com> | 2006-06-28 10:46:13 -0500 |
commit | cbfc7ce756b88eb26e5537bc7b625c445c6dcfac (patch) | |
tree | ce438a459d25fb3db9daca4e183aa7c62c02bc8a /board/cds/common/via.h | |
parent | 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc (diff) | |
download | u-boot-imx-cbfc7ce756b88eb26e5537bc7b625c445c6dcfac.zip u-boot-imx-cbfc7ce756b88eb26e5537bc7b625c445c6dcfac.tar.gz u-boot-imx-cbfc7ce756b88eb26e5537bc7b625c445c6dcfac.tar.bz2 |
* Added VIA configuration table
* Added support for PCI2 on CDS
Patch by Andy Fleming 17-Mar-2006
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/cds/common/via.h')
-rw-r--r-- | board/cds/common/via.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/board/cds/common/via.h b/board/cds/common/via.h new file mode 100644 index 0000000..77cfacc --- /dev/null +++ b/board/cds/common/via.h @@ -0,0 +1,18 @@ +#ifndef _MPC85xx_VIA_H +void mpc85xx_config_via(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab); + +/* Function 1, IDE */ +void mpc85xx_config_via_usbide(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab); + +/* Function 2, USB ports 0-1 */ +void mpc85xx_config_via_usb(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab); + +/* Function 3, USB ports 2-3 */ +void mpc85xx_config_via_usb2(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab); + +/* Function 5, Power Management */ +void mpc85xx_config_via_power(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab); + +/* Function 6, AC97 Interface */ +void mpc85xx_config_via_ac97(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab); +#endif /* _MPC85xx_VIA_H */ |