Skip to content
Snippets Groups Projects
Commit e41094c7 authored by Andy Fleming's avatar Andy Fleming Committed by Andrew Fleming-AFLEMING
Browse files

85xxCDS: Enable the VIA PCI-to-ISA bridge.


Author: Randy Vinson <rvinson@linuxbox.(none)>

Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
Arcadia main board.

Signed-off-by: default avatarRandy Vinson <rvinson@mvista.com>
Signed-off-by: default avatarYork Sun <yorksun@freescale.com>
parent da9d4610
No related branches found
No related tags found
No related merge requests found
...@@ -28,11 +28,16 @@ void mpc85xx_config_via(struct pci_controller *hose, ...@@ -28,11 +28,16 @@ void mpc85xx_config_via(struct pci_controller *hose,
pci_dev_t dev, struct pci_config_table *tab) pci_dev_t dev, struct pci_config_table *tab)
{ {
pci_dev_t bridge; pci_dev_t bridge;
unsigned int cmdstat;
/* Enable USB and IDE functions */ /* Enable USB and IDE functions */
pci_hose_write_config_byte(hose, dev, 0x48, 0x08); pci_hose_write_config_byte(hose, dev, 0x48, 0x08);
pciauto_config_device(hose, dev); pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat);
cmdstat |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY| PCI_COMMAND_MASTER;
pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);
pci_hose_write_config_byte(hose, dev, PCI_CACHE_LINE_SIZE, 0x08);
pci_hose_write_config_byte(hose, dev, PCI_LATENCY_TIMER, 0x80);
/* /*
* Force the backplane P2P bridge to have a window * Force the backplane P2P bridge to have a window
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment