diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-11-29 10:47:44 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-12-11 22:34:20 -0600 |
commit | 415a613babb84d5e5d5b42e8e553868c71fc3a64 (patch) | |
tree | 493e5639768f924407a432bf124fa7c3e0f98f3c /board/freescale/common/via.h | |
parent | c2d943ffbfd3359b3b45d177b437379d2cb86fbf (diff) | |
download | u-boot-imx-415a613babb84d5e5d5b42e8e553868c71fc3a64.zip u-boot-imx-415a613babb84d5e5d5b42e8e553868c71fc3a64.tar.gz u-boot-imx-415a613babb84d5e5d5b42e8e553868c71fc3a64.tar.bz2 |
Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
Minor path corrections needed to ensure buildability.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/common/via.h')
-rw-r--r-- | board/freescale/common/via.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/board/freescale/common/via.h b/board/freescale/common/via.h new file mode 100644 index 0000000..77cfacc --- /dev/null +++ b/board/freescale/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 */ |