From owner-freebsd-arm@FreeBSD.ORG Thu May 1 17:12:47 2014 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE56AC3C for ; Thu, 1 May 2014 17:12:47 +0000 (UTC) Received: from mail-wi0-x236.google.com (mail-wi0-x236.google.com [IPv6:2a00:1450:400c:c05::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7B77314FF for ; Thu, 1 May 2014 17:12:47 +0000 (UTC) Received: by mail-wi0-f182.google.com with SMTP id d1so1118079wiv.15 for ; Thu, 01 May 2014 10:12:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=8ZCtNcw6qjE3qkPAXtN+fPRbIE9Q1V2colGaFD/G5Wo=; b=EGyEVTbsRpnzkH358bU3aq31fiG8oGYaRUHJlb98ZYGcxZ5pAkTrKVslwW8oG/qF8D mE7fYfCIqdbSkUp0hS/vod7pkncbIPyX7wJjVboD4LqJBmMTizuhkTYHykqYg1p/n31s rzkf4tgHrZOnrJQZN6R3ETdyX56eWadDh7p7wTpa6uLqc9fnaIBdISXBC3SGVxFkqGJa wc5LBVscT7RI7Ks9WWw1egTaRmYjDarJqG7HEiZvRAILt9CABrH7n7QhoUfR2FKFGeGz SGUP9N830Q5/RGAXKvOr7Kzk9pY98QsaNOmqJuGqLB4t/JW7IQx91giHIz75UkU81g6+ LEAA== MIME-Version: 1.0 X-Received: by 10.180.228.42 with SMTP id sf10mr2963105wic.33.1398964365787; Thu, 01 May 2014 10:12:45 -0700 (PDT) Received: by 10.217.10.195 with HTTP; Thu, 1 May 2014 10:12:45 -0700 (PDT) Date: Thu, 1 May 2014 13:12:45 -0400 Message-ID: Subject: BBB/I2C: Using ioctl(I2CRDWR) warns: interrupt storm detected on "intr70:" From: Winston Smith To: FreeBSD ARM Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2014 17:12:47 -0000 Continuing on with working with the I2C interface on the BBB I wrote a utility to read the BBB's 28 byte system EEPROM on iic0, address 0x50 which contains the model and serial numbers. See pastebin here: http://pastebin.com/p7XwKUGZ However, when I run the utility: root@beaglebone:~ # ./bbb_eeprom Read from slave 50 on /dev/iic0, signature=AA:55:33:EE Model: A335BNLT0A6A Serial: 0214BBBK4321 I see the following warning on the console: interrupt storm detected on "intr70:"; throttling interrupt source Does this mean anything, or is it just a spurious warning. BTW: This is with FreeBSD 11-CURRENT r265163. -W