12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- * Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <Kernel/Bus/PCI/Device.h>
- namespace Kernel {
- namespace PCI {
- Device::Device(Address address)
- : m_pci_address(address)
- {
- }
- bool Device::is_msi_capable() const
- {
- for (const auto& capability : PCI::get_physical_id(pci_address()).capabilities()) {
- if (capability.id() == PCI_CAPABILITY_MSI)
- return true;
- }
- return false;
- }
- bool Device::is_msix_capable() const
- {
- for (const auto& capability : PCI::get_physical_id(pci_address()).capabilities()) {
- if (capability.id() == PCI_CAPABILITY_MSIX)
- return true;
- }
- return false;
- }
- void Device::enable_pin_based_interrupts() const
- {
- PCI::enable_interrupt_line(pci_address());
- }
- void Device::disable_pin_based_interrupts() const
- {
- PCI::disable_interrupt_line(pci_address());
- }
- void Device::enable_message_signalled_interrupts()
- {
- TODO();
- }
- void Device::disable_message_signalled_interrupts()
- {
- TODO();
- }
- void Device::enable_extended_message_signalled_interrupts()
- {
- TODO();
- }
- void Device::disable_extended_message_signalled_interrupts()
- {
- TODO();
- }
- }
- }
|