summaryrefslogtreecommitdiffstats
path: root/sys/mips
diff options
context:
space:
mode:
authorjhibbits <jhibbits@FreeBSD.org>2016-03-03 01:12:13 +0000
committerjhibbits <jhibbits@FreeBSD.org>2016-03-03 01:12:13 +0000
commitd09665f372c060f389adad17dc89a0013ec3d4c0 (patch)
treeb352a54a6677c4926df51f19cb08da866ecaa075 /sys/mips
parentc720a6e216b225ec018cce152e477ef547d44336 (diff)
downloadFreeBSD-src-d09665f372c060f389adad17dc89a0013ec3d4c0.zip
FreeBSD-src-d09665f372c060f389adad17dc89a0013ec3d4c0.tar.gz
Let rman_init() initialize the default rman range.
If rm_start and rm_end are both 0 on input to rman_init(), rman_init() pre-initializes them to the default range. No need to set it before.
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/nlm/xlp_simplebus.c8
-rw-r--r--sys/mips/rmi/xlr_pci.c4
2 files changed, 0 insertions, 12 deletions
diff --git a/sys/mips/nlm/xlp_simplebus.c b/sys/mips/nlm/xlp_simplebus.c
index 353cf61..3ffb19a 100644
--- a/sys/mips/nlm/xlp_simplebus.c
+++ b/sys/mips/nlm/xlp_simplebus.c
@@ -114,32 +114,24 @@ xlp_simplebus_init_resources(void)
|| rman_manage_region(&irq_rman, 0, 255))
panic("xlp_simplebus_init_resources irq_rman");
- port_rman.rm_start = 0;
- port_rman.rm_end = ~0ul;
port_rman.rm_type = RMAN_ARRAY;
port_rman.rm_descr = "I/O ports";
if (rman_init(&port_rman)
|| rman_manage_region(&port_rman, PCIE_IO_BASE, PCIE_IO_LIMIT))
panic("xlp_simplebus_init_resources port_rman");
- mem_rman.rm_start = 0;
- mem_rman.rm_end = ~0ul;
mem_rman.rm_type = RMAN_ARRAY;
mem_rman.rm_descr = "I/O memory";
if (rman_init(&mem_rman)
|| rman_manage_region(&mem_rman, PCIE_MEM_BASE, PCIE_MEM_LIMIT))
panic("xlp_simplebus_init_resources mem_rman");
- pci_ecfg_rman.rm_start = 0;
- pci_ecfg_rman.rm_end = ~0ul;
pci_ecfg_rman.rm_type = RMAN_ARRAY;
pci_ecfg_rman.rm_descr = "PCI ECFG IO";
if (rman_init(&pci_ecfg_rman) || rman_manage_region(&pci_ecfg_rman,
PCI_ECFG_BASE, PCI_ECFG_LIMIT))
panic("xlp_simplebus_init_resources pci_ecfg_rman");
- gbu_rman.rm_start = 0;
- gbu_rman.rm_end = ~0ul;
gbu_rman.rm_type = RMAN_ARRAY;
gbu_rman.rm_descr = "Flash region";
if (rman_init(&gbu_rman)
diff --git a/sys/mips/rmi/xlr_pci.c b/sys/mips/rmi/xlr_pci.c
index c9d0b35..194213b 100644
--- a/sys/mips/rmi/xlr_pci.c
+++ b/sys/mips/rmi/xlr_pci.c
@@ -125,16 +125,12 @@ xlr_pci_init_resources(void)
|| rman_manage_region(&irq_rman, 0, 255))
panic("pci_init_resources irq_rman");
- port_rman.rm_start = 0;
- port_rman.rm_end = ~0ul;
port_rman.rm_type = RMAN_ARRAY;
port_rman.rm_descr = "I/O ports";
if (rman_init(&port_rman)
|| rman_manage_region(&port_rman, 0x10000000, 0x1fffffff))
panic("pci_init_resources port_rman");
- mem_rman.rm_start = 0;
- mem_rman.rm_end = ~0ul;
mem_rman.rm_type = RMAN_ARRAY;
mem_rman.rm_descr = "I/O memory";
if (rman_init(&mem_rman)
OpenPOWER on IntegriCloud