summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-06-03 20:36:18 -0400
committerIan Moffett <ian@osmora.org>2024-06-03 20:36:18 -0400
commit214eadc62b5578f76c98a38a28f8b3d80ac4d6ad (patch)
tree9e104caa48a12511d11a0833afb8005f1fb65e0d /sys/dev/ic
parent46b556a8c7fdbfaa9a11306dea197b2d7363e97c (diff)
kernel: pci: Require mapping BAR using bus_map()
This commit gets rid of pci_map_bar() as some devices have their base address spanning mulitple BARs. This change also exposes PCI bar size logic through pci_bar_size() Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/ahci.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c
index 3ff13cf..257fd00 100644
--- a/sys/dev/ic/ahci.c
+++ b/sys/dev/ic/ahci.c
@@ -39,6 +39,7 @@
#include <dev/pci/pci.h>
#include <dev/ic/ahciregs.h>
#include <dev/ic/ahcivar.h>
+#include <machine/bus.h>
#include <vm/vm.h>
#include <string.h>
@@ -724,6 +725,7 @@ ahci_init(void)
{
int status;
uint16_t cmdreg_bits;
+ uint32_t bar_size;
struct ahci_hba hba = {0};
struct pci_lookup ahci_lookup = {
.pci_class = 0x01,
@@ -749,8 +751,15 @@ ahci_init(void)
return -1;
}
- if ((status = pci_map_bar(dev, 5, (void *)&hba.abar)) != 0) {
- return status;
+ if ((bar_size = pci_bar_size(dev, 5)) == 0) {
+ pr_error("Failed to fetch BAR size\n");
+ return -1;
+ }
+
+ status = bus_map(dev->bar[5], bar_size, 0, (void *)&hba.abar);
+ if (status != 0) {
+ pr_error("Failed to map BAR into higher half\n");
+ return -1;
}
pr_trace("AHCI HBA memspace @ 0x%p\n", hba.abar);