From owner-freebsd-current@FreeBSD.ORG Tue Oct 11 22:34:52 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93135106566B for ; Tue, 11 Oct 2011 22:34:52 +0000 (UTC) (envelope-from lacombar@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2C86D8FC17 for ; Tue, 11 Oct 2011 22:34:51 +0000 (UTC) Received: by wyj26 with SMTP id 26so135049wyj.13 for ; Tue, 11 Oct 2011 15:34:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=HgYeS09qR4t91TaYgRSlcsxuVdc02h/Zu7stYBlH6hM=; b=RqJ9/TScv944Mq51RbPXdthHnlUxhaFbEM1hjT6TnjYd2MvLjNwuueb0GncRws+8ZD dzdzG+245Es0nNPRp96dPpfEETnvzAWyAl6MdsfeQ7O0+6V2w/2e9zSkOZutYalmcm5n dBTxTtXo2s9VxndcsIi0b+YDWLr3nzhznhtak= MIME-Version: 1.0 Received: by 10.216.210.216 with SMTP id u66mr1477570weo.49.1318372491026; Tue, 11 Oct 2011 15:34:51 -0700 (PDT) Received: by 10.180.103.33 with HTTP; Tue, 11 Oct 2011 15:34:50 -0700 (PDT) Date: Tue, 11 Oct 2011 18:34:50 -0400 Message-ID: From: Arnaud Lacombe To: FreeBSD-Current Content-Type: text/plain; charset=ISO-8859-1 Subject: ipmi(4)/isa woes X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2011 22:34:52 -0000 Hi folks, I've got a machine where ipmi(4) seem to be unable to fully attach. 10-current kernel complains the following way: ipmi0: at iomem 0-0x1 on isa0 ipmi0: KCS mode found at mem 0x0 alignment 0x1 on isa ipmi0: couldn't configure I/O resource device_attach: ipmi0 attach returned 6 Now, 6 is ENXIO, which match the following resource allocation failure: if (info.offset == 1) { sc->ipmi_io_rid = 0; sc->ipmi_io_res[0] = bus_alloc_resource(dev, type, &sc->ipmi_io_rid, info.address, info.address + count - 1, count, RF_ACTIVE); if (sc->ipmi_io_res[0] == NULL) { device_printf(dev, "couldn't configure I/O resource\n"); return (ENXIO); } } Has anyone encountered this issue ? Thanks, - Arnaud