FSConfig.py (11297:d1f8610cdffd) FSConfig.py (11481:fc247b9c42b6)
1# Copyright (c) 2010-2012, 2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 539 unchanged lines hidden (view full) ---

548 version = 0x11,
549 enable = True,
550 address = 0xfec00000)
551 self.pc.south_bridge.io_apic.apic_id = io_apic.id
552 base_entries.append(io_apic)
553 # In gem5 Pc::calcPciConfigAddr(), it required "assert(bus==0)",
554 # but linux kernel cannot config PCI device if it was not connected to PCI bus,
555 # so we fix PCI bus id to 0, and ISA bus id to 1.
1# Copyright (c) 2010-2012, 2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 539 unchanged lines hidden (view full) ---

548 version = 0x11,
549 enable = True,
550 address = 0xfec00000)
551 self.pc.south_bridge.io_apic.apic_id = io_apic.id
552 base_entries.append(io_apic)
553 # In gem5 Pc::calcPciConfigAddr(), it required "assert(bus==0)",
554 # but linux kernel cannot config PCI device if it was not connected to PCI bus,
555 # so we fix PCI bus id to 0, and ISA bus id to 1.
556 pci_bus = X86IntelMPBus(bus_id = 0, bus_type='PCI')
556 pci_bus = X86IntelMPBus(bus_id = 0, bus_type='PCI ')
557 base_entries.append(pci_bus)
557 base_entries.append(pci_bus)
558 isa_bus = X86IntelMPBus(bus_id = 1, bus_type='ISA')
558 isa_bus = X86IntelMPBus(bus_id = 1, bus_type='ISA ')
559 base_entries.append(isa_bus)
560 connect_busses = X86IntelMPBusHierarchy(bus_id=1,
561 subtractive_decode=True, parent_bus=0)
562 ext_entries.append(connect_busses)
563 pci_dev4_inta = X86IntelMPIOIntAssignment(
564 interrupt_type = 'INT',
565 polarity = 'ConformPolarity',
566 trigger = 'ConformTrigger',

--- 140 unchanged lines hidden ---
559 base_entries.append(isa_bus)
560 connect_busses = X86IntelMPBusHierarchy(bus_id=1,
561 subtractive_decode=True, parent_bus=0)
562 ext_entries.append(connect_busses)
563 pci_dev4_inta = X86IntelMPIOIntAssignment(
564 interrupt_type = 'INT',
565 polarity = 'ConformPolarity',
566 trigger = 'ConformTrigger',

--- 140 unchanged lines hidden ---