<div dir="ltr"><div>Hello</div><div><br></div><div>This is a newbie question: I am trying to write a simple DragonFly kernel module for the gmux device that is attached to the LPC bus. Probing works fine but I am stuck with the attachment routine: I can't allocate IO ports for the device. </div><div><br></div><div>The device shows up in the device tree but is not attached: </div><div><br></div><div>---</div><div># devinfo -rv | grep GMUX:</div><div><br></div><div>unknown pnpinfo _HID=APP000B _UID=0 at handle=\_SB_.PCI0.LPCB.GMUX</div><div>---</div><div><br></div><div>I looked up acpi tables (acpidump etc), the IO resources for GMUX seem to be there: </div><div><br></div><div>--- ---</div><div>  Â  Scope (\_SB.PCI0.LPCB)</div><div>  Â  {</div><div>  Â  Â  Â  Device (GMUX)</div><div>  Â  Â  Â  {</div><div>  Â  Â  Â  Â  Â  Name (_HID, EisaId ("APP000B")) Â // _HID: Hardware ID</div><div>  Â  Â  Â  Â  Â  Name (_CID, "gmux") Â // _CID: Compatible ID</div><div>  Â  Â  Â  Â  Â  Name (_STA, 0x0B) Â // _STA: Status</div><div>  Â  Â  Â  Â  Â  Name (_CRS, ResourceTemplate () Â // _CRS: Current Resource Settings</div><div>  Â  Â  Â  Â  Â  {</div><div>  Â  Â  Â  Â  Â  Â  Â  IO (Decode16,</div><div>  Â  Â  Â  Â  Â  Â  Â  Â  Â  0x0700, Â  Â  Â  Â  Â  Â  // Range Minimum</div><div>  Â  Â  Â  Â  Â  Â  Â  Â  Â  0x07FF, Â  Â  Â  Â  Â  Â  // Range Maximum</div><div>  Â  Â  Â  Â  Â  Â  Â  Â  Â  0x01, Â  Â  Â  Â  Â  Â  Â  // Alignment</div><div>  Â  Â  Â  Â  Â  Â  Â  Â  Â  0xFF, Â  Â  Â  Â  Â  Â  Â  // Length</div><div>  Â  Â  Â  Â  Â  Â  Â  Â  Â  )</div><div>  Â  Â  Â  Â  Â  })</div><div>--- ---</div><div><br></div><div>Also, looking devinfo -rv shows that the range 0x0700 to 0x07FF has been set aside by the kernel: </div><div><br></div><div>---</div><div># devinfo -u </div><div><br></div><div>. . .</div><div>I/O ports: </div><div>  Â  . . .</div><div>  Â  0x400 - 0x1fff (root0)</div><div>  Â  . . .</div><div>---</div><div><br></div><div>So am I right supposing that bus_alloc_resource_any should be able to claim the range 0x700 to 0x7FF for the gmux device? At the moment, trying to allocate IO ports with bus_alloc_resource returns NULL. </div><div><br></div><div>I wonder if anyone has suggestions about what has gone wrong or where to dig further? I attach the code. </div><div><br></div><div>Thanks</div><div><br></div><div>Peeter</div><div><br></div><div>--</div><div><br></div></div>