bus_alloc_resource question

From: Chuck Tuffli (chuck_tuffli_at_agilent.com)
Date: 07/27/04

  • Next message: M. Warner Losh: "Re: bus_alloc_resource question"
    Date: Mon, 26 Jul 2004 18:59:24 -0700
    To: hackers@freebsd.org
    
    

    I'm having some trouble adding a bus resource and am hoping someone
    can point out where I goofed.

    The host bus to a new x86 chipset has a memory mapped region in PCI
    space that provides access to status and control registers. For a
    driver to get access to this region, I figured it should call
    bus_alloc_resource() the same as for any other memory mapped region.
    This currently doesn't "just work" as the region is not a part of any
    device's BARs. To add this region as a resource, I used
    bus_set_resource()

        device_t dev;
        uint32_t e_mem = 0xe0000000;
        struct resource *ecfg_res;

        dev = pci_find_device(PCI_VENDOR_INTEL, ...);
        bus_set_resource(dev, SYS_RES_MEMORY, e_mem, 0xe0000000, 0x10000000);

    but a subsequent call to bus_alloc_resource() returns NULL

        ecfg_res = bus_alloc_resource(dev, SYS_RES_MEMORY, &e_mem,
                0, ~0, 1, RF_ACTIVE | RF_SHAREABLE);

    A call to bus_get_resource() shows that the resource did get set as
    the call returns the correct starting address and count. Is there
    something else that needs to happen between the set and the alloc? Is
    this even the correct approach? Thanks in advance!

    -- 
    Chuck Tuffli
    Agilent Technologies, Storage Area Networking
    _______________________________________________
    freebsd-hackers@freebsd.org mailing list
    http://lists.freebsd.org/mailman/listinfo/freebsd-hackers
    To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org"
    

  • Next message: M. Warner Losh: "Re: bus_alloc_resource question"

    Relevant Pages

    • Re: bus_alloc_resource question
      ... The host bus to a new x86 chipset has a memory mapped region in PCI ... bus_alloc_resourcethe same as for any other memory mapped region. ... To add this region as a resource, ... On the PCI bus, ...
      (freebsd-hackers)
    • Re: [patch] pci: revert "PCI: remove transparent bridge sizing"
      ... have PCI bridges at zero. ... size and the alignment of the bus resource, ... the resource number to decide whether it is a bus resource or a normal PCI ...
      (Linux-Kernel)
    • Re: [patch] pci: revert "PCI: remove transparent bridge sizing"
      ... where that resource actually looks valid, and should have a single byte ... think that a single-byte resource is valid. ... resource (since now the alignment will be zero), which is a bit odd and ... the resource number to decide whether it is a bus resource or a normal PCI ...
      (Linux-Kernel)