Changeset 1413 for trunk/board_enable.c
- Timestamp:
- Aug 15, 2011 9:54:20 PM (22 months ago)
- File:
-
- 1 edited
-
trunk/board_enable.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/board_enable.c
r1411 r1413 861 861 } 862 862 863 /* First, check the ISA bridge*/863 /* Check for the ISA bridge first. */ 864 864 dev = pci_dev_find_vendorclass(0x10DE, 0x0601); 865 865 switch (dev->device_id) { … … 1130 1130 uint32_t tmp, base; 1131 1131 1132 /* GP PO {0,8,27,28,30} are always available*/1133 static const uint32_t nonmuxed_gpos = 0x58000101;1132 /* GPO{0,8,27,28,30} are always available. */ 1133 static const uint32_t nonmuxed_gpos = 0x58000101; 1134 1134 1135 1135 static const struct {unsigned int reg, mask, value; } piix4_gpo[] = { … … 1180 1180 1181 1181 if ((((1 << gpo) & nonmuxed_gpos) == 0) && 1182 (pci_read_word(dev, piix4_gpo[gpo].reg) 1183 & piix4_gpo[gpo].mask) != piix4_gpo[gpo].value) { 1184 msg_perr("\nERROR: PIIX4 GPO%d not programmed for output.\n", 1185 gpo); 1182 ((pci_read_word(dev, piix4_gpo[gpo].reg) & piix4_gpo[gpo].mask) != 1183 piix4_gpo[gpo].value)) { 1184 msg_perr("\nERROR: PIIX4 GPO%d not programmed for output.\n", gpo); 1186 1185 return -1; 1187 1186 }
Note: See TracChangeset
for help on using the changeset viewer.
